From d802b1b9d8e26fabd496e0e614284d323d6f1552 Mon Sep 17 00:00:00 2001 From: ligenxxxx <59721724+ligenxxxx@users.noreply.github.com> Date: Fri, 24 Jan 2025 12:28:07 +0800 Subject: [PATCH 1/3] optimize Chinese translation --- mkapp/app/language/zh_hans.ini | 9 +++++---- src/lang/language.h | 2 +- src/ui/page_power.c | 3 +-- src/ui/ui_image_setting.c | 31 +++++++++++++++++++++---------- 4 files changed, 28 insertions(+), 17 deletions(-) diff --git a/mkapp/app/language/zh_hans.ini b/mkapp/app/language/zh_hans.ini index 445eeb0a..e87e77bc 100644 --- a/mkapp/app/language/zh_hans.ini +++ b/mkapp/app/language/zh_hans.ini @@ -47,6 +47,7 @@ To change image settings, click the Enter button to enter video mode = "单击 Make sure a HDZero VTX or analog VTX is powered on for live video = "确保HDZero VTX或模拟VTX已经运行" Never = "从不" min = "分钟" +Reset All = "复位" ; osd OSD = "OSD" @@ -80,7 +81,7 @@ Warning Type = "警报模式" Beep = "蜂鸣器" Visual = "屏显" Both = "同时" -AnalogRx = "模拟模块" +AnalogRX Power = "模拟模块电源" Auto = "自动" ; fans @@ -238,7 +239,7 @@ Firmware = "固件" Current Version = "当前版本" Reset all settings = "重置所有设置" Update complete = "更新完成" -Goggle update completed successfully = "Goggle更新完成" +Goggle update completed successfully = "眼镜更新完成" Please repower goggle now = "现在请重启眼镜" Settings reset = "重置设置" All settings have been reset = "所有设置已被重置" @@ -292,7 +293,7 @@ Click any button to exit sleep mode = "单击任意按键退出休眠" Top Fan Speed = "顶风扇速度" Latency Lock = "延时锁定" VTX Temp = "VTX 温度" -VRX, Temp = "眼镜温度" +VRX Temp = "眼镜温度" Battery Low = "电池电压低" Battery Voltage = "电池电压" Clock Date = "日期" @@ -307,7 +308,7 @@ Antenna 4 = "天线4" Goggle Temp Top = "眼镜顶部温度" Goggle Temp Left = "眼镜左侧温度" Goggle Temp Right = "眼镜右侧温度" -Reset all elements (both modes) = "复位所有元素" +Reset all elements (both modes) = "复位所有元素(所有模式)" Save changes = "保存修改" Cancel = "取消" click to confirm = "单击确认" diff --git a/src/lang/language.h b/src/lang/language.h index 54ba5e4f..aa3c6f86 100644 --- a/src/lang/language.h +++ b/src/lang/language.h @@ -3,7 +3,7 @@ #include "core/settings.h" -#define TRANSLATE_STRING_NUM 278 +#define TRANSLATE_STRING_NUM 280 #define LANG_FOLDER "/mnt/app/language" typedef enum { diff --git a/src/ui/page_power.c b/src/ui/page_power.c index 29e78a02..ea080d48 100644 --- a/src/ui/page_power.c +++ b/src/ui/page_power.c @@ -128,8 +128,7 @@ static lv_obj_t *page_power_create(lv_obj_t *parent, panel_arr_t *arr) { // Batch 2 goggles only if (getHwRevision() >= HW_REV_2) { - snprintf(buf, sizeof(buf), "%s %s", _lang("AnalogRX"), _lang("Power")); - create_btn_group_item(&btn_group_power_ana, cont, 2, buf, _lang("On"), _lang("Auto"), "", "", ROW_POWER_ANA); + create_btn_group_item(&btn_group_power_ana, cont, 2, _lang("AnalogRX Power"), _lang("On"), _lang("Auto"), "", "", ROW_POWER_ANA); } // Back entry diff --git a/src/ui/ui_image_setting.c b/src/ui/ui_image_setting.c index 27e499e5..f920b30a 100644 --- a/src/ui/ui_image_setting.c +++ b/src/ui/ui_image_setting.c @@ -10,6 +10,7 @@ #include "core/osd.h" #include "driver/hardware.h" #include "driver/oled.h" +#include "lang/language.h" #include "ui/page_common.h" /////////////////////////////////////////////////////////////////////////////// @@ -28,11 +29,13 @@ bool g_bShowIMS = false; static void ims_page_init(uint8_t *val) { int16_t x = 30; int16_t y = 15; + char buf[64]; ims_page.items[0].x = x; ims_page.items[0].y = y; ims_page.items[0].type = 1; - strcpy(ims_page.items[0].title, "OLED:"); + snprintf(buf, sizeof(buf), "%s:", _lang("OLED")); + strcpy(ims_page.items[0].title, buf); ims_page.items[0].range[0] = 0; ims_page.items[0].range[1] = 12; ims_page.items[0].value = val[0]; @@ -42,7 +45,8 @@ static void ims_page_init(uint8_t *val) { ims_page.items[1].x = x; ims_page.items[1].y = y + 25; ims_page.items[1].type = 1; - strcpy(ims_page.items[1].title, "Brightness:"); + snprintf(buf, sizeof(buf), "%s:", _lang("Brightness")); + strcpy(ims_page.items[1].title, buf); ims_page.items[1].range[0] = 0; ims_page.items[1].range[1] = 78; ims_page.items[1].value = val[1]; @@ -51,7 +55,8 @@ static void ims_page_init(uint8_t *val) { ims_page.items[2].x = x; ims_page.items[2].y = y + 50; ims_page.items[2].type = 1; - strcpy(ims_page.items[2].title, "Saturation:"); + snprintf(buf, sizeof(buf), "%s:", _lang("Saturation")); + strcpy(ims_page.items[2].title, buf); ims_page.items[2].range[0] = 0; ims_page.items[2].range[1] = 47; ims_page.items[2].value = val[2]; @@ -60,7 +65,8 @@ static void ims_page_init(uint8_t *val) { ims_page.items[3].x = x; ims_page.items[3].y = y + 75; ims_page.items[3].type = 1; - strcpy(ims_page.items[3].title, "Contrast:"); + snprintf(buf, sizeof(buf), "%s:", _lang("Contrast")); + strcpy(ims_page.items[3].title, buf); ims_page.items[3].range[0] = 0; ims_page.items[3].range[1] = 47; ims_page.items[3].value = val[3]; @@ -69,7 +75,8 @@ static void ims_page_init(uint8_t *val) { ims_page.items[4].x = x; ims_page.items[4].y = y + 100; ims_page.items[4].type = 1; - strcpy(ims_page.items[4].title, "OLED Auto off:"); + snprintf(buf, sizeof(buf), "OLED %s:", _lang("Auto off")); + strcpy(ims_page.items[4].title, buf); ims_page.items[4].range[0] = 0; ims_page.items[4].range[1] = 4; ims_page.items[4].value = val[4]; @@ -78,20 +85,22 @@ static void ims_page_init(uint8_t *val) { ims_page.items[5].x = x; ims_page.items[5].y = y + 125; ims_page.items[5].type = 0; - strcpy(ims_page.items[5].title, "< Back"); + snprintf(buf, sizeof(buf), "< %s", _lang("Back")); + strcpy(ims_page.items[5].title, buf); ims_page.items[5].state = 0; ims_page.items[6].x = x + 200; ims_page.items[6].y = y + 125; ims_page.items[6].type = 0; - strcpy(ims_page.items[6].title, "Reset All"); + snprintf(buf, sizeof(buf), "%s", _lang("Reset All")); + strcpy(ims_page.items[6].title, buf); ims_page.items[6].state = 0; } static void show_ims_slider(uint8_t index) { ims_slider_t *p_slider = &ims_page.items[index]; - char buf[16]; + char buf[32]; lv_point_t points[2]; if (p_slider->state == 0) { // 0=not selected, 1=selected, 2=slider bar selected @@ -112,8 +121,10 @@ static void show_ims_slider(uint8_t index) { switch (index) { case 4: { // auto off - char *str_ao[5] = {"1 min", "3 min", "5 min", "7 min", "Never"}; - strcpy(buf, str_ao[p_slider->value]); + if (p_slider->value == 4) + snprintf(buf, sizeof(buf), "%s", _lang("Never")); + else + snprintf(buf, sizeof(buf), "%d %s", (p_slider->value << 1) + 1, _lang("min")); break; } From a723a2acc7437d897ed5dd783af46b8b1213d0ec Mon Sep 17 00:00:00 2001 From: ligenxxxx <59721724+ligenxxxx@users.noreply.github.com> Date: Fri, 24 Jan 2025 15:46:25 +0800 Subject: [PATCH 2/3] translate ui_keyboard --- .../lvgl/src/font/lv_font_montserrat_10.c | 395 ++++++------- .../lvgl/src/font/lv_font_montserrat_12.c | 396 ++++++------- .../lvgl/src/font/lv_font_montserrat_14.c | 403 ++++++------- .../lvgl/src/font/lv_font_montserrat_16.c | 384 +++++++------ .../lvgl/src/font/lv_font_montserrat_18.c | 407 +++++++------- .../lvgl/src/font/lv_font_montserrat_20.c | 415 +++++++------- .../lvgl/src/font/lv_font_montserrat_22.c | 424 +++++++------- .../lvgl/src/font/lv_font_montserrat_24.c | 430 +++++++------- .../lvgl/src/font/lv_font_montserrat_26.c | 440 ++++++++------- .../lvgl/src/font/lv_font_montserrat_28.c | 445 ++++++++------- .../lvgl/src/font/lv_font_montserrat_30.c | 454 ++++++++------- .../lvgl/src/font/lv_font_montserrat_32.c | 442 ++++++++------- .../lvgl/src/font/lv_font_montserrat_34.c | 461 ++++++++------- .../lvgl/src/font/lv_font_montserrat_36.c | 448 +++++++++------ .../lvgl/src/font/lv_font_montserrat_38.c | 474 +++++++++------- .../lvgl/src/font/lv_font_montserrat_40.c | 487 +++++++++------- .../lvgl/src/font/lv_font_montserrat_42.c | 493 +++++++++------- .../lvgl/src/font/lv_font_montserrat_44.c | 503 ++++++++++------- .../lvgl/src/font/lv_font_montserrat_46.c | 513 ++++++++++------- .../lvgl/src/font/lv_font_montserrat_48.c | 528 +++++++++++------- lib/lvgl/lvgl/src/font/lv_font_montserrat_8.c | 345 ++++++------ mkapp/app/language/zh_hans.ini | 8 + src/lang/language.h | 2 +- src/ui/ui_keyboard.c | 9 +- 24 files changed, 5237 insertions(+), 4069 deletions(-) diff --git a/lib/lvgl/lvgl/src/font/lv_font_montserrat_10.c b/lib/lvgl/lvgl/src/font/lv_font_montserrat_10.c index 9981e8ff..8db59a03 100644 --- a/lib/lvgl/lvgl/src/font/lv_font_montserrat_10.c +++ b/lib/lvgl/lvgl/src/font/lv_font_montserrat_10.c @@ -1,7 +1,7 @@ /******************************************************************************* * Size: 10 px * Bpp: 4 - * Opts: --bpp 4 --size 10 --no-compress --font Montserrat-Medium.ttf --range 32-127,176,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20351,20363,20391,20445,20449,20462,20463,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29366,29615,29616,29702,29983,29992,30005,30011,30028,30041,30340,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31181,31243,31354,31364,31454,31471,31526,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33719,33756,34255,34562,34892,34920,34987,35013,35201,35268,35270,35272,35282,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35831,35843,36133,36136,36229,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --format lvgl -o out/lv_font_montserrat_10.c + * Opts: --bpp 4 --size 10 --no-compress --font Montserrat-Medium.ttf --range 32-127,176,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20351,20363,20391,20445,20449,20462,20463,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29366,29615,29616,29702,29983,29992,30005,30011,30028,30041,30340,30424,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31181,31243,31354,31364,31454,31471,31526,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33719,33756,34255,34562,34892,34920,34987,35013,35201,35268,35270,35272,35282,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35831,35843,36133,36136,36229,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --format lvgl -o out/lv_font_montserrat_10.c ******************************************************************************/ #ifdef LV_LVGL_H_INCLUDE_SIMPLE @@ -2518,6 +2518,14 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0xaa, 0xb0, 0x0, 0xc0, 0xa0, 0x9, 0x6, 0xe7, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+76D8 "盘" */ + 0x0, 0x5, 0x70, 0x0, 0x0, 0x0, 0xda, 0xba, + 0xab, 0x0, 0x0, 0xc0, 0x84, 0xb, 0x0, 0x3a, + 0xea, 0xaa, 0xae, 0xa2, 0x3, 0x92, 0xb2, 0xb, + 0x0, 0x9, 0x20, 0x11, 0xa5, 0x0, 0xb, 0xad, + 0xad, 0xac, 0x50, 0xb, 0x1a, 0xa, 0x7, 0x40, + 0x9d, 0xad, 0xad, 0xac, 0xc7, + /* U+76EE "目" */ 0x2e, 0xaa, 0xaa, 0xad, 0x1b, 0x0, 0x0, 0xc, 0x1d, 0x88, 0x88, 0x8c, 0x1b, 0x11, 0x11, 0x1c, @@ -4335,178 +4343,179 @@ static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = { {.bitmap_index = 13186, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 13236, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 13286, .adv_w = 160, .box_w = 9, .box_h = 10, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 13331, .adv_w = 160, .box_w = 8, .box_h = 9, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 13367, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 13417, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 13467, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 13512, .adv_w = 160, .box_w = 9, .box_h = 9, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 13553, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 13608, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 13658, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 13708, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 13758, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 13808, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 13853, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 13903, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 13958, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 14008, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 14063, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 14113, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 14168, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 14223, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 14273, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 14318, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 14368, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 14413, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 14468, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 14518, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 14573, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 14628, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 13331, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 13376, .adv_w = 160, .box_w = 8, .box_h = 9, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 13412, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 13462, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 13512, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 13557, .adv_w = 160, .box_w = 9, .box_h = 9, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 13598, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 13653, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 13703, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 13753, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 13803, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 13853, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 13898, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 13948, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 14003, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 14053, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 14108, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 14158, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 14213, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 14268, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 14318, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 14363, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 14413, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 14458, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 14513, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 14563, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 14618, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 14673, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 14718, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 14763, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 14808, .adv_w = 160, .box_w = 9, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 14849, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 14894, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 14949, .adv_w = 160, .box_w = 8, .box_h = 10, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 14989, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 15039, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 15084, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 15134, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 15184, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 15239, .adv_w = 160, .box_w = 11, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 15294, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 15344, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 15394, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 15444, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 15489, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 15544, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 15599, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 15654, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 15709, .adv_w = 160, .box_w = 9, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 15759, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 15809, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 15854, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 15904, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 15959, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 16004, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 16059, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 16114, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 16164, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 16214, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 16269, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 16319, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 16374, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 16424, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 16474, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 16524, .adv_w = 160, .box_w = 11, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 16579, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 16629, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 16684, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 16734, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 16789, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 16844, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 16899, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 16949, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 17004, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 17059, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 17109, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 17159, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 17209, .adv_w = 160, .box_w = 11, .box_h = 11, .ofs_x = -1, .ofs_y = -2}, - {.bitmap_index = 17270, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 17325, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 17375, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 17425, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 17475, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 17530, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 17580, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 17630, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 17680, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 17730, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 14808, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 14853, .adv_w = 160, .box_w = 9, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 14894, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 14939, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 14994, .adv_w = 160, .box_w = 8, .box_h = 10, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 15034, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 15084, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 15129, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 15179, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 15229, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 15284, .adv_w = 160, .box_w = 11, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 15339, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 15389, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 15439, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 15489, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 15534, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 15589, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 15644, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 15699, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 15754, .adv_w = 160, .box_w = 9, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 15804, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 15854, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 15899, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 15949, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 16004, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 16049, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 16104, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 16159, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 16209, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 16259, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 16314, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 16364, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 16419, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 16469, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 16519, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 16569, .adv_w = 160, .box_w = 11, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 16624, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 16674, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 16729, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 16779, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 16834, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 16889, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 16944, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 16994, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 17049, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 17104, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 17154, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 17204, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 17254, .adv_w = 160, .box_w = 11, .box_h = 11, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 17315, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 17370, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 17420, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 17470, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 17520, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 17575, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 17625, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 17675, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 17725, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 17775, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 17820, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 17865, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 17915, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 17965, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 18020, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 18065, .adv_w = 160, .box_w = 9, .box_h = 11, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 18115, .adv_w = 160, .box_w = 9, .box_h = 11, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 18165, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 18220, .adv_w = 160, .box_w = 9, .box_h = 11, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 18270, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 18325, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 18375, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 18430, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 18480, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 18535, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 18590, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 18645, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 18700, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 18745, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 18795, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 18850, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 18900, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 18950, .adv_w = 160, .box_w = 11, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 19005, .adv_w = 160, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 19066, .adv_w = 160, .box_w = 10, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 19106, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 19156, .adv_w = 160, .box_w = 10, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 19196, .adv_w = 110, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 19224, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 19279, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 19334, .adv_w = 180, .box_w = 12, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 19394, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 19449, .adv_w = 180, .box_w = 12, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 19497, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 19552, .adv_w = 80, .box_w = 5, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 19572, .adv_w = 120, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 19604, .adv_w = 180, .box_w = 12, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 19664, .adv_w = 160, .box_w = 10, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 19704, .adv_w = 110, .box_w = 7, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 19743, .adv_w = 140, .box_w = 7, .box_h = 10, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 19778, .adv_w = 140, .box_w = 9, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 19828, .adv_w = 140, .box_w = 9, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 17865, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 17910, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 17960, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 18010, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 18065, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 18110, .adv_w = 160, .box_w = 9, .box_h = 11, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 18160, .adv_w = 160, .box_w = 9, .box_h = 11, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 18210, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 18265, .adv_w = 160, .box_w = 9, .box_h = 11, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 18315, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 18370, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 18420, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 18475, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 18525, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 18580, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 18635, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 18690, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 18745, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 18790, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 18840, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 18895, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 18945, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 18995, .adv_w = 160, .box_w = 11, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 19050, .adv_w = 160, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 19111, .adv_w = 160, .box_w = 10, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 19151, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 19201, .adv_w = 160, .box_w = 10, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 19241, .adv_w = 110, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 19269, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 19324, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 19379, .adv_w = 180, .box_w = 12, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 19439, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 19494, .adv_w = 180, .box_w = 12, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 19542, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 19597, .adv_w = 80, .box_w = 5, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 19617, .adv_w = 120, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 19649, .adv_w = 180, .box_w = 12, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 19709, .adv_w = 160, .box_w = 10, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 19749, .adv_w = 110, .box_w = 7, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 19788, .adv_w = 140, .box_w = 7, .box_h = 10, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 19823, .adv_w = 140, .box_w = 9, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 19873, .adv_w = 140, .box_w = 9, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 19918, .adv_w = 140, .box_w = 7, .box_h = 10, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 19953, .adv_w = 140, .box_w = 10, .box_h = 10, .ofs_x = -1, .ofs_y = -1}, - {.bitmap_index = 20003, .adv_w = 100, .box_w = 6, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 20033, .adv_w = 100, .box_w = 6, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 20063, .adv_w = 140, .box_w = 9, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 20108, .adv_w = 140, .box_w = 9, .box_h = 3, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 20122, .adv_w = 180, .box_w = 12, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 20170, .adv_w = 200, .box_w = 13, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 20242, .adv_w = 180, .box_w = 13, .box_h = 11, .ofs_x = -1, .ofs_y = -2}, - {.bitmap_index = 20314, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 20364, .adv_w = 140, .box_w = 9, .box_h = 6, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 20391, .adv_w = 140, .box_w = 9, .box_h = 6, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 20418, .adv_w = 200, .box_w = 13, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 20470, .adv_w = 160, .box_w = 10, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 20510, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 20565, .adv_w = 160, .box_w = 11, .box_h = 11, .ofs_x = -1, .ofs_y = -2}, - {.bitmap_index = 20626, .adv_w = 140, .box_w = 9, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 20671, .adv_w = 140, .box_w = 9, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 20721, .adv_w = 140, .box_w = 9, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 20766, .adv_w = 140, .box_w = 9, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 20807, .adv_w = 160, .box_w = 10, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 20847, .adv_w = 100, .box_w = 8, .box_h = 11, .ofs_x = -1, .ofs_y = -2}, - {.bitmap_index = 20891, .adv_w = 140, .box_w = 9, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 20941, .adv_w = 140, .box_w = 9, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 20991, .adv_w = 180, .box_w = 12, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 21039, .adv_w = 160, .box_w = 12, .box_h = 11, .ofs_x = -1, .ofs_y = -2}, - {.bitmap_index = 21105, .adv_w = 120, .box_w = 8, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 21149, .adv_w = 200, .box_w = 13, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 21214, .adv_w = 200, .box_w = 13, .box_h = 7, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 21260, .adv_w = 200, .box_w = 13, .box_h = 7, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 21306, .adv_w = 200, .box_w = 13, .box_h = 7, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 21352, .adv_w = 200, .box_w = 13, .box_h = 7, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 21398, .adv_w = 200, .box_w = 13, .box_h = 7, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 21444, .adv_w = 200, .box_w = 13, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 21503, .adv_w = 140, .box_w = 9, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 21553, .adv_w = 140, .box_w = 9, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 21603, .adv_w = 160, .box_w = 11, .box_h = 11, .ofs_x = -1, .ofs_y = -2}, - {.bitmap_index = 21664, .adv_w = 200, .box_w = 13, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 21716, .adv_w = 120, .box_w = 8, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 21760, .adv_w = 161, .box_w = 11, .box_h = 7, .ofs_x = 0, .ofs_y = 0} + {.bitmap_index = 19918, .adv_w = 140, .box_w = 9, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 19963, .adv_w = 140, .box_w = 7, .box_h = 10, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 19998, .adv_w = 140, .box_w = 10, .box_h = 10, .ofs_x = -1, .ofs_y = -1}, + {.bitmap_index = 20048, .adv_w = 100, .box_w = 6, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 20078, .adv_w = 100, .box_w = 6, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 20108, .adv_w = 140, .box_w = 9, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 20153, .adv_w = 140, .box_w = 9, .box_h = 3, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 20167, .adv_w = 180, .box_w = 12, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 20215, .adv_w = 200, .box_w = 13, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 20287, .adv_w = 180, .box_w = 13, .box_h = 11, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 20359, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 20409, .adv_w = 140, .box_w = 9, .box_h = 6, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 20436, .adv_w = 140, .box_w = 9, .box_h = 6, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 20463, .adv_w = 200, .box_w = 13, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 20515, .adv_w = 160, .box_w = 10, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 20555, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 20610, .adv_w = 160, .box_w = 11, .box_h = 11, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 20671, .adv_w = 140, .box_w = 9, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 20716, .adv_w = 140, .box_w = 9, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 20766, .adv_w = 140, .box_w = 9, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 20811, .adv_w = 140, .box_w = 9, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 20852, .adv_w = 160, .box_w = 10, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 20892, .adv_w = 100, .box_w = 8, .box_h = 11, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 20936, .adv_w = 140, .box_w = 9, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 20986, .adv_w = 140, .box_w = 9, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 21036, .adv_w = 180, .box_w = 12, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 21084, .adv_w = 160, .box_w = 12, .box_h = 11, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 21150, .adv_w = 120, .box_w = 8, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 21194, .adv_w = 200, .box_w = 13, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 21259, .adv_w = 200, .box_w = 13, .box_h = 7, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 21305, .adv_w = 200, .box_w = 13, .box_h = 7, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 21351, .adv_w = 200, .box_w = 13, .box_h = 7, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 21397, .adv_w = 200, .box_w = 13, .box_h = 7, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 21443, .adv_w = 200, .box_w = 13, .box_h = 7, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 21489, .adv_w = 200, .box_w = 13, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 21548, .adv_w = 140, .box_w = 9, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 21598, .adv_w = 140, .box_w = 9, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 21648, .adv_w = 160, .box_w = 11, .box_h = 11, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 21709, .adv_w = 200, .box_w = 13, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 21761, .adv_w = 120, .box_w = 8, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 21805, .adv_w = 161, .box_w = 11, .box_h = 7, .ofs_x = 0, .ofs_y = 0} }; /*--------------------- @@ -4543,29 +4552,29 @@ static const uint16_t unicode_list_1[] = { 0x6bb0, 0x6bf1, 0x6c25, 0x6c38, 0x6c8b, 0x6c91, 0x6c9b, 0x6cd8, 0x6d55, 0x6d79, 0x6de0, 0x6e2a, 0x6e31, 0x7009, 0x7018, 0x7076, 0x7086, 0x7198, 0x7206, 0x72ff, 0x7300, 0x7356, 0x746f, 0x7478, - 0x7485, 0x748b, 0x749c, 0x74a9, 0x75d4, 0x763e, 0x7644, 0x765b, - 0x7670, 0x768c, 0x773d, 0x7751, 0x77be, 0x788a, 0x78d1, 0x791d, - 0x795b, 0x79ca, 0x79d4, 0x7a2e, 0x7a3f, 0x7a76, 0x7c4b, 0x7c70, - 0x7c72, 0x7e0f, 0x7e1f, 0x7e21, 0x7e23, 0x7e2c, 0x7e2f, 0x7e3a, - 0x7ea1, 0x7ebe, 0x7f55, 0x7f83, 0x801c, 0x804d, 0x813a, 0x8144, - 0x81ff, 0x8307, 0x832c, 0x851f, 0x8652, 0x879c, 0x87b8, 0x87fb, - 0x8815, 0x88d1, 0x8914, 0x8916, 0x8918, 0x8922, 0x8ab6, 0x8af1, - 0x8af4, 0x8afe, 0x8b00, 0x8b0e, 0x8b0f, 0x8b11, 0x8b16, 0x8b25, - 0x8b47, 0x8b53, 0x8c75, 0x8c78, 0x8cd5, 0x8d7a, 0x8eb8, 0x8ebc, - 0x8ebe, 0x8ec4, 0x8ecd, 0x8ee3, 0x8f17, 0x8f20, 0x8f24, 0x8f29, - 0x8f2b, 0x8f2e, 0x8f49, 0x8f4d, 0x8f50, 0x8f51, 0x8f59, 0x8f6a, - 0x8f6f, 0x8fa3, 0x9038, 0x904d, 0x911d, 0x911f, 0x93ef, 0x9451, - 0x947e, 0x94ac, 0x94cf, 0x953d, 0x953e, 0x9544, 0x95b4, 0x95e0, - 0x96b2, 0x9743, 0x97c5, 0x97c6, 0x97c9, 0x97d4, 0x97e1, 0x981e, - 0x98c1, 0x99dc, 0x9d73, 0x9df6, 0x9e28, 0xef51, 0xef58, 0xef5b, - 0xef5c, 0xef5d, 0xef61, 0xef63, 0xef65, 0xef69, 0xef6c, 0xef71, - 0xef76, 0xef77, 0xef78, 0xef8e, 0xef93, 0xef98, 0xef9b, 0xef9c, - 0xef9d, 0xefa1, 0xefa2, 0xefa3, 0xefa4, 0xefb7, 0xefb8, 0xefbe, - 0xefc0, 0xefc1, 0xefc4, 0xefc7, 0xefc8, 0xefc9, 0xefcb, 0xefe3, - 0xefe5, 0xf014, 0xf015, 0xf017, 0xf019, 0xf030, 0xf037, 0xf03a, - 0xf043, 0xf06c, 0xf074, 0xf0ab, 0xf13b, 0xf190, 0xf191, 0xf192, - 0xf193, 0xf194, 0xf1d7, 0xf1e3, 0xf23d, 0xf254, 0xf4aa, 0xf712, - 0xf7f2 + 0x7485, 0x748b, 0x749c, 0x74a9, 0x75d4, 0x7628, 0x763e, 0x7644, + 0x765b, 0x7670, 0x768c, 0x773d, 0x7751, 0x77be, 0x788a, 0x78d1, + 0x791d, 0x795b, 0x79ca, 0x79d4, 0x7a2e, 0x7a3f, 0x7a76, 0x7c4b, + 0x7c70, 0x7c72, 0x7e0f, 0x7e1f, 0x7e21, 0x7e23, 0x7e2c, 0x7e2f, + 0x7e3a, 0x7ea1, 0x7ebe, 0x7f55, 0x7f83, 0x801c, 0x804d, 0x813a, + 0x8144, 0x81ff, 0x8307, 0x832c, 0x851f, 0x8652, 0x879c, 0x87b8, + 0x87fb, 0x8815, 0x88d1, 0x8914, 0x8916, 0x8918, 0x8922, 0x8ab6, + 0x8af1, 0x8af4, 0x8afe, 0x8b00, 0x8b0e, 0x8b0f, 0x8b11, 0x8b16, + 0x8b25, 0x8b47, 0x8b53, 0x8c75, 0x8c78, 0x8cd5, 0x8d7a, 0x8eb8, + 0x8ebc, 0x8ebe, 0x8ec4, 0x8ecd, 0x8ee3, 0x8f17, 0x8f20, 0x8f24, + 0x8f29, 0x8f2b, 0x8f2e, 0x8f49, 0x8f4d, 0x8f50, 0x8f51, 0x8f59, + 0x8f6a, 0x8f6f, 0x8fa3, 0x9038, 0x904d, 0x911d, 0x911f, 0x93ef, + 0x9451, 0x947e, 0x94ac, 0x94cf, 0x953d, 0x953e, 0x9544, 0x95b4, + 0x95e0, 0x96b2, 0x9743, 0x97c5, 0x97c6, 0x97c9, 0x97d4, 0x97e1, + 0x981e, 0x98c1, 0x99dc, 0x9d73, 0x9df6, 0x9e28, 0xef51, 0xef58, + 0xef5b, 0xef5c, 0xef5d, 0xef61, 0xef63, 0xef65, 0xef69, 0xef6c, + 0xef71, 0xef76, 0xef77, 0xef78, 0xef8e, 0xef93, 0xef98, 0xef9b, + 0xef9c, 0xef9d, 0xefa1, 0xefa2, 0xefa3, 0xefa4, 0xefb7, 0xefb8, + 0xefbe, 0xefc0, 0xefc1, 0xefc4, 0xefc7, 0xefc8, 0xefc9, 0xefcb, + 0xefe3, 0xefe5, 0xf014, 0xf015, 0xf017, 0xf019, 0xf030, 0xf037, + 0xf03a, 0xf043, 0xf06c, 0xf074, 0xf0ab, 0xf13b, 0xf190, 0xf191, + 0xf192, 0xf193, 0xf194, 0xf1d7, 0xf1e3, 0xf23d, 0xf254, 0xf4aa, + 0xf712, 0xf7f2 }; /*Collect the unicode lists and glyph_id offsets*/ @@ -4577,7 +4586,7 @@ static const lv_font_fmt_txt_cmap_t cmaps[] = }, { .range_start = 176, .range_length = 63475, .glyph_id_start = 96, - .unicode_list = unicode_list_1, .glyph_id_ofs_list = NULL, .list_length = 409, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY + .unicode_list = unicode_list_1, .glyph_id_ofs_list = NULL, .list_length = 410, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY } }; @@ -4652,7 +4661,7 @@ static const uint8_t kern_left_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0 + 0, 0 }; /*Map glyph_ids to kern right classes*/ @@ -4721,7 +4730,7 @@ static const uint8_t kern_right_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0 + 0, 0 }; /*Kern values between classes*/ diff --git a/lib/lvgl/lvgl/src/font/lv_font_montserrat_12.c b/lib/lvgl/lvgl/src/font/lv_font_montserrat_12.c index 48ef229e..7c3f4e4a 100644 --- a/lib/lvgl/lvgl/src/font/lv_font_montserrat_12.c +++ b/lib/lvgl/lvgl/src/font/lv_font_montserrat_12.c @@ -1,7 +1,7 @@ /******************************************************************************* * Size: 12 px * Bpp: 4 - * Opts: --bpp 4 --size 12 --no-compress --font Montserrat-Medium.ttf --range 32-127,176,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20351,20363,20391,20445,20449,20462,20463,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29366,29615,29616,29702,29983,29992,30005,30011,30028,30041,30340,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31181,31243,31354,31364,31454,31471,31526,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33719,33756,34255,34562,34892,34920,34987,35013,35201,35268,35270,35272,35282,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35831,35843,36133,36136,36229,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --format lvgl -o out/lv_font_montserrat_12.c + * Opts: --bpp 4 --size 12 --no-compress --font Montserrat-Medium.ttf --range 32-127,176,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20351,20363,20391,20445,20449,20462,20463,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29366,29615,29616,29702,29983,29992,30005,30011,30028,30041,30340,30424,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31181,31243,31354,31364,31454,31471,31526,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33719,33756,34255,34562,34892,34920,34987,35013,35201,35268,35270,35272,35282,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35831,35843,36133,36136,36229,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --format lvgl -o out/lv_font_montserrat_12.c ******************************************************************************/ #ifdef LV_LVGL_H_INCLUDE_SIMPLE @@ -3159,6 +3159,17 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0xd1, 0xc, 0x20, 0x0, 0x1b, 0xdc, 0xcf, 0x20, 0x0, 0x5a, 0x80, 0x6, 0x10, 0x3d, 0x91, + /* U+76D8 "盘" */ + 0x0, 0x0, 0x4b, 0x0, 0x0, 0x0, 0x0, 0x1c, + 0xee, 0xcc, 0xc6, 0x0, 0x0, 0xc, 0x7, 0x50, + 0x47, 0x0, 0x0, 0xc, 0x3, 0xb1, 0x47, 0x0, + 0x2d, 0xde, 0xcc, 0xcc, 0xde, 0xd3, 0x0, 0x67, + 0x1b, 0x60, 0x66, 0x0, 0x2, 0xd1, 0x0, 0x53, + 0xe3, 0x0, 0x0, 0xcc, 0xcc, 0xcc, 0xcc, 0x10, + 0x0, 0xe0, 0xb1, 0xc, 0xd, 0x10, 0x0, 0xe0, + 0xb1, 0xc, 0xd, 0x10, 0x6c, 0xec, 0xec, 0xce, + 0xce, 0xd7, + /* U+76EE "目" */ 0xf, 0xcc, 0xcc, 0xcc, 0xf1, 0xf, 0x0, 0x0, 0x0, 0xf0, 0xf, 0x99, 0x99, 0x99, 0xf0, 0xf, @@ -5355,178 +5366,179 @@ static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = { {.bitmap_index = 18619, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 18691, .adv_w = 192, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 18752, .adv_w = 192, .box_w = 10, .box_h = 11, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 18807, .adv_w = 192, .box_w = 10, .box_h = 10, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 18857, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 18807, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 18873, .adv_w = 192, .box_w = 10, .box_h = 10, .ofs_x = 1, .ofs_y = -1}, {.bitmap_index = 18923, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 18989, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 19055, .adv_w = 192, .box_w = 11, .box_h = 11, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 19116, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 19188, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 19260, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 19338, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 19404, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 19476, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 18989, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 19055, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 19121, .adv_w = 192, .box_w = 11, .box_h = 11, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 19182, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 19254, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 19326, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 19404, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 19470, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 19542, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 19608, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 19680, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 19746, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 19818, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 19890, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 19968, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 20040, .adv_w = 192, .box_w = 11, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 20106, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 20178, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 20250, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 20316, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 20388, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 20460, .adv_w = 192, .box_w = 13, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 20538, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 20610, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 20676, .adv_w = 192, .box_w = 11, .box_h = 10, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 20731, .adv_w = 192, .box_w = 12, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 20791, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 20857, .adv_w = 192, .box_w = 12, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 20917, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 20983, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 21061, .adv_w = 192, .box_w = 10, .box_h = 11, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 21116, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 21188, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 21254, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 21326, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 21398, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 21476, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 21548, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 21614, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 21686, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 21758, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 19608, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 19674, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 19746, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 19812, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 19884, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 19956, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 20034, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 20106, .adv_w = 192, .box_w = 11, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 20172, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 20244, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 20316, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 20382, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 20454, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 20526, .adv_w = 192, .box_w = 13, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 20604, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 20676, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 20742, .adv_w = 192, .box_w = 11, .box_h = 10, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 20797, .adv_w = 192, .box_w = 12, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 20857, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 20923, .adv_w = 192, .box_w = 12, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 20983, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 21049, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 21127, .adv_w = 192, .box_w = 10, .box_h = 11, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 21182, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 21254, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 21320, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 21392, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 21464, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 21542, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 21614, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 21680, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 21752, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 21824, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 21890, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 21962, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 22034, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 22112, .adv_w = 192, .box_w = 11, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 22184, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 22256, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 22322, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 22400, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 22472, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 22538, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 22610, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 22688, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 22760, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 22832, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 22904, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 22976, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 23048, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 23120, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 23192, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 21890, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 21956, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 22028, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 22100, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 22178, .adv_w = 192, .box_w = 11, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 22250, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 22322, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 22388, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 22466, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 22538, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 22604, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 22676, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 22754, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 22826, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 22898, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 22970, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 23042, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 23114, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 23186, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 23258, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 23324, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 23390, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 23462, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 23528, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 23606, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 23684, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 23756, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 23828, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 23900, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 23972, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 24044, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 24116, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 24182, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 24254, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 24326, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 24398, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 24470, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 24542, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 24614, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 24686, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 23390, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 23456, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 23528, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 23594, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 23672, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 23750, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 23822, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 23894, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 23966, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 24038, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 24110, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 24182, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 24248, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 24320, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 24392, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 24464, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 24536, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 24608, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 24680, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 24752, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 24818, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 24890, .adv_w = 192, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 24951, .adv_w = 192, .box_w = 12, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 25011, .adv_w = 192, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 25072, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 25144, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 25216, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 25288, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 25360, .adv_w = 192, .box_w = 10, .box_h = 12, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 25420, .adv_w = 192, .box_w = 10, .box_h = 12, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 25480, .adv_w = 192, .box_w = 10, .box_h = 12, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 25540, .adv_w = 192, .box_w = 11, .box_h = 12, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 24818, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 24884, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 24956, .adv_w = 192, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 25017, .adv_w = 192, .box_w = 12, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 25077, .adv_w = 192, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 25138, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 25210, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 25282, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 25354, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 25426, .adv_w = 192, .box_w = 10, .box_h = 12, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 25486, .adv_w = 192, .box_w = 10, .box_h = 12, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 25546, .adv_w = 192, .box_w = 10, .box_h = 12, .ofs_x = 1, .ofs_y = -2}, {.bitmap_index = 25606, .adv_w = 192, .box_w = 11, .box_h = 12, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 25672, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 25738, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 25816, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 25888, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 25960, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 26032, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 26104, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 26176, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 26242, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 26308, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 26380, .adv_w = 192, .box_w = 11, .box_h = 12, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 26446, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 26518, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 26590, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 26668, .adv_w = 192, .box_w = 12, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 26722, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 26788, .adv_w = 192, .box_w = 12, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 26842, .adv_w = 132, .box_w = 9, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 26883, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 26961, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 27039, .adv_w = 216, .box_w = 14, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 27116, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 27194, .adv_w = 216, .box_w = 14, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 27257, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 27335, .adv_w = 96, .box_w = 6, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 27365, .adv_w = 144, .box_w = 9, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 27410, .adv_w = 216, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 27501, .adv_w = 192, .box_w = 12, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 27555, .adv_w = 132, .box_w = 9, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 27614, .adv_w = 168, .box_w = 8, .box_h = 12, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 27662, .adv_w = 168, .box_w = 11, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 27734, .adv_w = 168, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 27795, .adv_w = 168, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 27856, .adv_w = 168, .box_w = 8, .box_h = 12, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 27904, .adv_w = 168, .box_w = 12, .box_h = 11, .ofs_x = -1, .ofs_y = -1}, - {.bitmap_index = 27970, .adv_w = 120, .box_w = 7, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 28009, .adv_w = 120, .box_w = 7, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 28048, .adv_w = 168, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 28109, .adv_w = 168, .box_w = 11, .box_h = 3, .ofs_x = 0, .ofs_y = 3}, - {.bitmap_index = 28126, .adv_w = 216, .box_w = 14, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 28189, .adv_w = 240, .box_w = 16, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 28293, .adv_w = 216, .box_w = 15, .box_h = 13, .ofs_x = -1, .ofs_y = -2}, - {.bitmap_index = 28391, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 28457, .adv_w = 168, .box_w = 11, .box_h = 7, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 28496, .adv_w = 168, .box_w = 11, .box_h = 7, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 28535, .adv_w = 240, .box_w = 16, .box_h = 10, .ofs_x = -1, .ofs_y = 0}, - {.bitmap_index = 28615, .adv_w = 192, .box_w = 12, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 28669, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 28747, .adv_w = 192, .box_w = 13, .box_h = 13, .ofs_x = -1, .ofs_y = -2}, - {.bitmap_index = 28832, .adv_w = 168, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 28893, .adv_w = 168, .box_w = 11, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 28965, .adv_w = 168, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 29026, .adv_w = 168, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 29087, .adv_w = 192, .box_w = 12, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 29141, .adv_w = 120, .box_w = 9, .box_h = 13, .ofs_x = -1, .ofs_y = -2}, - {.bitmap_index = 29200, .adv_w = 168, .box_w = 11, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 29272, .adv_w = 168, .box_w = 11, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 29344, .adv_w = 216, .box_w = 14, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 29407, .adv_w = 192, .box_w = 14, .box_h = 13, .ofs_x = -1, .ofs_y = -2}, - {.bitmap_index = 29498, .adv_w = 144, .box_w = 9, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 29557, .adv_w = 240, .box_w = 15, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 29647, .adv_w = 240, .box_w = 15, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 29715, .adv_w = 240, .box_w = 15, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 29783, .adv_w = 240, .box_w = 15, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 29851, .adv_w = 240, .box_w = 15, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 29919, .adv_w = 240, .box_w = 15, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 29987, .adv_w = 240, .box_w = 16, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 30075, .adv_w = 168, .box_w = 10, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 30140, .adv_w = 168, .box_w = 11, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 30212, .adv_w = 192, .box_w = 13, .box_h = 13, .ofs_x = -1, .ofs_y = -2}, - {.bitmap_index = 30297, .adv_w = 240, .box_w = 15, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 30365, .adv_w = 144, .box_w = 9, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 30424, .adv_w = 193, .box_w = 13, .box_h = 9, .ofs_x = 0, .ofs_y = 0} + {.bitmap_index = 25672, .adv_w = 192, .box_w = 11, .box_h = 12, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 25738, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 25804, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 25882, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 25954, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 26026, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 26098, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 26170, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 26242, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 26308, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 26374, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 26446, .adv_w = 192, .box_w = 11, .box_h = 12, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 26512, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 26584, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 26656, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 26734, .adv_w = 192, .box_w = 12, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 26788, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 26854, .adv_w = 192, .box_w = 12, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 26908, .adv_w = 132, .box_w = 9, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 26949, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 27027, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 27105, .adv_w = 216, .box_w = 14, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 27182, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 27260, .adv_w = 216, .box_w = 14, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 27323, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 27401, .adv_w = 96, .box_w = 6, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 27431, .adv_w = 144, .box_w = 9, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 27476, .adv_w = 216, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 27567, .adv_w = 192, .box_w = 12, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 27621, .adv_w = 132, .box_w = 9, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 27680, .adv_w = 168, .box_w = 8, .box_h = 12, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 27728, .adv_w = 168, .box_w = 11, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 27800, .adv_w = 168, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 27861, .adv_w = 168, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 27922, .adv_w = 168, .box_w = 8, .box_h = 12, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 27970, .adv_w = 168, .box_w = 12, .box_h = 11, .ofs_x = -1, .ofs_y = -1}, + {.bitmap_index = 28036, .adv_w = 120, .box_w = 7, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 28075, .adv_w = 120, .box_w = 7, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 28114, .adv_w = 168, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 28175, .adv_w = 168, .box_w = 11, .box_h = 3, .ofs_x = 0, .ofs_y = 3}, + {.bitmap_index = 28192, .adv_w = 216, .box_w = 14, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 28255, .adv_w = 240, .box_w = 16, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 28359, .adv_w = 216, .box_w = 15, .box_h = 13, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 28457, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 28523, .adv_w = 168, .box_w = 11, .box_h = 7, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 28562, .adv_w = 168, .box_w = 11, .box_h = 7, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 28601, .adv_w = 240, .box_w = 16, .box_h = 10, .ofs_x = -1, .ofs_y = 0}, + {.bitmap_index = 28681, .adv_w = 192, .box_w = 12, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 28735, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 28813, .adv_w = 192, .box_w = 13, .box_h = 13, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 28898, .adv_w = 168, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 28959, .adv_w = 168, .box_w = 11, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 29031, .adv_w = 168, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 29092, .adv_w = 168, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 29153, .adv_w = 192, .box_w = 12, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 29207, .adv_w = 120, .box_w = 9, .box_h = 13, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 29266, .adv_w = 168, .box_w = 11, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 29338, .adv_w = 168, .box_w = 11, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 29410, .adv_w = 216, .box_w = 14, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 29473, .adv_w = 192, .box_w = 14, .box_h = 13, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 29564, .adv_w = 144, .box_w = 9, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 29623, .adv_w = 240, .box_w = 15, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 29713, .adv_w = 240, .box_w = 15, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 29781, .adv_w = 240, .box_w = 15, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 29849, .adv_w = 240, .box_w = 15, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 29917, .adv_w = 240, .box_w = 15, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 29985, .adv_w = 240, .box_w = 15, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 30053, .adv_w = 240, .box_w = 16, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 30141, .adv_w = 168, .box_w = 10, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 30206, .adv_w = 168, .box_w = 11, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 30278, .adv_w = 192, .box_w = 13, .box_h = 13, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 30363, .adv_w = 240, .box_w = 15, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 30431, .adv_w = 144, .box_w = 9, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 30490, .adv_w = 193, .box_w = 13, .box_h = 9, .ofs_x = 0, .ofs_y = 0} }; /*--------------------- @@ -5563,29 +5575,29 @@ static const uint16_t unicode_list_1[] = { 0x6bb0, 0x6bf1, 0x6c25, 0x6c38, 0x6c8b, 0x6c91, 0x6c9b, 0x6cd8, 0x6d55, 0x6d79, 0x6de0, 0x6e2a, 0x6e31, 0x7009, 0x7018, 0x7076, 0x7086, 0x7198, 0x7206, 0x72ff, 0x7300, 0x7356, 0x746f, 0x7478, - 0x7485, 0x748b, 0x749c, 0x74a9, 0x75d4, 0x763e, 0x7644, 0x765b, - 0x7670, 0x768c, 0x773d, 0x7751, 0x77be, 0x788a, 0x78d1, 0x791d, - 0x795b, 0x79ca, 0x79d4, 0x7a2e, 0x7a3f, 0x7a76, 0x7c4b, 0x7c70, - 0x7c72, 0x7e0f, 0x7e1f, 0x7e21, 0x7e23, 0x7e2c, 0x7e2f, 0x7e3a, - 0x7ea1, 0x7ebe, 0x7f55, 0x7f83, 0x801c, 0x804d, 0x813a, 0x8144, - 0x81ff, 0x8307, 0x832c, 0x851f, 0x8652, 0x879c, 0x87b8, 0x87fb, - 0x8815, 0x88d1, 0x8914, 0x8916, 0x8918, 0x8922, 0x8ab6, 0x8af1, - 0x8af4, 0x8afe, 0x8b00, 0x8b0e, 0x8b0f, 0x8b11, 0x8b16, 0x8b25, - 0x8b47, 0x8b53, 0x8c75, 0x8c78, 0x8cd5, 0x8d7a, 0x8eb8, 0x8ebc, - 0x8ebe, 0x8ec4, 0x8ecd, 0x8ee3, 0x8f17, 0x8f20, 0x8f24, 0x8f29, - 0x8f2b, 0x8f2e, 0x8f49, 0x8f4d, 0x8f50, 0x8f51, 0x8f59, 0x8f6a, - 0x8f6f, 0x8fa3, 0x9038, 0x904d, 0x911d, 0x911f, 0x93ef, 0x9451, - 0x947e, 0x94ac, 0x94cf, 0x953d, 0x953e, 0x9544, 0x95b4, 0x95e0, - 0x96b2, 0x9743, 0x97c5, 0x97c6, 0x97c9, 0x97d4, 0x97e1, 0x981e, - 0x98c1, 0x99dc, 0x9d73, 0x9df6, 0x9e28, 0xef51, 0xef58, 0xef5b, - 0xef5c, 0xef5d, 0xef61, 0xef63, 0xef65, 0xef69, 0xef6c, 0xef71, - 0xef76, 0xef77, 0xef78, 0xef8e, 0xef93, 0xef98, 0xef9b, 0xef9c, - 0xef9d, 0xefa1, 0xefa2, 0xefa3, 0xefa4, 0xefb7, 0xefb8, 0xefbe, - 0xefc0, 0xefc1, 0xefc4, 0xefc7, 0xefc8, 0xefc9, 0xefcb, 0xefe3, - 0xefe5, 0xf014, 0xf015, 0xf017, 0xf019, 0xf030, 0xf037, 0xf03a, - 0xf043, 0xf06c, 0xf074, 0xf0ab, 0xf13b, 0xf190, 0xf191, 0xf192, - 0xf193, 0xf194, 0xf1d7, 0xf1e3, 0xf23d, 0xf254, 0xf4aa, 0xf712, - 0xf7f2 + 0x7485, 0x748b, 0x749c, 0x74a9, 0x75d4, 0x7628, 0x763e, 0x7644, + 0x765b, 0x7670, 0x768c, 0x773d, 0x7751, 0x77be, 0x788a, 0x78d1, + 0x791d, 0x795b, 0x79ca, 0x79d4, 0x7a2e, 0x7a3f, 0x7a76, 0x7c4b, + 0x7c70, 0x7c72, 0x7e0f, 0x7e1f, 0x7e21, 0x7e23, 0x7e2c, 0x7e2f, + 0x7e3a, 0x7ea1, 0x7ebe, 0x7f55, 0x7f83, 0x801c, 0x804d, 0x813a, + 0x8144, 0x81ff, 0x8307, 0x832c, 0x851f, 0x8652, 0x879c, 0x87b8, + 0x87fb, 0x8815, 0x88d1, 0x8914, 0x8916, 0x8918, 0x8922, 0x8ab6, + 0x8af1, 0x8af4, 0x8afe, 0x8b00, 0x8b0e, 0x8b0f, 0x8b11, 0x8b16, + 0x8b25, 0x8b47, 0x8b53, 0x8c75, 0x8c78, 0x8cd5, 0x8d7a, 0x8eb8, + 0x8ebc, 0x8ebe, 0x8ec4, 0x8ecd, 0x8ee3, 0x8f17, 0x8f20, 0x8f24, + 0x8f29, 0x8f2b, 0x8f2e, 0x8f49, 0x8f4d, 0x8f50, 0x8f51, 0x8f59, + 0x8f6a, 0x8f6f, 0x8fa3, 0x9038, 0x904d, 0x911d, 0x911f, 0x93ef, + 0x9451, 0x947e, 0x94ac, 0x94cf, 0x953d, 0x953e, 0x9544, 0x95b4, + 0x95e0, 0x96b2, 0x9743, 0x97c5, 0x97c6, 0x97c9, 0x97d4, 0x97e1, + 0x981e, 0x98c1, 0x99dc, 0x9d73, 0x9df6, 0x9e28, 0xef51, 0xef58, + 0xef5b, 0xef5c, 0xef5d, 0xef61, 0xef63, 0xef65, 0xef69, 0xef6c, + 0xef71, 0xef76, 0xef77, 0xef78, 0xef8e, 0xef93, 0xef98, 0xef9b, + 0xef9c, 0xef9d, 0xefa1, 0xefa2, 0xefa3, 0xefa4, 0xefb7, 0xefb8, + 0xefbe, 0xefc0, 0xefc1, 0xefc4, 0xefc7, 0xefc8, 0xefc9, 0xefcb, + 0xefe3, 0xefe5, 0xf014, 0xf015, 0xf017, 0xf019, 0xf030, 0xf037, + 0xf03a, 0xf043, 0xf06c, 0xf074, 0xf0ab, 0xf13b, 0xf190, 0xf191, + 0xf192, 0xf193, 0xf194, 0xf1d7, 0xf1e3, 0xf23d, 0xf254, 0xf4aa, + 0xf712, 0xf7f2 }; /*Collect the unicode lists and glyph_id offsets*/ @@ -5597,7 +5609,7 @@ static const lv_font_fmt_txt_cmap_t cmaps[] = }, { .range_start = 176, .range_length = 63475, .glyph_id_start = 96, - .unicode_list = unicode_list_1, .glyph_id_ofs_list = NULL, .list_length = 409, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY + .unicode_list = unicode_list_1, .glyph_id_ofs_list = NULL, .list_length = 410, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY } }; @@ -5672,7 +5684,7 @@ static const uint8_t kern_left_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0 + 0, 0 }; /*Map glyph_ids to kern right classes*/ @@ -5741,7 +5753,7 @@ static const uint8_t kern_right_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0 + 0, 0 }; /*Kern values between classes*/ diff --git a/lib/lvgl/lvgl/src/font/lv_font_montserrat_14.c b/lib/lvgl/lvgl/src/font/lv_font_montserrat_14.c index ac3b9ba8..68a7c3db 100644 --- a/lib/lvgl/lvgl/src/font/lv_font_montserrat_14.c +++ b/lib/lvgl/lvgl/src/font/lv_font_montserrat_14.c @@ -1,7 +1,7 @@ /******************************************************************************* * Size: 14 px * Bpp: 4 - * Opts: --bpp 4 --size 14 --no-compress --font Montserrat-Medium.ttf --range 32-127,176,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20351,20363,20391,20445,20449,20462,20463,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29366,29615,29616,29702,29983,29992,30005,30011,30028,30041,30340,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31181,31243,31354,31364,31454,31471,31526,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33719,33756,34255,34562,34892,34920,34987,35013,35201,35268,35270,35272,35282,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35831,35843,36133,36136,36229,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --format lvgl -o out/lv_font_montserrat_14.c + * Opts: --bpp 4 --size 14 --no-compress --font Montserrat-Medium.ttf --range 32-127,176,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20351,20363,20391,20445,20449,20462,20463,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29366,29615,29616,29702,29983,29992,30005,30011,30028,30041,30340,30424,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31181,31243,31354,31364,31454,31471,31526,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33719,33756,34255,34562,34892,34920,34987,35013,35201,35268,35270,35272,35282,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35831,35843,36133,36136,36229,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --format lvgl -o out/lv_font_montserrat_14.c ******************************************************************************/ #ifdef LV_LVGL_H_INCLUDE_SIMPLE @@ -3943,6 +3943,20 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0xa2, 0x0, 0xa0, 0x2, 0xdc, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+76D8 "盘" */ + 0x0, 0x0, 0x1, 0x30, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x8, 0xb0, 0x0, 0x0, 0x0, 0x0, 0xc, + 0xff, 0xff, 0xff, 0xf2, 0x0, 0x0, 0xb, 0x60, + 0x95, 0x0, 0xe1, 0x0, 0x0, 0xb, 0x60, 0x3b, + 0x10, 0xe1, 0x0, 0xf, 0xef, 0xfe, 0xee, 0xee, + 0xfe, 0xf2, 0x0, 0xf, 0x23, 0x81, 0x0, 0xf0, + 0x0, 0x0, 0x8c, 0x1, 0x8d, 0x17, 0xf0, 0x0, + 0x0, 0xa2, 0x0, 0x0, 0xa, 0x50, 0x0, 0x0, + 0xee, 0xef, 0xee, 0xfe, 0xee, 0x0, 0x0, 0xd3, + 0xe, 0x0, 0xe0, 0x3e, 0x0, 0x0, 0xd3, 0xe, + 0x0, 0xe0, 0x3e, 0x0, 0x8e, 0xfe, 0xef, 0xee, + 0xfe, 0xef, 0xe8, + /* U+76EE "目" */ 0xee, 0xee, 0xee, 0xee, 0xf5, 0xe3, 0x0, 0x0, 0x0, 0xe4, 0xd3, 0x0, 0x0, 0x0, 0xe4, 0xdb, @@ -6670,178 +6684,179 @@ static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = { {.bitmap_index = 24408, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 24499, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 1, .ofs_y = -1}, {.bitmap_index = 24584, .adv_w = 224, .box_w = 12, .box_h = 14, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 24668, .adv_w = 224, .box_w = 10, .box_h = 12, .ofs_x = 2, .ofs_y = -1}, - {.bitmap_index = 24728, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 24668, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 24759, .adv_w = 224, .box_w = 10, .box_h = 12, .ofs_x = 2, .ofs_y = -1}, {.bitmap_index = 24819, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 24910, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 25001, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 25086, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 25184, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 25282, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 25373, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 25458, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 25549, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 25633, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 25724, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 25822, .adv_w = 224, .box_w = 12, .box_h = 13, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 25900, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 25998, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 26089, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 26187, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 26285, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 26370, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 26455, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 26553, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 26637, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 26735, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 26826, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 26924, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 27022, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 27106, .adv_w = 224, .box_w = 13, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 27184, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 27268, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 27352, .adv_w = 224, .box_w = 13, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 27430, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 27514, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 27605, .adv_w = 224, .box_w = 10, .box_h = 13, .ofs_x = 2, .ofs_y = -1}, - {.bitmap_index = 27670, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 27761, .adv_w = 224, .box_w = 13, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 27839, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 27937, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 28028, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 28126, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 28217, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 28315, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 28406, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 28497, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 28595, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 28693, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 28791, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 28889, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 28987, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 29078, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 29169, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 29253, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 29351, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 29449, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 29533, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 29631, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 29729, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 29827, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 29925, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 30016, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 30107, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 30205, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 30303, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 30388, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 24910, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 25001, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 25092, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 25177, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 25275, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 25373, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 25464, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 25549, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 25640, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 25724, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 25815, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 25913, .adv_w = 224, .box_w = 12, .box_h = 13, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 25991, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 26089, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 26180, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 26278, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 26376, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 26461, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 26546, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 26644, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 26728, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 26826, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 26917, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 27015, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 27113, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 27197, .adv_w = 224, .box_w = 13, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 27275, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 27359, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 27443, .adv_w = 224, .box_w = 13, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 27521, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 27605, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 27696, .adv_w = 224, .box_w = 10, .box_h = 13, .ofs_x = 2, .ofs_y = -1}, + {.bitmap_index = 27761, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 27852, .adv_w = 224, .box_w = 13, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 27930, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 28028, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 28119, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 28217, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 28308, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 28406, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 28497, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 28588, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 28686, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 28784, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 28882, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 28980, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 29078, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 29169, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 29260, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 29344, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 29442, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 29540, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 29624, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 29722, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 29820, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 29918, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 30016, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 30107, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 30198, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 30296, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 30394, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 30479, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 30570, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 30668, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 30766, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 30857, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 30955, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 31053, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 31151, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 30570, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 30661, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 30759, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 30857, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 30948, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 31046, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 31144, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 31242, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 31333, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 31431, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 31522, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 31607, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 31698, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 31796, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 31894, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 31985, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 32083, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 32174, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 32272, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 32363, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 31333, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 31424, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 31522, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 31613, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 31698, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 31789, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 31887, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 31985, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 32076, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 32174, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 32265, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 32363, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 32454, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 32545, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 32630, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 32715, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 32799, .adv_w = 224, .box_w = 13, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 32877, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 32545, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 32636, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 32721, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 32806, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 32890, .adv_w = 224, .box_w = 13, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 32968, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 33059, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 33157, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 33248, .adv_w = 224, .box_w = 12, .box_h = 14, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 33332, .adv_w = 224, .box_w = 12, .box_h = 14, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 33416, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 33507, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 33598, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 33696, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 33787, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 33885, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 33976, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 34074, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 34165, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 34263, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 34361, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 34452, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 34543, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 34641, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 34726, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 34817, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 34915, .adv_w = 224, .box_w = 15, .box_h = 15, .ofs_x = -1, .ofs_y = -2}, - {.bitmap_index = 35028, .adv_w = 224, .box_w = 14, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 35105, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 35196, .adv_w = 224, .box_w = 14, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 35273, .adv_w = 154, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 35328, .adv_w = 224, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 35433, .adv_w = 224, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 35538, .adv_w = 252, .box_w = 16, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 35642, .adv_w = 224, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 35747, .adv_w = 252, .box_w = 16, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 35835, .adv_w = 224, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 35940, .adv_w = 112, .box_w = 7, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 35982, .adv_w = 168, .box_w = 11, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 36048, .adv_w = 252, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 36160, .adv_w = 224, .box_w = 14, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 36237, .adv_w = 154, .box_w = 10, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 36312, .adv_w = 196, .box_w = 10, .box_h = 14, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 36382, .adv_w = 196, .box_w = 13, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 36480, .adv_w = 196, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 36565, .adv_w = 196, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 36650, .adv_w = 196, .box_w = 10, .box_h = 14, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 36720, .adv_w = 196, .box_w = 14, .box_h = 13, .ofs_x = -1, .ofs_y = -1}, - {.bitmap_index = 36811, .adv_w = 140, .box_w = 9, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 36870, .adv_w = 140, .box_w = 9, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 36929, .adv_w = 196, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 37014, .adv_w = 196, .box_w = 13, .box_h = 4, .ofs_x = 0, .ofs_y = 3}, - {.bitmap_index = 37040, .adv_w = 252, .box_w = 16, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 37128, .adv_w = 280, .box_w = 18, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 37263, .adv_w = 252, .box_w = 17, .box_h = 15, .ofs_x = -1, .ofs_y = -2}, - {.bitmap_index = 37391, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 37482, .adv_w = 196, .box_w = 13, .box_h = 8, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 37534, .adv_w = 196, .box_w = 13, .box_h = 8, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 37586, .adv_w = 280, .box_w = 18, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 37685, .adv_w = 224, .box_w = 14, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 37762, .adv_w = 224, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 37867, .adv_w = 224, .box_w = 15, .box_h = 15, .ofs_x = -1, .ofs_y = -2}, - {.bitmap_index = 37980, .adv_w = 196, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 38065, .adv_w = 196, .box_w = 13, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 38163, .adv_w = 196, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 38248, .adv_w = 196, .box_w = 13, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 38326, .adv_w = 224, .box_w = 14, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 38403, .adv_w = 140, .box_w = 10, .box_h = 15, .ofs_x = -1, .ofs_y = -2}, - {.bitmap_index = 38478, .adv_w = 196, .box_w = 13, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 38576, .adv_w = 196, .box_w = 13, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 38674, .adv_w = 252, .box_w = 16, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 38762, .adv_w = 224, .box_w = 16, .box_h = 15, .ofs_x = -1, .ofs_y = -2}, - {.bitmap_index = 38882, .adv_w = 168, .box_w = 11, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 38965, .adv_w = 280, .box_w = 18, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 39082, .adv_w = 280, .box_w = 18, .box_h = 10, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 39172, .adv_w = 280, .box_w = 18, .box_h = 10, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 39262, .adv_w = 280, .box_w = 18, .box_h = 10, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 39352, .adv_w = 280, .box_w = 18, .box_h = 10, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 39442, .adv_w = 280, .box_w = 18, .box_h = 10, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 39532, .adv_w = 280, .box_w = 18, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 39640, .adv_w = 196, .box_w = 12, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 39730, .adv_w = 196, .box_w = 13, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 39828, .adv_w = 224, .box_w = 15, .box_h = 15, .ofs_x = -1, .ofs_y = -2}, - {.bitmap_index = 39941, .adv_w = 280, .box_w = 18, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 40040, .adv_w = 168, .box_w = 11, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 40123, .adv_w = 225, .box_w = 15, .box_h = 10, .ofs_x = 0, .ofs_y = 0} + {.bitmap_index = 33059, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 33150, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 33248, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 33339, .adv_w = 224, .box_w = 12, .box_h = 14, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 33423, .adv_w = 224, .box_w = 12, .box_h = 14, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 33507, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 33598, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 33689, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 33787, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 33878, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 33976, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 34067, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 34165, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 34256, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 34354, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 34452, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 34543, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 34634, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 34732, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 34817, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 34908, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 35006, .adv_w = 224, .box_w = 15, .box_h = 15, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 35119, .adv_w = 224, .box_w = 14, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 35196, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 35287, .adv_w = 224, .box_w = 14, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 35364, .adv_w = 154, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 35419, .adv_w = 224, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 35524, .adv_w = 224, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 35629, .adv_w = 252, .box_w = 16, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 35733, .adv_w = 224, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 35838, .adv_w = 252, .box_w = 16, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 35926, .adv_w = 224, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 36031, .adv_w = 112, .box_w = 7, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 36073, .adv_w = 168, .box_w = 11, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 36139, .adv_w = 252, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 36251, .adv_w = 224, .box_w = 14, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 36328, .adv_w = 154, .box_w = 10, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 36403, .adv_w = 196, .box_w = 10, .box_h = 14, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 36473, .adv_w = 196, .box_w = 13, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 36571, .adv_w = 196, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 36656, .adv_w = 196, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 36741, .adv_w = 196, .box_w = 10, .box_h = 14, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 36811, .adv_w = 196, .box_w = 14, .box_h = 13, .ofs_x = -1, .ofs_y = -1}, + {.bitmap_index = 36902, .adv_w = 140, .box_w = 9, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 36961, .adv_w = 140, .box_w = 9, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 37020, .adv_w = 196, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 37105, .adv_w = 196, .box_w = 13, .box_h = 4, .ofs_x = 0, .ofs_y = 3}, + {.bitmap_index = 37131, .adv_w = 252, .box_w = 16, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 37219, .adv_w = 280, .box_w = 18, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 37354, .adv_w = 252, .box_w = 17, .box_h = 15, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 37482, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 37573, .adv_w = 196, .box_w = 13, .box_h = 8, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 37625, .adv_w = 196, .box_w = 13, .box_h = 8, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 37677, .adv_w = 280, .box_w = 18, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 37776, .adv_w = 224, .box_w = 14, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 37853, .adv_w = 224, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 37958, .adv_w = 224, .box_w = 15, .box_h = 15, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 38071, .adv_w = 196, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 38156, .adv_w = 196, .box_w = 13, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 38254, .adv_w = 196, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 38339, .adv_w = 196, .box_w = 13, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 38417, .adv_w = 224, .box_w = 14, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 38494, .adv_w = 140, .box_w = 10, .box_h = 15, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 38569, .adv_w = 196, .box_w = 13, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 38667, .adv_w = 196, .box_w = 13, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 38765, .adv_w = 252, .box_w = 16, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 38853, .adv_w = 224, .box_w = 16, .box_h = 15, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 38973, .adv_w = 168, .box_w = 11, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 39056, .adv_w = 280, .box_w = 18, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 39173, .adv_w = 280, .box_w = 18, .box_h = 10, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 39263, .adv_w = 280, .box_w = 18, .box_h = 10, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 39353, .adv_w = 280, .box_w = 18, .box_h = 10, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 39443, .adv_w = 280, .box_w = 18, .box_h = 10, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 39533, .adv_w = 280, .box_w = 18, .box_h = 10, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 39623, .adv_w = 280, .box_w = 18, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 39731, .adv_w = 196, .box_w = 12, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 39821, .adv_w = 196, .box_w = 13, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 39919, .adv_w = 224, .box_w = 15, .box_h = 15, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 40032, .adv_w = 280, .box_w = 18, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 40131, .adv_w = 168, .box_w = 11, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 40214, .adv_w = 225, .box_w = 15, .box_h = 10, .ofs_x = 0, .ofs_y = 0} }; /*--------------------- @@ -6878,29 +6893,29 @@ static const uint16_t unicode_list_1[] = { 0x6bb0, 0x6bf1, 0x6c25, 0x6c38, 0x6c8b, 0x6c91, 0x6c9b, 0x6cd8, 0x6d55, 0x6d79, 0x6de0, 0x6e2a, 0x6e31, 0x7009, 0x7018, 0x7076, 0x7086, 0x7198, 0x7206, 0x72ff, 0x7300, 0x7356, 0x746f, 0x7478, - 0x7485, 0x748b, 0x749c, 0x74a9, 0x75d4, 0x763e, 0x7644, 0x765b, - 0x7670, 0x768c, 0x773d, 0x7751, 0x77be, 0x788a, 0x78d1, 0x791d, - 0x795b, 0x79ca, 0x79d4, 0x7a2e, 0x7a3f, 0x7a76, 0x7c4b, 0x7c70, - 0x7c72, 0x7e0f, 0x7e1f, 0x7e21, 0x7e23, 0x7e2c, 0x7e2f, 0x7e3a, - 0x7ea1, 0x7ebe, 0x7f55, 0x7f83, 0x801c, 0x804d, 0x813a, 0x8144, - 0x81ff, 0x8307, 0x832c, 0x851f, 0x8652, 0x879c, 0x87b8, 0x87fb, - 0x8815, 0x88d1, 0x8914, 0x8916, 0x8918, 0x8922, 0x8ab6, 0x8af1, - 0x8af4, 0x8afe, 0x8b00, 0x8b0e, 0x8b0f, 0x8b11, 0x8b16, 0x8b25, - 0x8b47, 0x8b53, 0x8c75, 0x8c78, 0x8cd5, 0x8d7a, 0x8eb8, 0x8ebc, - 0x8ebe, 0x8ec4, 0x8ecd, 0x8ee3, 0x8f17, 0x8f20, 0x8f24, 0x8f29, - 0x8f2b, 0x8f2e, 0x8f49, 0x8f4d, 0x8f50, 0x8f51, 0x8f59, 0x8f6a, - 0x8f6f, 0x8fa3, 0x9038, 0x904d, 0x911d, 0x911f, 0x93ef, 0x9451, - 0x947e, 0x94ac, 0x94cf, 0x953d, 0x953e, 0x9544, 0x95b4, 0x95e0, - 0x96b2, 0x9743, 0x97c5, 0x97c6, 0x97c9, 0x97d4, 0x97e1, 0x981e, - 0x98c1, 0x99dc, 0x9d73, 0x9df6, 0x9e28, 0xef51, 0xef58, 0xef5b, - 0xef5c, 0xef5d, 0xef61, 0xef63, 0xef65, 0xef69, 0xef6c, 0xef71, - 0xef76, 0xef77, 0xef78, 0xef8e, 0xef93, 0xef98, 0xef9b, 0xef9c, - 0xef9d, 0xefa1, 0xefa2, 0xefa3, 0xefa4, 0xefb7, 0xefb8, 0xefbe, - 0xefc0, 0xefc1, 0xefc4, 0xefc7, 0xefc8, 0xefc9, 0xefcb, 0xefe3, - 0xefe5, 0xf014, 0xf015, 0xf017, 0xf019, 0xf030, 0xf037, 0xf03a, - 0xf043, 0xf06c, 0xf074, 0xf0ab, 0xf13b, 0xf190, 0xf191, 0xf192, - 0xf193, 0xf194, 0xf1d7, 0xf1e3, 0xf23d, 0xf254, 0xf4aa, 0xf712, - 0xf7f2 + 0x7485, 0x748b, 0x749c, 0x74a9, 0x75d4, 0x7628, 0x763e, 0x7644, + 0x765b, 0x7670, 0x768c, 0x773d, 0x7751, 0x77be, 0x788a, 0x78d1, + 0x791d, 0x795b, 0x79ca, 0x79d4, 0x7a2e, 0x7a3f, 0x7a76, 0x7c4b, + 0x7c70, 0x7c72, 0x7e0f, 0x7e1f, 0x7e21, 0x7e23, 0x7e2c, 0x7e2f, + 0x7e3a, 0x7ea1, 0x7ebe, 0x7f55, 0x7f83, 0x801c, 0x804d, 0x813a, + 0x8144, 0x81ff, 0x8307, 0x832c, 0x851f, 0x8652, 0x879c, 0x87b8, + 0x87fb, 0x8815, 0x88d1, 0x8914, 0x8916, 0x8918, 0x8922, 0x8ab6, + 0x8af1, 0x8af4, 0x8afe, 0x8b00, 0x8b0e, 0x8b0f, 0x8b11, 0x8b16, + 0x8b25, 0x8b47, 0x8b53, 0x8c75, 0x8c78, 0x8cd5, 0x8d7a, 0x8eb8, + 0x8ebc, 0x8ebe, 0x8ec4, 0x8ecd, 0x8ee3, 0x8f17, 0x8f20, 0x8f24, + 0x8f29, 0x8f2b, 0x8f2e, 0x8f49, 0x8f4d, 0x8f50, 0x8f51, 0x8f59, + 0x8f6a, 0x8f6f, 0x8fa3, 0x9038, 0x904d, 0x911d, 0x911f, 0x93ef, + 0x9451, 0x947e, 0x94ac, 0x94cf, 0x953d, 0x953e, 0x9544, 0x95b4, + 0x95e0, 0x96b2, 0x9743, 0x97c5, 0x97c6, 0x97c9, 0x97d4, 0x97e1, + 0x981e, 0x98c1, 0x99dc, 0x9d73, 0x9df6, 0x9e28, 0xef51, 0xef58, + 0xef5b, 0xef5c, 0xef5d, 0xef61, 0xef63, 0xef65, 0xef69, 0xef6c, + 0xef71, 0xef76, 0xef77, 0xef78, 0xef8e, 0xef93, 0xef98, 0xef9b, + 0xef9c, 0xef9d, 0xefa1, 0xefa2, 0xefa3, 0xefa4, 0xefb7, 0xefb8, + 0xefbe, 0xefc0, 0xefc1, 0xefc4, 0xefc7, 0xefc8, 0xefc9, 0xefcb, + 0xefe3, 0xefe5, 0xf014, 0xf015, 0xf017, 0xf019, 0xf030, 0xf037, + 0xf03a, 0xf043, 0xf06c, 0xf074, 0xf0ab, 0xf13b, 0xf190, 0xf191, + 0xf192, 0xf193, 0xf194, 0xf1d7, 0xf1e3, 0xf23d, 0xf254, 0xf4aa, + 0xf712, 0xf7f2 }; /*Collect the unicode lists and glyph_id offsets*/ @@ -6912,7 +6927,7 @@ static const lv_font_fmt_txt_cmap_t cmaps[] = }, { .range_start = 176, .range_length = 63475, .glyph_id_start = 96, - .unicode_list = unicode_list_1, .glyph_id_ofs_list = NULL, .list_length = 409, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY + .unicode_list = unicode_list_1, .glyph_id_ofs_list = NULL, .list_length = 410, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY } }; @@ -6987,7 +7002,7 @@ static const uint8_t kern_left_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0 + 0, 0 }; /*Map glyph_ids to kern right classes*/ @@ -7056,7 +7071,7 @@ static const uint8_t kern_right_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0 + 0, 0 }; /*Kern values between classes*/ diff --git a/lib/lvgl/lvgl/src/font/lv_font_montserrat_16.c b/lib/lvgl/lvgl/src/font/lv_font_montserrat_16.c index d9f37002..9e0c7150 100644 --- a/lib/lvgl/lvgl/src/font/lv_font_montserrat_16.c +++ b/lib/lvgl/lvgl/src/font/lv_font_montserrat_16.c @@ -1,7 +1,7 @@ /******************************************************************************* * Size: 16 px * Bpp: 4 - * Opts: --bpp 4 --size 16 --no-compress --font Montserrat-Medium.ttf --range 32-127,176,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20351,20363,20391,20445,20449,20462,20463,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29366,29615,29616,29702,29983,29992,30005,30011,30028,30041,30340,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31181,31243,31354,31364,31454,31471,31526,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33719,33756,34255,34562,34892,34920,34987,35013,35201,35268,35270,35272,35282,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35831,35843,36133,36136,36229,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --format lvgl -o out/lv_font_montserrat_16.c + * Opts: --bpp 4 --size 16 --no-compress --font Montserrat-Medium.ttf --range 32-127,176,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20351,20363,20391,20445,20449,20462,20463,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29366,29615,29616,29702,29983,29992,30005,30011,30028,30041,30340,30424,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31181,31243,31354,31364,31454,31471,31526,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33719,33756,34255,34562,34892,34920,34987,35013,35201,35268,35270,35272,35282,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35831,35843,36133,36136,36229,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --format lvgl -o out/lv_font_montserrat_16.c ******************************************************************************/ #ifdef LV_LVGL_H_INCLUDE_SIMPLE @@ -4785,6 +4785,23 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0xa8, 0x5e, 0x0, 0xd, 0x40, 0x4, 0xce, 0xd2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x63, 0x0, + /* U+76D8 "盘" */ + 0x0, 0x0, 0x0, 0x12, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1, 0xcc, 0xee, 0xcc, 0xcc, 0xc0, 0x0, + 0x0, 0x0, 0xf7, 0x47, 0x54, 0x46, 0xf0, 0x0, + 0x0, 0x0, 0xf4, 0xa, 0xd2, 0x3, 0xe0, 0x0, + 0x2, 0x22, 0xf5, 0x11, 0x92, 0x14, 0xe1, 0x20, + 0xe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, + 0x0, 0x3, 0xf0, 0x15, 0x0, 0x4, 0xd0, 0x0, + 0x0, 0xb, 0xb0, 0x3e, 0xc1, 0x5, 0xd0, 0x0, + 0x0, 0x8f, 0x30, 0x0, 0x70, 0xcf, 0xa0, 0x0, + 0x0, 0x29, 0x44, 0x44, 0x44, 0x87, 0x43, 0x0, + 0x0, 0x6f, 0xbb, 0xfb, 0xbf, 0xcb, 0xdd, 0x0, + 0x0, 0x5e, 0x0, 0xf1, 0xe, 0x20, 0x7c, 0x0, + 0x1, 0x6e, 0x11, 0xf2, 0x1e, 0x31, 0x7c, 0x10, + 0x4f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, + /* U+76EE "目" */ 0x5f, 0xff, 0xff, 0xff, 0xff, 0xf6, 0x5f, 0x0, 0x0, 0x0, 0x0, 0xf6, 0x5f, 0x0, 0x0, 0x0, @@ -7967,178 +7984,179 @@ static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = { {.bitmap_index = 31640, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -3}, {.bitmap_index = 31768, .adv_w = 256, .box_w = 14, .box_h = 15, .ofs_x = 1, .ofs_y = -2}, {.bitmap_index = 31873, .adv_w = 256, .box_w = 14, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 31985, .adv_w = 256, .box_w = 12, .box_h = 13, .ofs_x = 2, .ofs_y = -1}, - {.bitmap_index = 32063, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 32175, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 32295, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 32407, .adv_w = 256, .box_w = 14, .box_h = 14, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 32505, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 31985, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 32105, .adv_w = 256, .box_w = 12, .box_h = 13, .ofs_x = 2, .ofs_y = -1}, + {.bitmap_index = 32183, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 32295, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 32415, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 32527, .adv_w = 256, .box_w = 14, .box_h = 14, .ofs_x = 1, .ofs_y = -2}, {.bitmap_index = 32625, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 32745, .adv_w = 256, .box_w = 15, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 32865, .adv_w = 256, .box_w = 14, .box_h = 15, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 32970, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 33098, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 32745, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 32865, .adv_w = 256, .box_w = 15, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 32985, .adv_w = 256, .box_w = 14, .box_h = 15, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 33090, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 33218, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 33338, .adv_w = 256, .box_w = 15, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 33458, .adv_w = 256, .box_w = 14, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 33570, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 33698, .adv_w = 256, .box_w = 15, .box_h = 16, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 33818, .adv_w = 256, .box_w = 16, .box_h = 17, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 33954, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 34074, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 34187, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 34300, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 34420, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 34532, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 34660, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 34780, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 34908, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 35036, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 35156, .adv_w = 256, .box_w = 15, .box_h = 14, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 35261, .adv_w = 256, .box_w = 15, .box_h = 13, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 35359, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 33338, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 33458, .adv_w = 256, .box_w = 15, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 33578, .adv_w = 256, .box_w = 14, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 33690, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 33818, .adv_w = 256, .box_w = 15, .box_h = 16, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 33938, .adv_w = 256, .box_w = 16, .box_h = 17, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 34074, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 34194, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 34307, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 34420, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 34540, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 34652, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 34780, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 34900, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 35028, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 35156, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 35276, .adv_w = 256, .box_w = 15, .box_h = 14, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 35381, .adv_w = 256, .box_w = 15, .box_h = 13, .ofs_x = 1, .ofs_y = -1}, {.bitmap_index = 35479, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 35599, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 35719, .adv_w = 256, .box_w = 15, .box_h = 17, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 35847, .adv_w = 256, .box_w = 12, .box_h = 15, .ofs_x = 2, .ofs_y = -1}, - {.bitmap_index = 35937, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 36050, .adv_w = 256, .box_w = 15, .box_h = 14, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 36155, .adv_w = 256, .box_w = 15, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 36275, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 36403, .adv_w = 256, .box_w = 16, .box_h = 17, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 36539, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 36667, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 36795, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 36915, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 37043, .adv_w = 256, .box_w = 14, .box_h = 15, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 37148, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 37268, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 37396, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 37524, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 37652, .adv_w = 256, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 37757, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 37885, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 37997, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 38125, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 38253, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 38365, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 38485, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 38613, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 38741, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 38861, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 38989, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 39109, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 39222, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 39350, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 39470, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 39582, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 35719, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 35839, .adv_w = 256, .box_w = 15, .box_h = 17, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 35967, .adv_w = 256, .box_w = 12, .box_h = 15, .ofs_x = 2, .ofs_y = -1}, + {.bitmap_index = 36057, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 36170, .adv_w = 256, .box_w = 15, .box_h = 14, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 36275, .adv_w = 256, .box_w = 15, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 36395, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 36523, .adv_w = 256, .box_w = 16, .box_h = 17, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 36659, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 36787, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 36915, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 37035, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 37163, .adv_w = 256, .box_w = 14, .box_h = 15, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 37268, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 37388, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 37516, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 37644, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 37772, .adv_w = 256, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 37877, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 38005, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 38117, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 38245, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 38373, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 38485, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 38605, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 38733, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 38861, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 38981, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 39109, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 39229, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 39342, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 39470, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 39590, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 39702, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 39822, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 39950, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 40078, .adv_w = 256, .box_w = 15, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 40198, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 40326, .adv_w = 256, .box_w = 16, .box_h = 17, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 40462, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 40582, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 40695, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 40815, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 40928, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 41048, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 41160, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 39822, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 39942, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 40070, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 40198, .adv_w = 256, .box_w = 15, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 40318, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 40446, .adv_w = 256, .box_w = 16, .box_h = 17, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 40582, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 40702, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 40815, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 40935, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 41048, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 41168, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 41280, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 41400, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 41520, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 41640, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 41760, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 41880, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 42000, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 42120, .adv_w = 256, .box_w = 15, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 42240, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 42360, .adv_w = 256, .box_w = 15, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 42465, .adv_w = 256, .box_w = 15, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 42563, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 42676, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 42000, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 42120, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 42240, .adv_w = 256, .box_w = 15, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 42360, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 42480, .adv_w = 256, .box_w = 15, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 42585, .adv_w = 256, .box_w = 15, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 42683, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 42796, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 42916, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 43044, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 43157, .adv_w = 256, .box_w = 14, .box_h = 15, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 43262, .adv_w = 256, .box_w = 14, .box_h = 16, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 43374, .adv_w = 256, .box_w = 14, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 43486, .adv_w = 256, .box_w = 15, .box_h = 17, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 43614, .adv_w = 256, .box_w = 15, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 43734, .adv_w = 256, .box_w = 14, .box_h = 14, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 43832, .adv_w = 256, .box_w = 14, .box_h = 16, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 43944, .adv_w = 256, .box_w = 14, .box_h = 15, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 44049, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 42916, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 43036, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 43164, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 43277, .adv_w = 256, .box_w = 14, .box_h = 15, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 43382, .adv_w = 256, .box_w = 14, .box_h = 16, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 43494, .adv_w = 256, .box_w = 14, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 43606, .adv_w = 256, .box_w = 15, .box_h = 17, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 43734, .adv_w = 256, .box_w = 15, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 43854, .adv_w = 256, .box_w = 14, .box_h = 14, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 43952, .adv_w = 256, .box_w = 14, .box_h = 16, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 44064, .adv_w = 256, .box_w = 14, .box_h = 15, .ofs_x = 1, .ofs_y = -2}, {.bitmap_index = 44169, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 44289, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 44409, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 44529, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 44649, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 44761, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 44889, .adv_w = 256, .box_w = 15, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 45009, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 44529, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 44649, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 44769, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 44881, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 45009, .adv_w = 256, .box_w = 15, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, {.bitmap_index = 45129, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 45249, .adv_w = 256, .box_w = 16, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 45385, .adv_w = 256, .box_w = 16, .box_h = 12, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 45481, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 45593, .adv_w = 256, .box_w = 16, .box_h = 12, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 45689, .adv_w = 176, .box_w = 11, .box_h = 12, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 45755, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 45883, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 46011, .adv_w = 288, .box_w = 18, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 46137, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 46265, .adv_w = 288, .box_w = 18, .box_h = 12, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 46373, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 46501, .adv_w = 128, .box_w = 8, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 46557, .adv_w = 192, .box_w = 12, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 46641, .adv_w = 288, .box_w = 18, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 46785, .adv_w = 256, .box_w = 16, .box_h = 12, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 46881, .adv_w = 176, .box_w = 11, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 46969, .adv_w = 224, .box_w = 10, .box_h = 16, .ofs_x = 2, .ofs_y = -2}, - {.bitmap_index = 47049, .adv_w = 224, .box_w = 14, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 47175, .adv_w = 224, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 47280, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 47378, .adv_w = 224, .box_w = 10, .box_h = 16, .ofs_x = 2, .ofs_y = -2}, - {.bitmap_index = 47458, .adv_w = 224, .box_w = 16, .box_h = 14, .ofs_x = -1, .ofs_y = -1}, - {.bitmap_index = 47570, .adv_w = 160, .box_w = 10, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 47640, .adv_w = 160, .box_w = 10, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 47710, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 47808, .adv_w = 224, .box_w = 14, .box_h = 4, .ofs_x = 0, .ofs_y = 4}, - {.bitmap_index = 47836, .adv_w = 288, .box_w = 18, .box_h = 12, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 47944, .adv_w = 320, .box_w = 20, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 48104, .adv_w = 288, .box_w = 20, .box_h = 16, .ofs_x = -1, .ofs_y = -2}, - {.bitmap_index = 48264, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 48392, .adv_w = 224, .box_w = 14, .box_h = 10, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 48462, .adv_w = 224, .box_w = 14, .box_h = 10, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 48532, .adv_w = 320, .box_w = 20, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 48672, .adv_w = 256, .box_w = 16, .box_h = 12, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 48768, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 48896, .adv_w = 256, .box_w = 17, .box_h = 17, .ofs_x = -1, .ofs_y = -2}, - {.bitmap_index = 49041, .adv_w = 224, .box_w = 15, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 49146, .adv_w = 224, .box_w = 14, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 49258, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 49356, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 49454, .adv_w = 256, .box_w = 16, .box_h = 12, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 49550, .adv_w = 160, .box_w = 12, .box_h = 16, .ofs_x = -1, .ofs_y = -2}, - {.bitmap_index = 49646, .adv_w = 224, .box_w = 14, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 49758, .adv_w = 224, .box_w = 14, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 49870, .adv_w = 288, .box_w = 18, .box_h = 12, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 49978, .adv_w = 256, .box_w = 18, .box_h = 18, .ofs_x = -1, .ofs_y = -3}, - {.bitmap_index = 50140, .adv_w = 192, .box_w = 12, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 50236, .adv_w = 320, .box_w = 20, .box_h = 15, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 50386, .adv_w = 320, .box_w = 20, .box_h = 10, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 50486, .adv_w = 320, .box_w = 20, .box_h = 10, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 50586, .adv_w = 320, .box_w = 20, .box_h = 10, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 50686, .adv_w = 320, .box_w = 20, .box_h = 10, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 50786, .adv_w = 320, .box_w = 20, .box_h = 10, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 50886, .adv_w = 320, .box_w = 21, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 51033, .adv_w = 224, .box_w = 12, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 51129, .adv_w = 224, .box_w = 14, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 51241, .adv_w = 256, .box_w = 17, .box_h = 17, .ofs_x = -1, .ofs_y = -3}, - {.bitmap_index = 51386, .adv_w = 320, .box_w = 20, .box_h = 12, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 51506, .adv_w = 192, .box_w = 12, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 51602, .adv_w = 258, .box_w = 17, .box_h = 11, .ofs_x = 0, .ofs_y = 1} + {.bitmap_index = 45249, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 45369, .adv_w = 256, .box_w = 16, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 45505, .adv_w = 256, .box_w = 16, .box_h = 12, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 45601, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 45713, .adv_w = 256, .box_w = 16, .box_h = 12, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 45809, .adv_w = 176, .box_w = 11, .box_h = 12, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 45875, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 46003, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 46131, .adv_w = 288, .box_w = 18, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 46257, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 46385, .adv_w = 288, .box_w = 18, .box_h = 12, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 46493, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 46621, .adv_w = 128, .box_w = 8, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 46677, .adv_w = 192, .box_w = 12, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 46761, .adv_w = 288, .box_w = 18, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 46905, .adv_w = 256, .box_w = 16, .box_h = 12, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 47001, .adv_w = 176, .box_w = 11, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 47089, .adv_w = 224, .box_w = 10, .box_h = 16, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 47169, .adv_w = 224, .box_w = 14, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 47295, .adv_w = 224, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 47400, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 47498, .adv_w = 224, .box_w = 10, .box_h = 16, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 47578, .adv_w = 224, .box_w = 16, .box_h = 14, .ofs_x = -1, .ofs_y = -1}, + {.bitmap_index = 47690, .adv_w = 160, .box_w = 10, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 47760, .adv_w = 160, .box_w = 10, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 47830, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 47928, .adv_w = 224, .box_w = 14, .box_h = 4, .ofs_x = 0, .ofs_y = 4}, + {.bitmap_index = 47956, .adv_w = 288, .box_w = 18, .box_h = 12, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 48064, .adv_w = 320, .box_w = 20, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 48224, .adv_w = 288, .box_w = 20, .box_h = 16, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 48384, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 48512, .adv_w = 224, .box_w = 14, .box_h = 10, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 48582, .adv_w = 224, .box_w = 14, .box_h = 10, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 48652, .adv_w = 320, .box_w = 20, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 48792, .adv_w = 256, .box_w = 16, .box_h = 12, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 48888, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 49016, .adv_w = 256, .box_w = 17, .box_h = 17, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 49161, .adv_w = 224, .box_w = 15, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 49266, .adv_w = 224, .box_w = 14, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 49378, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 49476, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 49574, .adv_w = 256, .box_w = 16, .box_h = 12, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 49670, .adv_w = 160, .box_w = 12, .box_h = 16, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 49766, .adv_w = 224, .box_w = 14, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 49878, .adv_w = 224, .box_w = 14, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 49990, .adv_w = 288, .box_w = 18, .box_h = 12, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 50098, .adv_w = 256, .box_w = 18, .box_h = 18, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 50260, .adv_w = 192, .box_w = 12, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 50356, .adv_w = 320, .box_w = 20, .box_h = 15, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 50506, .adv_w = 320, .box_w = 20, .box_h = 10, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 50606, .adv_w = 320, .box_w = 20, .box_h = 10, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 50706, .adv_w = 320, .box_w = 20, .box_h = 10, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 50806, .adv_w = 320, .box_w = 20, .box_h = 10, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 50906, .adv_w = 320, .box_w = 20, .box_h = 10, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 51006, .adv_w = 320, .box_w = 21, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 51153, .adv_w = 224, .box_w = 12, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 51249, .adv_w = 224, .box_w = 14, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 51361, .adv_w = 256, .box_w = 17, .box_h = 17, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 51506, .adv_w = 320, .box_w = 20, .box_h = 12, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 51626, .adv_w = 192, .box_w = 12, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 51722, .adv_w = 258, .box_w = 17, .box_h = 11, .ofs_x = 0, .ofs_y = 1} }; /*--------------------- @@ -8175,29 +8193,29 @@ static const uint16_t unicode_list_1[] = { 0x6bb0, 0x6bf1, 0x6c25, 0x6c38, 0x6c8b, 0x6c91, 0x6c9b, 0x6cd8, 0x6d55, 0x6d79, 0x6de0, 0x6e2a, 0x6e31, 0x7009, 0x7018, 0x7076, 0x7086, 0x7198, 0x7206, 0x72ff, 0x7300, 0x7356, 0x746f, 0x7478, - 0x7485, 0x748b, 0x749c, 0x74a9, 0x75d4, 0x763e, 0x7644, 0x765b, - 0x7670, 0x768c, 0x773d, 0x7751, 0x77be, 0x788a, 0x78d1, 0x791d, - 0x795b, 0x79ca, 0x79d4, 0x7a2e, 0x7a3f, 0x7a76, 0x7c4b, 0x7c70, - 0x7c72, 0x7e0f, 0x7e1f, 0x7e21, 0x7e23, 0x7e2c, 0x7e2f, 0x7e3a, - 0x7ea1, 0x7ebe, 0x7f55, 0x7f83, 0x801c, 0x804d, 0x813a, 0x8144, - 0x81ff, 0x8307, 0x832c, 0x851f, 0x8652, 0x879c, 0x87b8, 0x87fb, - 0x8815, 0x88d1, 0x8914, 0x8916, 0x8918, 0x8922, 0x8ab6, 0x8af1, - 0x8af4, 0x8afe, 0x8b00, 0x8b0e, 0x8b0f, 0x8b11, 0x8b16, 0x8b25, - 0x8b47, 0x8b53, 0x8c75, 0x8c78, 0x8cd5, 0x8d7a, 0x8eb8, 0x8ebc, - 0x8ebe, 0x8ec4, 0x8ecd, 0x8ee3, 0x8f17, 0x8f20, 0x8f24, 0x8f29, - 0x8f2b, 0x8f2e, 0x8f49, 0x8f4d, 0x8f50, 0x8f51, 0x8f59, 0x8f6a, - 0x8f6f, 0x8fa3, 0x9038, 0x904d, 0x911d, 0x911f, 0x93ef, 0x9451, - 0x947e, 0x94ac, 0x94cf, 0x953d, 0x953e, 0x9544, 0x95b4, 0x95e0, - 0x96b2, 0x9743, 0x97c5, 0x97c6, 0x97c9, 0x97d4, 0x97e1, 0x981e, - 0x98c1, 0x99dc, 0x9d73, 0x9df6, 0x9e28, 0xef51, 0xef58, 0xef5b, - 0xef5c, 0xef5d, 0xef61, 0xef63, 0xef65, 0xef69, 0xef6c, 0xef71, - 0xef76, 0xef77, 0xef78, 0xef8e, 0xef93, 0xef98, 0xef9b, 0xef9c, - 0xef9d, 0xefa1, 0xefa2, 0xefa3, 0xefa4, 0xefb7, 0xefb8, 0xefbe, - 0xefc0, 0xefc1, 0xefc4, 0xefc7, 0xefc8, 0xefc9, 0xefcb, 0xefe3, - 0xefe5, 0xf014, 0xf015, 0xf017, 0xf019, 0xf030, 0xf037, 0xf03a, - 0xf043, 0xf06c, 0xf074, 0xf0ab, 0xf13b, 0xf190, 0xf191, 0xf192, - 0xf193, 0xf194, 0xf1d7, 0xf1e3, 0xf23d, 0xf254, 0xf4aa, 0xf712, - 0xf7f2 + 0x7485, 0x748b, 0x749c, 0x74a9, 0x75d4, 0x7628, 0x763e, 0x7644, + 0x765b, 0x7670, 0x768c, 0x773d, 0x7751, 0x77be, 0x788a, 0x78d1, + 0x791d, 0x795b, 0x79ca, 0x79d4, 0x7a2e, 0x7a3f, 0x7a76, 0x7c4b, + 0x7c70, 0x7c72, 0x7e0f, 0x7e1f, 0x7e21, 0x7e23, 0x7e2c, 0x7e2f, + 0x7e3a, 0x7ea1, 0x7ebe, 0x7f55, 0x7f83, 0x801c, 0x804d, 0x813a, + 0x8144, 0x81ff, 0x8307, 0x832c, 0x851f, 0x8652, 0x879c, 0x87b8, + 0x87fb, 0x8815, 0x88d1, 0x8914, 0x8916, 0x8918, 0x8922, 0x8ab6, + 0x8af1, 0x8af4, 0x8afe, 0x8b00, 0x8b0e, 0x8b0f, 0x8b11, 0x8b16, + 0x8b25, 0x8b47, 0x8b53, 0x8c75, 0x8c78, 0x8cd5, 0x8d7a, 0x8eb8, + 0x8ebc, 0x8ebe, 0x8ec4, 0x8ecd, 0x8ee3, 0x8f17, 0x8f20, 0x8f24, + 0x8f29, 0x8f2b, 0x8f2e, 0x8f49, 0x8f4d, 0x8f50, 0x8f51, 0x8f59, + 0x8f6a, 0x8f6f, 0x8fa3, 0x9038, 0x904d, 0x911d, 0x911f, 0x93ef, + 0x9451, 0x947e, 0x94ac, 0x94cf, 0x953d, 0x953e, 0x9544, 0x95b4, + 0x95e0, 0x96b2, 0x9743, 0x97c5, 0x97c6, 0x97c9, 0x97d4, 0x97e1, + 0x981e, 0x98c1, 0x99dc, 0x9d73, 0x9df6, 0x9e28, 0xef51, 0xef58, + 0xef5b, 0xef5c, 0xef5d, 0xef61, 0xef63, 0xef65, 0xef69, 0xef6c, + 0xef71, 0xef76, 0xef77, 0xef78, 0xef8e, 0xef93, 0xef98, 0xef9b, + 0xef9c, 0xef9d, 0xefa1, 0xefa2, 0xefa3, 0xefa4, 0xefb7, 0xefb8, + 0xefbe, 0xefc0, 0xefc1, 0xefc4, 0xefc7, 0xefc8, 0xefc9, 0xefcb, + 0xefe3, 0xefe5, 0xf014, 0xf015, 0xf017, 0xf019, 0xf030, 0xf037, + 0xf03a, 0xf043, 0xf06c, 0xf074, 0xf0ab, 0xf13b, 0xf190, 0xf191, + 0xf192, 0xf193, 0xf194, 0xf1d7, 0xf1e3, 0xf23d, 0xf254, 0xf4aa, + 0xf712, 0xf7f2 }; /*Collect the unicode lists and glyph_id offsets*/ @@ -8209,7 +8227,7 @@ static const lv_font_fmt_txt_cmap_t cmaps[] = }, { .range_start = 176, .range_length = 63475, .glyph_id_start = 96, - .unicode_list = unicode_list_1, .glyph_id_ofs_list = NULL, .list_length = 409, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY + .unicode_list = unicode_list_1, .glyph_id_ofs_list = NULL, .list_length = 410, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY } }; @@ -8284,7 +8302,7 @@ static const uint8_t kern_left_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0 + 0, 0 }; /*Map glyph_ids to kern right classes*/ @@ -8353,7 +8371,7 @@ static const uint8_t kern_right_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0 + 0, 0 }; /*Kern values between classes*/ diff --git a/lib/lvgl/lvgl/src/font/lv_font_montserrat_18.c b/lib/lvgl/lvgl/src/font/lv_font_montserrat_18.c index 716fa7e6..59b48bbe 100644 --- a/lib/lvgl/lvgl/src/font/lv_font_montserrat_18.c +++ b/lib/lvgl/lvgl/src/font/lv_font_montserrat_18.c @@ -1,7 +1,7 @@ /******************************************************************************* * Size: 18 px * Bpp: 4 - * Opts: --bpp 4 --size 18 --no-compress --font Montserrat-Medium.ttf --range 32-127,176,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20351,20363,20391,20445,20449,20462,20463,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29366,29615,29616,29702,29983,29992,30005,30011,30028,30041,30340,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31181,31243,31354,31364,31454,31471,31526,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33719,33756,34255,34562,34892,34920,34987,35013,35201,35268,35270,35272,35282,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35831,35843,36133,36136,36229,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --format lvgl -o out/lv_font_montserrat_18.c + * Opts: --bpp 4 --size 18 --no-compress --font Montserrat-Medium.ttf --range 32-127,176,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20351,20363,20391,20445,20449,20462,20463,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29366,29615,29616,29702,29983,29992,30005,30011,30028,30041,30340,30424,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31181,31243,31354,31364,31454,31471,31526,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33719,33756,34255,34562,34892,34920,34987,35013,35201,35268,35270,35272,35282,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35831,35843,36133,36136,36229,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --format lvgl -o out/lv_font_montserrat_18.c ******************************************************************************/ #ifdef LV_LVGL_H_INCLUDE_SIMPLE @@ -5944,6 +5944,28 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x4f, 0x10, 0x5, 0xf1, 0x0, 0x4b, 0xcf, 0x90, 0x14, 0x0, 0x0, 0x20, 0x0, 0xb, 0x83, 0x0, + /* U+76D8 "盘" */ + 0x0, 0x0, 0x0, 0x6, 0x80, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xc, 0xa0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xdf, 0xff, 0xff, 0xff, + 0xff, 0x50, 0x0, 0x0, 0x0, 0xcd, 0x33, 0x73, + 0x33, 0x3f, 0x40, 0x0, 0x0, 0x0, 0xcd, 0x0, + 0xce, 0x30, 0xf, 0x40, 0x0, 0x2, 0x22, 0xcd, + 0x22, 0x29, 0x32, 0x2f, 0x62, 0x20, 0xc, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x1, + 0x11, 0xf9, 0x3, 0x30, 0x0, 0x1f, 0x31, 0x10, + 0x0, 0x6, 0xf3, 0x6, 0xfa, 0x10, 0x1f, 0x30, + 0x0, 0x0, 0x4f, 0xb0, 0x0, 0x3a, 0xa, 0xef, + 0x10, 0x0, 0x0, 0x2a, 0x10, 0x0, 0x0, 0x5, + 0x83, 0x0, 0x0, 0x0, 0x4f, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf4, 0x0, 0x0, 0x4f, 0x42, 0x6e, + 0x22, 0xe6, 0x24, 0xf4, 0x0, 0x0, 0x4f, 0x20, + 0x4e, 0x0, 0xe4, 0x2, 0xf4, 0x0, 0x0, 0x4f, + 0x20, 0x4e, 0x0, 0xe4, 0x2, 0xf4, 0x0, 0x13, + 0x6f, 0x53, 0x6e, 0x33, 0xe6, 0x34, 0xf6, 0x31, + 0x6f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf6, + /* U+76EE "目" */ 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0xf, 0x82, 0x22, 0x22, 0x22, 0x28, 0xf1, 0xf, 0x70, @@ -9900,178 +9922,179 @@ static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = { {.bitmap_index = 40075, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, {.bitmap_index = 40237, .adv_w = 288, .box_w = 16, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, {.bitmap_index = 40373, .adv_w = 288, .box_w = 16, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 40509, .adv_w = 288, .box_w = 14, .box_h = 16, .ofs_x = 2, .ofs_y = -2}, - {.bitmap_index = 40621, .adv_w = 288, .box_w = 18, .box_h = 16, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 40765, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 40918, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 41080, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 41225, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 41387, .adv_w = 288, .box_w = 17, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 41523, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 41668, .adv_w = 288, .box_w = 16, .box_h = 17, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 41804, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 41957, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 42102, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 42255, .adv_w = 288, .box_w = 17, .box_h = 18, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 42408, .adv_w = 288, .box_w = 16, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 42544, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 42706, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 42868, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 43030, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 43175, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 43320, .adv_w = 288, .box_w = 16, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 43456, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 43618, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 43763, .adv_w = 288, .box_w = 17, .box_h = 18, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 43916, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 44078, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 44240, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 44402, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 44555, .adv_w = 288, .box_w = 16, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 44683, .adv_w = 288, .box_w = 16, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 44811, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 44956, .adv_w = 288, .box_w = 16, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 45084, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 45237, .adv_w = 288, .box_w = 16, .box_h = 18, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 45381, .adv_w = 288, .box_w = 14, .box_h = 17, .ofs_x = 2, .ofs_y = -2}, - {.bitmap_index = 45500, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 45645, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 45790, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 45935, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 46088, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 46250, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 40509, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 40662, .adv_w = 288, .box_w = 14, .box_h = 16, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 40774, .adv_w = 288, .box_w = 18, .box_h = 16, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 40918, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 41071, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 41233, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 41378, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 41540, .adv_w = 288, .box_w = 17, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 41676, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 41821, .adv_w = 288, .box_w = 16, .box_h = 17, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 41957, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 42110, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 42255, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 42408, .adv_w = 288, .box_w = 17, .box_h = 18, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 42561, .adv_w = 288, .box_w = 16, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 42697, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 42859, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 43021, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 43183, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 43328, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 43473, .adv_w = 288, .box_w = 16, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 43609, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 43771, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 43916, .adv_w = 288, .box_w = 17, .box_h = 18, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 44069, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 44231, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 44393, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 44555, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 44708, .adv_w = 288, .box_w = 16, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 44836, .adv_w = 288, .box_w = 16, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 44964, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 45109, .adv_w = 288, .box_w = 16, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 45237, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 45390, .adv_w = 288, .box_w = 16, .box_h = 18, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 45534, .adv_w = 288, .box_w = 14, .box_h = 17, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 45653, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 45798, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 45943, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 46088, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 46241, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, {.bitmap_index = 46403, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 46556, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 46709, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 46862, .adv_w = 288, .box_w = 16, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 46998, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 47151, .adv_w = 288, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 47322, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 47484, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 47646, .adv_w = 288, .box_w = 15, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 47789, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 47951, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 48104, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 48249, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 46862, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 47015, .adv_w = 288, .box_w = 16, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 47151, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 47304, .adv_w = 288, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 47475, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 47637, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 47799, .adv_w = 288, .box_w = 15, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 47942, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 48104, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 48257, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, {.bitmap_index = 48402, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 48555, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 48708, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 48870, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 49023, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 49185, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 49347, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 49509, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 49654, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 49807, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 49952, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 48708, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 48861, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 49023, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 49176, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 49338, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 49500, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 49662, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 49807, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 49960, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 50105, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 50258, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 50411, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 50573, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 50726, .adv_w = 288, .box_w = 17, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 50879, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 51032, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 51194, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 51356, .adv_w = 288, .box_w = 17, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 51509, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 51671, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 51816, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 51978, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 52131, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 52293, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 52455, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 52617, .adv_w = 288, .box_w = 17, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 52770, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 52932, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 53094, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 53256, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 53409, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 53554, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 53716, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 53861, .adv_w = 288, .box_w = 17, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 53997, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 54142, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 54295, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 54457, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 54619, .adv_w = 288, .box_w = 16, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 54755, .adv_w = 288, .box_w = 16, .box_h = 18, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 54899, .adv_w = 288, .box_w = 16, .box_h = 18, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 55043, .adv_w = 288, .box_w = 16, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 55195, .adv_w = 288, .box_w = 17, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 55357, .adv_w = 288, .box_w = 17, .box_h = 18, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 55510, .adv_w = 288, .box_w = 16, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 55638, .adv_w = 288, .box_w = 16, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 55790, .adv_w = 288, .box_w = 16, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 55918, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 56071, .adv_w = 288, .box_w = 17, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 56207, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 56352, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 56505, .adv_w = 288, .box_w = 18, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 56649, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 56811, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 56964, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 57109, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 57271, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 57424, .adv_w = 288, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 57605, .adv_w = 288, .box_w = 18, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 57731, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 57884, .adv_w = 288, .box_w = 18, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 58010, .adv_w = 198, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 58095, .adv_w = 288, .box_w = 19, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 58266, .adv_w = 288, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 58437, .adv_w = 324, .box_w = 21, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 58616, .adv_w = 288, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 58787, .adv_w = 324, .box_w = 21, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 58934, .adv_w = 288, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 59105, .adv_w = 144, .box_w = 9, .box_h = 15, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 59173, .adv_w = 216, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 59278, .adv_w = 324, .box_w = 21, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 59467, .adv_w = 288, .box_w = 18, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 59593, .adv_w = 198, .box_w = 13, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 59717, .adv_w = 252, .box_w = 12, .box_h = 17, .ofs_x = 2, .ofs_y = -2}, - {.bitmap_index = 59819, .adv_w = 252, .box_w = 16, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 59971, .adv_w = 252, .box_w = 16, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 60107, .adv_w = 252, .box_w = 16, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 60243, .adv_w = 252, .box_w = 12, .box_h = 17, .ofs_x = 2, .ofs_y = -2}, - {.bitmap_index = 60345, .adv_w = 252, .box_w = 18, .box_h = 17, .ofs_x = -1, .ofs_y = -2}, - {.bitmap_index = 60498, .adv_w = 180, .box_w = 11, .box_h = 16, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 60586, .adv_w = 180, .box_w = 11, .box_h = 16, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 60674, .adv_w = 252, .box_w = 16, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 60810, .adv_w = 252, .box_w = 16, .box_h = 4, .ofs_x = 0, .ofs_y = 5}, - {.bitmap_index = 60842, .adv_w = 324, .box_w = 21, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 60989, .adv_w = 360, .box_w = 23, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 61208, .adv_w = 324, .box_w = 22, .box_h = 19, .ofs_x = -1, .ofs_y = -3}, - {.bitmap_index = 61417, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 61570, .adv_w = 252, .box_w = 16, .box_h = 10, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 61650, .adv_w = 252, .box_w = 16, .box_h = 10, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 61730, .adv_w = 360, .box_w = 24, .box_h = 15, .ofs_x = -1, .ofs_y = -1}, - {.bitmap_index = 61910, .adv_w = 288, .box_w = 18, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 62036, .adv_w = 288, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 62207, .adv_w = 288, .box_w = 19, .box_h = 19, .ofs_x = -1, .ofs_y = -3}, - {.bitmap_index = 62388, .adv_w = 252, .box_w = 16, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 62524, .adv_w = 252, .box_w = 16, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 62676, .adv_w = 252, .box_w = 16, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 62812, .adv_w = 252, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 62932, .adv_w = 288, .box_w = 18, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 63058, .adv_w = 180, .box_w = 13, .box_h = 19, .ofs_x = -1, .ofs_y = -3}, - {.bitmap_index = 63182, .adv_w = 252, .box_w = 16, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 63334, .adv_w = 252, .box_w = 16, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 63486, .adv_w = 324, .box_w = 21, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 63633, .adv_w = 288, .box_w = 20, .box_h = 20, .ofs_x = -1, .ofs_y = -3}, - {.bitmap_index = 63833, .adv_w = 216, .box_w = 14, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 63966, .adv_w = 360, .box_w = 23, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 64173, .adv_w = 360, .box_w = 23, .box_h = 12, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 64311, .adv_w = 360, .box_w = 23, .box_h = 12, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 64449, .adv_w = 360, .box_w = 23, .box_h = 12, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 64587, .adv_w = 360, .box_w = 23, .box_h = 12, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 64725, .adv_w = 360, .box_w = 23, .box_h = 12, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 64863, .adv_w = 360, .box_w = 23, .box_h = 15, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 65036, .adv_w = 252, .box_w = 14, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 65169, .adv_w = 252, .box_w = 16, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 65321, .adv_w = 288, .box_w = 19, .box_h = 19, .ofs_x = -1, .ofs_y = -3}, - {.bitmap_index = 65502, .adv_w = 360, .box_w = 23, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 65663, .adv_w = 216, .box_w = 14, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 65796, .adv_w = 290, .box_w = 19, .box_h = 12, .ofs_x = 0, .ofs_y = 1} + {.bitmap_index = 50411, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 50564, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 50726, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 50879, .adv_w = 288, .box_w = 17, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 51032, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 51185, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 51347, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 51509, .adv_w = 288, .box_w = 17, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 51662, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 51824, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 51969, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 52131, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 52284, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 52446, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 52608, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 52770, .adv_w = 288, .box_w = 17, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 52923, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 53085, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 53247, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 53409, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 53562, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 53707, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 53869, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 54014, .adv_w = 288, .box_w = 17, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 54150, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 54295, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 54448, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 54610, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 54772, .adv_w = 288, .box_w = 16, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 54908, .adv_w = 288, .box_w = 16, .box_h = 18, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 55052, .adv_w = 288, .box_w = 16, .box_h = 18, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 55196, .adv_w = 288, .box_w = 16, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 55348, .adv_w = 288, .box_w = 17, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 55510, .adv_w = 288, .box_w = 17, .box_h = 18, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 55663, .adv_w = 288, .box_w = 16, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 55791, .adv_w = 288, .box_w = 16, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 55943, .adv_w = 288, .box_w = 16, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 56071, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 56224, .adv_w = 288, .box_w = 17, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 56360, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 56505, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 56658, .adv_w = 288, .box_w = 18, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 56802, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 56964, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 57117, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 57262, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 57424, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 57577, .adv_w = 288, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 57758, .adv_w = 288, .box_w = 18, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 57884, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 58037, .adv_w = 288, .box_w = 18, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 58163, .adv_w = 198, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 58248, .adv_w = 288, .box_w = 19, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 58419, .adv_w = 288, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 58590, .adv_w = 324, .box_w = 21, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 58769, .adv_w = 288, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 58940, .adv_w = 324, .box_w = 21, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 59087, .adv_w = 288, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 59258, .adv_w = 144, .box_w = 9, .box_h = 15, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 59326, .adv_w = 216, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 59431, .adv_w = 324, .box_w = 21, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 59620, .adv_w = 288, .box_w = 18, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 59746, .adv_w = 198, .box_w = 13, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 59870, .adv_w = 252, .box_w = 12, .box_h = 17, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 59972, .adv_w = 252, .box_w = 16, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 60124, .adv_w = 252, .box_w = 16, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 60260, .adv_w = 252, .box_w = 16, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 60396, .adv_w = 252, .box_w = 12, .box_h = 17, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 60498, .adv_w = 252, .box_w = 18, .box_h = 17, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 60651, .adv_w = 180, .box_w = 11, .box_h = 16, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 60739, .adv_w = 180, .box_w = 11, .box_h = 16, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 60827, .adv_w = 252, .box_w = 16, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 60963, .adv_w = 252, .box_w = 16, .box_h = 4, .ofs_x = 0, .ofs_y = 5}, + {.bitmap_index = 60995, .adv_w = 324, .box_w = 21, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 61142, .adv_w = 360, .box_w = 23, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 61361, .adv_w = 324, .box_w = 22, .box_h = 19, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 61570, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 61723, .adv_w = 252, .box_w = 16, .box_h = 10, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 61803, .adv_w = 252, .box_w = 16, .box_h = 10, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 61883, .adv_w = 360, .box_w = 24, .box_h = 15, .ofs_x = -1, .ofs_y = -1}, + {.bitmap_index = 62063, .adv_w = 288, .box_w = 18, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 62189, .adv_w = 288, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 62360, .adv_w = 288, .box_w = 19, .box_h = 19, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 62541, .adv_w = 252, .box_w = 16, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 62677, .adv_w = 252, .box_w = 16, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 62829, .adv_w = 252, .box_w = 16, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 62965, .adv_w = 252, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 63085, .adv_w = 288, .box_w = 18, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 63211, .adv_w = 180, .box_w = 13, .box_h = 19, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 63335, .adv_w = 252, .box_w = 16, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 63487, .adv_w = 252, .box_w = 16, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 63639, .adv_w = 324, .box_w = 21, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 63786, .adv_w = 288, .box_w = 20, .box_h = 20, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 63986, .adv_w = 216, .box_w = 14, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 64119, .adv_w = 360, .box_w = 23, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 64326, .adv_w = 360, .box_w = 23, .box_h = 12, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 64464, .adv_w = 360, .box_w = 23, .box_h = 12, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 64602, .adv_w = 360, .box_w = 23, .box_h = 12, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 64740, .adv_w = 360, .box_w = 23, .box_h = 12, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 64878, .adv_w = 360, .box_w = 23, .box_h = 12, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 65016, .adv_w = 360, .box_w = 23, .box_h = 15, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 65189, .adv_w = 252, .box_w = 14, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 65322, .adv_w = 252, .box_w = 16, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 65474, .adv_w = 288, .box_w = 19, .box_h = 19, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 65655, .adv_w = 360, .box_w = 23, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 65816, .adv_w = 216, .box_w = 14, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 65949, .adv_w = 290, .box_w = 19, .box_h = 12, .ofs_x = 0, .ofs_y = 1} }; /*--------------------- @@ -10108,29 +10131,29 @@ static const uint16_t unicode_list_1[] = { 0x6bb0, 0x6bf1, 0x6c25, 0x6c38, 0x6c8b, 0x6c91, 0x6c9b, 0x6cd8, 0x6d55, 0x6d79, 0x6de0, 0x6e2a, 0x6e31, 0x7009, 0x7018, 0x7076, 0x7086, 0x7198, 0x7206, 0x72ff, 0x7300, 0x7356, 0x746f, 0x7478, - 0x7485, 0x748b, 0x749c, 0x74a9, 0x75d4, 0x763e, 0x7644, 0x765b, - 0x7670, 0x768c, 0x773d, 0x7751, 0x77be, 0x788a, 0x78d1, 0x791d, - 0x795b, 0x79ca, 0x79d4, 0x7a2e, 0x7a3f, 0x7a76, 0x7c4b, 0x7c70, - 0x7c72, 0x7e0f, 0x7e1f, 0x7e21, 0x7e23, 0x7e2c, 0x7e2f, 0x7e3a, - 0x7ea1, 0x7ebe, 0x7f55, 0x7f83, 0x801c, 0x804d, 0x813a, 0x8144, - 0x81ff, 0x8307, 0x832c, 0x851f, 0x8652, 0x879c, 0x87b8, 0x87fb, - 0x8815, 0x88d1, 0x8914, 0x8916, 0x8918, 0x8922, 0x8ab6, 0x8af1, - 0x8af4, 0x8afe, 0x8b00, 0x8b0e, 0x8b0f, 0x8b11, 0x8b16, 0x8b25, - 0x8b47, 0x8b53, 0x8c75, 0x8c78, 0x8cd5, 0x8d7a, 0x8eb8, 0x8ebc, - 0x8ebe, 0x8ec4, 0x8ecd, 0x8ee3, 0x8f17, 0x8f20, 0x8f24, 0x8f29, - 0x8f2b, 0x8f2e, 0x8f49, 0x8f4d, 0x8f50, 0x8f51, 0x8f59, 0x8f6a, - 0x8f6f, 0x8fa3, 0x9038, 0x904d, 0x911d, 0x911f, 0x93ef, 0x9451, - 0x947e, 0x94ac, 0x94cf, 0x953d, 0x953e, 0x9544, 0x95b4, 0x95e0, - 0x96b2, 0x9743, 0x97c5, 0x97c6, 0x97c9, 0x97d4, 0x97e1, 0x981e, - 0x98c1, 0x99dc, 0x9d73, 0x9df6, 0x9e28, 0xef51, 0xef58, 0xef5b, - 0xef5c, 0xef5d, 0xef61, 0xef63, 0xef65, 0xef69, 0xef6c, 0xef71, - 0xef76, 0xef77, 0xef78, 0xef8e, 0xef93, 0xef98, 0xef9b, 0xef9c, - 0xef9d, 0xefa1, 0xefa2, 0xefa3, 0xefa4, 0xefb7, 0xefb8, 0xefbe, - 0xefc0, 0xefc1, 0xefc4, 0xefc7, 0xefc8, 0xefc9, 0xefcb, 0xefe3, - 0xefe5, 0xf014, 0xf015, 0xf017, 0xf019, 0xf030, 0xf037, 0xf03a, - 0xf043, 0xf06c, 0xf074, 0xf0ab, 0xf13b, 0xf190, 0xf191, 0xf192, - 0xf193, 0xf194, 0xf1d7, 0xf1e3, 0xf23d, 0xf254, 0xf4aa, 0xf712, - 0xf7f2 + 0x7485, 0x748b, 0x749c, 0x74a9, 0x75d4, 0x7628, 0x763e, 0x7644, + 0x765b, 0x7670, 0x768c, 0x773d, 0x7751, 0x77be, 0x788a, 0x78d1, + 0x791d, 0x795b, 0x79ca, 0x79d4, 0x7a2e, 0x7a3f, 0x7a76, 0x7c4b, + 0x7c70, 0x7c72, 0x7e0f, 0x7e1f, 0x7e21, 0x7e23, 0x7e2c, 0x7e2f, + 0x7e3a, 0x7ea1, 0x7ebe, 0x7f55, 0x7f83, 0x801c, 0x804d, 0x813a, + 0x8144, 0x81ff, 0x8307, 0x832c, 0x851f, 0x8652, 0x879c, 0x87b8, + 0x87fb, 0x8815, 0x88d1, 0x8914, 0x8916, 0x8918, 0x8922, 0x8ab6, + 0x8af1, 0x8af4, 0x8afe, 0x8b00, 0x8b0e, 0x8b0f, 0x8b11, 0x8b16, + 0x8b25, 0x8b47, 0x8b53, 0x8c75, 0x8c78, 0x8cd5, 0x8d7a, 0x8eb8, + 0x8ebc, 0x8ebe, 0x8ec4, 0x8ecd, 0x8ee3, 0x8f17, 0x8f20, 0x8f24, + 0x8f29, 0x8f2b, 0x8f2e, 0x8f49, 0x8f4d, 0x8f50, 0x8f51, 0x8f59, + 0x8f6a, 0x8f6f, 0x8fa3, 0x9038, 0x904d, 0x911d, 0x911f, 0x93ef, + 0x9451, 0x947e, 0x94ac, 0x94cf, 0x953d, 0x953e, 0x9544, 0x95b4, + 0x95e0, 0x96b2, 0x9743, 0x97c5, 0x97c6, 0x97c9, 0x97d4, 0x97e1, + 0x981e, 0x98c1, 0x99dc, 0x9d73, 0x9df6, 0x9e28, 0xef51, 0xef58, + 0xef5b, 0xef5c, 0xef5d, 0xef61, 0xef63, 0xef65, 0xef69, 0xef6c, + 0xef71, 0xef76, 0xef77, 0xef78, 0xef8e, 0xef93, 0xef98, 0xef9b, + 0xef9c, 0xef9d, 0xefa1, 0xefa2, 0xefa3, 0xefa4, 0xefb7, 0xefb8, + 0xefbe, 0xefc0, 0xefc1, 0xefc4, 0xefc7, 0xefc8, 0xefc9, 0xefcb, + 0xefe3, 0xefe5, 0xf014, 0xf015, 0xf017, 0xf019, 0xf030, 0xf037, + 0xf03a, 0xf043, 0xf06c, 0xf074, 0xf0ab, 0xf13b, 0xf190, 0xf191, + 0xf192, 0xf193, 0xf194, 0xf1d7, 0xf1e3, 0xf23d, 0xf254, 0xf4aa, + 0xf712, 0xf7f2 }; /*Collect the unicode lists and glyph_id offsets*/ @@ -10142,7 +10165,7 @@ static const lv_font_fmt_txt_cmap_t cmaps[] = }, { .range_start = 176, .range_length = 63475, .glyph_id_start = 96, - .unicode_list = unicode_list_1, .glyph_id_ofs_list = NULL, .list_length = 409, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY + .unicode_list = unicode_list_1, .glyph_id_ofs_list = NULL, .list_length = 410, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY } }; @@ -10217,7 +10240,7 @@ static const uint8_t kern_left_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0 + 0, 0 }; /*Map glyph_ids to kern right classes*/ @@ -10286,7 +10309,7 @@ static const uint8_t kern_right_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0 + 0, 0 }; /*Kern values between classes*/ diff --git a/lib/lvgl/lvgl/src/font/lv_font_montserrat_20.c b/lib/lvgl/lvgl/src/font/lv_font_montserrat_20.c index aac1c6f4..9fce910d 100644 --- a/lib/lvgl/lvgl/src/font/lv_font_montserrat_20.c +++ b/lib/lvgl/lvgl/src/font/lv_font_montserrat_20.c @@ -1,7 +1,7 @@ /******************************************************************************* * Size: 20 px * Bpp: 4 - * Opts: --bpp 4 --size 20 --no-compress --font Montserrat-Medium.ttf --range 32-127,176,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20351,20363,20391,20445,20449,20462,20463,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29366,29615,29616,29702,29983,29992,30005,30011,30028,30041,30340,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31181,31243,31354,31364,31454,31471,31526,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33719,33756,34255,34562,34892,34920,34987,35013,35201,35268,35270,35272,35282,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35831,35843,36133,36136,36229,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --format lvgl -o out/lv_font_montserrat_20.c + * Opts: --bpp 4 --size 20 --no-compress --font Montserrat-Medium.ttf --range 32-127,176,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20351,20363,20391,20445,20449,20462,20463,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29366,29615,29616,29702,29983,29992,30005,30011,30028,30041,30340,30424,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31181,31243,31354,31364,31454,31471,31526,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33719,33756,34255,34562,34892,34920,34987,35013,35201,35268,35270,35272,35282,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35831,35843,36133,36136,36229,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --format lvgl -o out/lv_font_montserrat_20.c ******************************************************************************/ #ifdef LV_LVGL_H_INCLUDE_SIMPLE @@ -6972,6 +6972,32 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0xef, 0x40, 0x6, 0x30, 0x0, 0x24, 0x0, 0x0, 0xbc, 0x82, 0x0, + /* U+76D8 "盘" */ + 0x0, 0x0, 0x0, 0x0, 0x30, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xf9, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x26, 0x6a, + 0xf8, 0x66, 0x66, 0x65, 0x0, 0x0, 0x0, 0x0, + 0x5f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, + 0x0, 0x0, 0x5f, 0x30, 0x18, 0x10, 0x0, 0x7f, + 0x0, 0x0, 0x0, 0x0, 0x5f, 0x30, 0x3e, 0xf4, + 0x0, 0x7e, 0x0, 0x0, 0x2, 0x32, 0x6f, 0x52, + 0x23, 0x93, 0x22, 0x9e, 0x22, 0x30, 0xa, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, + 0x2, 0x32, 0x9f, 0x22, 0x52, 0x22, 0x22, 0xad, + 0x23, 0x30, 0x0, 0x0, 0xcb, 0x1, 0xfb, 0x30, + 0x0, 0x9d, 0x0, 0x0, 0x0, 0x7, 0xf5, 0x0, + 0x4c, 0xf1, 0x45, 0xdd, 0x0, 0x0, 0x0, 0x3f, + 0xb0, 0x0, 0x0, 0x30, 0x7f, 0xf6, 0x0, 0x0, + 0x0, 0x8, 0x64, 0x44, 0x44, 0x44, 0x58, 0x54, + 0x40, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf1, 0x0, 0x0, 0xf, 0x90, 0xe, + 0x60, 0xe, 0x70, 0x8, 0xf0, 0x0, 0x0, 0xf, + 0x90, 0xe, 0x60, 0xe, 0x70, 0x8, 0xf0, 0x0, + 0x0, 0xf, 0x90, 0xe, 0x60, 0xe, 0x70, 0x8, + 0xf0, 0x0, 0x26, 0x5f, 0xb5, 0x5f, 0x95, 0x5e, + 0x95, 0x5b, 0xf5, 0x62, 0x5f, 0xfe, 0xee, 0xee, + 0xee, 0xee, 0xee, 0xee, 0xff, 0xf5, + /* U+76EE "目" */ 0x34, 0x44, 0x44, 0x44, 0x44, 0x44, 0x43, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xae, 0x0, @@ -11591,178 +11617,179 @@ static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = { {.bitmap_index = 48704, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, {.bitmap_index = 48894, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, {.bitmap_index = 49065, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 49236, .adv_w = 320, .box_w = 14, .box_h = 18, .ofs_x = 3, .ofs_y = -2}, - {.bitmap_index = 49362, .adv_w = 320, .box_w = 19, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 49533, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 49723, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 49913, .adv_w = 320, .box_w = 19, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 50084, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 50284, .adv_w = 320, .box_w = 19, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 50455, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 50636, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 50807, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 50988, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 51169, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 51359, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 51549, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 51720, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 51920, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 52110, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 52310, .adv_w = 320, .box_w = 18, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 52490, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 52661, .adv_w = 320, .box_w = 18, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 52823, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 53023, .adv_w = 320, .box_w = 19, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 53194, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 53394, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 53594, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 53794, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 53994, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 54184, .adv_w = 320, .box_w = 18, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 54346, .adv_w = 320, .box_w = 18, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 54508, .adv_w = 320, .box_w = 19, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 54679, .adv_w = 320, .box_w = 18, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 54841, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 55031, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 55221, .adv_w = 320, .box_w = 14, .box_h = 19, .ofs_x = 3, .ofs_y = -2}, - {.bitmap_index = 55354, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 55535, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 55706, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 55877, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 56067, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 56267, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 49236, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 49426, .adv_w = 320, .box_w = 14, .box_h = 18, .ofs_x = 3, .ofs_y = -2}, + {.bitmap_index = 49552, .adv_w = 320, .box_w = 19, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 49723, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 49913, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 50103, .adv_w = 320, .box_w = 19, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 50274, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 50474, .adv_w = 320, .box_w = 19, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 50645, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 50826, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 50997, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 51178, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 51359, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 51549, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 51739, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 51910, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 52110, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 52300, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 52500, .adv_w = 320, .box_w = 18, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 52680, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 52851, .adv_w = 320, .box_w = 18, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 53013, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 53213, .adv_w = 320, .box_w = 19, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 53384, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 53584, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 53784, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 53984, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 54184, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 54374, .adv_w = 320, .box_w = 18, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 54536, .adv_w = 320, .box_w = 18, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 54698, .adv_w = 320, .box_w = 19, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 54869, .adv_w = 320, .box_w = 18, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 55031, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 55221, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 55411, .adv_w = 320, .box_w = 14, .box_h = 19, .ofs_x = 3, .ofs_y = -2}, + {.bitmap_index = 55544, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 55725, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 55896, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 56067, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 56257, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, {.bitmap_index = 56457, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 56647, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 56828, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 57018, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 57189, .adv_w = 320, .box_w = 20, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 57369, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 57569, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 57769, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 57969, .adv_w = 320, .box_w = 17, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 58139, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 58329, .adv_w = 320, .box_w = 20, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 58509, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 58699, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 58899, .adv_w = 320, .box_w = 19, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 59070, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 59260, .adv_w = 320, .box_w = 18, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 59440, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 59630, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 59830, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 60020, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 60201, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 60382, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 60572, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 60753, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 56647, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 56837, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 57018, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 57208, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 57379, .adv_w = 320, .box_w = 20, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 57559, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 57759, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 57959, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 58159, .adv_w = 320, .box_w = 17, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 58329, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 58519, .adv_w = 320, .box_w = 20, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 58699, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 58889, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 59089, .adv_w = 320, .box_w = 19, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 59260, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 59450, .adv_w = 320, .box_w = 18, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 59630, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 59820, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 60020, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 60210, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 60391, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 60572, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 60762, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, {.bitmap_index = 60943, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 61133, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 61323, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 61513, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 61703, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 61323, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 61513, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 61703, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 61893, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 62083, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 62283, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 62473, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 62654, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 62854, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 63035, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 63235, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 63425, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 63625, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 63825, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 64025, .adv_w = 320, .box_w = 18, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 64205, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 64395, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 64595, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 64795, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 64985, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 65166, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 65356, .adv_w = 320, .box_w = 18, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 65518, .adv_w = 320, .box_w = 18, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 65680, .adv_w = 320, .box_w = 19, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 65851, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 66051, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 66251, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 66451, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 66622, .adv_w = 320, .box_w = 18, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 66802, .adv_w = 320, .box_w = 18, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 66982, .adv_w = 320, .box_w = 18, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 67162, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 62083, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 62273, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 62473, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 62663, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 62844, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 63044, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 63225, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 63425, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 63615, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 63815, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 64015, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 64215, .adv_w = 320, .box_w = 18, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 64395, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 64585, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 64785, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 64985, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 65175, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 65356, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 65546, .adv_w = 320, .box_w = 18, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 65708, .adv_w = 320, .box_w = 18, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 65870, .adv_w = 320, .box_w = 19, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 66041, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 66241, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 66441, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 66641, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 66812, .adv_w = 320, .box_w = 18, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 66992, .adv_w = 320, .box_w = 18, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 67172, .adv_w = 320, .box_w = 18, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, {.bitmap_index = 67352, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 67542, .adv_w = 320, .box_w = 18, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 67704, .adv_w = 320, .box_w = 18, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 67884, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 68055, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 68245, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 68426, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 68607, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 68807, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 68997, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 69187, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 69387, .adv_w = 320, .box_w = 18, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 69549, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 69749, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 69930, .adv_w = 320, .box_w = 20, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 70140, .adv_w = 320, .box_w = 20, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 70290, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 70480, .adv_w = 320, .box_w = 20, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 70630, .adv_w = 220, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 70735, .adv_w = 320, .box_w = 20, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 70945, .adv_w = 320, .box_w = 20, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 71155, .adv_w = 360, .box_w = 23, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 71374, .adv_w = 320, .box_w = 20, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 71584, .adv_w = 360, .box_w = 23, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 71757, .adv_w = 320, .box_w = 20, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 71967, .adv_w = 160, .box_w = 10, .box_h = 16, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 72047, .adv_w = 240, .box_w = 15, .box_h = 16, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 72167, .adv_w = 360, .box_w = 23, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 72386, .adv_w = 320, .box_w = 20, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 72536, .adv_w = 220, .box_w = 14, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 72683, .adv_w = 280, .box_w = 13, .box_h = 19, .ofs_x = 2, .ofs_y = -2}, - {.bitmap_index = 72807, .adv_w = 280, .box_w = 18, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 72996, .adv_w = 280, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 73167, .adv_w = 280, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 73338, .adv_w = 280, .box_w = 13, .box_h = 19, .ofs_x = 2, .ofs_y = -2}, - {.bitmap_index = 73462, .adv_w = 280, .box_w = 19, .box_h = 19, .ofs_x = -1, .ofs_y = -2}, - {.bitmap_index = 73643, .adv_w = 200, .box_w = 11, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 73748, .adv_w = 200, .box_w = 11, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 73853, .adv_w = 280, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 74024, .adv_w = 280, .box_w = 18, .box_h = 5, .ofs_x = 0, .ofs_y = 5}, - {.bitmap_index = 74069, .adv_w = 360, .box_w = 23, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 74242, .adv_w = 400, .box_w = 26, .box_h = 21, .ofs_x = -1, .ofs_y = -3}, - {.bitmap_index = 74515, .adv_w = 360, .box_w = 24, .box_h = 21, .ofs_x = -1, .ofs_y = -3}, - {.bitmap_index = 74767, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 74957, .adv_w = 280, .box_w = 18, .box_h = 11, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 75056, .adv_w = 280, .box_w = 18, .box_h = 11, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 75155, .adv_w = 400, .box_w = 26, .box_h = 16, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 75363, .adv_w = 320, .box_w = 20, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 75513, .adv_w = 320, .box_w = 20, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 75723, .adv_w = 320, .box_w = 21, .box_h = 21, .ofs_x = -1, .ofs_y = -3}, - {.bitmap_index = 75944, .adv_w = 280, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 76115, .adv_w = 280, .box_w = 18, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 76304, .adv_w = 280, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 76475, .adv_w = 280, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 76628, .adv_w = 320, .box_w = 20, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 76778, .adv_w = 200, .box_w = 14, .box_h = 21, .ofs_x = -1, .ofs_y = -3}, - {.bitmap_index = 76925, .adv_w = 280, .box_w = 18, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 77114, .adv_w = 280, .box_w = 18, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 77303, .adv_w = 360, .box_w = 23, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 77476, .adv_w = 320, .box_w = 22, .box_h = 21, .ofs_x = -1, .ofs_y = -3}, - {.bitmap_index = 77707, .adv_w = 240, .box_w = 15, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 77865, .adv_w = 400, .box_w = 25, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 78103, .adv_w = 400, .box_w = 25, .box_h = 13, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 78266, .adv_w = 400, .box_w = 25, .box_h = 13, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 78429, .adv_w = 400, .box_w = 25, .box_h = 13, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 78592, .adv_w = 400, .box_w = 25, .box_h = 13, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 78755, .adv_w = 400, .box_w = 25, .box_h = 13, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 78918, .adv_w = 400, .box_w = 26, .box_h = 17, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 79139, .adv_w = 280, .box_w = 16, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 79307, .adv_w = 280, .box_w = 18, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 79496, .adv_w = 320, .box_w = 21, .box_h = 21, .ofs_x = -1, .ofs_y = -3}, - {.bitmap_index = 79717, .adv_w = 400, .box_w = 25, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 79905, .adv_w = 240, .box_w = 15, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 80063, .adv_w = 322, .box_w = 21, .box_h = 13, .ofs_x = 0, .ofs_y = 1} + {.bitmap_index = 67542, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 67732, .adv_w = 320, .box_w = 18, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 67894, .adv_w = 320, .box_w = 18, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 68074, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 68245, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 68435, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 68616, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 68797, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 68997, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 69187, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 69377, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 69577, .adv_w = 320, .box_w = 18, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 69739, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 69939, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 70120, .adv_w = 320, .box_w = 20, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 70330, .adv_w = 320, .box_w = 20, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 70480, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 70670, .adv_w = 320, .box_w = 20, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 70820, .adv_w = 220, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 70925, .adv_w = 320, .box_w = 20, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 71135, .adv_w = 320, .box_w = 20, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 71345, .adv_w = 360, .box_w = 23, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 71564, .adv_w = 320, .box_w = 20, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 71774, .adv_w = 360, .box_w = 23, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 71947, .adv_w = 320, .box_w = 20, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 72157, .adv_w = 160, .box_w = 10, .box_h = 16, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 72237, .adv_w = 240, .box_w = 15, .box_h = 16, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 72357, .adv_w = 360, .box_w = 23, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 72576, .adv_w = 320, .box_w = 20, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 72726, .adv_w = 220, .box_w = 14, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 72873, .adv_w = 280, .box_w = 13, .box_h = 19, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 72997, .adv_w = 280, .box_w = 18, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 73186, .adv_w = 280, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 73357, .adv_w = 280, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 73528, .adv_w = 280, .box_w = 13, .box_h = 19, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 73652, .adv_w = 280, .box_w = 19, .box_h = 19, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 73833, .adv_w = 200, .box_w = 11, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 73938, .adv_w = 200, .box_w = 11, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 74043, .adv_w = 280, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 74214, .adv_w = 280, .box_w = 18, .box_h = 5, .ofs_x = 0, .ofs_y = 5}, + {.bitmap_index = 74259, .adv_w = 360, .box_w = 23, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 74432, .adv_w = 400, .box_w = 26, .box_h = 21, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 74705, .adv_w = 360, .box_w = 24, .box_h = 21, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 74957, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 75147, .adv_w = 280, .box_w = 18, .box_h = 11, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 75246, .adv_w = 280, .box_w = 18, .box_h = 11, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 75345, .adv_w = 400, .box_w = 26, .box_h = 16, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 75553, .adv_w = 320, .box_w = 20, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 75703, .adv_w = 320, .box_w = 20, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 75913, .adv_w = 320, .box_w = 21, .box_h = 21, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 76134, .adv_w = 280, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 76305, .adv_w = 280, .box_w = 18, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 76494, .adv_w = 280, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 76665, .adv_w = 280, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 76818, .adv_w = 320, .box_w = 20, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 76968, .adv_w = 200, .box_w = 14, .box_h = 21, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 77115, .adv_w = 280, .box_w = 18, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 77304, .adv_w = 280, .box_w = 18, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 77493, .adv_w = 360, .box_w = 23, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 77666, .adv_w = 320, .box_w = 22, .box_h = 21, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 77897, .adv_w = 240, .box_w = 15, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 78055, .adv_w = 400, .box_w = 25, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 78293, .adv_w = 400, .box_w = 25, .box_h = 13, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 78456, .adv_w = 400, .box_w = 25, .box_h = 13, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 78619, .adv_w = 400, .box_w = 25, .box_h = 13, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 78782, .adv_w = 400, .box_w = 25, .box_h = 13, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 78945, .adv_w = 400, .box_w = 25, .box_h = 13, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 79108, .adv_w = 400, .box_w = 26, .box_h = 17, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 79329, .adv_w = 280, .box_w = 16, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 79497, .adv_w = 280, .box_w = 18, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 79686, .adv_w = 320, .box_w = 21, .box_h = 21, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 79907, .adv_w = 400, .box_w = 25, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 80095, .adv_w = 240, .box_w = 15, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 80253, .adv_w = 322, .box_w = 21, .box_h = 13, .ofs_x = 0, .ofs_y = 1} }; /*--------------------- @@ -11799,29 +11826,29 @@ static const uint16_t unicode_list_1[] = { 0x6bb0, 0x6bf1, 0x6c25, 0x6c38, 0x6c8b, 0x6c91, 0x6c9b, 0x6cd8, 0x6d55, 0x6d79, 0x6de0, 0x6e2a, 0x6e31, 0x7009, 0x7018, 0x7076, 0x7086, 0x7198, 0x7206, 0x72ff, 0x7300, 0x7356, 0x746f, 0x7478, - 0x7485, 0x748b, 0x749c, 0x74a9, 0x75d4, 0x763e, 0x7644, 0x765b, - 0x7670, 0x768c, 0x773d, 0x7751, 0x77be, 0x788a, 0x78d1, 0x791d, - 0x795b, 0x79ca, 0x79d4, 0x7a2e, 0x7a3f, 0x7a76, 0x7c4b, 0x7c70, - 0x7c72, 0x7e0f, 0x7e1f, 0x7e21, 0x7e23, 0x7e2c, 0x7e2f, 0x7e3a, - 0x7ea1, 0x7ebe, 0x7f55, 0x7f83, 0x801c, 0x804d, 0x813a, 0x8144, - 0x81ff, 0x8307, 0x832c, 0x851f, 0x8652, 0x879c, 0x87b8, 0x87fb, - 0x8815, 0x88d1, 0x8914, 0x8916, 0x8918, 0x8922, 0x8ab6, 0x8af1, - 0x8af4, 0x8afe, 0x8b00, 0x8b0e, 0x8b0f, 0x8b11, 0x8b16, 0x8b25, - 0x8b47, 0x8b53, 0x8c75, 0x8c78, 0x8cd5, 0x8d7a, 0x8eb8, 0x8ebc, - 0x8ebe, 0x8ec4, 0x8ecd, 0x8ee3, 0x8f17, 0x8f20, 0x8f24, 0x8f29, - 0x8f2b, 0x8f2e, 0x8f49, 0x8f4d, 0x8f50, 0x8f51, 0x8f59, 0x8f6a, - 0x8f6f, 0x8fa3, 0x9038, 0x904d, 0x911d, 0x911f, 0x93ef, 0x9451, - 0x947e, 0x94ac, 0x94cf, 0x953d, 0x953e, 0x9544, 0x95b4, 0x95e0, - 0x96b2, 0x9743, 0x97c5, 0x97c6, 0x97c9, 0x97d4, 0x97e1, 0x981e, - 0x98c1, 0x99dc, 0x9d73, 0x9df6, 0x9e28, 0xef51, 0xef58, 0xef5b, - 0xef5c, 0xef5d, 0xef61, 0xef63, 0xef65, 0xef69, 0xef6c, 0xef71, - 0xef76, 0xef77, 0xef78, 0xef8e, 0xef93, 0xef98, 0xef9b, 0xef9c, - 0xef9d, 0xefa1, 0xefa2, 0xefa3, 0xefa4, 0xefb7, 0xefb8, 0xefbe, - 0xefc0, 0xefc1, 0xefc4, 0xefc7, 0xefc8, 0xefc9, 0xefcb, 0xefe3, - 0xefe5, 0xf014, 0xf015, 0xf017, 0xf019, 0xf030, 0xf037, 0xf03a, - 0xf043, 0xf06c, 0xf074, 0xf0ab, 0xf13b, 0xf190, 0xf191, 0xf192, - 0xf193, 0xf194, 0xf1d7, 0xf1e3, 0xf23d, 0xf254, 0xf4aa, 0xf712, - 0xf7f2 + 0x7485, 0x748b, 0x749c, 0x74a9, 0x75d4, 0x7628, 0x763e, 0x7644, + 0x765b, 0x7670, 0x768c, 0x773d, 0x7751, 0x77be, 0x788a, 0x78d1, + 0x791d, 0x795b, 0x79ca, 0x79d4, 0x7a2e, 0x7a3f, 0x7a76, 0x7c4b, + 0x7c70, 0x7c72, 0x7e0f, 0x7e1f, 0x7e21, 0x7e23, 0x7e2c, 0x7e2f, + 0x7e3a, 0x7ea1, 0x7ebe, 0x7f55, 0x7f83, 0x801c, 0x804d, 0x813a, + 0x8144, 0x81ff, 0x8307, 0x832c, 0x851f, 0x8652, 0x879c, 0x87b8, + 0x87fb, 0x8815, 0x88d1, 0x8914, 0x8916, 0x8918, 0x8922, 0x8ab6, + 0x8af1, 0x8af4, 0x8afe, 0x8b00, 0x8b0e, 0x8b0f, 0x8b11, 0x8b16, + 0x8b25, 0x8b47, 0x8b53, 0x8c75, 0x8c78, 0x8cd5, 0x8d7a, 0x8eb8, + 0x8ebc, 0x8ebe, 0x8ec4, 0x8ecd, 0x8ee3, 0x8f17, 0x8f20, 0x8f24, + 0x8f29, 0x8f2b, 0x8f2e, 0x8f49, 0x8f4d, 0x8f50, 0x8f51, 0x8f59, + 0x8f6a, 0x8f6f, 0x8fa3, 0x9038, 0x904d, 0x911d, 0x911f, 0x93ef, + 0x9451, 0x947e, 0x94ac, 0x94cf, 0x953d, 0x953e, 0x9544, 0x95b4, + 0x95e0, 0x96b2, 0x9743, 0x97c5, 0x97c6, 0x97c9, 0x97d4, 0x97e1, + 0x981e, 0x98c1, 0x99dc, 0x9d73, 0x9df6, 0x9e28, 0xef51, 0xef58, + 0xef5b, 0xef5c, 0xef5d, 0xef61, 0xef63, 0xef65, 0xef69, 0xef6c, + 0xef71, 0xef76, 0xef77, 0xef78, 0xef8e, 0xef93, 0xef98, 0xef9b, + 0xef9c, 0xef9d, 0xefa1, 0xefa2, 0xefa3, 0xefa4, 0xefb7, 0xefb8, + 0xefbe, 0xefc0, 0xefc1, 0xefc4, 0xefc7, 0xefc8, 0xefc9, 0xefcb, + 0xefe3, 0xefe5, 0xf014, 0xf015, 0xf017, 0xf019, 0xf030, 0xf037, + 0xf03a, 0xf043, 0xf06c, 0xf074, 0xf0ab, 0xf13b, 0xf190, 0xf191, + 0xf192, 0xf193, 0xf194, 0xf1d7, 0xf1e3, 0xf23d, 0xf254, 0xf4aa, + 0xf712, 0xf7f2 }; /*Collect the unicode lists and glyph_id offsets*/ @@ -11833,7 +11860,7 @@ static const lv_font_fmt_txt_cmap_t cmaps[] = }, { .range_start = 176, .range_length = 63475, .glyph_id_start = 96, - .unicode_list = unicode_list_1, .glyph_id_ofs_list = NULL, .list_length = 409, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY + .unicode_list = unicode_list_1, .glyph_id_ofs_list = NULL, .list_length = 410, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY } }; @@ -11908,7 +11935,7 @@ static const uint8_t kern_left_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0 + 0, 0 }; /*Map glyph_ids to kern right classes*/ @@ -11977,7 +12004,7 @@ static const uint8_t kern_right_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0 + 0, 0 }; /*Kern values between classes*/ diff --git a/lib/lvgl/lvgl/src/font/lv_font_montserrat_22.c b/lib/lvgl/lvgl/src/font/lv_font_montserrat_22.c index f3d21457..fed4514f 100644 --- a/lib/lvgl/lvgl/src/font/lv_font_montserrat_22.c +++ b/lib/lvgl/lvgl/src/font/lv_font_montserrat_22.c @@ -1,7 +1,7 @@ /******************************************************************************* * Size: 22 px * Bpp: 4 - * Opts: --bpp 4 --size 22 --no-compress --font Montserrat-Medium.ttf --range 32-127,176,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20351,20363,20391,20445,20449,20462,20463,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29366,29615,29616,29702,29983,29992,30005,30011,30028,30041,30340,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31181,31243,31354,31364,31454,31471,31526,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33719,33756,34255,34562,34892,34920,34987,35013,35201,35268,35270,35272,35282,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35831,35843,36133,36136,36229,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --format lvgl -o out/lv_font_montserrat_22.c + * Opts: --bpp 4 --size 22 --no-compress --font Montserrat-Medium.ttf --range 32-127,176,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20351,20363,20391,20445,20449,20462,20463,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29366,29615,29616,29702,29983,29992,30005,30011,30028,30041,30340,30424,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31181,31243,31354,31364,31454,31471,31526,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33719,33756,34255,34562,34892,34920,34987,35013,35201,35268,35270,35272,35282,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35831,35843,36133,36136,36229,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --format lvgl -o out/lv_font_montserrat_22.c ******************************************************************************/ #ifdef LV_LVGL_H_INCLUDE_SIMPLE @@ -8109,6 +8109,37 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x50, 0x0, 0x8, 0xfe, 0xa4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x11, 0x0, 0x0, 0x0, + /* U+76D8 "盘" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, + 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x7f, 0x70, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xd, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf9, 0x0, 0x0, 0x0, 0x0, 0xd, 0xf8, + 0x88, 0x88, 0x88, 0x88, 0xf9, 0x0, 0x0, 0x0, + 0x0, 0xd, 0xf0, 0x2, 0xe8, 0x0, 0x0, 0xf9, + 0x0, 0x0, 0x0, 0x0, 0xd, 0xf0, 0x1, 0xaf, + 0xb0, 0x0, 0xf9, 0x0, 0x0, 0x2, 0x33, 0x2d, + 0xf2, 0x22, 0x27, 0x52, 0x22, 0xfa, 0x23, 0x30, + 0x8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xd0, 0x3, 0x54, 0x4f, 0xc4, 0x45, + 0x44, 0x44, 0x45, 0xf9, 0x45, 0x40, 0x0, 0x0, + 0x4f, 0x70, 0x1f, 0xb3, 0x0, 0x1, 0xf7, 0x0, + 0x0, 0x0, 0x1, 0xdf, 0x10, 0x6, 0xdf, 0x61, + 0x36, 0xf7, 0x0, 0x0, 0x0, 0x1d, 0xf7, 0x0, + 0x0, 0x7, 0x2, 0xff, 0xf3, 0x0, 0x0, 0x0, + 0x3, 0x90, 0x0, 0x0, 0x0, 0x0, 0x76, 0x20, + 0x0, 0x0, 0x0, 0xa, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0xb, 0xf7, + 0x66, 0xfa, 0x66, 0xbf, 0x66, 0x6f, 0xc0, 0x0, + 0x0, 0xa, 0xf1, 0x0, 0xf7, 0x0, 0x8e, 0x0, + 0xf, 0xc0, 0x0, 0x0, 0xa, 0xf1, 0x0, 0xf7, + 0x0, 0x8e, 0x0, 0xf, 0xc0, 0x0, 0x0, 0xa, + 0xf1, 0x0, 0xf7, 0x0, 0x8e, 0x0, 0xf, 0xc0, + 0x0, 0x28, 0x7c, 0xf7, 0x77, 0xfb, 0x77, 0xbf, + 0x77, 0x7f, 0xd7, 0x82, 0x4f, 0xff, 0xee, 0xee, + 0xee, 0xee, 0xee, 0xee, 0xef, 0xff, 0xf4, + /* U+76EE "目" */ 0x2f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x2f, 0xc6, 0x66, 0x66, 0x66, 0x66, 0x67, 0xfc, @@ -13482,178 +13513,179 @@ static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = { {.bitmap_index = 57791, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, {.bitmap_index = 58022, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, {.bitmap_index = 58222, .adv_w = 352, .box_w = 19, .box_h = 21, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 58422, .adv_w = 352, .box_w = 16, .box_h = 19, .ofs_x = 3, .ofs_y = -2}, - {.bitmap_index = 58574, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 58774, .adv_w = 352, .box_w = 22, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 58994, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 59215, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 59425, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 59656, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 59866, .adv_w = 352, .box_w = 21, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 60097, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 60297, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 60497, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 60718, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 60949, .adv_w = 352, .box_w = 21, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 61180, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 61390, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 61632, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 61853, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 62095, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 62305, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 62505, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 62715, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 62946, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 63146, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 63356, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 58422, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 58653, .adv_w = 352, .box_w = 16, .box_h = 19, .ofs_x = 3, .ofs_y = -2}, + {.bitmap_index = 58805, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 59005, .adv_w = 352, .box_w = 22, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 59225, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 59446, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 59656, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 59887, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 60097, .adv_w = 352, .box_w = 21, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 60328, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 60528, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 60728, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 60949, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 61180, .adv_w = 352, .box_w = 21, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 61411, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 61621, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 61863, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 62084, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 62326, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 62536, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 62736, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 62946, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 63177, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 63377, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, {.bitmap_index = 63587, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 63818, .adv_w = 352, .box_w = 21, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 64049, .adv_w = 352, .box_w = 22, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 64269, .adv_w = 352, .box_w = 20, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 64459, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 64659, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 64869, .adv_w = 352, .box_w = 20, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 65059, .adv_w = 352, .box_w = 22, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 65279, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 65489, .adv_w = 352, .box_w = 16, .box_h = 20, .ofs_x = 3, .ofs_y = -2}, - {.bitmap_index = 65649, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 65870, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 66070, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 66280, .adv_w = 352, .box_w = 22, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 66500, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 66742, .adv_w = 352, .box_w = 22, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 66962, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 67193, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 67414, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 67645, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 67855, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 68086, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 68328, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 68570, .adv_w = 352, .box_w = 21, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 68801, .adv_w = 352, .box_w = 19, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 69001, .adv_w = 352, .box_w = 22, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 69221, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 69431, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 69652, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 69894, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 70104, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 70335, .adv_w = 352, .box_w = 20, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 70555, .adv_w = 352, .box_w = 22, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 70775, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 71017, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 71227, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 71448, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 71658, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 71889, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 72110, .adv_w = 352, .box_w = 22, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 72330, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 63818, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 64049, .adv_w = 352, .box_w = 21, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 64280, .adv_w = 352, .box_w = 22, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 64500, .adv_w = 352, .box_w = 20, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 64690, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 64890, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 65100, .adv_w = 352, .box_w = 20, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 65290, .adv_w = 352, .box_w = 22, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 65510, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 65720, .adv_w = 352, .box_w = 16, .box_h = 20, .ofs_x = 3, .ofs_y = -2}, + {.bitmap_index = 65880, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 66101, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 66301, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 66511, .adv_w = 352, .box_w = 22, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 66731, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 66973, .adv_w = 352, .box_w = 22, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 67193, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 67424, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 67645, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 67876, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 68086, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 68317, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 68559, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 68801, .adv_w = 352, .box_w = 21, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 69032, .adv_w = 352, .box_w = 19, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 69232, .adv_w = 352, .box_w = 22, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 69452, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 69662, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 69883, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 70125, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 70335, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 70566, .adv_w = 352, .box_w = 20, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 70786, .adv_w = 352, .box_w = 22, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 71006, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 71248, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 71458, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 71679, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 71889, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 72120, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 72341, .adv_w = 352, .box_w = 22, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 72561, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 72792, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 73013, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 73244, .adv_w = 352, .box_w = 21, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 73475, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 73717, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 73959, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 74190, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 74400, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 74621, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 74821, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 75052, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 75262, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 75493, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 75714, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 75945, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 76155, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 76376, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 76607, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 76849, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 77070, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 77291, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 77512, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 77712, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 77912, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 78122, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 78353, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 78595, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 78837, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 79037, .adv_w = 352, .box_w = 20, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 79257, .adv_w = 352, .box_w = 18, .box_h = 21, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 79446, .adv_w = 352, .box_w = 19, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 79655, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 79876, .adv_w = 352, .box_w = 20, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 80096, .adv_w = 352, .box_w = 20, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 80286, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 80496, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 80696, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 80896, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 81106, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 81316, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 72792, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 73023, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 73244, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 73475, .adv_w = 352, .box_w = 21, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 73706, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 73948, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 74190, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 74421, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 74631, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 74852, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 75052, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 75283, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 75493, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 75724, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 75945, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 76176, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 76386, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 76607, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 76838, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 77080, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 77301, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 77522, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 77743, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 77943, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 78143, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 78353, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 78584, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 78826, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 79068, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 79268, .adv_w = 352, .box_w = 20, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 79488, .adv_w = 352, .box_w = 18, .box_h = 21, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 79677, .adv_w = 352, .box_w = 19, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 79886, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 80107, .adv_w = 352, .box_w = 20, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 80327, .adv_w = 352, .box_w = 20, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 80517, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 80727, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 80927, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 81127, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 81337, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, {.bitmap_index = 81547, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 81778, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 82009, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 82240, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 82440, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 82682, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 82903, .adv_w = 352, .box_w = 23, .box_h = 23, .ofs_x = -1, .ofs_y = -3}, - {.bitmap_index = 83168, .adv_w = 352, .box_w = 22, .box_h = 17, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 83355, .adv_w = 352, .box_w = 22, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 83575, .adv_w = 352, .box_w = 22, .box_h = 17, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 83762, .adv_w = 242, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 83890, .adv_w = 352, .box_w = 22, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 84143, .adv_w = 352, .box_w = 22, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 84396, .adv_w = 396, .box_w = 25, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 84646, .adv_w = 352, .box_w = 22, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 84899, .adv_w = 396, .box_w = 25, .box_h = 17, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 85112, .adv_w = 352, .box_w = 22, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 85365, .adv_w = 176, .box_w = 11, .box_h = 18, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 85464, .adv_w = 264, .box_w = 17, .box_h = 18, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 85617, .adv_w = 396, .box_w = 25, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 85892, .adv_w = 352, .box_w = 22, .box_h = 17, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 86079, .adv_w = 242, .box_w = 16, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 86263, .adv_w = 308, .box_w = 15, .box_h = 21, .ofs_x = 2, .ofs_y = -2}, - {.bitmap_index = 86421, .adv_w = 308, .box_w = 20, .box_h = 24, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 86661, .adv_w = 308, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 86861, .adv_w = 308, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 87061, .adv_w = 308, .box_w = 15, .box_h = 21, .ofs_x = 2, .ofs_y = -2}, - {.bitmap_index = 87219, .adv_w = 308, .box_w = 21, .box_h = 20, .ofs_x = -1, .ofs_y = -2}, - {.bitmap_index = 87429, .adv_w = 220, .box_w = 12, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 87549, .adv_w = 220, .box_w = 12, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 87669, .adv_w = 308, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 87869, .adv_w = 308, .box_w = 20, .box_h = 5, .ofs_x = 0, .ofs_y = 6}, - {.bitmap_index = 87919, .adv_w = 396, .box_w = 25, .box_h = 17, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 88132, .adv_w = 440, .box_w = 28, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 88454, .adv_w = 396, .box_w = 27, .box_h = 23, .ofs_x = -1, .ofs_y = -3}, - {.bitmap_index = 88765, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 88996, .adv_w = 308, .box_w = 19, .box_h = 12, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 89110, .adv_w = 308, .box_w = 19, .box_h = 12, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 89224, .adv_w = 440, .box_w = 28, .box_h = 18, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 89476, .adv_w = 352, .box_w = 22, .box_h = 17, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 89663, .adv_w = 352, .box_w = 22, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 89916, .adv_w = 352, .box_w = 23, .box_h = 23, .ofs_x = -1, .ofs_y = -3}, - {.bitmap_index = 90181, .adv_w = 308, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 90381, .adv_w = 308, .box_w = 20, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 90611, .adv_w = 308, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 90811, .adv_w = 308, .box_w = 20, .box_h = 18, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 90991, .adv_w = 352, .box_w = 22, .box_h = 17, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 91178, .adv_w = 220, .box_w = 15, .box_h = 23, .ofs_x = -1, .ofs_y = -3}, - {.bitmap_index = 91351, .adv_w = 308, .box_w = 20, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 91581, .adv_w = 308, .box_w = 20, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 91811, .adv_w = 396, .box_w = 25, .box_h = 17, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 92024, .adv_w = 352, .box_w = 24, .box_h = 23, .ofs_x = -1, .ofs_y = -3}, - {.bitmap_index = 92300, .adv_w = 264, .box_w = 17, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 92496, .adv_w = 440, .box_w = 28, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 92790, .adv_w = 440, .box_w = 28, .box_h = 15, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 93000, .adv_w = 440, .box_w = 28, .box_h = 15, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 93210, .adv_w = 440, .box_w = 28, .box_h = 15, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 93420, .adv_w = 440, .box_w = 28, .box_h = 15, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 93630, .adv_w = 440, .box_w = 28, .box_h = 15, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 93840, .adv_w = 440, .box_w = 28, .box_h = 18, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 94092, .adv_w = 308, .box_w = 17, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 94288, .adv_w = 308, .box_w = 20, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 94518, .adv_w = 352, .box_w = 23, .box_h = 23, .ofs_x = -1, .ofs_y = -3}, - {.bitmap_index = 94783, .adv_w = 440, .box_w = 28, .box_h = 17, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 95021, .adv_w = 264, .box_w = 17, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 95217, .adv_w = 354, .box_w = 23, .box_h = 14, .ofs_x = 0, .ofs_y = 1} + {.bitmap_index = 81778, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 82009, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 82240, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 82471, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 82671, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 82913, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 83134, .adv_w = 352, .box_w = 23, .box_h = 23, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 83399, .adv_w = 352, .box_w = 22, .box_h = 17, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 83586, .adv_w = 352, .box_w = 22, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 83806, .adv_w = 352, .box_w = 22, .box_h = 17, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 83993, .adv_w = 242, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 84121, .adv_w = 352, .box_w = 22, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 84374, .adv_w = 352, .box_w = 22, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 84627, .adv_w = 396, .box_w = 25, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 84877, .adv_w = 352, .box_w = 22, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 85130, .adv_w = 396, .box_w = 25, .box_h = 17, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 85343, .adv_w = 352, .box_w = 22, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 85596, .adv_w = 176, .box_w = 11, .box_h = 18, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 85695, .adv_w = 264, .box_w = 17, .box_h = 18, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 85848, .adv_w = 396, .box_w = 25, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 86123, .adv_w = 352, .box_w = 22, .box_h = 17, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 86310, .adv_w = 242, .box_w = 16, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 86494, .adv_w = 308, .box_w = 15, .box_h = 21, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 86652, .adv_w = 308, .box_w = 20, .box_h = 24, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 86892, .adv_w = 308, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 87092, .adv_w = 308, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 87292, .adv_w = 308, .box_w = 15, .box_h = 21, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 87450, .adv_w = 308, .box_w = 21, .box_h = 20, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 87660, .adv_w = 220, .box_w = 12, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 87780, .adv_w = 220, .box_w = 12, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 87900, .adv_w = 308, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 88100, .adv_w = 308, .box_w = 20, .box_h = 5, .ofs_x = 0, .ofs_y = 6}, + {.bitmap_index = 88150, .adv_w = 396, .box_w = 25, .box_h = 17, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 88363, .adv_w = 440, .box_w = 28, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 88685, .adv_w = 396, .box_w = 27, .box_h = 23, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 88996, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 89227, .adv_w = 308, .box_w = 19, .box_h = 12, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 89341, .adv_w = 308, .box_w = 19, .box_h = 12, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 89455, .adv_w = 440, .box_w = 28, .box_h = 18, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 89707, .adv_w = 352, .box_w = 22, .box_h = 17, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 89894, .adv_w = 352, .box_w = 22, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 90147, .adv_w = 352, .box_w = 23, .box_h = 23, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 90412, .adv_w = 308, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 90612, .adv_w = 308, .box_w = 20, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 90842, .adv_w = 308, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 91042, .adv_w = 308, .box_w = 20, .box_h = 18, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 91222, .adv_w = 352, .box_w = 22, .box_h = 17, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 91409, .adv_w = 220, .box_w = 15, .box_h = 23, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 91582, .adv_w = 308, .box_w = 20, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 91812, .adv_w = 308, .box_w = 20, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 92042, .adv_w = 396, .box_w = 25, .box_h = 17, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 92255, .adv_w = 352, .box_w = 24, .box_h = 23, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 92531, .adv_w = 264, .box_w = 17, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 92727, .adv_w = 440, .box_w = 28, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 93021, .adv_w = 440, .box_w = 28, .box_h = 15, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 93231, .adv_w = 440, .box_w = 28, .box_h = 15, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 93441, .adv_w = 440, .box_w = 28, .box_h = 15, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 93651, .adv_w = 440, .box_w = 28, .box_h = 15, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 93861, .adv_w = 440, .box_w = 28, .box_h = 15, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 94071, .adv_w = 440, .box_w = 28, .box_h = 18, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 94323, .adv_w = 308, .box_w = 17, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 94519, .adv_w = 308, .box_w = 20, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 94749, .adv_w = 352, .box_w = 23, .box_h = 23, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 95014, .adv_w = 440, .box_w = 28, .box_h = 17, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 95252, .adv_w = 264, .box_w = 17, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 95448, .adv_w = 354, .box_w = 23, .box_h = 14, .ofs_x = 0, .ofs_y = 1} }; /*--------------------- @@ -13690,29 +13722,29 @@ static const uint16_t unicode_list_1[] = { 0x6bb0, 0x6bf1, 0x6c25, 0x6c38, 0x6c8b, 0x6c91, 0x6c9b, 0x6cd8, 0x6d55, 0x6d79, 0x6de0, 0x6e2a, 0x6e31, 0x7009, 0x7018, 0x7076, 0x7086, 0x7198, 0x7206, 0x72ff, 0x7300, 0x7356, 0x746f, 0x7478, - 0x7485, 0x748b, 0x749c, 0x74a9, 0x75d4, 0x763e, 0x7644, 0x765b, - 0x7670, 0x768c, 0x773d, 0x7751, 0x77be, 0x788a, 0x78d1, 0x791d, - 0x795b, 0x79ca, 0x79d4, 0x7a2e, 0x7a3f, 0x7a76, 0x7c4b, 0x7c70, - 0x7c72, 0x7e0f, 0x7e1f, 0x7e21, 0x7e23, 0x7e2c, 0x7e2f, 0x7e3a, - 0x7ea1, 0x7ebe, 0x7f55, 0x7f83, 0x801c, 0x804d, 0x813a, 0x8144, - 0x81ff, 0x8307, 0x832c, 0x851f, 0x8652, 0x879c, 0x87b8, 0x87fb, - 0x8815, 0x88d1, 0x8914, 0x8916, 0x8918, 0x8922, 0x8ab6, 0x8af1, - 0x8af4, 0x8afe, 0x8b00, 0x8b0e, 0x8b0f, 0x8b11, 0x8b16, 0x8b25, - 0x8b47, 0x8b53, 0x8c75, 0x8c78, 0x8cd5, 0x8d7a, 0x8eb8, 0x8ebc, - 0x8ebe, 0x8ec4, 0x8ecd, 0x8ee3, 0x8f17, 0x8f20, 0x8f24, 0x8f29, - 0x8f2b, 0x8f2e, 0x8f49, 0x8f4d, 0x8f50, 0x8f51, 0x8f59, 0x8f6a, - 0x8f6f, 0x8fa3, 0x9038, 0x904d, 0x911d, 0x911f, 0x93ef, 0x9451, - 0x947e, 0x94ac, 0x94cf, 0x953d, 0x953e, 0x9544, 0x95b4, 0x95e0, - 0x96b2, 0x9743, 0x97c5, 0x97c6, 0x97c9, 0x97d4, 0x97e1, 0x981e, - 0x98c1, 0x99dc, 0x9d73, 0x9df6, 0x9e28, 0xef51, 0xef58, 0xef5b, - 0xef5c, 0xef5d, 0xef61, 0xef63, 0xef65, 0xef69, 0xef6c, 0xef71, - 0xef76, 0xef77, 0xef78, 0xef8e, 0xef93, 0xef98, 0xef9b, 0xef9c, - 0xef9d, 0xefa1, 0xefa2, 0xefa3, 0xefa4, 0xefb7, 0xefb8, 0xefbe, - 0xefc0, 0xefc1, 0xefc4, 0xefc7, 0xefc8, 0xefc9, 0xefcb, 0xefe3, - 0xefe5, 0xf014, 0xf015, 0xf017, 0xf019, 0xf030, 0xf037, 0xf03a, - 0xf043, 0xf06c, 0xf074, 0xf0ab, 0xf13b, 0xf190, 0xf191, 0xf192, - 0xf193, 0xf194, 0xf1d7, 0xf1e3, 0xf23d, 0xf254, 0xf4aa, 0xf712, - 0xf7f2 + 0x7485, 0x748b, 0x749c, 0x74a9, 0x75d4, 0x7628, 0x763e, 0x7644, + 0x765b, 0x7670, 0x768c, 0x773d, 0x7751, 0x77be, 0x788a, 0x78d1, + 0x791d, 0x795b, 0x79ca, 0x79d4, 0x7a2e, 0x7a3f, 0x7a76, 0x7c4b, + 0x7c70, 0x7c72, 0x7e0f, 0x7e1f, 0x7e21, 0x7e23, 0x7e2c, 0x7e2f, + 0x7e3a, 0x7ea1, 0x7ebe, 0x7f55, 0x7f83, 0x801c, 0x804d, 0x813a, + 0x8144, 0x81ff, 0x8307, 0x832c, 0x851f, 0x8652, 0x879c, 0x87b8, + 0x87fb, 0x8815, 0x88d1, 0x8914, 0x8916, 0x8918, 0x8922, 0x8ab6, + 0x8af1, 0x8af4, 0x8afe, 0x8b00, 0x8b0e, 0x8b0f, 0x8b11, 0x8b16, + 0x8b25, 0x8b47, 0x8b53, 0x8c75, 0x8c78, 0x8cd5, 0x8d7a, 0x8eb8, + 0x8ebc, 0x8ebe, 0x8ec4, 0x8ecd, 0x8ee3, 0x8f17, 0x8f20, 0x8f24, + 0x8f29, 0x8f2b, 0x8f2e, 0x8f49, 0x8f4d, 0x8f50, 0x8f51, 0x8f59, + 0x8f6a, 0x8f6f, 0x8fa3, 0x9038, 0x904d, 0x911d, 0x911f, 0x93ef, + 0x9451, 0x947e, 0x94ac, 0x94cf, 0x953d, 0x953e, 0x9544, 0x95b4, + 0x95e0, 0x96b2, 0x9743, 0x97c5, 0x97c6, 0x97c9, 0x97d4, 0x97e1, + 0x981e, 0x98c1, 0x99dc, 0x9d73, 0x9df6, 0x9e28, 0xef51, 0xef58, + 0xef5b, 0xef5c, 0xef5d, 0xef61, 0xef63, 0xef65, 0xef69, 0xef6c, + 0xef71, 0xef76, 0xef77, 0xef78, 0xef8e, 0xef93, 0xef98, 0xef9b, + 0xef9c, 0xef9d, 0xefa1, 0xefa2, 0xefa3, 0xefa4, 0xefb7, 0xefb8, + 0xefbe, 0xefc0, 0xefc1, 0xefc4, 0xefc7, 0xefc8, 0xefc9, 0xefcb, + 0xefe3, 0xefe5, 0xf014, 0xf015, 0xf017, 0xf019, 0xf030, 0xf037, + 0xf03a, 0xf043, 0xf06c, 0xf074, 0xf0ab, 0xf13b, 0xf190, 0xf191, + 0xf192, 0xf193, 0xf194, 0xf1d7, 0xf1e3, 0xf23d, 0xf254, 0xf4aa, + 0xf712, 0xf7f2 }; /*Collect the unicode lists and glyph_id offsets*/ @@ -13724,7 +13756,7 @@ static const lv_font_fmt_txt_cmap_t cmaps[] = }, { .range_start = 176, .range_length = 63475, .glyph_id_start = 96, - .unicode_list = unicode_list_1, .glyph_id_ofs_list = NULL, .list_length = 409, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY + .unicode_list = unicode_list_1, .glyph_id_ofs_list = NULL, .list_length = 410, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY } }; @@ -13799,7 +13831,7 @@ static const uint8_t kern_left_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0 + 0, 0 }; /*Map glyph_ids to kern right classes*/ @@ -13868,7 +13900,7 @@ static const uint8_t kern_right_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0 + 0, 0 }; /*Kern values between classes*/ diff --git a/lib/lvgl/lvgl/src/font/lv_font_montserrat_24.c b/lib/lvgl/lvgl/src/font/lv_font_montserrat_24.c index e81595eb..b0e2f361 100644 --- a/lib/lvgl/lvgl/src/font/lv_font_montserrat_24.c +++ b/lib/lvgl/lvgl/src/font/lv_font_montserrat_24.c @@ -1,7 +1,7 @@ /******************************************************************************* * Size: 24 px * Bpp: 4 - * Opts: --bpp 4 --size 24 --no-compress --font Montserrat-Medium.ttf --range 32-127,176,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20351,20363,20391,20445,20449,20462,20463,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29366,29615,29616,29702,29983,29992,30005,30011,30028,30041,30340,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31181,31243,31354,31364,31454,31471,31526,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33719,33756,34255,34562,34892,34920,34987,35013,35201,35268,35270,35272,35282,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35831,35843,36133,36136,36229,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --format lvgl -o out/lv_font_montserrat_24.c + * Opts: --bpp 4 --size 24 --no-compress --font Montserrat-Medium.ttf --range 32-127,176,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20351,20363,20391,20445,20449,20462,20463,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29366,29615,29616,29702,29983,29992,30005,30011,30028,30041,30340,30424,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31181,31243,31354,31364,31454,31471,31526,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33719,33756,34255,34562,34892,34920,34987,35013,35201,35268,35270,35272,35282,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35831,35843,36133,36136,36229,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --format lvgl -o out/lv_font_montserrat_24.c ******************************************************************************/ #ifdef LV_LVGL_H_INCLUDE_SIMPLE @@ -9421,6 +9421,41 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x2, 0xff, 0xc7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x20, 0x0, 0x0, + /* U+76D8 "盘" */ + 0x0, 0x0, 0x0, 0x0, 0x1, 0xc9, 0x10, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x5, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2, 0x88, 0x8c, 0xfc, 0x88, 0x88, + 0x88, 0x81, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf2, 0x0, 0x0, + 0x0, 0x0, 0x2, 0xfd, 0x0, 0x5, 0x10, 0x0, + 0xa, 0xf1, 0x0, 0x0, 0x0, 0x0, 0x2, 0xfd, + 0x0, 0x3f, 0xe6, 0x0, 0x9, 0xf1, 0x0, 0x0, + 0x0, 0x0, 0x2, 0xfd, 0x0, 0x7, 0xff, 0x30, + 0x9, 0xf1, 0x0, 0x0, 0x0, 0x11, 0x3, 0xfd, + 0x0, 0x0, 0x27, 0x0, 0xa, 0xf1, 0x1, 0x10, + 0x6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xa0, 0x4, 0x99, 0x8b, 0xfc, + 0x88, 0x88, 0x88, 0x88, 0x8d, 0xf8, 0x99, 0x60, + 0x0, 0x0, 0x8, 0xf6, 0x0, 0xb8, 0x10, 0x0, + 0xb, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xf1, + 0x1, 0xaf, 0xfa, 0x0, 0xc, 0xf0, 0x0, 0x0, + 0x0, 0x3, 0xef, 0x70, 0x0, 0x2, 0xb8, 0xa, + 0xff, 0xe0, 0x0, 0x0, 0x0, 0x5, 0xeb, 0x0, + 0x0, 0x0, 0x0, 0x5, 0xfc, 0x40, 0x0, 0x0, + 0x0, 0x1, 0x87, 0x77, 0x77, 0x77, 0x77, 0x77, + 0x77, 0x77, 0x30, 0x0, 0x0, 0x3, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x70, 0x0, + 0x0, 0x2, 0xfc, 0x0, 0x1f, 0x80, 0x1, 0xf8, + 0x0, 0x8f, 0x60, 0x0, 0x0, 0x2, 0xfc, 0x0, + 0x1f, 0x80, 0x1, 0xf8, 0x0, 0x7f, 0x60, 0x0, + 0x0, 0x2, 0xfc, 0x0, 0x1f, 0x80, 0x1, 0xf8, + 0x0, 0x7f, 0x60, 0x0, 0x0, 0x2, 0xfc, 0x0, + 0x1f, 0x80, 0x1, 0xf8, 0x0, 0x7f, 0x60, 0x0, + 0xa, 0x9a, 0xfe, 0x99, 0x9f, 0xc9, 0x9a, 0xfc, + 0x99, 0xcf, 0xc9, 0xa2, 0xf, 0xfe, 0xee, 0xee, + 0xee, 0xee, 0xee, 0xee, 0xee, 0xef, 0xff, 0xf3, + /* U+76EE "目" */ 0x7, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x71, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, @@ -15557,178 +15592,179 @@ static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = { {.bitmap_index = 67876, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, {.bitmap_index = 68141, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, {.bitmap_index = 68383, .adv_w = 384, .box_w = 20, .box_h = 23, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 68613, .adv_w = 384, .box_w = 18, .box_h = 21, .ofs_x = 3, .ofs_y = -2}, - {.bitmap_index = 68802, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 69044, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 69297, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 69562, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 69804, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 70069, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 70322, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 70587, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 70829, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 71071, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 71324, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 71577, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 71853, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 72095, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 72371, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 72636, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 72912, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 73165, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 73418, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 73671, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 73947, .adv_w = 384, .box_w = 22, .box_h = 21, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 74178, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 74431, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 74696, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 74972, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 75237, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 75501, .adv_w = 384, .box_w = 20, .box_h = 21, .ofs_x = 2, .ofs_y = -2}, - {.bitmap_index = 75711, .adv_w = 384, .box_w = 22, .box_h = 21, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 75942, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 76184, .adv_w = 384, .box_w = 22, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 76404, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 76657, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 76910, .adv_w = 384, .box_w = 18, .box_h = 22, .ofs_x = 3, .ofs_y = -2}, - {.bitmap_index = 77108, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 77361, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 77603, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 77856, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 78109, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 78385, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 78638, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 78902, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 79167, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 79420, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 79673, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 79937, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 80213, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 80489, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 80742, .adv_w = 384, .box_w = 21, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 80984, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 81248, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 81490, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 81755, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 82020, .adv_w = 384, .box_w = 23, .box_h = 21, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 82262, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 82515, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 82768, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 83032, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 83308, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 83573, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 83826, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 84068, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 84344, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 84597, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 68613, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 68877, .adv_w = 384, .box_w = 18, .box_h = 21, .ofs_x = 3, .ofs_y = -2}, + {.bitmap_index = 69066, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 69308, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 69561, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 69826, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 70068, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 70333, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 70586, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 70851, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 71093, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 71335, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 71588, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 71841, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 72117, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 72359, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 72635, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 72900, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 73176, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 73429, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 73682, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 73935, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 74211, .adv_w = 384, .box_w = 22, .box_h = 21, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 74442, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 74695, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 74960, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 75236, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 75501, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 75765, .adv_w = 384, .box_w = 20, .box_h = 21, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 75975, .adv_w = 384, .box_w = 22, .box_h = 21, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 76206, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 76448, .adv_w = 384, .box_w = 22, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 76668, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 76921, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 77174, .adv_w = 384, .box_w = 18, .box_h = 22, .ofs_x = 3, .ofs_y = -2}, + {.bitmap_index = 77372, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 77625, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 77867, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 78120, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 78373, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 78649, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 78902, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 79166, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 79431, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 79684, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 79937, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 80201, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 80477, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 80753, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 81006, .adv_w = 384, .box_w = 21, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 81248, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 81512, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 81754, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 82019, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 82284, .adv_w = 384, .box_w = 23, .box_h = 21, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 82526, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 82779, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 83032, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 83296, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 83572, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 83837, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 84090, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 84332, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 84608, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, {.bitmap_index = 84861, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 85125, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 85389, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 85654, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 85918, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 86183, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 86459, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 86735, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 87000, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 87242, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 87507, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 87749, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 88014, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 88267, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 88543, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 88808, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 89073, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 89326, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 89591, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 89856, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 90132, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 90396, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 90649, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 90925, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 91167, .adv_w = 384, .box_w = 22, .box_h = 21, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 91398, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 91651, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 91927, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 92203, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 92479, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 92721, .adv_w = 384, .box_w = 20, .box_h = 23, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 92951, .adv_w = 384, .box_w = 20, .box_h = 23, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 93181, .adv_w = 384, .box_w = 20, .box_h = 23, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 93411, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 93664, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 93929, .adv_w = 384, .box_w = 22, .box_h = 21, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 94160, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 94413, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 94655, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 94897, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 95139, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 95381, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 95657, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 95910, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 96163, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 96428, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 96670, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 96935, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 97188, .adv_w = 384, .box_w = 24, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 97488, .adv_w = 384, .box_w = 24, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 97704, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 97968, .adv_w = 384, .box_w = 24, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 98184, .adv_w = 264, .box_w = 17, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 98337, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 98625, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 98913, .adv_w = 432, .box_w = 27, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 99210, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 99498, .adv_w = 432, .box_w = 27, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 99741, .adv_w = 384, .box_w = 24, .box_h = 26, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 100053, .adv_w = 192, .box_w = 12, .box_h = 19, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 100167, .adv_w = 288, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 100338, .adv_w = 432, .box_w = 27, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 100662, .adv_w = 384, .box_w = 24, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 100878, .adv_w = 264, .box_w = 17, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 101082, .adv_w = 336, .box_w = 15, .box_h = 22, .ofs_x = 3, .ofs_y = -2}, - {.bitmap_index = 101247, .adv_w = 336, .box_w = 21, .box_h = 26, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 101520, .adv_w = 336, .box_w = 21, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 101751, .adv_w = 336, .box_w = 21, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 101982, .adv_w = 336, .box_w = 15, .box_h = 22, .ofs_x = 3, .ofs_y = -2}, - {.bitmap_index = 102147, .adv_w = 336, .box_w = 23, .box_h = 22, .ofs_x = -1, .ofs_y = -2}, - {.bitmap_index = 102400, .adv_w = 240, .box_w = 13, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 102543, .adv_w = 240, .box_w = 13, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 102686, .adv_w = 336, .box_w = 21, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 102917, .adv_w = 336, .box_w = 21, .box_h = 6, .ofs_x = 0, .ofs_y = 6}, - {.bitmap_index = 102980, .adv_w = 432, .box_w = 27, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 103223, .adv_w = 480, .box_w = 31, .box_h = 24, .ofs_x = -1, .ofs_y = -3}, - {.bitmap_index = 103595, .adv_w = 432, .box_w = 29, .box_h = 24, .ofs_x = -1, .ofs_y = -3}, - {.bitmap_index = 103943, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 104207, .adv_w = 336, .box_w = 21, .box_h = 14, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 104354, .adv_w = 336, .box_w = 21, .box_h = 14, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 104501, .adv_w = 480, .box_w = 31, .box_h = 19, .ofs_x = -1, .ofs_y = -1}, - {.bitmap_index = 104796, .adv_w = 384, .box_w = 24, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 105012, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 105300, .adv_w = 384, .box_w = 25, .box_h = 25, .ofs_x = -1, .ofs_y = -3}, - {.bitmap_index = 105613, .adv_w = 336, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 105855, .adv_w = 336, .box_w = 21, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 106107, .adv_w = 336, .box_w = 21, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 106338, .adv_w = 336, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 106548, .adv_w = 384, .box_w = 24, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 106764, .adv_w = 240, .box_w = 17, .box_h = 24, .ofs_x = -1, .ofs_y = -3}, - {.bitmap_index = 106968, .adv_w = 336, .box_w = 21, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 107220, .adv_w = 336, .box_w = 21, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 107472, .adv_w = 432, .box_w = 27, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 107715, .adv_w = 384, .box_w = 26, .box_h = 26, .ofs_x = -1, .ofs_y = -4}, - {.bitmap_index = 108053, .adv_w = 288, .box_w = 18, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 108269, .adv_w = 480, .box_w = 30, .box_h = 23, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 108614, .adv_w = 480, .box_w = 30, .box_h = 16, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 108854, .adv_w = 480, .box_w = 30, .box_h = 16, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 109094, .adv_w = 480, .box_w = 30, .box_h = 16, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 109334, .adv_w = 480, .box_w = 30, .box_h = 16, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 109574, .adv_w = 480, .box_w = 30, .box_h = 16, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 109814, .adv_w = 480, .box_w = 31, .box_h = 20, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 110124, .adv_w = 336, .box_w = 19, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 110352, .adv_w = 336, .box_w = 21, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 110604, .adv_w = 384, .box_w = 25, .box_h = 25, .ofs_x = -1, .ofs_y = -4}, - {.bitmap_index = 110917, .adv_w = 480, .box_w = 30, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 111187, .adv_w = 288, .box_w = 18, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 111403, .adv_w = 386, .box_w = 25, .box_h = 16, .ofs_x = 0, .ofs_y = 1} + {.bitmap_index = 85389, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 85653, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 85918, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 86182, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 86447, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 86723, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 86999, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 87264, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 87506, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 87771, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 88013, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 88278, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 88531, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 88807, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 89072, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 89337, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 89590, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 89855, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 90120, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 90396, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 90660, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 90913, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 91189, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 91431, .adv_w = 384, .box_w = 22, .box_h = 21, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 91662, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 91915, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 92191, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 92467, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 92743, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 92985, .adv_w = 384, .box_w = 20, .box_h = 23, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 93215, .adv_w = 384, .box_w = 20, .box_h = 23, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 93445, .adv_w = 384, .box_w = 20, .box_h = 23, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 93675, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 93928, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 94193, .adv_w = 384, .box_w = 22, .box_h = 21, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 94424, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 94677, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 94919, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 95161, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 95403, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 95645, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 95921, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 96174, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 96427, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 96692, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 96934, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 97199, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 97452, .adv_w = 384, .box_w = 24, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 97752, .adv_w = 384, .box_w = 24, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 97968, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 98232, .adv_w = 384, .box_w = 24, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 98448, .adv_w = 264, .box_w = 17, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 98601, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 98889, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 99177, .adv_w = 432, .box_w = 27, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 99474, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 99762, .adv_w = 432, .box_w = 27, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 100005, .adv_w = 384, .box_w = 24, .box_h = 26, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 100317, .adv_w = 192, .box_w = 12, .box_h = 19, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 100431, .adv_w = 288, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 100602, .adv_w = 432, .box_w = 27, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 100926, .adv_w = 384, .box_w = 24, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 101142, .adv_w = 264, .box_w = 17, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 101346, .adv_w = 336, .box_w = 15, .box_h = 22, .ofs_x = 3, .ofs_y = -2}, + {.bitmap_index = 101511, .adv_w = 336, .box_w = 21, .box_h = 26, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 101784, .adv_w = 336, .box_w = 21, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 102015, .adv_w = 336, .box_w = 21, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 102246, .adv_w = 336, .box_w = 15, .box_h = 22, .ofs_x = 3, .ofs_y = -2}, + {.bitmap_index = 102411, .adv_w = 336, .box_w = 23, .box_h = 22, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 102664, .adv_w = 240, .box_w = 13, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 102807, .adv_w = 240, .box_w = 13, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 102950, .adv_w = 336, .box_w = 21, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 103181, .adv_w = 336, .box_w = 21, .box_h = 6, .ofs_x = 0, .ofs_y = 6}, + {.bitmap_index = 103244, .adv_w = 432, .box_w = 27, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 103487, .adv_w = 480, .box_w = 31, .box_h = 24, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 103859, .adv_w = 432, .box_w = 29, .box_h = 24, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 104207, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 104471, .adv_w = 336, .box_w = 21, .box_h = 14, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 104618, .adv_w = 336, .box_w = 21, .box_h = 14, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 104765, .adv_w = 480, .box_w = 31, .box_h = 19, .ofs_x = -1, .ofs_y = -1}, + {.bitmap_index = 105060, .adv_w = 384, .box_w = 24, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 105276, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 105564, .adv_w = 384, .box_w = 25, .box_h = 25, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 105877, .adv_w = 336, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 106119, .adv_w = 336, .box_w = 21, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 106371, .adv_w = 336, .box_w = 21, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 106602, .adv_w = 336, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 106812, .adv_w = 384, .box_w = 24, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 107028, .adv_w = 240, .box_w = 17, .box_h = 24, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 107232, .adv_w = 336, .box_w = 21, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 107484, .adv_w = 336, .box_w = 21, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 107736, .adv_w = 432, .box_w = 27, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 107979, .adv_w = 384, .box_w = 26, .box_h = 26, .ofs_x = -1, .ofs_y = -4}, + {.bitmap_index = 108317, .adv_w = 288, .box_w = 18, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 108533, .adv_w = 480, .box_w = 30, .box_h = 23, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 108878, .adv_w = 480, .box_w = 30, .box_h = 16, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 109118, .adv_w = 480, .box_w = 30, .box_h = 16, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 109358, .adv_w = 480, .box_w = 30, .box_h = 16, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 109598, .adv_w = 480, .box_w = 30, .box_h = 16, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 109838, .adv_w = 480, .box_w = 30, .box_h = 16, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 110078, .adv_w = 480, .box_w = 31, .box_h = 20, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 110388, .adv_w = 336, .box_w = 19, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 110616, .adv_w = 336, .box_w = 21, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 110868, .adv_w = 384, .box_w = 25, .box_h = 25, .ofs_x = -1, .ofs_y = -4}, + {.bitmap_index = 111181, .adv_w = 480, .box_w = 30, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 111451, .adv_w = 288, .box_w = 18, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 111667, .adv_w = 386, .box_w = 25, .box_h = 16, .ofs_x = 0, .ofs_y = 1} }; /*--------------------- @@ -15765,29 +15801,29 @@ static const uint16_t unicode_list_1[] = { 0x6bb0, 0x6bf1, 0x6c25, 0x6c38, 0x6c8b, 0x6c91, 0x6c9b, 0x6cd8, 0x6d55, 0x6d79, 0x6de0, 0x6e2a, 0x6e31, 0x7009, 0x7018, 0x7076, 0x7086, 0x7198, 0x7206, 0x72ff, 0x7300, 0x7356, 0x746f, 0x7478, - 0x7485, 0x748b, 0x749c, 0x74a9, 0x75d4, 0x763e, 0x7644, 0x765b, - 0x7670, 0x768c, 0x773d, 0x7751, 0x77be, 0x788a, 0x78d1, 0x791d, - 0x795b, 0x79ca, 0x79d4, 0x7a2e, 0x7a3f, 0x7a76, 0x7c4b, 0x7c70, - 0x7c72, 0x7e0f, 0x7e1f, 0x7e21, 0x7e23, 0x7e2c, 0x7e2f, 0x7e3a, - 0x7ea1, 0x7ebe, 0x7f55, 0x7f83, 0x801c, 0x804d, 0x813a, 0x8144, - 0x81ff, 0x8307, 0x832c, 0x851f, 0x8652, 0x879c, 0x87b8, 0x87fb, - 0x8815, 0x88d1, 0x8914, 0x8916, 0x8918, 0x8922, 0x8ab6, 0x8af1, - 0x8af4, 0x8afe, 0x8b00, 0x8b0e, 0x8b0f, 0x8b11, 0x8b16, 0x8b25, - 0x8b47, 0x8b53, 0x8c75, 0x8c78, 0x8cd5, 0x8d7a, 0x8eb8, 0x8ebc, - 0x8ebe, 0x8ec4, 0x8ecd, 0x8ee3, 0x8f17, 0x8f20, 0x8f24, 0x8f29, - 0x8f2b, 0x8f2e, 0x8f49, 0x8f4d, 0x8f50, 0x8f51, 0x8f59, 0x8f6a, - 0x8f6f, 0x8fa3, 0x9038, 0x904d, 0x911d, 0x911f, 0x93ef, 0x9451, - 0x947e, 0x94ac, 0x94cf, 0x953d, 0x953e, 0x9544, 0x95b4, 0x95e0, - 0x96b2, 0x9743, 0x97c5, 0x97c6, 0x97c9, 0x97d4, 0x97e1, 0x981e, - 0x98c1, 0x99dc, 0x9d73, 0x9df6, 0x9e28, 0xef51, 0xef58, 0xef5b, - 0xef5c, 0xef5d, 0xef61, 0xef63, 0xef65, 0xef69, 0xef6c, 0xef71, - 0xef76, 0xef77, 0xef78, 0xef8e, 0xef93, 0xef98, 0xef9b, 0xef9c, - 0xef9d, 0xefa1, 0xefa2, 0xefa3, 0xefa4, 0xefb7, 0xefb8, 0xefbe, - 0xefc0, 0xefc1, 0xefc4, 0xefc7, 0xefc8, 0xefc9, 0xefcb, 0xefe3, - 0xefe5, 0xf014, 0xf015, 0xf017, 0xf019, 0xf030, 0xf037, 0xf03a, - 0xf043, 0xf06c, 0xf074, 0xf0ab, 0xf13b, 0xf190, 0xf191, 0xf192, - 0xf193, 0xf194, 0xf1d7, 0xf1e3, 0xf23d, 0xf254, 0xf4aa, 0xf712, - 0xf7f2 + 0x7485, 0x748b, 0x749c, 0x74a9, 0x75d4, 0x7628, 0x763e, 0x7644, + 0x765b, 0x7670, 0x768c, 0x773d, 0x7751, 0x77be, 0x788a, 0x78d1, + 0x791d, 0x795b, 0x79ca, 0x79d4, 0x7a2e, 0x7a3f, 0x7a76, 0x7c4b, + 0x7c70, 0x7c72, 0x7e0f, 0x7e1f, 0x7e21, 0x7e23, 0x7e2c, 0x7e2f, + 0x7e3a, 0x7ea1, 0x7ebe, 0x7f55, 0x7f83, 0x801c, 0x804d, 0x813a, + 0x8144, 0x81ff, 0x8307, 0x832c, 0x851f, 0x8652, 0x879c, 0x87b8, + 0x87fb, 0x8815, 0x88d1, 0x8914, 0x8916, 0x8918, 0x8922, 0x8ab6, + 0x8af1, 0x8af4, 0x8afe, 0x8b00, 0x8b0e, 0x8b0f, 0x8b11, 0x8b16, + 0x8b25, 0x8b47, 0x8b53, 0x8c75, 0x8c78, 0x8cd5, 0x8d7a, 0x8eb8, + 0x8ebc, 0x8ebe, 0x8ec4, 0x8ecd, 0x8ee3, 0x8f17, 0x8f20, 0x8f24, + 0x8f29, 0x8f2b, 0x8f2e, 0x8f49, 0x8f4d, 0x8f50, 0x8f51, 0x8f59, + 0x8f6a, 0x8f6f, 0x8fa3, 0x9038, 0x904d, 0x911d, 0x911f, 0x93ef, + 0x9451, 0x947e, 0x94ac, 0x94cf, 0x953d, 0x953e, 0x9544, 0x95b4, + 0x95e0, 0x96b2, 0x9743, 0x97c5, 0x97c6, 0x97c9, 0x97d4, 0x97e1, + 0x981e, 0x98c1, 0x99dc, 0x9d73, 0x9df6, 0x9e28, 0xef51, 0xef58, + 0xef5b, 0xef5c, 0xef5d, 0xef61, 0xef63, 0xef65, 0xef69, 0xef6c, + 0xef71, 0xef76, 0xef77, 0xef78, 0xef8e, 0xef93, 0xef98, 0xef9b, + 0xef9c, 0xef9d, 0xefa1, 0xefa2, 0xefa3, 0xefa4, 0xefb7, 0xefb8, + 0xefbe, 0xefc0, 0xefc1, 0xefc4, 0xefc7, 0xefc8, 0xefc9, 0xefcb, + 0xefe3, 0xefe5, 0xf014, 0xf015, 0xf017, 0xf019, 0xf030, 0xf037, + 0xf03a, 0xf043, 0xf06c, 0xf074, 0xf0ab, 0xf13b, 0xf190, 0xf191, + 0xf192, 0xf193, 0xf194, 0xf1d7, 0xf1e3, 0xf23d, 0xf254, 0xf4aa, + 0xf712, 0xf7f2 }; /*Collect the unicode lists and glyph_id offsets*/ @@ -15799,7 +15835,7 @@ static const lv_font_fmt_txt_cmap_t cmaps[] = }, { .range_start = 176, .range_length = 63475, .glyph_id_start = 96, - .unicode_list = unicode_list_1, .glyph_id_ofs_list = NULL, .list_length = 409, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY + .unicode_list = unicode_list_1, .glyph_id_ofs_list = NULL, .list_length = 410, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY } }; @@ -15874,7 +15910,7 @@ static const uint8_t kern_left_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0 + 0, 0 }; /*Map glyph_ids to kern right classes*/ @@ -15943,7 +15979,7 @@ static const uint8_t kern_right_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0 + 0, 0 }; /*Kern values between classes*/ diff --git a/lib/lvgl/lvgl/src/font/lv_font_montserrat_26.c b/lib/lvgl/lvgl/src/font/lv_font_montserrat_26.c index 5e5c63cb..fd5aa60b 100644 --- a/lib/lvgl/lvgl/src/font/lv_font_montserrat_26.c +++ b/lib/lvgl/lvgl/src/font/lv_font_montserrat_26.c @@ -1,7 +1,7 @@ /******************************************************************************* * Size: 26 px * Bpp: 4 - * Opts: --bpp 4 --size 26 --no-compress --font Montserrat-Medium.ttf --range 32-127,176,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20351,20363,20391,20445,20449,20462,20463,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29366,29615,29616,29702,29983,29992,30005,30011,30028,30041,30340,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31181,31243,31354,31364,31454,31471,31526,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33719,33756,34255,34562,34892,34920,34987,35013,35201,35268,35270,35272,35282,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35831,35843,36133,36136,36229,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --format lvgl -o out/lv_font_montserrat_26.c + * Opts: --bpp 4 --size 26 --no-compress --font Montserrat-Medium.ttf --range 32-127,176,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20351,20363,20391,20445,20449,20462,20463,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29366,29615,29616,29702,29983,29992,30005,30011,30028,30041,30340,30424,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31181,31243,31354,31364,31454,31471,31526,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33719,33756,34255,34562,34892,34920,34987,35013,35201,35268,35270,35272,35282,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35831,35843,36133,36136,36229,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --format lvgl -o out/lv_font_montserrat_26.c ******************************************************************************/ #ifdef LV_LVGL_H_INCLUDE_SIMPLE @@ -10790,6 +10790,47 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1a, 0x74, 0x0, 0x0, + /* U+76D8 "盘" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x21, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xbf, 0xc0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, + 0x60, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xcc, 0xcc, 0xff, 0xcc, 0xcc, 0xcc, + 0xcc, 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xef, 0x20, 0x0, 0x60, + 0x0, 0x0, 0xf, 0xd0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xef, 0x20, 0xa, 0xfe, 0x60, 0x0, 0xf, + 0xd0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xef, 0x20, + 0x1, 0x9f, 0xf4, 0x0, 0xf, 0xd0, 0x0, 0x0, + 0x0, 0x21, 0x10, 0xef, 0x30, 0x0, 0x3, 0x70, + 0x0, 0xf, 0xd0, 0x11, 0x10, 0x4, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xb0, 0x3, 0xbb, 0xab, 0xff, 0xaa, 0xaa, + 0xaa, 0xaa, 0xaa, 0xbf, 0xea, 0xbb, 0x80, 0x0, + 0x0, 0x3, 0xfc, 0x0, 0x28, 0x10, 0x0, 0x0, + 0x1f, 0xb0, 0x0, 0x0, 0x0, 0x0, 0xa, 0xf7, + 0x0, 0x9f, 0xfa, 0x30, 0x0, 0x1f, 0xb0, 0x0, + 0x0, 0x0, 0x0, 0x5f, 0xf1, 0x0, 0x5, 0xcf, + 0xd0, 0x35, 0x9f, 0xb0, 0x0, 0x0, 0x0, 0x6, + 0xff, 0x70, 0x0, 0x0, 0x7, 0x30, 0x6f, 0xff, + 0x70, 0x0, 0x0, 0x0, 0x0, 0x9a, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xb, 0x95, 0x0, 0x0, 0x0, + 0x0, 0x1, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, + 0xaa, 0xaa, 0xaa, 0x30, 0x0, 0x0, 0x1, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x50, 0x0, 0x0, 0x1, 0xff, 0x0, 0xa, 0xf1, + 0x0, 0x1f, 0xa0, 0x0, 0xcf, 0x40, 0x0, 0x0, + 0x0, 0xff, 0x0, 0xa, 0xf1, 0x0, 0x1f, 0xa0, + 0x0, 0xcf, 0x40, 0x0, 0x0, 0x0, 0xff, 0x0, + 0xa, 0xf1, 0x0, 0x1f, 0xa0, 0x0, 0xcf, 0x40, + 0x0, 0x0, 0x0, 0xff, 0x0, 0xa, 0xf1, 0x0, + 0x1f, 0xa0, 0x0, 0xcf, 0x40, 0x0, 0x2c, 0xbb, + 0xff, 0xbb, 0xbe, 0xfb, 0xbb, 0xbf, 0xeb, 0xbb, + 0xef, 0xcb, 0xc2, 0x2f, 0xfe, 0xee, 0xee, 0xee, + 0xee, 0xee, 0xee, 0xee, 0xee, 0xef, 0xff, 0xf3, + /* U+76EE "目" */ 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, 0xdf, 0xba, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, @@ -17889,178 +17930,179 @@ static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = { {.bitmap_index = 78953, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -4}, {.bitmap_index = 79266, .adv_w = 416, .box_w = 23, .box_h = 25, .ofs_x = 2, .ofs_y = -3}, {.bitmap_index = 79554, .adv_w = 416, .box_w = 22, .box_h = 25, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 79829, .adv_w = 416, .box_w = 18, .box_h = 22, .ofs_x = 4, .ofs_y = -2}, - {.bitmap_index = 80027, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 80303, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 80616, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 80916, .adv_w = 416, .box_w = 23, .box_h = 24, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 81192, .adv_w = 416, .box_w = 26, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 81517, .adv_w = 416, .box_w = 25, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 81805, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 82118, .adv_w = 416, .box_w = 23, .box_h = 23, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 82383, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 82683, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 82983, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 83296, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 83596, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 83896, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 84209, .adv_w = 416, .box_w = 24, .box_h = 26, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 84521, .adv_w = 416, .box_w = 25, .box_h = 26, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 84846, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 85146, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 85434, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 85734, .adv_w = 416, .box_w = 26, .box_h = 25, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 86059, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 86335, .adv_w = 416, .box_w = 24, .box_h = 26, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 86647, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 86947, .adv_w = 416, .box_w = 26, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 87272, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 87585, .adv_w = 416, .box_w = 26, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 87897, .adv_w = 416, .box_w = 22, .box_h = 23, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 88150, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 88426, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 88726, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 89002, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 89290, .adv_w = 416, .box_w = 24, .box_h = 26, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 89602, .adv_w = 416, .box_w = 18, .box_h = 24, .ofs_x = 4, .ofs_y = -2}, - {.bitmap_index = 89818, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 90118, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 90406, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 90706, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 91006, .adv_w = 416, .box_w = 26, .box_h = 26, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 91344, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 91657, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 91970, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 92258, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 92571, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 92859, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 93159, .adv_w = 416, .box_w = 26, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 93484, .adv_w = 416, .box_w = 26, .box_h = 26, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 93822, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 94122, .adv_w = 416, .box_w = 22, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 94397, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 94710, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 94998, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 95298, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 95611, .adv_w = 416, .box_w = 25, .box_h = 23, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 95899, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 96212, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 96512, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 96812, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 97125, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 97425, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 97738, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 98026, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 98339, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 98627, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 98927, .adv_w = 416, .box_w = 26, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 99252, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 99565, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 99878, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 100191, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 100491, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 100791, .adv_w = 416, .box_w = 25, .box_h = 26, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 101116, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 101416, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 101704, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 102004, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 102292, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 102605, .adv_w = 416, .box_w = 26, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 102917, .adv_w = 416, .box_w = 26, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 103242, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 103542, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 103842, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 104130, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 104418, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 104718, .adv_w = 416, .box_w = 26, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 105043, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 105343, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 105656, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 105944, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 106220, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 106496, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 106784, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 107084, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 107397, .adv_w = 416, .box_w = 26, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 107722, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 108010, .adv_w = 416, .box_w = 22, .box_h = 25, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 108285, .adv_w = 416, .box_w = 22, .box_h = 26, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 108571, .adv_w = 416, .box_w = 22, .box_h = 25, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 108846, .adv_w = 416, .box_w = 24, .box_h = 26, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 109158, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 109471, .adv_w = 416, .box_w = 24, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 109735, .adv_w = 416, .box_w = 24, .box_h = 26, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 110047, .adv_w = 416, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 110312, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 110588, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 110864, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 111140, .adv_w = 416, .box_w = 26, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 111452, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 111752, .adv_w = 416, .box_w = 26, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 112064, .adv_w = 416, .box_w = 26, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 112389, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 112689, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 113002, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 113302, .adv_w = 416, .box_w = 27, .box_h = 28, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 113680, .adv_w = 416, .box_w = 26, .box_h = 20, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 113940, .adv_w = 416, .box_w = 26, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 114252, .adv_w = 416, .box_w = 26, .box_h = 20, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 114512, .adv_w = 286, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 114683, .adv_w = 416, .box_w = 26, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 115021, .adv_w = 416, .box_w = 26, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 115372, .adv_w = 468, .box_w = 30, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 115732, .adv_w = 416, .box_w = 26, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 116083, .adv_w = 468, .box_w = 30, .box_h = 20, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 116383, .adv_w = 416, .box_w = 26, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 116734, .adv_w = 208, .box_w = 13, .box_h = 21, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 116871, .adv_w = 312, .box_w = 20, .box_h = 21, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 117081, .adv_w = 468, .box_w = 30, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 117471, .adv_w = 416, .box_w = 26, .box_h = 20, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 117731, .adv_w = 286, .box_w = 18, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 117974, .adv_w = 364, .box_w = 17, .box_h = 25, .ofs_x = 3, .ofs_y = -3}, - {.bitmap_index = 118187, .adv_w = 364, .box_w = 23, .box_h = 28, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 118509, .adv_w = 364, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 118785, .adv_w = 364, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 119061, .adv_w = 364, .box_w = 17, .box_h = 25, .ofs_x = 3, .ofs_y = -3}, - {.bitmap_index = 119274, .adv_w = 364, .box_w = 25, .box_h = 24, .ofs_x = -1, .ofs_y = -2}, - {.bitmap_index = 119574, .adv_w = 260, .box_w = 14, .box_h = 23, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 119735, .adv_w = 260, .box_w = 14, .box_h = 23, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 119896, .adv_w = 364, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 120172, .adv_w = 364, .box_w = 23, .box_h = 6, .ofs_x = 0, .ofs_y = 7}, - {.bitmap_index = 120241, .adv_w = 468, .box_w = 30, .box_h = 20, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 120541, .adv_w = 520, .box_w = 33, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 120987, .adv_w = 468, .box_w = 31, .box_h = 27, .ofs_x = -1, .ofs_y = -4}, - {.bitmap_index = 121406, .adv_w = 416, .box_w = 26, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 121718, .adv_w = 364, .box_w = 23, .box_h = 14, .ofs_x = 0, .ofs_y = 3}, - {.bitmap_index = 121879, .adv_w = 364, .box_w = 23, .box_h = 14, .ofs_x = 0, .ofs_y = 3}, - {.bitmap_index = 122040, .adv_w = 520, .box_w = 33, .box_h = 21, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 122387, .adv_w = 416, .box_w = 26, .box_h = 20, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 122647, .adv_w = 416, .box_w = 26, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 122998, .adv_w = 416, .box_w = 27, .box_h = 27, .ofs_x = -1, .ofs_y = -4}, - {.bitmap_index = 123363, .adv_w = 364, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 123651, .adv_w = 364, .box_w = 23, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 123962, .adv_w = 364, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 124238, .adv_w = 364, .box_w = 23, .box_h = 21, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 124480, .adv_w = 416, .box_w = 26, .box_h = 20, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 124740, .adv_w = 260, .box_w = 18, .box_h = 27, .ofs_x = -1, .ofs_y = -4}, - {.bitmap_index = 124983, .adv_w = 364, .box_w = 23, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 125294, .adv_w = 364, .box_w = 23, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 125605, .adv_w = 468, .box_w = 30, .box_h = 20, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 125905, .adv_w = 416, .box_w = 28, .box_h = 28, .ofs_x = -1, .ofs_y = -4}, - {.bitmap_index = 126297, .adv_w = 312, .box_w = 20, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 126567, .adv_w = 520, .box_w = 33, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 126963, .adv_w = 520, .box_w = 33, .box_h = 17, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 127244, .adv_w = 520, .box_w = 33, .box_h = 17, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 127525, .adv_w = 520, .box_w = 33, .box_h = 17, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 127806, .adv_w = 520, .box_w = 33, .box_h = 17, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 128087, .adv_w = 520, .box_w = 33, .box_h = 17, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 128368, .adv_w = 520, .box_w = 33, .box_h = 21, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 128715, .adv_w = 364, .box_w = 21, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 128999, .adv_w = 364, .box_w = 23, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 129310, .adv_w = 416, .box_w = 27, .box_h = 27, .ofs_x = -1, .ofs_y = -4}, - {.bitmap_index = 129675, .adv_w = 520, .box_w = 33, .box_h = 20, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 130005, .adv_w = 312, .box_w = 20, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 130275, .adv_w = 418, .box_w = 27, .box_h = 18, .ofs_x = 0, .ofs_y = 1} + {.bitmap_index = 79829, .adv_w = 416, .box_w = 26, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 80141, .adv_w = 416, .box_w = 18, .box_h = 22, .ofs_x = 4, .ofs_y = -2}, + {.bitmap_index = 80339, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 80615, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 80928, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 81228, .adv_w = 416, .box_w = 23, .box_h = 24, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 81504, .adv_w = 416, .box_w = 26, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 81829, .adv_w = 416, .box_w = 25, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 82117, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 82430, .adv_w = 416, .box_w = 23, .box_h = 23, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 82695, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 82995, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 83295, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 83608, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 83908, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 84208, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 84521, .adv_w = 416, .box_w = 24, .box_h = 26, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 84833, .adv_w = 416, .box_w = 25, .box_h = 26, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 85158, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 85458, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 85746, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 86046, .adv_w = 416, .box_w = 26, .box_h = 25, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 86371, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 86647, .adv_w = 416, .box_w = 24, .box_h = 26, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 86959, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 87259, .adv_w = 416, .box_w = 26, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 87584, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 87897, .adv_w = 416, .box_w = 26, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 88209, .adv_w = 416, .box_w = 22, .box_h = 23, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 88462, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 88738, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 89038, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 89314, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 89602, .adv_w = 416, .box_w = 24, .box_h = 26, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 89914, .adv_w = 416, .box_w = 18, .box_h = 24, .ofs_x = 4, .ofs_y = -2}, + {.bitmap_index = 90130, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 90430, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 90718, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 91018, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 91318, .adv_w = 416, .box_w = 26, .box_h = 26, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 91656, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 91969, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 92282, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 92570, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 92883, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 93171, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 93471, .adv_w = 416, .box_w = 26, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 93796, .adv_w = 416, .box_w = 26, .box_h = 26, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 94134, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 94434, .adv_w = 416, .box_w = 22, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 94709, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 95022, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 95310, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 95610, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 95923, .adv_w = 416, .box_w = 25, .box_h = 23, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 96211, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 96524, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 96824, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 97124, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 97437, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 97737, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 98050, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 98338, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 98651, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 98939, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 99239, .adv_w = 416, .box_w = 26, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 99564, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 99877, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 100190, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 100503, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 100803, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 101103, .adv_w = 416, .box_w = 25, .box_h = 26, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 101428, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 101728, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 102016, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 102316, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 102604, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 102917, .adv_w = 416, .box_w = 26, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 103229, .adv_w = 416, .box_w = 26, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 103554, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 103854, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 104154, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 104442, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 104730, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 105030, .adv_w = 416, .box_w = 26, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 105355, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 105655, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 105968, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 106256, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 106532, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 106808, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 107096, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 107396, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 107709, .adv_w = 416, .box_w = 26, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 108034, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 108322, .adv_w = 416, .box_w = 22, .box_h = 25, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 108597, .adv_w = 416, .box_w = 22, .box_h = 26, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 108883, .adv_w = 416, .box_w = 22, .box_h = 25, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 109158, .adv_w = 416, .box_w = 24, .box_h = 26, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 109470, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 109783, .adv_w = 416, .box_w = 24, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 110047, .adv_w = 416, .box_w = 24, .box_h = 26, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 110359, .adv_w = 416, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 110624, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 110900, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 111176, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 111452, .adv_w = 416, .box_w = 26, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 111764, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 112064, .adv_w = 416, .box_w = 26, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 112376, .adv_w = 416, .box_w = 26, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 112701, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 113001, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 113314, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 113614, .adv_w = 416, .box_w = 27, .box_h = 28, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 113992, .adv_w = 416, .box_w = 26, .box_h = 20, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 114252, .adv_w = 416, .box_w = 26, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 114564, .adv_w = 416, .box_w = 26, .box_h = 20, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 114824, .adv_w = 286, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 114995, .adv_w = 416, .box_w = 26, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 115333, .adv_w = 416, .box_w = 26, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 115684, .adv_w = 468, .box_w = 30, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 116044, .adv_w = 416, .box_w = 26, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 116395, .adv_w = 468, .box_w = 30, .box_h = 20, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 116695, .adv_w = 416, .box_w = 26, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 117046, .adv_w = 208, .box_w = 13, .box_h = 21, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 117183, .adv_w = 312, .box_w = 20, .box_h = 21, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 117393, .adv_w = 468, .box_w = 30, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 117783, .adv_w = 416, .box_w = 26, .box_h = 20, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 118043, .adv_w = 286, .box_w = 18, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 118286, .adv_w = 364, .box_w = 17, .box_h = 25, .ofs_x = 3, .ofs_y = -3}, + {.bitmap_index = 118499, .adv_w = 364, .box_w = 23, .box_h = 28, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 118821, .adv_w = 364, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 119097, .adv_w = 364, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 119373, .adv_w = 364, .box_w = 17, .box_h = 25, .ofs_x = 3, .ofs_y = -3}, + {.bitmap_index = 119586, .adv_w = 364, .box_w = 25, .box_h = 24, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 119886, .adv_w = 260, .box_w = 14, .box_h = 23, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 120047, .adv_w = 260, .box_w = 14, .box_h = 23, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 120208, .adv_w = 364, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 120484, .adv_w = 364, .box_w = 23, .box_h = 6, .ofs_x = 0, .ofs_y = 7}, + {.bitmap_index = 120553, .adv_w = 468, .box_w = 30, .box_h = 20, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 120853, .adv_w = 520, .box_w = 33, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 121299, .adv_w = 468, .box_w = 31, .box_h = 27, .ofs_x = -1, .ofs_y = -4}, + {.bitmap_index = 121718, .adv_w = 416, .box_w = 26, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 122030, .adv_w = 364, .box_w = 23, .box_h = 14, .ofs_x = 0, .ofs_y = 3}, + {.bitmap_index = 122191, .adv_w = 364, .box_w = 23, .box_h = 14, .ofs_x = 0, .ofs_y = 3}, + {.bitmap_index = 122352, .adv_w = 520, .box_w = 33, .box_h = 21, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 122699, .adv_w = 416, .box_w = 26, .box_h = 20, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 122959, .adv_w = 416, .box_w = 26, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 123310, .adv_w = 416, .box_w = 27, .box_h = 27, .ofs_x = -1, .ofs_y = -4}, + {.bitmap_index = 123675, .adv_w = 364, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 123963, .adv_w = 364, .box_w = 23, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 124274, .adv_w = 364, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 124550, .adv_w = 364, .box_w = 23, .box_h = 21, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 124792, .adv_w = 416, .box_w = 26, .box_h = 20, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 125052, .adv_w = 260, .box_w = 18, .box_h = 27, .ofs_x = -1, .ofs_y = -4}, + {.bitmap_index = 125295, .adv_w = 364, .box_w = 23, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 125606, .adv_w = 364, .box_w = 23, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 125917, .adv_w = 468, .box_w = 30, .box_h = 20, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 126217, .adv_w = 416, .box_w = 28, .box_h = 28, .ofs_x = -1, .ofs_y = -4}, + {.bitmap_index = 126609, .adv_w = 312, .box_w = 20, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 126879, .adv_w = 520, .box_w = 33, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 127275, .adv_w = 520, .box_w = 33, .box_h = 17, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 127556, .adv_w = 520, .box_w = 33, .box_h = 17, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 127837, .adv_w = 520, .box_w = 33, .box_h = 17, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 128118, .adv_w = 520, .box_w = 33, .box_h = 17, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 128399, .adv_w = 520, .box_w = 33, .box_h = 17, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 128680, .adv_w = 520, .box_w = 33, .box_h = 21, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 129027, .adv_w = 364, .box_w = 21, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 129311, .adv_w = 364, .box_w = 23, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 129622, .adv_w = 416, .box_w = 27, .box_h = 27, .ofs_x = -1, .ofs_y = -4}, + {.bitmap_index = 129987, .adv_w = 520, .box_w = 33, .box_h = 20, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 130317, .adv_w = 312, .box_w = 20, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 130587, .adv_w = 418, .box_w = 27, .box_h = 18, .ofs_x = 0, .ofs_y = 1} }; /*--------------------- @@ -18097,29 +18139,29 @@ static const uint16_t unicode_list_1[] = { 0x6bb0, 0x6bf1, 0x6c25, 0x6c38, 0x6c8b, 0x6c91, 0x6c9b, 0x6cd8, 0x6d55, 0x6d79, 0x6de0, 0x6e2a, 0x6e31, 0x7009, 0x7018, 0x7076, 0x7086, 0x7198, 0x7206, 0x72ff, 0x7300, 0x7356, 0x746f, 0x7478, - 0x7485, 0x748b, 0x749c, 0x74a9, 0x75d4, 0x763e, 0x7644, 0x765b, - 0x7670, 0x768c, 0x773d, 0x7751, 0x77be, 0x788a, 0x78d1, 0x791d, - 0x795b, 0x79ca, 0x79d4, 0x7a2e, 0x7a3f, 0x7a76, 0x7c4b, 0x7c70, - 0x7c72, 0x7e0f, 0x7e1f, 0x7e21, 0x7e23, 0x7e2c, 0x7e2f, 0x7e3a, - 0x7ea1, 0x7ebe, 0x7f55, 0x7f83, 0x801c, 0x804d, 0x813a, 0x8144, - 0x81ff, 0x8307, 0x832c, 0x851f, 0x8652, 0x879c, 0x87b8, 0x87fb, - 0x8815, 0x88d1, 0x8914, 0x8916, 0x8918, 0x8922, 0x8ab6, 0x8af1, - 0x8af4, 0x8afe, 0x8b00, 0x8b0e, 0x8b0f, 0x8b11, 0x8b16, 0x8b25, - 0x8b47, 0x8b53, 0x8c75, 0x8c78, 0x8cd5, 0x8d7a, 0x8eb8, 0x8ebc, - 0x8ebe, 0x8ec4, 0x8ecd, 0x8ee3, 0x8f17, 0x8f20, 0x8f24, 0x8f29, - 0x8f2b, 0x8f2e, 0x8f49, 0x8f4d, 0x8f50, 0x8f51, 0x8f59, 0x8f6a, - 0x8f6f, 0x8fa3, 0x9038, 0x904d, 0x911d, 0x911f, 0x93ef, 0x9451, - 0x947e, 0x94ac, 0x94cf, 0x953d, 0x953e, 0x9544, 0x95b4, 0x95e0, - 0x96b2, 0x9743, 0x97c5, 0x97c6, 0x97c9, 0x97d4, 0x97e1, 0x981e, - 0x98c1, 0x99dc, 0x9d73, 0x9df6, 0x9e28, 0xef51, 0xef58, 0xef5b, - 0xef5c, 0xef5d, 0xef61, 0xef63, 0xef65, 0xef69, 0xef6c, 0xef71, - 0xef76, 0xef77, 0xef78, 0xef8e, 0xef93, 0xef98, 0xef9b, 0xef9c, - 0xef9d, 0xefa1, 0xefa2, 0xefa3, 0xefa4, 0xefb7, 0xefb8, 0xefbe, - 0xefc0, 0xefc1, 0xefc4, 0xefc7, 0xefc8, 0xefc9, 0xefcb, 0xefe3, - 0xefe5, 0xf014, 0xf015, 0xf017, 0xf019, 0xf030, 0xf037, 0xf03a, - 0xf043, 0xf06c, 0xf074, 0xf0ab, 0xf13b, 0xf190, 0xf191, 0xf192, - 0xf193, 0xf194, 0xf1d7, 0xf1e3, 0xf23d, 0xf254, 0xf4aa, 0xf712, - 0xf7f2 + 0x7485, 0x748b, 0x749c, 0x74a9, 0x75d4, 0x7628, 0x763e, 0x7644, + 0x765b, 0x7670, 0x768c, 0x773d, 0x7751, 0x77be, 0x788a, 0x78d1, + 0x791d, 0x795b, 0x79ca, 0x79d4, 0x7a2e, 0x7a3f, 0x7a76, 0x7c4b, + 0x7c70, 0x7c72, 0x7e0f, 0x7e1f, 0x7e21, 0x7e23, 0x7e2c, 0x7e2f, + 0x7e3a, 0x7ea1, 0x7ebe, 0x7f55, 0x7f83, 0x801c, 0x804d, 0x813a, + 0x8144, 0x81ff, 0x8307, 0x832c, 0x851f, 0x8652, 0x879c, 0x87b8, + 0x87fb, 0x8815, 0x88d1, 0x8914, 0x8916, 0x8918, 0x8922, 0x8ab6, + 0x8af1, 0x8af4, 0x8afe, 0x8b00, 0x8b0e, 0x8b0f, 0x8b11, 0x8b16, + 0x8b25, 0x8b47, 0x8b53, 0x8c75, 0x8c78, 0x8cd5, 0x8d7a, 0x8eb8, + 0x8ebc, 0x8ebe, 0x8ec4, 0x8ecd, 0x8ee3, 0x8f17, 0x8f20, 0x8f24, + 0x8f29, 0x8f2b, 0x8f2e, 0x8f49, 0x8f4d, 0x8f50, 0x8f51, 0x8f59, + 0x8f6a, 0x8f6f, 0x8fa3, 0x9038, 0x904d, 0x911d, 0x911f, 0x93ef, + 0x9451, 0x947e, 0x94ac, 0x94cf, 0x953d, 0x953e, 0x9544, 0x95b4, + 0x95e0, 0x96b2, 0x9743, 0x97c5, 0x97c6, 0x97c9, 0x97d4, 0x97e1, + 0x981e, 0x98c1, 0x99dc, 0x9d73, 0x9df6, 0x9e28, 0xef51, 0xef58, + 0xef5b, 0xef5c, 0xef5d, 0xef61, 0xef63, 0xef65, 0xef69, 0xef6c, + 0xef71, 0xef76, 0xef77, 0xef78, 0xef8e, 0xef93, 0xef98, 0xef9b, + 0xef9c, 0xef9d, 0xefa1, 0xefa2, 0xefa3, 0xefa4, 0xefb7, 0xefb8, + 0xefbe, 0xefc0, 0xefc1, 0xefc4, 0xefc7, 0xefc8, 0xefc9, 0xefcb, + 0xefe3, 0xefe5, 0xf014, 0xf015, 0xf017, 0xf019, 0xf030, 0xf037, + 0xf03a, 0xf043, 0xf06c, 0xf074, 0xf0ab, 0xf13b, 0xf190, 0xf191, + 0xf192, 0xf193, 0xf194, 0xf1d7, 0xf1e3, 0xf23d, 0xf254, 0xf4aa, + 0xf712, 0xf7f2 }; /*Collect the unicode lists and glyph_id offsets*/ @@ -18131,7 +18173,7 @@ static const lv_font_fmt_txt_cmap_t cmaps[] = }, { .range_start = 176, .range_length = 63475, .glyph_id_start = 96, - .unicode_list = unicode_list_1, .glyph_id_ofs_list = NULL, .list_length = 409, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY + .unicode_list = unicode_list_1, .glyph_id_ofs_list = NULL, .list_length = 410, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY } }; @@ -18206,7 +18248,7 @@ static const uint8_t kern_left_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0 + 0, 0 }; /*Map glyph_ids to kern right classes*/ @@ -18275,7 +18317,7 @@ static const uint8_t kern_right_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0 + 0, 0 }; /*Kern values between classes*/ diff --git a/lib/lvgl/lvgl/src/font/lv_font_montserrat_28.c b/lib/lvgl/lvgl/src/font/lv_font_montserrat_28.c index 7a9fe472..c1c15e9e 100644 --- a/lib/lvgl/lvgl/src/font/lv_font_montserrat_28.c +++ b/lib/lvgl/lvgl/src/font/lv_font_montserrat_28.c @@ -1,7 +1,7 @@ /******************************************************************************* * Size: 28 px * Bpp: 4 - * Opts: --bpp 4 --size 28 --no-compress --font Montserrat-Medium.ttf --range 32-127,176,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20351,20363,20391,20445,20449,20462,20463,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29366,29615,29616,29702,29983,29992,30005,30011,30028,30041,30340,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31181,31243,31354,31364,31454,31471,31526,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33719,33756,34255,34562,34892,34920,34987,35013,35201,35268,35270,35272,35282,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35831,35843,36133,36136,36229,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --format lvgl -o out/lv_font_montserrat_28.c + * Opts: --bpp 4 --size 28 --no-compress --font Montserrat-Medium.ttf --range 32-127,176,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20351,20363,20391,20445,20449,20462,20463,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29366,29615,29616,29702,29983,29992,30005,30011,30028,30041,30340,30424,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31181,31243,31354,31364,31454,31471,31526,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33719,33756,34255,34562,34892,34920,34987,35013,35201,35268,35270,35272,35282,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35831,35843,36133,36136,36229,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --format lvgl -o out/lv_font_montserrat_28.c ******************************************************************************/ #ifdef LV_LVGL_H_INCLUDE_SIMPLE @@ -12324,6 +12324,52 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x9f, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3a, 0x84, 0x0, 0x0, + /* U+76D8 "盘" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x9, 0x85, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xf, 0xf9, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x4f, 0xf3, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x9f, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x30, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x9f, 0xfd, 0xdd, 0xdd, 0xdd, + 0xdd, 0xdd, 0xff, 0x20, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x8f, 0xc0, 0x0, 0x28, 0x10, 0x0, 0x0, + 0xdf, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8f, + 0xc0, 0x0, 0xcf, 0xf7, 0x0, 0x0, 0xdf, 0x20, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xc0, 0x0, + 0x19, 0xff, 0x40, 0x0, 0xdf, 0x20, 0x0, 0x0, + 0x0, 0x21, 0x10, 0x8f, 0xc0, 0x0, 0x0, 0x37, + 0x0, 0x0, 0xdf, 0x20, 0x11, 0x0, 0x2, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x40, 0x2, 0xed, 0xdd, 0xef, + 0xed, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xff, 0xdd, + 0xde, 0x40, 0x0, 0x0, 0x0, 0xcf, 0x60, 0x2, + 0x30, 0x0, 0x0, 0x0, 0xff, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2, 0xff, 0x20, 0xb, 0xfc, 0x50, + 0x0, 0x0, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xb, 0xfc, 0x0, 0x4, 0xcf, 0xfd, 0x0, 0x1, + 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0xaf, 0xf3, + 0x0, 0x0, 0x4, 0xe7, 0x7, 0xef, 0xfe, 0x0, + 0x0, 0x0, 0x0, 0x4, 0xef, 0x70, 0x0, 0x0, + 0x0, 0x10, 0x1, 0xff, 0xe6, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x28, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x53, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfb, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xdb, + 0xbb, 0xff, 0xbb, 0xbb, 0xfe, 0xbb, 0xbd, 0xfb, + 0x0, 0x0, 0x0, 0x0, 0xdf, 0x60, 0x0, 0xef, + 0x0, 0x1, 0xfc, 0x0, 0x8, 0xfa, 0x0, 0x0, + 0x0, 0x0, 0xdf, 0x60, 0x0, 0xef, 0x0, 0x1, + 0xfc, 0x0, 0x8, 0xfa, 0x0, 0x0, 0x0, 0x0, + 0xdf, 0x60, 0x0, 0xef, 0x0, 0x1, 0xfc, 0x0, + 0x8, 0xfa, 0x0, 0x0, 0x0, 0x0, 0xdf, 0x60, + 0x0, 0xef, 0x0, 0x1, 0xfc, 0x0, 0x8, 0xfa, + 0x0, 0x0, 0x3e, 0xed, 0xff, 0xed, 0xdd, 0xff, + 0xdd, 0xdd, 0xff, 0xdd, 0xde, 0xff, 0xde, 0xf1, + 0x3f, 0xfe, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, + 0xee, 0xee, 0xee, 0xef, 0xff, 0xf2, + /* U+76EE "目" */ 0x3a, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xa4, 0x5f, 0xff, 0xff, 0xff, 0xff, 0xff, @@ -20339,178 +20385,179 @@ static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = { {.bitmap_index = 90996, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, {.bitmap_index = 91347, .adv_w = 448, .box_w = 25, .box_h = 26, .ofs_x = 2, .ofs_y = -3}, {.bitmap_index = 91672, .adv_w = 448, .box_w = 24, .box_h = 26, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 91984, .adv_w = 448, .box_w = 20, .box_h = 24, .ofs_x = 4, .ofs_y = -2}, - {.bitmap_index = 92224, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 92549, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 92887, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 93225, .adv_w = 448, .box_w = 25, .box_h = 25, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 93538, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 93889, .adv_w = 448, .box_w = 27, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 94227, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 94565, .adv_w = 448, .box_w = 25, .box_h = 26, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 94890, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 95228, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 95593, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 95958, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 96323, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 96674, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 97012, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 97363, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 97728, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 98066, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 98404, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 98742, .adv_w = 448, .box_w = 28, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 99120, .adv_w = 448, .box_w = 26, .box_h = 24, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 99432, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 99783, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 100108, .adv_w = 448, .box_w = 28, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 100472, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 100837, .adv_w = 448, .box_w = 28, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 101201, .adv_w = 448, .box_w = 24, .box_h = 25, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 101501, .adv_w = 448, .box_w = 26, .box_h = 24, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 101813, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 102151, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 102476, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 102814, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 103165, .adv_w = 448, .box_w = 20, .box_h = 26, .ofs_x = 4, .ofs_y = -2}, - {.bitmap_index = 103425, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 103763, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 104088, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 104426, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 104777, .adv_w = 448, .box_w = 28, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 105155, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 105506, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 105871, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 106209, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 106560, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 106898, .adv_w = 448, .box_w = 27, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 107236, .adv_w = 448, .box_w = 28, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 107600, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 107965, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 108330, .adv_w = 448, .box_w = 24, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 108654, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 109019, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 109344, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 109682, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 110033, .adv_w = 448, .box_w = 27, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 110371, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 110709, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 111060, .adv_w = 448, .box_w = 28, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 111424, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 111762, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 112100, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 112451, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 112789, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 113154, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 113492, .adv_w = 448, .box_w = 27, .box_h = 25, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 113830, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 114195, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 114560, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 114911, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 115262, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 115600, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 115951, .adv_w = 448, .box_w = 28, .box_h = 28, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 116343, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 116694, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 117032, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 117383, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 117708, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 118046, .adv_w = 448, .box_w = 27, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 118384, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 118735, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 119073, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 119424, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 119762, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 120100, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 120451, .adv_w = 448, .box_w = 28, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 120815, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 121166, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 121517, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 121868, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 122193, .adv_w = 448, .box_w = 26, .box_h = 24, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 122505, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 122843, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 123194, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 123545, .adv_w = 448, .box_w = 28, .box_h = 27, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 123923, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 124261, .adv_w = 448, .box_w = 25, .box_h = 27, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 124599, .adv_w = 448, .box_w = 24, .box_h = 27, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 124923, .adv_w = 448, .box_w = 24, .box_h = 26, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 125235, .adv_w = 448, .box_w = 25, .box_h = 28, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 125585, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 125950, .adv_w = 448, .box_w = 26, .box_h = 24, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 126262, .adv_w = 448, .box_w = 26, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 126626, .adv_w = 448, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 126939, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 127277, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 127602, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 127927, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 128278, .adv_w = 448, .box_w = 27, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 128616, .adv_w = 448, .box_w = 27, .box_h = 25, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 128954, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 129319, .adv_w = 448, .box_w = 25, .box_h = 26, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 129644, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 129995, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 130346, .adv_w = 448, .box_w = 28, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 130752, .adv_w = 448, .box_w = 28, .box_h = 21, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 131046, .adv_w = 448, .box_w = 28, .box_h = 25, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 131396, .adv_w = 448, .box_w = 28, .box_h = 21, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 131690, .adv_w = 308, .box_w = 20, .box_h = 21, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 131900, .adv_w = 448, .box_w = 28, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 132306, .adv_w = 448, .box_w = 27, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 132698, .adv_w = 504, .box_w = 32, .box_h = 25, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 133098, .adv_w = 448, .box_w = 28, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 133504, .adv_w = 504, .box_w = 32, .box_h = 21, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 133840, .adv_w = 448, .box_w = 28, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 134246, .adv_w = 224, .box_w = 14, .box_h = 23, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 134407, .adv_w = 336, .box_w = 21, .box_h = 23, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 134649, .adv_w = 504, .box_w = 32, .box_h = 27, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 135081, .adv_w = 448, .box_w = 28, .box_h = 21, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 135375, .adv_w = 308, .box_w = 20, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 135665, .adv_w = 392, .box_w = 18, .box_h = 26, .ofs_x = 3, .ofs_y = -3}, - {.bitmap_index = 135899, .adv_w = 392, .box_w = 25, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 136262, .adv_w = 392, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 136575, .adv_w = 392, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 136888, .adv_w = 392, .box_w = 18, .box_h = 26, .ofs_x = 3, .ofs_y = -3}, - {.bitmap_index = 137122, .adv_w = 392, .box_w = 26, .box_h = 25, .ofs_x = -1, .ofs_y = -2}, - {.bitmap_index = 137447, .adv_w = 280, .box_w = 16, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 137647, .adv_w = 280, .box_w = 16, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 137847, .adv_w = 392, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 138160, .adv_w = 392, .box_w = 25, .box_h = 7, .ofs_x = 0, .ofs_y = 7}, - {.bitmap_index = 138248, .adv_w = 504, .box_w = 32, .box_h = 21, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 138584, .adv_w = 560, .box_w = 35, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 139092, .adv_w = 504, .box_w = 33, .box_h = 29, .ofs_x = -1, .ofs_y = -4}, - {.bitmap_index = 139571, .adv_w = 448, .box_w = 28, .box_h = 25, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 139921, .adv_w = 392, .box_w = 25, .box_h = 15, .ofs_x = 0, .ofs_y = 3}, - {.bitmap_index = 140109, .adv_w = 392, .box_w = 25, .box_h = 15, .ofs_x = 0, .ofs_y = 3}, - {.bitmap_index = 140297, .adv_w = 560, .box_w = 35, .box_h = 22, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 140682, .adv_w = 448, .box_w = 28, .box_h = 21, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 140976, .adv_w = 448, .box_w = 28, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 141382, .adv_w = 448, .box_w = 29, .box_h = 29, .ofs_x = -1, .ofs_y = -4}, - {.bitmap_index = 141803, .adv_w = 392, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 142116, .adv_w = 392, .box_w = 25, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 142479, .adv_w = 392, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 142792, .adv_w = 392, .box_w = 25, .box_h = 23, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 143080, .adv_w = 448, .box_w = 28, .box_h = 21, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 143374, .adv_w = 280, .box_w = 19, .box_h = 29, .ofs_x = -1, .ofs_y = -4}, - {.bitmap_index = 143650, .adv_w = 392, .box_w = 25, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 144013, .adv_w = 392, .box_w = 25, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 144376, .adv_w = 504, .box_w = 32, .box_h = 21, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 144712, .adv_w = 448, .box_w = 30, .box_h = 29, .ofs_x = -1, .ofs_y = -4}, - {.bitmap_index = 145147, .adv_w = 336, .box_w = 21, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 145452, .adv_w = 560, .box_w = 35, .box_h = 26, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 145907, .adv_w = 560, .box_w = 35, .box_h = 19, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 146240, .adv_w = 560, .box_w = 35, .box_h = 19, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 146573, .adv_w = 560, .box_w = 35, .box_h = 19, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 146906, .adv_w = 560, .box_w = 35, .box_h = 19, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 147239, .adv_w = 560, .box_w = 35, .box_h = 19, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 147572, .adv_w = 560, .box_w = 36, .box_h = 23, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 147986, .adv_w = 392, .box_w = 22, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 148305, .adv_w = 392, .box_w = 25, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 148668, .adv_w = 448, .box_w = 29, .box_h = 29, .ofs_x = -1, .ofs_y = -4}, - {.bitmap_index = 149089, .adv_w = 560, .box_w = 35, .box_h = 21, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 149457, .adv_w = 336, .box_w = 21, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 149762, .adv_w = 451, .box_w = 29, .box_h = 19, .ofs_x = 0, .ofs_y = 1} + {.bitmap_index = 91984, .adv_w = 448, .box_w = 28, .box_h = 25, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 92334, .adv_w = 448, .box_w = 20, .box_h = 24, .ofs_x = 4, .ofs_y = -2}, + {.bitmap_index = 92574, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 92899, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 93237, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 93575, .adv_w = 448, .box_w = 25, .box_h = 25, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 93888, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 94239, .adv_w = 448, .box_w = 27, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 94577, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 94915, .adv_w = 448, .box_w = 25, .box_h = 26, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 95240, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 95578, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 95943, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 96308, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 96673, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 97024, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 97362, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 97713, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 98078, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 98416, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 98754, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 99092, .adv_w = 448, .box_w = 28, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 99470, .adv_w = 448, .box_w = 26, .box_h = 24, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 99782, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 100133, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 100458, .adv_w = 448, .box_w = 28, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 100822, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 101187, .adv_w = 448, .box_w = 28, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 101551, .adv_w = 448, .box_w = 24, .box_h = 25, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 101851, .adv_w = 448, .box_w = 26, .box_h = 24, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 102163, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 102501, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 102826, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 103164, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 103515, .adv_w = 448, .box_w = 20, .box_h = 26, .ofs_x = 4, .ofs_y = -2}, + {.bitmap_index = 103775, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 104113, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 104438, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 104776, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 105127, .adv_w = 448, .box_w = 28, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 105505, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 105856, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 106221, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 106559, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 106910, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 107248, .adv_w = 448, .box_w = 27, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 107586, .adv_w = 448, .box_w = 28, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 107950, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 108315, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 108680, .adv_w = 448, .box_w = 24, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 109004, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 109369, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 109694, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 110032, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 110383, .adv_w = 448, .box_w = 27, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 110721, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 111059, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 111410, .adv_w = 448, .box_w = 28, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 111774, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 112112, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 112450, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 112801, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 113139, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 113504, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 113842, .adv_w = 448, .box_w = 27, .box_h = 25, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 114180, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 114545, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 114910, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 115261, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 115612, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 115950, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 116301, .adv_w = 448, .box_w = 28, .box_h = 28, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 116693, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 117044, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 117382, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 117733, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 118058, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 118396, .adv_w = 448, .box_w = 27, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 118734, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 119085, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 119423, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 119774, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 120112, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 120450, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 120801, .adv_w = 448, .box_w = 28, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 121165, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 121516, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 121867, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 122218, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 122543, .adv_w = 448, .box_w = 26, .box_h = 24, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 122855, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 123193, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 123544, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 123895, .adv_w = 448, .box_w = 28, .box_h = 27, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 124273, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 124611, .adv_w = 448, .box_w = 25, .box_h = 27, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 124949, .adv_w = 448, .box_w = 24, .box_h = 27, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 125273, .adv_w = 448, .box_w = 24, .box_h = 26, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 125585, .adv_w = 448, .box_w = 25, .box_h = 28, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 125935, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 126300, .adv_w = 448, .box_w = 26, .box_h = 24, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 126612, .adv_w = 448, .box_w = 26, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 126976, .adv_w = 448, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 127289, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 127627, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 127952, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 128277, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 128628, .adv_w = 448, .box_w = 27, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 128966, .adv_w = 448, .box_w = 27, .box_h = 25, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 129304, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 129669, .adv_w = 448, .box_w = 25, .box_h = 26, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 129994, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 130345, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 130696, .adv_w = 448, .box_w = 28, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 131102, .adv_w = 448, .box_w = 28, .box_h = 21, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 131396, .adv_w = 448, .box_w = 28, .box_h = 25, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 131746, .adv_w = 448, .box_w = 28, .box_h = 21, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 132040, .adv_w = 308, .box_w = 20, .box_h = 21, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 132250, .adv_w = 448, .box_w = 28, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 132656, .adv_w = 448, .box_w = 27, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 133048, .adv_w = 504, .box_w = 32, .box_h = 25, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 133448, .adv_w = 448, .box_w = 28, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 133854, .adv_w = 504, .box_w = 32, .box_h = 21, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 134190, .adv_w = 448, .box_w = 28, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 134596, .adv_w = 224, .box_w = 14, .box_h = 23, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 134757, .adv_w = 336, .box_w = 21, .box_h = 23, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 134999, .adv_w = 504, .box_w = 32, .box_h = 27, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 135431, .adv_w = 448, .box_w = 28, .box_h = 21, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 135725, .adv_w = 308, .box_w = 20, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 136015, .adv_w = 392, .box_w = 18, .box_h = 26, .ofs_x = 3, .ofs_y = -3}, + {.bitmap_index = 136249, .adv_w = 392, .box_w = 25, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 136612, .adv_w = 392, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 136925, .adv_w = 392, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 137238, .adv_w = 392, .box_w = 18, .box_h = 26, .ofs_x = 3, .ofs_y = -3}, + {.bitmap_index = 137472, .adv_w = 392, .box_w = 26, .box_h = 25, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 137797, .adv_w = 280, .box_w = 16, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 137997, .adv_w = 280, .box_w = 16, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 138197, .adv_w = 392, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 138510, .adv_w = 392, .box_w = 25, .box_h = 7, .ofs_x = 0, .ofs_y = 7}, + {.bitmap_index = 138598, .adv_w = 504, .box_w = 32, .box_h = 21, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 138934, .adv_w = 560, .box_w = 35, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 139442, .adv_w = 504, .box_w = 33, .box_h = 29, .ofs_x = -1, .ofs_y = -4}, + {.bitmap_index = 139921, .adv_w = 448, .box_w = 28, .box_h = 25, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 140271, .adv_w = 392, .box_w = 25, .box_h = 15, .ofs_x = 0, .ofs_y = 3}, + {.bitmap_index = 140459, .adv_w = 392, .box_w = 25, .box_h = 15, .ofs_x = 0, .ofs_y = 3}, + {.bitmap_index = 140647, .adv_w = 560, .box_w = 35, .box_h = 22, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 141032, .adv_w = 448, .box_w = 28, .box_h = 21, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 141326, .adv_w = 448, .box_w = 28, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 141732, .adv_w = 448, .box_w = 29, .box_h = 29, .ofs_x = -1, .ofs_y = -4}, + {.bitmap_index = 142153, .adv_w = 392, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 142466, .adv_w = 392, .box_w = 25, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 142829, .adv_w = 392, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 143142, .adv_w = 392, .box_w = 25, .box_h = 23, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 143430, .adv_w = 448, .box_w = 28, .box_h = 21, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 143724, .adv_w = 280, .box_w = 19, .box_h = 29, .ofs_x = -1, .ofs_y = -4}, + {.bitmap_index = 144000, .adv_w = 392, .box_w = 25, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 144363, .adv_w = 392, .box_w = 25, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 144726, .adv_w = 504, .box_w = 32, .box_h = 21, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 145062, .adv_w = 448, .box_w = 30, .box_h = 29, .ofs_x = -1, .ofs_y = -4}, + {.bitmap_index = 145497, .adv_w = 336, .box_w = 21, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 145802, .adv_w = 560, .box_w = 35, .box_h = 26, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 146257, .adv_w = 560, .box_w = 35, .box_h = 19, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 146590, .adv_w = 560, .box_w = 35, .box_h = 19, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 146923, .adv_w = 560, .box_w = 35, .box_h = 19, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 147256, .adv_w = 560, .box_w = 35, .box_h = 19, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 147589, .adv_w = 560, .box_w = 35, .box_h = 19, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 147922, .adv_w = 560, .box_w = 36, .box_h = 23, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 148336, .adv_w = 392, .box_w = 22, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 148655, .adv_w = 392, .box_w = 25, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 149018, .adv_w = 448, .box_w = 29, .box_h = 29, .ofs_x = -1, .ofs_y = -4}, + {.bitmap_index = 149439, .adv_w = 560, .box_w = 35, .box_h = 21, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 149807, .adv_w = 336, .box_w = 21, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 150112, .adv_w = 451, .box_w = 29, .box_h = 19, .ofs_x = 0, .ofs_y = 1} }; /*--------------------- @@ -20547,29 +20594,29 @@ static const uint16_t unicode_list_1[] = { 0x6bb0, 0x6bf1, 0x6c25, 0x6c38, 0x6c8b, 0x6c91, 0x6c9b, 0x6cd8, 0x6d55, 0x6d79, 0x6de0, 0x6e2a, 0x6e31, 0x7009, 0x7018, 0x7076, 0x7086, 0x7198, 0x7206, 0x72ff, 0x7300, 0x7356, 0x746f, 0x7478, - 0x7485, 0x748b, 0x749c, 0x74a9, 0x75d4, 0x763e, 0x7644, 0x765b, - 0x7670, 0x768c, 0x773d, 0x7751, 0x77be, 0x788a, 0x78d1, 0x791d, - 0x795b, 0x79ca, 0x79d4, 0x7a2e, 0x7a3f, 0x7a76, 0x7c4b, 0x7c70, - 0x7c72, 0x7e0f, 0x7e1f, 0x7e21, 0x7e23, 0x7e2c, 0x7e2f, 0x7e3a, - 0x7ea1, 0x7ebe, 0x7f55, 0x7f83, 0x801c, 0x804d, 0x813a, 0x8144, - 0x81ff, 0x8307, 0x832c, 0x851f, 0x8652, 0x879c, 0x87b8, 0x87fb, - 0x8815, 0x88d1, 0x8914, 0x8916, 0x8918, 0x8922, 0x8ab6, 0x8af1, - 0x8af4, 0x8afe, 0x8b00, 0x8b0e, 0x8b0f, 0x8b11, 0x8b16, 0x8b25, - 0x8b47, 0x8b53, 0x8c75, 0x8c78, 0x8cd5, 0x8d7a, 0x8eb8, 0x8ebc, - 0x8ebe, 0x8ec4, 0x8ecd, 0x8ee3, 0x8f17, 0x8f20, 0x8f24, 0x8f29, - 0x8f2b, 0x8f2e, 0x8f49, 0x8f4d, 0x8f50, 0x8f51, 0x8f59, 0x8f6a, - 0x8f6f, 0x8fa3, 0x9038, 0x904d, 0x911d, 0x911f, 0x93ef, 0x9451, - 0x947e, 0x94ac, 0x94cf, 0x953d, 0x953e, 0x9544, 0x95b4, 0x95e0, - 0x96b2, 0x9743, 0x97c5, 0x97c6, 0x97c9, 0x97d4, 0x97e1, 0x981e, - 0x98c1, 0x99dc, 0x9d73, 0x9df6, 0x9e28, 0xef51, 0xef58, 0xef5b, - 0xef5c, 0xef5d, 0xef61, 0xef63, 0xef65, 0xef69, 0xef6c, 0xef71, - 0xef76, 0xef77, 0xef78, 0xef8e, 0xef93, 0xef98, 0xef9b, 0xef9c, - 0xef9d, 0xefa1, 0xefa2, 0xefa3, 0xefa4, 0xefb7, 0xefb8, 0xefbe, - 0xefc0, 0xefc1, 0xefc4, 0xefc7, 0xefc8, 0xefc9, 0xefcb, 0xefe3, - 0xefe5, 0xf014, 0xf015, 0xf017, 0xf019, 0xf030, 0xf037, 0xf03a, - 0xf043, 0xf06c, 0xf074, 0xf0ab, 0xf13b, 0xf190, 0xf191, 0xf192, - 0xf193, 0xf194, 0xf1d7, 0xf1e3, 0xf23d, 0xf254, 0xf4aa, 0xf712, - 0xf7f2 + 0x7485, 0x748b, 0x749c, 0x74a9, 0x75d4, 0x7628, 0x763e, 0x7644, + 0x765b, 0x7670, 0x768c, 0x773d, 0x7751, 0x77be, 0x788a, 0x78d1, + 0x791d, 0x795b, 0x79ca, 0x79d4, 0x7a2e, 0x7a3f, 0x7a76, 0x7c4b, + 0x7c70, 0x7c72, 0x7e0f, 0x7e1f, 0x7e21, 0x7e23, 0x7e2c, 0x7e2f, + 0x7e3a, 0x7ea1, 0x7ebe, 0x7f55, 0x7f83, 0x801c, 0x804d, 0x813a, + 0x8144, 0x81ff, 0x8307, 0x832c, 0x851f, 0x8652, 0x879c, 0x87b8, + 0x87fb, 0x8815, 0x88d1, 0x8914, 0x8916, 0x8918, 0x8922, 0x8ab6, + 0x8af1, 0x8af4, 0x8afe, 0x8b00, 0x8b0e, 0x8b0f, 0x8b11, 0x8b16, + 0x8b25, 0x8b47, 0x8b53, 0x8c75, 0x8c78, 0x8cd5, 0x8d7a, 0x8eb8, + 0x8ebc, 0x8ebe, 0x8ec4, 0x8ecd, 0x8ee3, 0x8f17, 0x8f20, 0x8f24, + 0x8f29, 0x8f2b, 0x8f2e, 0x8f49, 0x8f4d, 0x8f50, 0x8f51, 0x8f59, + 0x8f6a, 0x8f6f, 0x8fa3, 0x9038, 0x904d, 0x911d, 0x911f, 0x93ef, + 0x9451, 0x947e, 0x94ac, 0x94cf, 0x953d, 0x953e, 0x9544, 0x95b4, + 0x95e0, 0x96b2, 0x9743, 0x97c5, 0x97c6, 0x97c9, 0x97d4, 0x97e1, + 0x981e, 0x98c1, 0x99dc, 0x9d73, 0x9df6, 0x9e28, 0xef51, 0xef58, + 0xef5b, 0xef5c, 0xef5d, 0xef61, 0xef63, 0xef65, 0xef69, 0xef6c, + 0xef71, 0xef76, 0xef77, 0xef78, 0xef8e, 0xef93, 0xef98, 0xef9b, + 0xef9c, 0xef9d, 0xefa1, 0xefa2, 0xefa3, 0xefa4, 0xefb7, 0xefb8, + 0xefbe, 0xefc0, 0xefc1, 0xefc4, 0xefc7, 0xefc8, 0xefc9, 0xefcb, + 0xefe3, 0xefe5, 0xf014, 0xf015, 0xf017, 0xf019, 0xf030, 0xf037, + 0xf03a, 0xf043, 0xf06c, 0xf074, 0xf0ab, 0xf13b, 0xf190, 0xf191, + 0xf192, 0xf193, 0xf194, 0xf1d7, 0xf1e3, 0xf23d, 0xf254, 0xf4aa, + 0xf712, 0xf7f2 }; /*Collect the unicode lists and glyph_id offsets*/ @@ -20581,7 +20628,7 @@ static const lv_font_fmt_txt_cmap_t cmaps[] = }, { .range_start = 176, .range_length = 63475, .glyph_id_start = 96, - .unicode_list = unicode_list_1, .glyph_id_ofs_list = NULL, .list_length = 409, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY + .unicode_list = unicode_list_1, .glyph_id_ofs_list = NULL, .list_length = 410, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY } }; @@ -20656,7 +20703,7 @@ static const uint8_t kern_left_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0 + 0, 0 }; /*Map glyph_ids to kern right classes*/ @@ -20725,7 +20772,7 @@ static const uint8_t kern_right_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0 + 0, 0 }; /*Kern values between classes*/ diff --git a/lib/lvgl/lvgl/src/font/lv_font_montserrat_30.c b/lib/lvgl/lvgl/src/font/lv_font_montserrat_30.c index b3859108..e8199fc9 100644 --- a/lib/lvgl/lvgl/src/font/lv_font_montserrat_30.c +++ b/lib/lvgl/lvgl/src/font/lv_font_montserrat_30.c @@ -1,7 +1,7 @@ /******************************************************************************* * Size: 30 px * Bpp: 4 - * Opts: --bpp 4 --size 30 --no-compress --font Montserrat-Medium.ttf --range 32-127,176,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20351,20363,20391,20445,20449,20462,20463,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29366,29615,29616,29702,29983,29992,30005,30011,30028,30041,30340,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31181,31243,31354,31364,31454,31471,31526,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33719,33756,34255,34562,34892,34920,34987,35013,35201,35268,35270,35272,35282,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35831,35843,36133,36136,36229,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --format lvgl -o out/lv_font_montserrat_30.c + * Opts: --bpp 4 --size 30 --no-compress --font Montserrat-Medium.ttf --range 32-127,176,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20351,20363,20391,20445,20449,20462,20463,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29366,29615,29616,29702,29983,29992,30005,30011,30028,30041,30340,30424,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31181,31243,31354,31364,31454,31471,31526,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33719,33756,34255,34562,34892,34920,34987,35013,35201,35268,35270,35272,35282,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35831,35843,36133,36136,36229,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --format lvgl -o out/lv_font_montserrat_30.c ******************************************************************************/ #ifdef LV_LVGL_H_INCLUDE_SIMPLE @@ -13976,6 +13976,61 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x0, 0xc9, 0x62, 0x0, 0x0, + /* U+76D8 "盘" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, 0x50, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xa0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x5, 0xff, 0x30, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xe, 0xee, 0xef, 0xff, 0xee, 0xee, 0xee, 0xee, + 0xee, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xf8, + 0x11, 0x11, 0x41, 0x11, 0x11, 0x14, 0xff, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xf8, 0x0, + 0x8, 0xf9, 0x0, 0x0, 0x3, 0xff, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xf, 0xf8, 0x0, 0xb, + 0xff, 0xe4, 0x0, 0x3, 0xfe, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xf, 0xf8, 0x0, 0x0, 0x5e, + 0xf3, 0x0, 0x3, 0xfe, 0x0, 0x0, 0x0, 0x0, + 0x21, 0x11, 0xf, 0xf8, 0x0, 0x0, 0x2, 0x70, + 0x0, 0x3, 0xfe, 0x1, 0x12, 0x0, 0x0, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x60, 0x0, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x60, 0x0, 0x0, 0x0, 0x3f, + 0xf2, 0x0, 0x22, 0x0, 0x0, 0x0, 0x5, 0xfc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9f, 0xd0, + 0x0, 0xcf, 0xb4, 0x0, 0x0, 0x5, 0xfc, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x70, 0x0, + 0x6d, 0xff, 0xd1, 0x0, 0x6, 0xfc, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x3e, 0xfe, 0x10, 0x0, 0x0, + 0x6f, 0x90, 0x4d, 0xef, 0xfb, 0x0, 0x0, 0x0, + 0x0, 0x1, 0xdf, 0xf4, 0x0, 0x0, 0x0, 0x2, + 0x10, 0xd, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xa, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x5, 0x74, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x6c, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, + 0xcc, 0xcc, 0xc8, 0x0, 0x0, 0x0, 0x0, 0x8f, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfa, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xe1, + 0x11, 0x2f, 0xe1, 0x11, 0x1f, 0xf1, 0x11, 0x1c, + 0xf9, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xe0, 0x0, + 0x1f, 0xe0, 0x0, 0xf, 0xf0, 0x0, 0xc, 0xf9, + 0x0, 0x0, 0x0, 0x0, 0x6f, 0xe0, 0x0, 0x1f, + 0xe0, 0x0, 0xf, 0xf0, 0x0, 0xc, 0xf9, 0x0, + 0x0, 0x0, 0x0, 0x6f, 0xe0, 0x0, 0x1f, 0xe0, + 0x0, 0xf, 0xf0, 0x0, 0xc, 0xf9, 0x0, 0x0, + 0x0, 0x0, 0x6f, 0xe0, 0x0, 0x1f, 0xe0, 0x0, + 0xf, 0xf0, 0x0, 0xc, 0xf9, 0x0, 0x0, 0x1, + 0x0, 0x6f, 0xe0, 0x0, 0x1f, 0xe0, 0x0, 0xf, + 0xf0, 0x0, 0xc, 0xf9, 0x0, 0x10, 0x1f, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf1, 0x1f, 0xfe, 0xee, + 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, + 0xee, 0xef, 0xff, 0xf1, + /* U+76EE "目" */ 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf2, 0xf, 0xff, 0xee, 0xee, 0xee, @@ -23076,178 +23131,179 @@ static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = { {.bitmap_index = 104287, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, {.bitmap_index = 104679, .adv_w = 480, .box_w = 26, .box_h = 28, .ofs_x = 2, .ofs_y = -3}, {.bitmap_index = 105043, .adv_w = 480, .box_w = 26, .box_h = 29, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 105420, .adv_w = 480, .box_w = 22, .box_h = 26, .ofs_x = 4, .ofs_y = -3}, - {.bitmap_index = 105706, .adv_w = 480, .box_w = 28, .box_h = 26, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 106070, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 106462, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 106854, .adv_w = 480, .box_w = 27, .box_h = 27, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 107219, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 107625, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 108003, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 108409, .adv_w = 480, .box_w = 27, .box_h = 27, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 108774, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 109166, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 109558, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 109964, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 110370, .adv_w = 480, .box_w = 27, .box_h = 28, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 110748, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 111154, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 111560, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 111966, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 112358, .adv_w = 480, .box_w = 26, .box_h = 28, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 112722, .adv_w = 480, .box_w = 27, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 113100, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 113521, .adv_w = 480, .box_w = 28, .box_h = 26, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 113885, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 114291, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 114697, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 115103, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 115524, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 115916, .adv_w = 480, .box_w = 26, .box_h = 26, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 116254, .adv_w = 480, .box_w = 28, .box_h = 26, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 116618, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 117010, .adv_w = 480, .box_w = 28, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 117374, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 117752, .adv_w = 480, .box_w = 27, .box_h = 29, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 118144, .adv_w = 480, .box_w = 22, .box_h = 28, .ofs_x = 4, .ofs_y = -3}, - {.bitmap_index = 118452, .adv_w = 480, .box_w = 27, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 118830, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 119208, .adv_w = 480, .box_w = 27, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 119573, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 119965, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 120386, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 120792, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 121184, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 121590, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 121996, .adv_w = 480, .box_w = 27, .box_h = 28, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 122374, .adv_w = 480, .box_w = 29, .box_h = 27, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 122766, .adv_w = 480, .box_w = 30, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 123201, .adv_w = 480, .box_w = 30, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 123636, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 124057, .adv_w = 480, .box_w = 26, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 124434, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 124826, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 125204, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 125596, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 126017, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 126395, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 126816, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 127222, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 127628, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 128034, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 128440, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 128846, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 129238, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 129644, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 130036, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 130442, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 130848, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 131254, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 131675, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 132067, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 132473, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 132879, .adv_w = 480, .box_w = 29, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 133314, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 133720, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 134112, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 134518, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 134910, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 135331, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 135723, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 136144, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 136550, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 136956, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 137348, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 137754, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 138175, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 138596, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 139002, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 139394, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 139786, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 140164, .adv_w = 480, .box_w = 28, .box_h = 26, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 140528, .adv_w = 480, .box_w = 27, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 140893, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 141314, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 141735, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 142156, .adv_w = 480, .box_w = 27, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 142521, .adv_w = 480, .box_w = 26, .box_h = 29, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 142898, .adv_w = 480, .box_w = 26, .box_h = 29, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 143275, .adv_w = 480, .box_w = 26, .box_h = 29, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 143652, .adv_w = 480, .box_w = 27, .box_h = 29, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 144044, .adv_w = 480, .box_w = 27, .box_h = 29, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 144436, .adv_w = 480, .box_w = 26, .box_h = 27, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 144787, .adv_w = 480, .box_w = 27, .box_h = 29, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 145179, .adv_w = 480, .box_w = 26, .box_h = 26, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 145517, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 145895, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 146273, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 146651, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 147072, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 147478, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 147870, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 148291, .adv_w = 480, .box_w = 26, .box_h = 28, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 148655, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 149061, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 149453, .adv_w = 480, .box_w = 31, .box_h = 31, .ofs_x = -1, .ofs_y = -4}, - {.bitmap_index = 149934, .adv_w = 480, .box_w = 30, .box_h = 23, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 150279, .adv_w = 480, .box_w = 30, .box_h = 27, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 150684, .adv_w = 480, .box_w = 30, .box_h = 23, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 151029, .adv_w = 330, .box_w = 21, .box_h = 22, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 151260, .adv_w = 480, .box_w = 30, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 151725, .adv_w = 480, .box_w = 30, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 152190, .adv_w = 540, .box_w = 34, .box_h = 27, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 152649, .adv_w = 480, .box_w = 30, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 153114, .adv_w = 540, .box_w = 34, .box_h = 23, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 153505, .adv_w = 480, .box_w = 30, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 153970, .adv_w = 240, .box_w = 15, .box_h = 24, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 154150, .adv_w = 360, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 154426, .adv_w = 540, .box_w = 34, .box_h = 29, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 154919, .adv_w = 480, .box_w = 30, .box_h = 23, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 155264, .adv_w = 330, .box_w = 21, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 155590, .adv_w = 420, .box_w = 20, .box_h = 28, .ofs_x = 3, .ofs_y = -3}, - {.bitmap_index = 155870, .adv_w = 420, .box_w = 27, .box_h = 32, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 156302, .adv_w = 420, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 156667, .adv_w = 420, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 157032, .adv_w = 420, .box_w = 20, .box_h = 28, .ofs_x = 3, .ofs_y = -3}, - {.bitmap_index = 157312, .adv_w = 420, .box_w = 28, .box_h = 27, .ofs_x = -1, .ofs_y = -2}, - {.bitmap_index = 157690, .adv_w = 300, .box_w = 17, .box_h = 27, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 157920, .adv_w = 300, .box_w = 17, .box_h = 27, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 158150, .adv_w = 420, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 158515, .adv_w = 420, .box_w = 27, .box_h = 7, .ofs_x = 0, .ofs_y = 8}, - {.bitmap_index = 158610, .adv_w = 540, .box_w = 34, .box_h = 23, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 159001, .adv_w = 600, .box_w = 38, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 159590, .adv_w = 540, .box_w = 36, .box_h = 31, .ofs_x = -1, .ofs_y = -4}, - {.bitmap_index = 160148, .adv_w = 480, .box_w = 30, .box_h = 28, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 160568, .adv_w = 420, .box_w = 26, .box_h = 17, .ofs_x = 0, .ofs_y = 3}, - {.bitmap_index = 160789, .adv_w = 420, .box_w = 26, .box_h = 17, .ofs_x = 0, .ofs_y = 3}, - {.bitmap_index = 161010, .adv_w = 600, .box_w = 38, .box_h = 24, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 161466, .adv_w = 480, .box_w = 30, .box_h = 23, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 161811, .adv_w = 480, .box_w = 30, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 162276, .adv_w = 480, .box_w = 31, .box_h = 31, .ofs_x = -1, .ofs_y = -4}, - {.bitmap_index = 162757, .adv_w = 420, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 163122, .adv_w = 420, .box_w = 27, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 163541, .adv_w = 420, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 163906, .adv_w = 420, .box_w = 27, .box_h = 24, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 164230, .adv_w = 480, .box_w = 30, .box_h = 23, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 164575, .adv_w = 300, .box_w = 20, .box_h = 31, .ofs_x = -1, .ofs_y = -4}, - {.bitmap_index = 164885, .adv_w = 420, .box_w = 27, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 165304, .adv_w = 420, .box_w = 27, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 165723, .adv_w = 540, .box_w = 34, .box_h = 23, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 166114, .adv_w = 480, .box_w = 32, .box_h = 31, .ofs_x = -1, .ofs_y = -4}, - {.bitmap_index = 166610, .adv_w = 360, .box_w = 23, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 166967, .adv_w = 600, .box_w = 38, .box_h = 28, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 167499, .adv_w = 600, .box_w = 38, .box_h = 20, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 167879, .adv_w = 600, .box_w = 38, .box_h = 20, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 168259, .adv_w = 600, .box_w = 38, .box_h = 20, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 168639, .adv_w = 600, .box_w = 38, .box_h = 20, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 169019, .adv_w = 600, .box_w = 38, .box_h = 20, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 169399, .adv_w = 600, .box_w = 38, .box_h = 24, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 169855, .adv_w = 420, .box_w = 24, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 170227, .adv_w = 420, .box_w = 27, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 170646, .adv_w = 480, .box_w = 31, .box_h = 31, .ofs_x = -1, .ofs_y = -4}, - {.bitmap_index = 171127, .adv_w = 600, .box_w = 38, .box_h = 23, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 171564, .adv_w = 360, .box_w = 23, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 171921, .adv_w = 483, .box_w = 31, .box_h = 20, .ofs_x = 0, .ofs_y = 1} + {.bitmap_index = 105420, .adv_w = 480, .box_w = 30, .box_h = 28, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 105840, .adv_w = 480, .box_w = 22, .box_h = 26, .ofs_x = 4, .ofs_y = -3}, + {.bitmap_index = 106126, .adv_w = 480, .box_w = 28, .box_h = 26, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 106490, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 106882, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 107274, .adv_w = 480, .box_w = 27, .box_h = 27, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 107639, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 108045, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 108423, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 108829, .adv_w = 480, .box_w = 27, .box_h = 27, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 109194, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 109586, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 109978, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 110384, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 110790, .adv_w = 480, .box_w = 27, .box_h = 28, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 111168, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 111574, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 111980, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 112386, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 112778, .adv_w = 480, .box_w = 26, .box_h = 28, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 113142, .adv_w = 480, .box_w = 27, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 113520, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 113941, .adv_w = 480, .box_w = 28, .box_h = 26, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 114305, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 114711, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 115117, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 115523, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 115944, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 116336, .adv_w = 480, .box_w = 26, .box_h = 26, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 116674, .adv_w = 480, .box_w = 28, .box_h = 26, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 117038, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 117430, .adv_w = 480, .box_w = 28, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 117794, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 118172, .adv_w = 480, .box_w = 27, .box_h = 29, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 118564, .adv_w = 480, .box_w = 22, .box_h = 28, .ofs_x = 4, .ofs_y = -3}, + {.bitmap_index = 118872, .adv_w = 480, .box_w = 27, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 119250, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 119628, .adv_w = 480, .box_w = 27, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 119993, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 120385, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 120806, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 121212, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 121604, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 122010, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 122416, .adv_w = 480, .box_w = 27, .box_h = 28, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 122794, .adv_w = 480, .box_w = 29, .box_h = 27, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 123186, .adv_w = 480, .box_w = 30, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 123621, .adv_w = 480, .box_w = 30, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 124056, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 124477, .adv_w = 480, .box_w = 26, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 124854, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 125246, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 125624, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 126016, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 126437, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 126815, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 127236, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 127642, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 128048, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 128454, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 128860, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 129266, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 129658, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 130064, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 130456, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 130862, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 131268, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 131674, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 132095, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 132487, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 132893, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 133299, .adv_w = 480, .box_w = 29, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 133734, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 134140, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 134532, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 134938, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 135330, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 135751, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 136143, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 136564, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 136970, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 137376, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 137768, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 138174, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 138595, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 139016, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 139422, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 139814, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 140206, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 140584, .adv_w = 480, .box_w = 28, .box_h = 26, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 140948, .adv_w = 480, .box_w = 27, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 141313, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 141734, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 142155, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 142576, .adv_w = 480, .box_w = 27, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 142941, .adv_w = 480, .box_w = 26, .box_h = 29, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 143318, .adv_w = 480, .box_w = 26, .box_h = 29, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 143695, .adv_w = 480, .box_w = 26, .box_h = 29, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 144072, .adv_w = 480, .box_w = 27, .box_h = 29, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 144464, .adv_w = 480, .box_w = 27, .box_h = 29, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 144856, .adv_w = 480, .box_w = 26, .box_h = 27, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 145207, .adv_w = 480, .box_w = 27, .box_h = 29, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 145599, .adv_w = 480, .box_w = 26, .box_h = 26, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 145937, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 146315, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 146693, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 147071, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 147492, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 147898, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 148290, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 148711, .adv_w = 480, .box_w = 26, .box_h = 28, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 149075, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 149481, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 149873, .adv_w = 480, .box_w = 31, .box_h = 31, .ofs_x = -1, .ofs_y = -4}, + {.bitmap_index = 150354, .adv_w = 480, .box_w = 30, .box_h = 23, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 150699, .adv_w = 480, .box_w = 30, .box_h = 27, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 151104, .adv_w = 480, .box_w = 30, .box_h = 23, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 151449, .adv_w = 330, .box_w = 21, .box_h = 22, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 151680, .adv_w = 480, .box_w = 30, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 152145, .adv_w = 480, .box_w = 30, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 152610, .adv_w = 540, .box_w = 34, .box_h = 27, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 153069, .adv_w = 480, .box_w = 30, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 153534, .adv_w = 540, .box_w = 34, .box_h = 23, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 153925, .adv_w = 480, .box_w = 30, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 154390, .adv_w = 240, .box_w = 15, .box_h = 24, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 154570, .adv_w = 360, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 154846, .adv_w = 540, .box_w = 34, .box_h = 29, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 155339, .adv_w = 480, .box_w = 30, .box_h = 23, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 155684, .adv_w = 330, .box_w = 21, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 156010, .adv_w = 420, .box_w = 20, .box_h = 28, .ofs_x = 3, .ofs_y = -3}, + {.bitmap_index = 156290, .adv_w = 420, .box_w = 27, .box_h = 32, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 156722, .adv_w = 420, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 157087, .adv_w = 420, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 157452, .adv_w = 420, .box_w = 20, .box_h = 28, .ofs_x = 3, .ofs_y = -3}, + {.bitmap_index = 157732, .adv_w = 420, .box_w = 28, .box_h = 27, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 158110, .adv_w = 300, .box_w = 17, .box_h = 27, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 158340, .adv_w = 300, .box_w = 17, .box_h = 27, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 158570, .adv_w = 420, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 158935, .adv_w = 420, .box_w = 27, .box_h = 7, .ofs_x = 0, .ofs_y = 8}, + {.bitmap_index = 159030, .adv_w = 540, .box_w = 34, .box_h = 23, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 159421, .adv_w = 600, .box_w = 38, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 160010, .adv_w = 540, .box_w = 36, .box_h = 31, .ofs_x = -1, .ofs_y = -4}, + {.bitmap_index = 160568, .adv_w = 480, .box_w = 30, .box_h = 28, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 160988, .adv_w = 420, .box_w = 26, .box_h = 17, .ofs_x = 0, .ofs_y = 3}, + {.bitmap_index = 161209, .adv_w = 420, .box_w = 26, .box_h = 17, .ofs_x = 0, .ofs_y = 3}, + {.bitmap_index = 161430, .adv_w = 600, .box_w = 38, .box_h = 24, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 161886, .adv_w = 480, .box_w = 30, .box_h = 23, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 162231, .adv_w = 480, .box_w = 30, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 162696, .adv_w = 480, .box_w = 31, .box_h = 31, .ofs_x = -1, .ofs_y = -4}, + {.bitmap_index = 163177, .adv_w = 420, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 163542, .adv_w = 420, .box_w = 27, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 163961, .adv_w = 420, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 164326, .adv_w = 420, .box_w = 27, .box_h = 24, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 164650, .adv_w = 480, .box_w = 30, .box_h = 23, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 164995, .adv_w = 300, .box_w = 20, .box_h = 31, .ofs_x = -1, .ofs_y = -4}, + {.bitmap_index = 165305, .adv_w = 420, .box_w = 27, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 165724, .adv_w = 420, .box_w = 27, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 166143, .adv_w = 540, .box_w = 34, .box_h = 23, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 166534, .adv_w = 480, .box_w = 32, .box_h = 31, .ofs_x = -1, .ofs_y = -4}, + {.bitmap_index = 167030, .adv_w = 360, .box_w = 23, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 167387, .adv_w = 600, .box_w = 38, .box_h = 28, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 167919, .adv_w = 600, .box_w = 38, .box_h = 20, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 168299, .adv_w = 600, .box_w = 38, .box_h = 20, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 168679, .adv_w = 600, .box_w = 38, .box_h = 20, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 169059, .adv_w = 600, .box_w = 38, .box_h = 20, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 169439, .adv_w = 600, .box_w = 38, .box_h = 20, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 169819, .adv_w = 600, .box_w = 38, .box_h = 24, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 170275, .adv_w = 420, .box_w = 24, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 170647, .adv_w = 420, .box_w = 27, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 171066, .adv_w = 480, .box_w = 31, .box_h = 31, .ofs_x = -1, .ofs_y = -4}, + {.bitmap_index = 171547, .adv_w = 600, .box_w = 38, .box_h = 23, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 171984, .adv_w = 360, .box_w = 23, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 172341, .adv_w = 483, .box_w = 31, .box_h = 20, .ofs_x = 0, .ofs_y = 1} }; /*--------------------- @@ -23284,29 +23340,29 @@ static const uint16_t unicode_list_1[] = { 0x6bb0, 0x6bf1, 0x6c25, 0x6c38, 0x6c8b, 0x6c91, 0x6c9b, 0x6cd8, 0x6d55, 0x6d79, 0x6de0, 0x6e2a, 0x6e31, 0x7009, 0x7018, 0x7076, 0x7086, 0x7198, 0x7206, 0x72ff, 0x7300, 0x7356, 0x746f, 0x7478, - 0x7485, 0x748b, 0x749c, 0x74a9, 0x75d4, 0x763e, 0x7644, 0x765b, - 0x7670, 0x768c, 0x773d, 0x7751, 0x77be, 0x788a, 0x78d1, 0x791d, - 0x795b, 0x79ca, 0x79d4, 0x7a2e, 0x7a3f, 0x7a76, 0x7c4b, 0x7c70, - 0x7c72, 0x7e0f, 0x7e1f, 0x7e21, 0x7e23, 0x7e2c, 0x7e2f, 0x7e3a, - 0x7ea1, 0x7ebe, 0x7f55, 0x7f83, 0x801c, 0x804d, 0x813a, 0x8144, - 0x81ff, 0x8307, 0x832c, 0x851f, 0x8652, 0x879c, 0x87b8, 0x87fb, - 0x8815, 0x88d1, 0x8914, 0x8916, 0x8918, 0x8922, 0x8ab6, 0x8af1, - 0x8af4, 0x8afe, 0x8b00, 0x8b0e, 0x8b0f, 0x8b11, 0x8b16, 0x8b25, - 0x8b47, 0x8b53, 0x8c75, 0x8c78, 0x8cd5, 0x8d7a, 0x8eb8, 0x8ebc, - 0x8ebe, 0x8ec4, 0x8ecd, 0x8ee3, 0x8f17, 0x8f20, 0x8f24, 0x8f29, - 0x8f2b, 0x8f2e, 0x8f49, 0x8f4d, 0x8f50, 0x8f51, 0x8f59, 0x8f6a, - 0x8f6f, 0x8fa3, 0x9038, 0x904d, 0x911d, 0x911f, 0x93ef, 0x9451, - 0x947e, 0x94ac, 0x94cf, 0x953d, 0x953e, 0x9544, 0x95b4, 0x95e0, - 0x96b2, 0x9743, 0x97c5, 0x97c6, 0x97c9, 0x97d4, 0x97e1, 0x981e, - 0x98c1, 0x99dc, 0x9d73, 0x9df6, 0x9e28, 0xef51, 0xef58, 0xef5b, - 0xef5c, 0xef5d, 0xef61, 0xef63, 0xef65, 0xef69, 0xef6c, 0xef71, - 0xef76, 0xef77, 0xef78, 0xef8e, 0xef93, 0xef98, 0xef9b, 0xef9c, - 0xef9d, 0xefa1, 0xefa2, 0xefa3, 0xefa4, 0xefb7, 0xefb8, 0xefbe, - 0xefc0, 0xefc1, 0xefc4, 0xefc7, 0xefc8, 0xefc9, 0xefcb, 0xefe3, - 0xefe5, 0xf014, 0xf015, 0xf017, 0xf019, 0xf030, 0xf037, 0xf03a, - 0xf043, 0xf06c, 0xf074, 0xf0ab, 0xf13b, 0xf190, 0xf191, 0xf192, - 0xf193, 0xf194, 0xf1d7, 0xf1e3, 0xf23d, 0xf254, 0xf4aa, 0xf712, - 0xf7f2 + 0x7485, 0x748b, 0x749c, 0x74a9, 0x75d4, 0x7628, 0x763e, 0x7644, + 0x765b, 0x7670, 0x768c, 0x773d, 0x7751, 0x77be, 0x788a, 0x78d1, + 0x791d, 0x795b, 0x79ca, 0x79d4, 0x7a2e, 0x7a3f, 0x7a76, 0x7c4b, + 0x7c70, 0x7c72, 0x7e0f, 0x7e1f, 0x7e21, 0x7e23, 0x7e2c, 0x7e2f, + 0x7e3a, 0x7ea1, 0x7ebe, 0x7f55, 0x7f83, 0x801c, 0x804d, 0x813a, + 0x8144, 0x81ff, 0x8307, 0x832c, 0x851f, 0x8652, 0x879c, 0x87b8, + 0x87fb, 0x8815, 0x88d1, 0x8914, 0x8916, 0x8918, 0x8922, 0x8ab6, + 0x8af1, 0x8af4, 0x8afe, 0x8b00, 0x8b0e, 0x8b0f, 0x8b11, 0x8b16, + 0x8b25, 0x8b47, 0x8b53, 0x8c75, 0x8c78, 0x8cd5, 0x8d7a, 0x8eb8, + 0x8ebc, 0x8ebe, 0x8ec4, 0x8ecd, 0x8ee3, 0x8f17, 0x8f20, 0x8f24, + 0x8f29, 0x8f2b, 0x8f2e, 0x8f49, 0x8f4d, 0x8f50, 0x8f51, 0x8f59, + 0x8f6a, 0x8f6f, 0x8fa3, 0x9038, 0x904d, 0x911d, 0x911f, 0x93ef, + 0x9451, 0x947e, 0x94ac, 0x94cf, 0x953d, 0x953e, 0x9544, 0x95b4, + 0x95e0, 0x96b2, 0x9743, 0x97c5, 0x97c6, 0x97c9, 0x97d4, 0x97e1, + 0x981e, 0x98c1, 0x99dc, 0x9d73, 0x9df6, 0x9e28, 0xef51, 0xef58, + 0xef5b, 0xef5c, 0xef5d, 0xef61, 0xef63, 0xef65, 0xef69, 0xef6c, + 0xef71, 0xef76, 0xef77, 0xef78, 0xef8e, 0xef93, 0xef98, 0xef9b, + 0xef9c, 0xef9d, 0xefa1, 0xefa2, 0xefa3, 0xefa4, 0xefb7, 0xefb8, + 0xefbe, 0xefc0, 0xefc1, 0xefc4, 0xefc7, 0xefc8, 0xefc9, 0xefcb, + 0xefe3, 0xefe5, 0xf014, 0xf015, 0xf017, 0xf019, 0xf030, 0xf037, + 0xf03a, 0xf043, 0xf06c, 0xf074, 0xf0ab, 0xf13b, 0xf190, 0xf191, + 0xf192, 0xf193, 0xf194, 0xf1d7, 0xf1e3, 0xf23d, 0xf254, 0xf4aa, + 0xf712, 0xf7f2 }; /*Collect the unicode lists and glyph_id offsets*/ @@ -23318,7 +23374,7 @@ static const lv_font_fmt_txt_cmap_t cmaps[] = }, { .range_start = 176, .range_length = 63475, .glyph_id_start = 96, - .unicode_list = unicode_list_1, .glyph_id_ofs_list = NULL, .list_length = 409, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY + .unicode_list = unicode_list_1, .glyph_id_ofs_list = NULL, .list_length = 410, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY } }; @@ -23393,7 +23449,7 @@ static const uint8_t kern_left_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0 + 0, 0 }; /*Map glyph_ids to kern right classes*/ @@ -23462,7 +23518,7 @@ static const uint8_t kern_right_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0 + 0, 0 }; /*Kern values between classes*/ diff --git a/lib/lvgl/lvgl/src/font/lv_font_montserrat_32.c b/lib/lvgl/lvgl/src/font/lv_font_montserrat_32.c index 9b98cfd2..78e2c4f9 100644 --- a/lib/lvgl/lvgl/src/font/lv_font_montserrat_32.c +++ b/lib/lvgl/lvgl/src/font/lv_font_montserrat_32.c @@ -1,7 +1,7 @@ /******************************************************************************* * Size: 32 px * Bpp: 4 - * Opts: --bpp 4 --size 32 --no-compress --font Montserrat-Medium.ttf --range 32-127,176,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20351,20363,20391,20445,20449,20462,20463,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29366,29615,29616,29702,29983,29992,30005,30011,30028,30041,30340,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31181,31243,31354,31364,31454,31471,31526,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33719,33756,34255,34562,34892,34920,34987,35013,35201,35268,35270,35272,35282,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35831,35843,36133,36136,36229,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --format lvgl -o out/lv_font_montserrat_32.c + * Opts: --bpp 4 --size 32 --no-compress --font Montserrat-Medium.ttf --range 32-127,176,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20351,20363,20391,20445,20449,20462,20463,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29366,29615,29616,29702,29983,29992,30005,30011,30028,30041,30340,30424,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31181,31243,31354,31364,31454,31471,31526,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33719,33756,34255,34562,34892,34920,34987,35013,35201,35268,35270,35272,35282,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35831,35843,36133,36136,36229,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --format lvgl -o out/lv_font_montserrat_32.c ******************************************************************************/ #ifdef LV_LVGL_H_INCLUDE_SIMPLE @@ -15698,6 +15698,65 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0xc9, 0x51, 0x0, 0x0, + /* U+76D8 "盘" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x20, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xb0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x4, 0xff, 0x80, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2, 0x22, 0x28, 0xff, 0x42, 0x22, 0x22, 0x22, + 0x22, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6f, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6f, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x5f, 0xf4, 0x0, + 0x0, 0x40, 0x0, 0x0, 0x0, 0xcf, 0x70, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x5f, 0xf4, 0x0, 0x8, + 0xfb, 0x20, 0x0, 0x0, 0xcf, 0x70, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x5f, 0xf4, 0x0, 0x9, 0xff, + 0xf7, 0x0, 0x0, 0xcf, 0x70, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x5f, 0xf4, 0x0, 0x0, 0x3d, 0xf4, + 0x0, 0x0, 0xcf, 0x70, 0x0, 0x0, 0x3, 0x33, + 0x32, 0x7f, 0xf6, 0x22, 0x22, 0x23, 0x72, 0x22, + 0x22, 0xdf, 0x82, 0x33, 0x40, 0xe, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf3, 0xe, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf3, 0x0, 0x0, 0x0, 0x9f, 0xe0, + 0x0, 0x10, 0x0, 0x0, 0x0, 0x0, 0xef, 0x50, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xef, 0xa0, 0x0, + 0xae, 0x70, 0x0, 0x0, 0x0, 0xef, 0x50, 0x0, + 0x0, 0x0, 0x0, 0x6, 0xff, 0x50, 0x0, 0xdf, + 0xfe, 0x70, 0x0, 0x0, 0xff, 0x50, 0x0, 0x0, + 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x6, 0xef, + 0xf2, 0x14, 0x48, 0xff, 0x40, 0x0, 0x0, 0x0, + 0x4, 0xef, 0xf4, 0x0, 0x0, 0x0, 0x1a, 0x70, + 0x1e, 0xff, 0xff, 0x10, 0x0, 0x0, 0x0, 0x6, + 0xef, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, + 0xff, 0xd6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x17, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x41, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x40, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x40, 0x0, 0x0, 0x0, 0xff, 0x80, 0x0, 0x3f, + 0xe0, 0x0, 0xe, 0xf3, 0x0, 0x4, 0xff, 0x30, + 0x0, 0x0, 0x0, 0xff, 0x80, 0x0, 0x3f, 0xe0, + 0x0, 0xe, 0xf3, 0x0, 0x4, 0xff, 0x30, 0x0, + 0x0, 0x0, 0xff, 0x80, 0x0, 0x3f, 0xe0, 0x0, + 0xe, 0xf3, 0x0, 0x4, 0xff, 0x30, 0x0, 0x0, + 0x0, 0xff, 0x80, 0x0, 0x3f, 0xe0, 0x0, 0xe, + 0xf3, 0x0, 0x4, 0xff, 0x30, 0x0, 0x0, 0x0, + 0xff, 0x80, 0x0, 0x3f, 0xe0, 0x0, 0xe, 0xf3, + 0x0, 0x4, 0xff, 0x30, 0x0, 0x33, 0x22, 0xff, + 0x92, 0x22, 0x4f, 0xe2, 0x22, 0x2e, 0xf4, 0x22, + 0x26, 0xff, 0x42, 0x23, 0xdf, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xdf, 0xee, 0xee, 0xee, 0xee, + 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, + 0xef, 0xff, + /* U+76EE "目" */ 0x34, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x43, 0xaf, 0xff, 0xff, 0xff, 0xff, @@ -25779,178 +25838,179 @@ static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = { {.bitmap_index = 117229, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, {.bitmap_index = 117679, .adv_w = 512, .box_w = 28, .box_h = 30, .ofs_x = 2, .ofs_y = -3}, {.bitmap_index = 118099, .adv_w = 512, .box_w = 27, .box_h = 30, .ofs_x = 3, .ofs_y = -3}, - {.bitmap_index = 118504, .adv_w = 512, .box_w = 22, .box_h = 28, .ofs_x = 5, .ofs_y = -3}, - {.bitmap_index = 118812, .adv_w = 512, .box_w = 30, .box_h = 28, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 119232, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 119682, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 120132, .adv_w = 512, .box_w = 29, .box_h = 29, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 120553, .adv_w = 512, .box_w = 31, .box_h = 30, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 121018, .adv_w = 512, .box_w = 29, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 121424, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 121889, .adv_w = 512, .box_w = 28, .box_h = 29, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 122295, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 122730, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 118504, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 118954, .adv_w = 512, .box_w = 22, .box_h = 28, .ofs_x = 5, .ofs_y = -3}, + {.bitmap_index = 119262, .adv_w = 512, .box_w = 30, .box_h = 28, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 119682, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 120132, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 120582, .adv_w = 512, .box_w = 29, .box_h = 29, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 121003, .adv_w = 512, .box_w = 31, .box_h = 30, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 121468, .adv_w = 512, .box_w = 29, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 121874, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 122339, .adv_w = 512, .box_w = 28, .box_h = 29, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 122745, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, {.bitmap_index = 123180, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, {.bitmap_index = 123630, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 124080, .adv_w = 512, .box_w = 28, .box_h = 30, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 124500, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 124965, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 125430, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 125895, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 126345, .adv_w = 512, .box_w = 28, .box_h = 29, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 126751, .adv_w = 512, .box_w = 29, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 127186, .adv_w = 512, .box_w = 31, .box_h = 30, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 127651, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 128086, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 128551, .adv_w = 512, .box_w = 31, .box_h = 29, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 129001, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 129436, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 129901, .adv_w = 512, .box_w = 31, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 130351, .adv_w = 512, .box_w = 28, .box_h = 28, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 130743, .adv_w = 512, .box_w = 29, .box_h = 27, .ofs_x = 2, .ofs_y = -2}, - {.bitmap_index = 131135, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 131570, .adv_w = 512, .box_w = 29, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 131976, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 132411, .adv_w = 512, .box_w = 29, .box_h = 30, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 132846, .adv_w = 512, .box_w = 23, .box_h = 30, .ofs_x = 5, .ofs_y = -3}, - {.bitmap_index = 133191, .adv_w = 512, .box_w = 29, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 133626, .adv_w = 512, .box_w = 29, .box_h = 29, .ofs_x = 2, .ofs_y = -2}, - {.bitmap_index = 134047, .adv_w = 512, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 134468, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 134903, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 135368, .adv_w = 512, .box_w = 31, .box_h = 30, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 135833, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 136283, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 136733, .adv_w = 512, .box_w = 31, .box_h = 30, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 137198, .adv_w = 512, .box_w = 28, .box_h = 29, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 137604, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 138054, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 138519, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 138969, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 139434, .adv_w = 512, .box_w = 27, .box_h = 31, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 139853, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 140303, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 140738, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 141188, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 141653, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 142088, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 142553, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 143018, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 143453, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 143918, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 144383, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 124080, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 124530, .adv_w = 512, .box_w = 28, .box_h = 30, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 124950, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 125415, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 125880, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 126345, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 126795, .adv_w = 512, .box_w = 28, .box_h = 29, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 127201, .adv_w = 512, .box_w = 29, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 127636, .adv_w = 512, .box_w = 31, .box_h = 30, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 128101, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 128536, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 129001, .adv_w = 512, .box_w = 31, .box_h = 29, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 129451, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 129886, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 130351, .adv_w = 512, .box_w = 31, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 130801, .adv_w = 512, .box_w = 28, .box_h = 28, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 131193, .adv_w = 512, .box_w = 29, .box_h = 27, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 131585, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 132020, .adv_w = 512, .box_w = 29, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 132426, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 132861, .adv_w = 512, .box_w = 29, .box_h = 30, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 133296, .adv_w = 512, .box_w = 23, .box_h = 30, .ofs_x = 5, .ofs_y = -3}, + {.bitmap_index = 133641, .adv_w = 512, .box_w = 29, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 134076, .adv_w = 512, .box_w = 29, .box_h = 29, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 134497, .adv_w = 512, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 134918, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 135353, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 135818, .adv_w = 512, .box_w = 31, .box_h = 30, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 136283, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 136733, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 137183, .adv_w = 512, .box_w = 31, .box_h = 30, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 137648, .adv_w = 512, .box_w = 28, .box_h = 29, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 138054, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 138504, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 138969, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 139419, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 139884, .adv_w = 512, .box_w = 27, .box_h = 31, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 140303, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 140753, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 141188, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 141638, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 142103, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 142538, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 143003, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 143468, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 143903, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 144368, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, {.bitmap_index = 144833, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, {.bitmap_index = 145283, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 145733, .adv_w = 512, .box_w = 29, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 146168, .adv_w = 512, .box_w = 32, .box_h = 29, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 146632, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 145733, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 146183, .adv_w = 512, .box_w = 29, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 146618, .adv_w = 512, .box_w = 32, .box_h = 29, .ofs_x = 0, .ofs_y = -3}, {.bitmap_index = 147082, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 147532, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 147982, .adv_w = 512, .box_w = 31, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 148447, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 148912, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 149377, .adv_w = 512, .box_w = 31, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 149858, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 150308, .adv_w = 512, .box_w = 30, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 150728, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 151178, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 151628, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 152078, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 152528, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 147532, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 147982, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 148432, .adv_w = 512, .box_w = 31, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 148897, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 149362, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 149827, .adv_w = 512, .box_w = 31, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 150308, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 150758, .adv_w = 512, .box_w = 30, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 151178, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 151628, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 152078, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 152528, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, {.bitmap_index = 152978, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 153428, .adv_w = 512, .box_w = 31, .box_h = 30, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 153893, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 153428, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 153878, .adv_w = 512, .box_w = 31, .box_h = 30, .ofs_x = 0, .ofs_y = -4}, {.bitmap_index = 154343, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, {.bitmap_index = 154793, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 155243, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 155708, .adv_w = 512, .box_w = 31, .box_h = 30, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 156173, .adv_w = 512, .box_w = 29, .box_h = 30, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 156608, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 157058, .adv_w = 512, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 157479, .adv_w = 512, .box_w = 29, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 157885, .adv_w = 512, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 158306, .adv_w = 512, .box_w = 31, .box_h = 30, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 158771, .adv_w = 512, .box_w = 31, .box_h = 30, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 159236, .adv_w = 512, .box_w = 32, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 159732, .adv_w = 512, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 160153, .adv_w = 512, .box_w = 28, .box_h = 31, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 160587, .adv_w = 512, .box_w = 27, .box_h = 30, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 160992, .adv_w = 512, .box_w = 28, .box_h = 31, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 161426, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 161891, .adv_w = 512, .box_w = 29, .box_h = 31, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 162341, .adv_w = 512, .box_w = 28, .box_h = 28, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 162733, .adv_w = 512, .box_w = 28, .box_h = 31, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 163167, .adv_w = 512, .box_w = 28, .box_h = 29, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 163573, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 164008, .adv_w = 512, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 164429, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 164864, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 165314, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 165749, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 166199, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 166664, .adv_w = 512, .box_w = 29, .box_h = 30, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 167099, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 167564, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 168014, .adv_w = 512, .box_w = 32, .box_h = 33, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 168542, .adv_w = 512, .box_w = 32, .box_h = 24, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 168926, .adv_w = 512, .box_w = 32, .box_h = 28, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 169374, .adv_w = 512, .box_w = 32, .box_h = 24, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 169758, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 170000, .adv_w = 512, .box_w = 31, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 170496, .adv_w = 512, .box_w = 30, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 170976, .adv_w = 576, .box_w = 36, .box_h = 28, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 171480, .adv_w = 512, .box_w = 32, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 171992, .adv_w = 576, .box_w = 36, .box_h = 24, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 172424, .adv_w = 512, .box_w = 32, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 172936, .adv_w = 256, .box_w = 16, .box_h = 26, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 173144, .adv_w = 384, .box_w = 24, .box_h = 26, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 173456, .adv_w = 576, .box_w = 36, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 174032, .adv_w = 512, .box_w = 32, .box_h = 24, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 174416, .adv_w = 352, .box_w = 22, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 174768, .adv_w = 448, .box_w = 20, .box_h = 30, .ofs_x = 4, .ofs_y = -3}, - {.bitmap_index = 175068, .adv_w = 448, .box_w = 28, .box_h = 34, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 175544, .adv_w = 448, .box_w = 28, .box_h = 29, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 175950, .adv_w = 448, .box_w = 28, .box_h = 28, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 176342, .adv_w = 448, .box_w = 20, .box_h = 30, .ofs_x = 4, .ofs_y = -3}, - {.bitmap_index = 176642, .adv_w = 448, .box_w = 30, .box_h = 28, .ofs_x = -1, .ofs_y = -2}, - {.bitmap_index = 177062, .adv_w = 320, .box_w = 18, .box_h = 28, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 177314, .adv_w = 320, .box_w = 18, .box_h = 28, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 177566, .adv_w = 448, .box_w = 28, .box_h = 28, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 177958, .adv_w = 448, .box_w = 28, .box_h = 6, .ofs_x = 0, .ofs_y = 9}, - {.bitmap_index = 178042, .adv_w = 576, .box_w = 36, .box_h = 24, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 178474, .adv_w = 640, .box_w = 40, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 179114, .adv_w = 576, .box_w = 38, .box_h = 32, .ofs_x = -1, .ofs_y = -4}, - {.bitmap_index = 179722, .adv_w = 512, .box_w = 32, .box_h = 30, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 180202, .adv_w = 448, .box_w = 28, .box_h = 18, .ofs_x = 0, .ofs_y = 3}, - {.bitmap_index = 180454, .adv_w = 448, .box_w = 28, .box_h = 18, .ofs_x = 0, .ofs_y = 3}, - {.bitmap_index = 180706, .adv_w = 640, .box_w = 40, .box_h = 26, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 181226, .adv_w = 512, .box_w = 32, .box_h = 24, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 181610, .adv_w = 512, .box_w = 32, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 182122, .adv_w = 512, .box_w = 33, .box_h = 33, .ofs_x = -1, .ofs_y = -4}, - {.bitmap_index = 182667, .adv_w = 448, .box_w = 29, .box_h = 28, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 183073, .adv_w = 448, .box_w = 28, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 183521, .adv_w = 448, .box_w = 28, .box_h = 28, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 183913, .adv_w = 448, .box_w = 28, .box_h = 26, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 184277, .adv_w = 512, .box_w = 32, .box_h = 24, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 184661, .adv_w = 320, .box_w = 22, .box_h = 32, .ofs_x = -1, .ofs_y = -4}, - {.bitmap_index = 185013, .adv_w = 448, .box_w = 28, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 185461, .adv_w = 448, .box_w = 28, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 185909, .adv_w = 576, .box_w = 36, .box_h = 24, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 186341, .adv_w = 512, .box_w = 34, .box_h = 34, .ofs_x = -1, .ofs_y = -5}, - {.bitmap_index = 186919, .adv_w = 384, .box_w = 24, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 187303, .adv_w = 640, .box_w = 40, .box_h = 29, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 187883, .adv_w = 640, .box_w = 40, .box_h = 20, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 188283, .adv_w = 640, .box_w = 40, .box_h = 20, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 188683, .adv_w = 640, .box_w = 40, .box_h = 20, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 189083, .adv_w = 640, .box_w = 40, .box_h = 20, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 189483, .adv_w = 640, .box_w = 40, .box_h = 20, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 189883, .adv_w = 640, .box_w = 41, .box_h = 26, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 190416, .adv_w = 448, .box_w = 24, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 190800, .adv_w = 448, .box_w = 28, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 191248, .adv_w = 512, .box_w = 33, .box_h = 33, .ofs_x = -1, .ofs_y = -5}, - {.bitmap_index = 191793, .adv_w = 640, .box_w = 40, .box_h = 24, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 192273, .adv_w = 384, .box_w = 24, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 192657, .adv_w = 515, .box_w = 33, .box_h = 21, .ofs_x = 0, .ofs_y = 2} + {.bitmap_index = 155243, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 155693, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 156158, .adv_w = 512, .box_w = 31, .box_h = 30, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 156623, .adv_w = 512, .box_w = 29, .box_h = 30, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 157058, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 157508, .adv_w = 512, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 157929, .adv_w = 512, .box_w = 29, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 158335, .adv_w = 512, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 158756, .adv_w = 512, .box_w = 31, .box_h = 30, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 159221, .adv_w = 512, .box_w = 31, .box_h = 30, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 159686, .adv_w = 512, .box_w = 32, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 160182, .adv_w = 512, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 160603, .adv_w = 512, .box_w = 28, .box_h = 31, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 161037, .adv_w = 512, .box_w = 27, .box_h = 30, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 161442, .adv_w = 512, .box_w = 28, .box_h = 31, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 161876, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 162341, .adv_w = 512, .box_w = 29, .box_h = 31, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 162791, .adv_w = 512, .box_w = 28, .box_h = 28, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 163183, .adv_w = 512, .box_w = 28, .box_h = 31, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 163617, .adv_w = 512, .box_w = 28, .box_h = 29, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 164023, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 164458, .adv_w = 512, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 164879, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 165314, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 165764, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 166199, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 166649, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 167114, .adv_w = 512, .box_w = 29, .box_h = 30, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 167549, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 168014, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 168464, .adv_w = 512, .box_w = 32, .box_h = 33, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 168992, .adv_w = 512, .box_w = 32, .box_h = 24, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 169376, .adv_w = 512, .box_w = 32, .box_h = 28, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 169824, .adv_w = 512, .box_w = 32, .box_h = 24, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 170208, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 170450, .adv_w = 512, .box_w = 31, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 170946, .adv_w = 512, .box_w = 30, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 171426, .adv_w = 576, .box_w = 36, .box_h = 28, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 171930, .adv_w = 512, .box_w = 32, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 172442, .adv_w = 576, .box_w = 36, .box_h = 24, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 172874, .adv_w = 512, .box_w = 32, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 173386, .adv_w = 256, .box_w = 16, .box_h = 26, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 173594, .adv_w = 384, .box_w = 24, .box_h = 26, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 173906, .adv_w = 576, .box_w = 36, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 174482, .adv_w = 512, .box_w = 32, .box_h = 24, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 174866, .adv_w = 352, .box_w = 22, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 175218, .adv_w = 448, .box_w = 20, .box_h = 30, .ofs_x = 4, .ofs_y = -3}, + {.bitmap_index = 175518, .adv_w = 448, .box_w = 28, .box_h = 34, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 175994, .adv_w = 448, .box_w = 28, .box_h = 29, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 176400, .adv_w = 448, .box_w = 28, .box_h = 28, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 176792, .adv_w = 448, .box_w = 20, .box_h = 30, .ofs_x = 4, .ofs_y = -3}, + {.bitmap_index = 177092, .adv_w = 448, .box_w = 30, .box_h = 28, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 177512, .adv_w = 320, .box_w = 18, .box_h = 28, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 177764, .adv_w = 320, .box_w = 18, .box_h = 28, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 178016, .adv_w = 448, .box_w = 28, .box_h = 28, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 178408, .adv_w = 448, .box_w = 28, .box_h = 6, .ofs_x = 0, .ofs_y = 9}, + {.bitmap_index = 178492, .adv_w = 576, .box_w = 36, .box_h = 24, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 178924, .adv_w = 640, .box_w = 40, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 179564, .adv_w = 576, .box_w = 38, .box_h = 32, .ofs_x = -1, .ofs_y = -4}, + {.bitmap_index = 180172, .adv_w = 512, .box_w = 32, .box_h = 30, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 180652, .adv_w = 448, .box_w = 28, .box_h = 18, .ofs_x = 0, .ofs_y = 3}, + {.bitmap_index = 180904, .adv_w = 448, .box_w = 28, .box_h = 18, .ofs_x = 0, .ofs_y = 3}, + {.bitmap_index = 181156, .adv_w = 640, .box_w = 40, .box_h = 26, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 181676, .adv_w = 512, .box_w = 32, .box_h = 24, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 182060, .adv_w = 512, .box_w = 32, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 182572, .adv_w = 512, .box_w = 33, .box_h = 33, .ofs_x = -1, .ofs_y = -4}, + {.bitmap_index = 183117, .adv_w = 448, .box_w = 29, .box_h = 28, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 183523, .adv_w = 448, .box_w = 28, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 183971, .adv_w = 448, .box_w = 28, .box_h = 28, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 184363, .adv_w = 448, .box_w = 28, .box_h = 26, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 184727, .adv_w = 512, .box_w = 32, .box_h = 24, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 185111, .adv_w = 320, .box_w = 22, .box_h = 32, .ofs_x = -1, .ofs_y = -4}, + {.bitmap_index = 185463, .adv_w = 448, .box_w = 28, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 185911, .adv_w = 448, .box_w = 28, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 186359, .adv_w = 576, .box_w = 36, .box_h = 24, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 186791, .adv_w = 512, .box_w = 34, .box_h = 34, .ofs_x = -1, .ofs_y = -5}, + {.bitmap_index = 187369, .adv_w = 384, .box_w = 24, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 187753, .adv_w = 640, .box_w = 40, .box_h = 29, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 188333, .adv_w = 640, .box_w = 40, .box_h = 20, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 188733, .adv_w = 640, .box_w = 40, .box_h = 20, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 189133, .adv_w = 640, .box_w = 40, .box_h = 20, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 189533, .adv_w = 640, .box_w = 40, .box_h = 20, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 189933, .adv_w = 640, .box_w = 40, .box_h = 20, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 190333, .adv_w = 640, .box_w = 41, .box_h = 26, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 190866, .adv_w = 448, .box_w = 24, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 191250, .adv_w = 448, .box_w = 28, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 191698, .adv_w = 512, .box_w = 33, .box_h = 33, .ofs_x = -1, .ofs_y = -5}, + {.bitmap_index = 192243, .adv_w = 640, .box_w = 40, .box_h = 24, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 192723, .adv_w = 384, .box_w = 24, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 193107, .adv_w = 515, .box_w = 33, .box_h = 21, .ofs_x = 0, .ofs_y = 2} }; /*--------------------- @@ -25987,29 +26047,29 @@ static const uint16_t unicode_list_1[] = { 0x6bb0, 0x6bf1, 0x6c25, 0x6c38, 0x6c8b, 0x6c91, 0x6c9b, 0x6cd8, 0x6d55, 0x6d79, 0x6de0, 0x6e2a, 0x6e31, 0x7009, 0x7018, 0x7076, 0x7086, 0x7198, 0x7206, 0x72ff, 0x7300, 0x7356, 0x746f, 0x7478, - 0x7485, 0x748b, 0x749c, 0x74a9, 0x75d4, 0x763e, 0x7644, 0x765b, - 0x7670, 0x768c, 0x773d, 0x7751, 0x77be, 0x788a, 0x78d1, 0x791d, - 0x795b, 0x79ca, 0x79d4, 0x7a2e, 0x7a3f, 0x7a76, 0x7c4b, 0x7c70, - 0x7c72, 0x7e0f, 0x7e1f, 0x7e21, 0x7e23, 0x7e2c, 0x7e2f, 0x7e3a, - 0x7ea1, 0x7ebe, 0x7f55, 0x7f83, 0x801c, 0x804d, 0x813a, 0x8144, - 0x81ff, 0x8307, 0x832c, 0x851f, 0x8652, 0x879c, 0x87b8, 0x87fb, - 0x8815, 0x88d1, 0x8914, 0x8916, 0x8918, 0x8922, 0x8ab6, 0x8af1, - 0x8af4, 0x8afe, 0x8b00, 0x8b0e, 0x8b0f, 0x8b11, 0x8b16, 0x8b25, - 0x8b47, 0x8b53, 0x8c75, 0x8c78, 0x8cd5, 0x8d7a, 0x8eb8, 0x8ebc, - 0x8ebe, 0x8ec4, 0x8ecd, 0x8ee3, 0x8f17, 0x8f20, 0x8f24, 0x8f29, - 0x8f2b, 0x8f2e, 0x8f49, 0x8f4d, 0x8f50, 0x8f51, 0x8f59, 0x8f6a, - 0x8f6f, 0x8fa3, 0x9038, 0x904d, 0x911d, 0x911f, 0x93ef, 0x9451, - 0x947e, 0x94ac, 0x94cf, 0x953d, 0x953e, 0x9544, 0x95b4, 0x95e0, - 0x96b2, 0x9743, 0x97c5, 0x97c6, 0x97c9, 0x97d4, 0x97e1, 0x981e, - 0x98c1, 0x99dc, 0x9d73, 0x9df6, 0x9e28, 0xef51, 0xef58, 0xef5b, - 0xef5c, 0xef5d, 0xef61, 0xef63, 0xef65, 0xef69, 0xef6c, 0xef71, - 0xef76, 0xef77, 0xef78, 0xef8e, 0xef93, 0xef98, 0xef9b, 0xef9c, - 0xef9d, 0xefa1, 0xefa2, 0xefa3, 0xefa4, 0xefb7, 0xefb8, 0xefbe, - 0xefc0, 0xefc1, 0xefc4, 0xefc7, 0xefc8, 0xefc9, 0xefcb, 0xefe3, - 0xefe5, 0xf014, 0xf015, 0xf017, 0xf019, 0xf030, 0xf037, 0xf03a, - 0xf043, 0xf06c, 0xf074, 0xf0ab, 0xf13b, 0xf190, 0xf191, 0xf192, - 0xf193, 0xf194, 0xf1d7, 0xf1e3, 0xf23d, 0xf254, 0xf4aa, 0xf712, - 0xf7f2 + 0x7485, 0x748b, 0x749c, 0x74a9, 0x75d4, 0x7628, 0x763e, 0x7644, + 0x765b, 0x7670, 0x768c, 0x773d, 0x7751, 0x77be, 0x788a, 0x78d1, + 0x791d, 0x795b, 0x79ca, 0x79d4, 0x7a2e, 0x7a3f, 0x7a76, 0x7c4b, + 0x7c70, 0x7c72, 0x7e0f, 0x7e1f, 0x7e21, 0x7e23, 0x7e2c, 0x7e2f, + 0x7e3a, 0x7ea1, 0x7ebe, 0x7f55, 0x7f83, 0x801c, 0x804d, 0x813a, + 0x8144, 0x81ff, 0x8307, 0x832c, 0x851f, 0x8652, 0x879c, 0x87b8, + 0x87fb, 0x8815, 0x88d1, 0x8914, 0x8916, 0x8918, 0x8922, 0x8ab6, + 0x8af1, 0x8af4, 0x8afe, 0x8b00, 0x8b0e, 0x8b0f, 0x8b11, 0x8b16, + 0x8b25, 0x8b47, 0x8b53, 0x8c75, 0x8c78, 0x8cd5, 0x8d7a, 0x8eb8, + 0x8ebc, 0x8ebe, 0x8ec4, 0x8ecd, 0x8ee3, 0x8f17, 0x8f20, 0x8f24, + 0x8f29, 0x8f2b, 0x8f2e, 0x8f49, 0x8f4d, 0x8f50, 0x8f51, 0x8f59, + 0x8f6a, 0x8f6f, 0x8fa3, 0x9038, 0x904d, 0x911d, 0x911f, 0x93ef, + 0x9451, 0x947e, 0x94ac, 0x94cf, 0x953d, 0x953e, 0x9544, 0x95b4, + 0x95e0, 0x96b2, 0x9743, 0x97c5, 0x97c6, 0x97c9, 0x97d4, 0x97e1, + 0x981e, 0x98c1, 0x99dc, 0x9d73, 0x9df6, 0x9e28, 0xef51, 0xef58, + 0xef5b, 0xef5c, 0xef5d, 0xef61, 0xef63, 0xef65, 0xef69, 0xef6c, + 0xef71, 0xef76, 0xef77, 0xef78, 0xef8e, 0xef93, 0xef98, 0xef9b, + 0xef9c, 0xef9d, 0xefa1, 0xefa2, 0xefa3, 0xefa4, 0xefb7, 0xefb8, + 0xefbe, 0xefc0, 0xefc1, 0xefc4, 0xefc7, 0xefc8, 0xefc9, 0xefcb, + 0xefe3, 0xefe5, 0xf014, 0xf015, 0xf017, 0xf019, 0xf030, 0xf037, + 0xf03a, 0xf043, 0xf06c, 0xf074, 0xf0ab, 0xf13b, 0xf190, 0xf191, + 0xf192, 0xf193, 0xf194, 0xf1d7, 0xf1e3, 0xf23d, 0xf254, 0xf4aa, + 0xf712, 0xf7f2 }; /*Collect the unicode lists and glyph_id offsets*/ @@ -26021,7 +26081,7 @@ static const lv_font_fmt_txt_cmap_t cmaps[] = }, { .range_start = 176, .range_length = 63475, .glyph_id_start = 96, - .unicode_list = unicode_list_1, .glyph_id_ofs_list = NULL, .list_length = 409, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY + .unicode_list = unicode_list_1, .glyph_id_ofs_list = NULL, .list_length = 410, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY } }; @@ -26096,7 +26156,7 @@ static const uint8_t kern_left_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0 + 0, 0 }; /*Map glyph_ids to kern right classes*/ @@ -26165,7 +26225,7 @@ static const uint8_t kern_right_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0 + 0, 0 }; /*Kern values between classes*/ diff --git a/lib/lvgl/lvgl/src/font/lv_font_montserrat_34.c b/lib/lvgl/lvgl/src/font/lv_font_montserrat_34.c index 9591cd4a..a7c62fcb 100644 --- a/lib/lvgl/lvgl/src/font/lv_font_montserrat_34.c +++ b/lib/lvgl/lvgl/src/font/lv_font_montserrat_34.c @@ -1,7 +1,7 @@ /******************************************************************************* * Size: 34 px * Bpp: 4 - * Opts: --bpp 4 --size 34 --no-compress --font Montserrat-Medium.ttf --range 32-127,176,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20351,20363,20391,20445,20449,20462,20463,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29366,29615,29616,29702,29983,29992,30005,30011,30028,30041,30340,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31181,31243,31354,31364,31454,31471,31526,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33719,33756,34255,34562,34892,34920,34987,35013,35201,35268,35270,35272,35282,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35831,35843,36133,36136,36229,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --format lvgl -o out/lv_font_montserrat_34.c + * Opts: --bpp 4 --size 34 --no-compress --font Montserrat-Medium.ttf --range 32-127,176,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20351,20363,20391,20445,20449,20462,20463,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29366,29615,29616,29702,29983,29992,30005,30011,30028,30041,30340,30424,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31181,31243,31354,31364,31454,31471,31526,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33719,33756,34255,34562,34892,34920,34987,35013,35201,35268,35270,35272,35282,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35831,35843,36133,36136,36229,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --format lvgl -o out/lv_font_montserrat_34.c ******************************************************************************/ #ifdef LV_LVGL_H_INCLUDE_SIMPLE @@ -17411,6 +17411,70 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x13, 0x10, 0x0, 0x0, 0x0, + /* U+76D8 "盘" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x47, 0x41, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xaf, 0xf9, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xef, 0xf1, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x5, 0x55, 0x56, 0xff, 0xd5, + 0x55, 0x55, 0x55, 0x55, 0x55, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x2f, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x10, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1f, 0xff, 0xee, 0xee, 0xee, + 0xee, 0xee, 0xee, 0xef, 0xff, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xf, 0xfa, 0x0, 0x0, 0x43, + 0x0, 0x0, 0x0, 0x6, 0xff, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xf, 0xfa, 0x0, 0x1, 0xef, + 0xb2, 0x0, 0x0, 0x6, 0xff, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xf, 0xfa, 0x0, 0x3, 0xcf, + 0xff, 0x80, 0x0, 0x6, 0xff, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xf, 0xfa, 0x0, 0x0, 0x4, + 0xdf, 0x30, 0x0, 0x6, 0xff, 0x0, 0x0, 0x0, + 0x4, 0x55, 0x44, 0x4f, 0xfb, 0x44, 0x44, 0x44, + 0x47, 0x44, 0x44, 0x49, 0xff, 0x44, 0x45, 0x50, + 0xb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, + 0xb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, + 0x1, 0x10, 0x0, 0x4f, 0xf4, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x9, 0xfd, 0x0, 0x0, 0x10, + 0x0, 0x0, 0x0, 0x8f, 0xf0, 0x0, 0x1e, 0x81, + 0x0, 0x0, 0x0, 0x9, 0xfd, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xef, 0xb0, 0x0, 0x9f, 0xff, + 0x81, 0x0, 0x0, 0x9, 0xfd, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x9, 0xff, 0x50, 0x0, 0x18, 0xff, + 0xff, 0x30, 0x0, 0xb, 0xfd, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x6f, 0xfe, 0x0, 0x0, 0x0, 0x1a, + 0xfb, 0x1, 0xab, 0xdf, 0xfb, 0x0, 0x0, 0x0, + 0x0, 0x7, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, + 0x62, 0x0, 0xaf, 0xff, 0xf6, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x8f, 0x80, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x4f, 0xd9, 0x40, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x37, 0x33, 0x33, 0x33, 0x33, 0x33, + 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x0, 0x0, + 0x0, 0x0, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, + 0x0, 0x0, 0xef, 0xfe, 0xee, 0xef, 0xff, 0xee, + 0xee, 0xff, 0xee, 0xee, 0xef, 0xfe, 0x0, 0x0, + 0x0, 0x0, 0xdf, 0xd0, 0x0, 0xd, 0xf6, 0x0, + 0x0, 0xef, 0x50, 0x0, 0xd, 0xfd, 0x0, 0x0, + 0x0, 0x0, 0xdf, 0xd0, 0x0, 0xd, 0xf6, 0x0, + 0x0, 0xef, 0x50, 0x0, 0xd, 0xfd, 0x0, 0x0, + 0x0, 0x0, 0xdf, 0xd0, 0x0, 0xd, 0xf6, 0x0, + 0x0, 0xef, 0x50, 0x0, 0xd, 0xfd, 0x0, 0x0, + 0x0, 0x0, 0xdf, 0xd0, 0x0, 0xd, 0xf6, 0x0, + 0x0, 0xef, 0x50, 0x0, 0xd, 0xfd, 0x0, 0x0, + 0x0, 0x0, 0xdf, 0xd0, 0x0, 0xd, 0xf6, 0x0, + 0x0, 0xef, 0x50, 0x0, 0xd, 0xfd, 0x0, 0x0, + 0x55, 0x44, 0xdf, 0xe4, 0x44, 0x4e, 0xf8, 0x44, + 0x44, 0xff, 0x74, 0x44, 0x4d, 0xfd, 0x44, 0x55, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xef, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, + 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xef, 0xfe, + /* U+76EE "目" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9f, 0xff, 0xff, 0xff, @@ -28714,178 +28778,179 @@ static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = { {.bitmap_index = 131757, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, {.bitmap_index = 132253, .adv_w = 544, .box_w = 30, .box_h = 31, .ofs_x = 2, .ofs_y = -3}, {.bitmap_index = 132718, .adv_w = 544, .box_w = 29, .box_h = 32, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 133182, .adv_w = 544, .box_w = 24, .box_h = 30, .ofs_x = 5, .ofs_y = -3}, - {.bitmap_index = 133542, .adv_w = 544, .box_w = 32, .box_h = 29, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 134006, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 134502, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 134998, .adv_w = 544, .box_w = 31, .box_h = 31, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 135479, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 135991, .adv_w = 544, .box_w = 31, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 136472, .adv_w = 544, .box_w = 31, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 136984, .adv_w = 544, .box_w = 30, .box_h = 30, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 137434, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 137930, .adv_w = 544, .box_w = 31, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 138411, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 138907, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 139419, .adv_w = 544, .box_w = 30, .box_h = 32, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 139899, .adv_w = 544, .box_w = 32, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 140427, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 140939, .adv_w = 544, .box_w = 32, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 141467, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 141963, .adv_w = 544, .box_w = 30, .box_h = 31, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 142428, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 142924, .adv_w = 544, .box_w = 32, .box_h = 33, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 143452, .adv_w = 544, .box_w = 32, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 143932, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 144444, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 133182, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 133678, .adv_w = 544, .box_w = 24, .box_h = 30, .ofs_x = 5, .ofs_y = -3}, + {.bitmap_index = 134038, .adv_w = 544, .box_w = 32, .box_h = 29, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 134502, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 134998, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 135494, .adv_w = 544, .box_w = 31, .box_h = 31, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 135975, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 136487, .adv_w = 544, .box_w = 31, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 136968, .adv_w = 544, .box_w = 31, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 137480, .adv_w = 544, .box_w = 30, .box_h = 30, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 137930, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 138426, .adv_w = 544, .box_w = 31, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 138907, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 139403, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 139915, .adv_w = 544, .box_w = 30, .box_h = 32, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 140395, .adv_w = 544, .box_w = 32, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 140923, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 141435, .adv_w = 544, .box_w = 32, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 141963, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 142459, .adv_w = 544, .box_w = 30, .box_h = 31, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 142924, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 143420, .adv_w = 544, .box_w = 32, .box_h = 33, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 143948, .adv_w = 544, .box_w = 32, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 144428, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, {.bitmap_index = 144940, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 145436, .adv_w = 544, .box_w = 33, .box_h = 33, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 145981, .adv_w = 544, .box_w = 33, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 146493, .adv_w = 544, .box_w = 29, .box_h = 30, .ofs_x = 3, .ofs_y = -3}, - {.bitmap_index = 146928, .adv_w = 544, .box_w = 31, .box_h = 30, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 147393, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 147889, .adv_w = 544, .box_w = 31, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 148339, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 148835, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 149331, .adv_w = 544, .box_w = 24, .box_h = 31, .ofs_x = 5, .ofs_y = -3}, - {.bitmap_index = 149703, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 150199, .adv_w = 544, .box_w = 31, .box_h = 31, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 150680, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 151176, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 151672, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 152184, .adv_w = 544, .box_w = 33, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 152712, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 153224, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 153736, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 154232, .adv_w = 544, .box_w = 30, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 154712, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 155208, .adv_w = 544, .box_w = 32, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 155736, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 156248, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 156760, .adv_w = 544, .box_w = 28, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 157222, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 157734, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 158230, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 158742, .adv_w = 544, .box_w = 32, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 159270, .adv_w = 544, .box_w = 32, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 159750, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 160262, .adv_w = 544, .box_w = 32, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 160790, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 161302, .adv_w = 544, .box_w = 32, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 161830, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 162342, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 162854, .adv_w = 544, .box_w = 31, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 163335, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 163847, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 164343, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 164839, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 165351, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 165847, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 166359, .adv_w = 544, .box_w = 33, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 166871, .adv_w = 544, .box_w = 31, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 167383, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 167895, .adv_w = 544, .box_w = 32, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 168423, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 168935, .adv_w = 544, .box_w = 32, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 169415, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 169927, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 170423, .adv_w = 544, .box_w = 33, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 170951, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 171447, .adv_w = 544, .box_w = 33, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 171975, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 172487, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 172999, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 173495, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 173991, .adv_w = 544, .box_w = 33, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 174519, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 175031, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 175543, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 176039, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 176551, .adv_w = 544, .box_w = 31, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 177016, .adv_w = 544, .box_w = 31, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 177481, .adv_w = 544, .box_w = 31, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 177962, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 178474, .adv_w = 544, .box_w = 33, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 179002, .adv_w = 544, .box_w = 33, .box_h = 33, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 179547, .adv_w = 544, .box_w = 30, .box_h = 31, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 180012, .adv_w = 544, .box_w = 30, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 180492, .adv_w = 544, .box_w = 28, .box_h = 32, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 180940, .adv_w = 544, .box_w = 28, .box_h = 33, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 181402, .adv_w = 544, .box_w = 31, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 181914, .adv_w = 544, .box_w = 31, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 182426, .adv_w = 544, .box_w = 30, .box_h = 30, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 182876, .adv_w = 544, .box_w = 30, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 183371, .adv_w = 544, .box_w = 30, .box_h = 30, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 183821, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 184317, .adv_w = 544, .box_w = 31, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 184782, .adv_w = 544, .box_w = 32, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 185262, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 185774, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 186270, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 186766, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 187278, .adv_w = 544, .box_w = 30, .box_h = 31, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 187743, .adv_w = 544, .box_w = 32, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 188271, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 188767, .adv_w = 544, .box_w = 35, .box_h = 36, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 189397, .adv_w = 544, .box_w = 34, .box_h = 26, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 189839, .adv_w = 544, .box_w = 34, .box_h = 31, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 190366, .adv_w = 544, .box_w = 34, .box_h = 26, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 190808, .adv_w = 374, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 191096, .adv_w = 544, .box_w = 34, .box_h = 34, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 191674, .adv_w = 544, .box_w = 32, .box_h = 35, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 192234, .adv_w = 612, .box_w = 39, .box_h = 31, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 192839, .adv_w = 544, .box_w = 34, .box_h = 35, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 193434, .adv_w = 612, .box_w = 39, .box_h = 26, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 193941, .adv_w = 544, .box_w = 34, .box_h = 35, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 194536, .adv_w = 272, .box_w = 17, .box_h = 27, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 194766, .adv_w = 408, .box_w = 26, .box_h = 27, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 195117, .adv_w = 612, .box_w = 39, .box_h = 33, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 195761, .adv_w = 544, .box_w = 34, .box_h = 26, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 196203, .adv_w = 374, .box_w = 24, .box_h = 35, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 196623, .adv_w = 476, .box_w = 22, .box_h = 32, .ofs_x = 4, .ofs_y = -3}, - {.bitmap_index = 196975, .adv_w = 476, .box_w = 30, .box_h = 36, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 197515, .adv_w = 476, .box_w = 30, .box_h = 31, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 197980, .adv_w = 476, .box_w = 30, .box_h = 31, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 198445, .adv_w = 476, .box_w = 22, .box_h = 32, .ofs_x = 4, .ofs_y = -3}, - {.bitmap_index = 198797, .adv_w = 476, .box_w = 32, .box_h = 31, .ofs_x = -1, .ofs_y = -3}, - {.bitmap_index = 199293, .adv_w = 340, .box_w = 19, .box_h = 30, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 199578, .adv_w = 340, .box_w = 19, .box_h = 30, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 199863, .adv_w = 476, .box_w = 30, .box_h = 31, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 200328, .adv_w = 476, .box_w = 30, .box_h = 7, .ofs_x = 0, .ofs_y = 9}, - {.bitmap_index = 200433, .adv_w = 612, .box_w = 39, .box_h = 26, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 200940, .adv_w = 680, .box_w = 43, .box_h = 35, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 201693, .adv_w = 612, .box_w = 40, .box_h = 35, .ofs_x = -1, .ofs_y = -5}, - {.bitmap_index = 202393, .adv_w = 544, .box_w = 34, .box_h = 31, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 202920, .adv_w = 476, .box_w = 30, .box_h = 19, .ofs_x = 0, .ofs_y = 3}, - {.bitmap_index = 203205, .adv_w = 476, .box_w = 30, .box_h = 19, .ofs_x = 0, .ofs_y = 3}, - {.bitmap_index = 203490, .adv_w = 680, .box_w = 44, .box_h = 27, .ofs_x = -1, .ofs_y = -1}, - {.bitmap_index = 204084, .adv_w = 544, .box_w = 34, .box_h = 26, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 204526, .adv_w = 544, .box_w = 34, .box_h = 35, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 205121, .adv_w = 544, .box_w = 35, .box_h = 36, .ofs_x = -1, .ofs_y = -5}, - {.bitmap_index = 205751, .adv_w = 476, .box_w = 31, .box_h = 31, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 206232, .adv_w = 476, .box_w = 30, .box_h = 35, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 206757, .adv_w = 476, .box_w = 30, .box_h = 31, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 207222, .adv_w = 476, .box_w = 30, .box_h = 27, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 207627, .adv_w = 544, .box_w = 34, .box_h = 26, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 208069, .adv_w = 340, .box_w = 23, .box_h = 35, .ofs_x = -1, .ofs_y = -5}, - {.bitmap_index = 208472, .adv_w = 476, .box_w = 30, .box_h = 35, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 208997, .adv_w = 476, .box_w = 30, .box_h = 35, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 209522, .adv_w = 612, .box_w = 39, .box_h = 26, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 210029, .adv_w = 544, .box_w = 36, .box_h = 36, .ofs_x = -1, .ofs_y = -5}, - {.bitmap_index = 210677, .adv_w = 408, .box_w = 26, .box_h = 35, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 211132, .adv_w = 680, .box_w = 43, .box_h = 32, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 211820, .adv_w = 680, .box_w = 43, .box_h = 22, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 212293, .adv_w = 680, .box_w = 43, .box_h = 22, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 212766, .adv_w = 680, .box_w = 43, .box_h = 22, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 213239, .adv_w = 680, .box_w = 43, .box_h = 22, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 213712, .adv_w = 680, .box_w = 43, .box_h = 22, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 214185, .adv_w = 680, .box_w = 43, .box_h = 27, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 214766, .adv_w = 476, .box_w = 26, .box_h = 35, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 215221, .adv_w = 476, .box_w = 30, .box_h = 35, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 215746, .adv_w = 544, .box_w = 35, .box_h = 35, .ofs_x = -1, .ofs_y = -5}, - {.bitmap_index = 216359, .adv_w = 680, .box_w = 43, .box_h = 26, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 216918, .adv_w = 408, .box_w = 26, .box_h = 35, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 217373, .adv_w = 547, .box_w = 35, .box_h = 22, .ofs_x = 0, .ofs_y = 2} + {.bitmap_index = 145436, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 145932, .adv_w = 544, .box_w = 33, .box_h = 33, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 146477, .adv_w = 544, .box_w = 33, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 146989, .adv_w = 544, .box_w = 29, .box_h = 30, .ofs_x = 3, .ofs_y = -3}, + {.bitmap_index = 147424, .adv_w = 544, .box_w = 31, .box_h = 30, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 147889, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 148385, .adv_w = 544, .box_w = 31, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 148835, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 149331, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 149827, .adv_w = 544, .box_w = 24, .box_h = 31, .ofs_x = 5, .ofs_y = -3}, + {.bitmap_index = 150199, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 150695, .adv_w = 544, .box_w = 31, .box_h = 31, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 151176, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 151672, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 152168, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 152680, .adv_w = 544, .box_w = 33, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 153208, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 153720, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 154232, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 154728, .adv_w = 544, .box_w = 30, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 155208, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 155704, .adv_w = 544, .box_w = 32, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 156232, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 156744, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 157256, .adv_w = 544, .box_w = 28, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 157718, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 158230, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 158726, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 159238, .adv_w = 544, .box_w = 32, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 159766, .adv_w = 544, .box_w = 32, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 160246, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 160758, .adv_w = 544, .box_w = 32, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 161286, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 161798, .adv_w = 544, .box_w = 32, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 162326, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 162838, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 163350, .adv_w = 544, .box_w = 31, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 163831, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 164343, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 164839, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 165335, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 165847, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 166343, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 166855, .adv_w = 544, .box_w = 33, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 167367, .adv_w = 544, .box_w = 31, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 167879, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 168391, .adv_w = 544, .box_w = 32, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 168919, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 169431, .adv_w = 544, .box_w = 32, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 169911, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 170423, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 170919, .adv_w = 544, .box_w = 33, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 171447, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 171943, .adv_w = 544, .box_w = 33, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 172471, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 172983, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 173495, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 173991, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 174487, .adv_w = 544, .box_w = 33, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 175015, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 175527, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 176039, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 176535, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 177047, .adv_w = 544, .box_w = 31, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 177512, .adv_w = 544, .box_w = 31, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 177977, .adv_w = 544, .box_w = 31, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 178458, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 178970, .adv_w = 544, .box_w = 33, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 179498, .adv_w = 544, .box_w = 33, .box_h = 33, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 180043, .adv_w = 544, .box_w = 30, .box_h = 31, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 180508, .adv_w = 544, .box_w = 30, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 180988, .adv_w = 544, .box_w = 28, .box_h = 32, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 181436, .adv_w = 544, .box_w = 28, .box_h = 33, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 181898, .adv_w = 544, .box_w = 31, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 182410, .adv_w = 544, .box_w = 31, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 182922, .adv_w = 544, .box_w = 30, .box_h = 30, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 183372, .adv_w = 544, .box_w = 30, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 183867, .adv_w = 544, .box_w = 30, .box_h = 30, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 184317, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 184813, .adv_w = 544, .box_w = 31, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 185278, .adv_w = 544, .box_w = 32, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 185758, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 186270, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 186766, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 187262, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 187774, .adv_w = 544, .box_w = 30, .box_h = 31, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 188239, .adv_w = 544, .box_w = 32, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 188767, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 189263, .adv_w = 544, .box_w = 35, .box_h = 36, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 189893, .adv_w = 544, .box_w = 34, .box_h = 26, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 190335, .adv_w = 544, .box_w = 34, .box_h = 31, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 190862, .adv_w = 544, .box_w = 34, .box_h = 26, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 191304, .adv_w = 374, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 191592, .adv_w = 544, .box_w = 34, .box_h = 34, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 192170, .adv_w = 544, .box_w = 32, .box_h = 35, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 192730, .adv_w = 612, .box_w = 39, .box_h = 31, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 193335, .adv_w = 544, .box_w = 34, .box_h = 35, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 193930, .adv_w = 612, .box_w = 39, .box_h = 26, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 194437, .adv_w = 544, .box_w = 34, .box_h = 35, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 195032, .adv_w = 272, .box_w = 17, .box_h = 27, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 195262, .adv_w = 408, .box_w = 26, .box_h = 27, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 195613, .adv_w = 612, .box_w = 39, .box_h = 33, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 196257, .adv_w = 544, .box_w = 34, .box_h = 26, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 196699, .adv_w = 374, .box_w = 24, .box_h = 35, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 197119, .adv_w = 476, .box_w = 22, .box_h = 32, .ofs_x = 4, .ofs_y = -3}, + {.bitmap_index = 197471, .adv_w = 476, .box_w = 30, .box_h = 36, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 198011, .adv_w = 476, .box_w = 30, .box_h = 31, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 198476, .adv_w = 476, .box_w = 30, .box_h = 31, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 198941, .adv_w = 476, .box_w = 22, .box_h = 32, .ofs_x = 4, .ofs_y = -3}, + {.bitmap_index = 199293, .adv_w = 476, .box_w = 32, .box_h = 31, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 199789, .adv_w = 340, .box_w = 19, .box_h = 30, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 200074, .adv_w = 340, .box_w = 19, .box_h = 30, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 200359, .adv_w = 476, .box_w = 30, .box_h = 31, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 200824, .adv_w = 476, .box_w = 30, .box_h = 7, .ofs_x = 0, .ofs_y = 9}, + {.bitmap_index = 200929, .adv_w = 612, .box_w = 39, .box_h = 26, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 201436, .adv_w = 680, .box_w = 43, .box_h = 35, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 202189, .adv_w = 612, .box_w = 40, .box_h = 35, .ofs_x = -1, .ofs_y = -5}, + {.bitmap_index = 202889, .adv_w = 544, .box_w = 34, .box_h = 31, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 203416, .adv_w = 476, .box_w = 30, .box_h = 19, .ofs_x = 0, .ofs_y = 3}, + {.bitmap_index = 203701, .adv_w = 476, .box_w = 30, .box_h = 19, .ofs_x = 0, .ofs_y = 3}, + {.bitmap_index = 203986, .adv_w = 680, .box_w = 44, .box_h = 27, .ofs_x = -1, .ofs_y = -1}, + {.bitmap_index = 204580, .adv_w = 544, .box_w = 34, .box_h = 26, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 205022, .adv_w = 544, .box_w = 34, .box_h = 35, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 205617, .adv_w = 544, .box_w = 35, .box_h = 36, .ofs_x = -1, .ofs_y = -5}, + {.bitmap_index = 206247, .adv_w = 476, .box_w = 31, .box_h = 31, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 206728, .adv_w = 476, .box_w = 30, .box_h = 35, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 207253, .adv_w = 476, .box_w = 30, .box_h = 31, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 207718, .adv_w = 476, .box_w = 30, .box_h = 27, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 208123, .adv_w = 544, .box_w = 34, .box_h = 26, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 208565, .adv_w = 340, .box_w = 23, .box_h = 35, .ofs_x = -1, .ofs_y = -5}, + {.bitmap_index = 208968, .adv_w = 476, .box_w = 30, .box_h = 35, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 209493, .adv_w = 476, .box_w = 30, .box_h = 35, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 210018, .adv_w = 612, .box_w = 39, .box_h = 26, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 210525, .adv_w = 544, .box_w = 36, .box_h = 36, .ofs_x = -1, .ofs_y = -5}, + {.bitmap_index = 211173, .adv_w = 408, .box_w = 26, .box_h = 35, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 211628, .adv_w = 680, .box_w = 43, .box_h = 32, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 212316, .adv_w = 680, .box_w = 43, .box_h = 22, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 212789, .adv_w = 680, .box_w = 43, .box_h = 22, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 213262, .adv_w = 680, .box_w = 43, .box_h = 22, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 213735, .adv_w = 680, .box_w = 43, .box_h = 22, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 214208, .adv_w = 680, .box_w = 43, .box_h = 22, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 214681, .adv_w = 680, .box_w = 43, .box_h = 27, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 215262, .adv_w = 476, .box_w = 26, .box_h = 35, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 215717, .adv_w = 476, .box_w = 30, .box_h = 35, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 216242, .adv_w = 544, .box_w = 35, .box_h = 35, .ofs_x = -1, .ofs_y = -5}, + {.bitmap_index = 216855, .adv_w = 680, .box_w = 43, .box_h = 26, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 217414, .adv_w = 408, .box_w = 26, .box_h = 35, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 217869, .adv_w = 547, .box_w = 35, .box_h = 22, .ofs_x = 0, .ofs_y = 2} }; /*--------------------- @@ -28922,29 +28987,29 @@ static const uint16_t unicode_list_1[] = { 0x6bb0, 0x6bf1, 0x6c25, 0x6c38, 0x6c8b, 0x6c91, 0x6c9b, 0x6cd8, 0x6d55, 0x6d79, 0x6de0, 0x6e2a, 0x6e31, 0x7009, 0x7018, 0x7076, 0x7086, 0x7198, 0x7206, 0x72ff, 0x7300, 0x7356, 0x746f, 0x7478, - 0x7485, 0x748b, 0x749c, 0x74a9, 0x75d4, 0x763e, 0x7644, 0x765b, - 0x7670, 0x768c, 0x773d, 0x7751, 0x77be, 0x788a, 0x78d1, 0x791d, - 0x795b, 0x79ca, 0x79d4, 0x7a2e, 0x7a3f, 0x7a76, 0x7c4b, 0x7c70, - 0x7c72, 0x7e0f, 0x7e1f, 0x7e21, 0x7e23, 0x7e2c, 0x7e2f, 0x7e3a, - 0x7ea1, 0x7ebe, 0x7f55, 0x7f83, 0x801c, 0x804d, 0x813a, 0x8144, - 0x81ff, 0x8307, 0x832c, 0x851f, 0x8652, 0x879c, 0x87b8, 0x87fb, - 0x8815, 0x88d1, 0x8914, 0x8916, 0x8918, 0x8922, 0x8ab6, 0x8af1, - 0x8af4, 0x8afe, 0x8b00, 0x8b0e, 0x8b0f, 0x8b11, 0x8b16, 0x8b25, - 0x8b47, 0x8b53, 0x8c75, 0x8c78, 0x8cd5, 0x8d7a, 0x8eb8, 0x8ebc, - 0x8ebe, 0x8ec4, 0x8ecd, 0x8ee3, 0x8f17, 0x8f20, 0x8f24, 0x8f29, - 0x8f2b, 0x8f2e, 0x8f49, 0x8f4d, 0x8f50, 0x8f51, 0x8f59, 0x8f6a, - 0x8f6f, 0x8fa3, 0x9038, 0x904d, 0x911d, 0x911f, 0x93ef, 0x9451, - 0x947e, 0x94ac, 0x94cf, 0x953d, 0x953e, 0x9544, 0x95b4, 0x95e0, - 0x96b2, 0x9743, 0x97c5, 0x97c6, 0x97c9, 0x97d4, 0x97e1, 0x981e, - 0x98c1, 0x99dc, 0x9d73, 0x9df6, 0x9e28, 0xef51, 0xef58, 0xef5b, - 0xef5c, 0xef5d, 0xef61, 0xef63, 0xef65, 0xef69, 0xef6c, 0xef71, - 0xef76, 0xef77, 0xef78, 0xef8e, 0xef93, 0xef98, 0xef9b, 0xef9c, - 0xef9d, 0xefa1, 0xefa2, 0xefa3, 0xefa4, 0xefb7, 0xefb8, 0xefbe, - 0xefc0, 0xefc1, 0xefc4, 0xefc7, 0xefc8, 0xefc9, 0xefcb, 0xefe3, - 0xefe5, 0xf014, 0xf015, 0xf017, 0xf019, 0xf030, 0xf037, 0xf03a, - 0xf043, 0xf06c, 0xf074, 0xf0ab, 0xf13b, 0xf190, 0xf191, 0xf192, - 0xf193, 0xf194, 0xf1d7, 0xf1e3, 0xf23d, 0xf254, 0xf4aa, 0xf712, - 0xf7f2 + 0x7485, 0x748b, 0x749c, 0x74a9, 0x75d4, 0x7628, 0x763e, 0x7644, + 0x765b, 0x7670, 0x768c, 0x773d, 0x7751, 0x77be, 0x788a, 0x78d1, + 0x791d, 0x795b, 0x79ca, 0x79d4, 0x7a2e, 0x7a3f, 0x7a76, 0x7c4b, + 0x7c70, 0x7c72, 0x7e0f, 0x7e1f, 0x7e21, 0x7e23, 0x7e2c, 0x7e2f, + 0x7e3a, 0x7ea1, 0x7ebe, 0x7f55, 0x7f83, 0x801c, 0x804d, 0x813a, + 0x8144, 0x81ff, 0x8307, 0x832c, 0x851f, 0x8652, 0x879c, 0x87b8, + 0x87fb, 0x8815, 0x88d1, 0x8914, 0x8916, 0x8918, 0x8922, 0x8ab6, + 0x8af1, 0x8af4, 0x8afe, 0x8b00, 0x8b0e, 0x8b0f, 0x8b11, 0x8b16, + 0x8b25, 0x8b47, 0x8b53, 0x8c75, 0x8c78, 0x8cd5, 0x8d7a, 0x8eb8, + 0x8ebc, 0x8ebe, 0x8ec4, 0x8ecd, 0x8ee3, 0x8f17, 0x8f20, 0x8f24, + 0x8f29, 0x8f2b, 0x8f2e, 0x8f49, 0x8f4d, 0x8f50, 0x8f51, 0x8f59, + 0x8f6a, 0x8f6f, 0x8fa3, 0x9038, 0x904d, 0x911d, 0x911f, 0x93ef, + 0x9451, 0x947e, 0x94ac, 0x94cf, 0x953d, 0x953e, 0x9544, 0x95b4, + 0x95e0, 0x96b2, 0x9743, 0x97c5, 0x97c6, 0x97c9, 0x97d4, 0x97e1, + 0x981e, 0x98c1, 0x99dc, 0x9d73, 0x9df6, 0x9e28, 0xef51, 0xef58, + 0xef5b, 0xef5c, 0xef5d, 0xef61, 0xef63, 0xef65, 0xef69, 0xef6c, + 0xef71, 0xef76, 0xef77, 0xef78, 0xef8e, 0xef93, 0xef98, 0xef9b, + 0xef9c, 0xef9d, 0xefa1, 0xefa2, 0xefa3, 0xefa4, 0xefb7, 0xefb8, + 0xefbe, 0xefc0, 0xefc1, 0xefc4, 0xefc7, 0xefc8, 0xefc9, 0xefcb, + 0xefe3, 0xefe5, 0xf014, 0xf015, 0xf017, 0xf019, 0xf030, 0xf037, + 0xf03a, 0xf043, 0xf06c, 0xf074, 0xf0ab, 0xf13b, 0xf190, 0xf191, + 0xf192, 0xf193, 0xf194, 0xf1d7, 0xf1e3, 0xf23d, 0xf254, 0xf4aa, + 0xf712, 0xf7f2 }; /*Collect the unicode lists and glyph_id offsets*/ @@ -28956,7 +29021,7 @@ static const lv_font_fmt_txt_cmap_t cmaps[] = }, { .range_start = 176, .range_length = 63475, .glyph_id_start = 96, - .unicode_list = unicode_list_1, .glyph_id_ofs_list = NULL, .list_length = 409, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY + .unicode_list = unicode_list_1, .glyph_id_ofs_list = NULL, .list_length = 410, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY } }; @@ -29031,7 +29096,7 @@ static const uint8_t kern_left_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0 + 0, 0 }; /*Map glyph_ids to kern right classes*/ @@ -29100,7 +29165,7 @@ static const uint8_t kern_right_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0 + 0, 0 }; /*Kern values between classes*/ diff --git a/lib/lvgl/lvgl/src/font/lv_font_montserrat_36.c b/lib/lvgl/lvgl/src/font/lv_font_montserrat_36.c index 7909e976..ee9dc738 100644 --- a/lib/lvgl/lvgl/src/font/lv_font_montserrat_36.c +++ b/lib/lvgl/lvgl/src/font/lv_font_montserrat_36.c @@ -1,7 +1,7 @@ /******************************************************************************* * Size: 36 px * Bpp: 4 - * Opts: --bpp 4 --size 36 --no-compress --font Montserrat-Medium.ttf --range 32-127,176,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20351,20363,20391,20445,20449,20462,20463,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29366,29615,29616,29702,29983,29992,30005,30011,30028,30041,30340,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31181,31243,31354,31364,31454,31471,31526,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33719,33756,34255,34562,34892,34920,34987,35013,35201,35268,35270,35272,35282,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35831,35843,36133,36136,36229,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --format lvgl -o out/lv_font_montserrat_36.c + * Opts: --bpp 4 --size 36 --no-compress --font Montserrat-Medium.ttf --range 32-127,176,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20351,20363,20391,20445,20449,20462,20463,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29366,29615,29616,29702,29983,29992,30005,30011,30028,30041,30340,30424,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31181,31243,31354,31364,31454,31471,31526,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33719,33756,34255,34562,34892,34920,34987,35013,35201,35268,35270,35272,35282,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35831,35843,36133,36136,36229,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --format lvgl -o out/lv_font_montserrat_36.c ******************************************************************************/ #ifdef LV_LVGL_H_INCLUDE_SIMPLE @@ -19526,6 +19526,81 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0x42, 0x0, 0x0, 0x0, + /* U+76D8 "盘" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x44, + 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xc, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xff, 0xf1, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x4f, 0xfa, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x30, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xd, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xf7, 0x66, + 0x66, 0x66, 0x66, 0x66, 0x66, 0x6a, 0xff, 0x20, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, + 0x20, 0x0, 0xb, 0x91, 0x0, 0x0, 0x0, 0x6f, + 0xf2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xcf, 0xf2, 0x0, 0x6, 0xff, 0xf7, 0x0, 0x0, + 0x6, 0xff, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xc, 0xff, 0x20, 0x0, 0x19, 0xff, 0xfa, + 0x0, 0x0, 0x6f, 0xf1, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xcf, 0xf2, 0x0, 0x0, 0x2, + 0xdf, 0x20, 0x0, 0x6, 0xff, 0x10, 0x0, 0x0, + 0x0, 0x3, 0x65, 0x44, 0x4d, 0xff, 0x64, 0x44, + 0x44, 0x44, 0x74, 0x44, 0x44, 0x9f, 0xf5, 0x44, + 0x55, 0x20, 0x0, 0x9f, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf7, 0x0, 0x9, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x70, 0x0, 0x23, 0x22, + 0x12, 0xff, 0xc1, 0x11, 0x11, 0x11, 0x11, 0x11, + 0x11, 0x19, 0xff, 0x11, 0x22, 0x31, 0x0, 0x0, + 0x0, 0x0, 0x4f, 0xf8, 0x0, 0x2, 0xd6, 0x0, + 0x0, 0x0, 0x0, 0x9f, 0xf0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xb, 0xff, 0x40, 0x0, 0xbf, + 0xfe, 0x60, 0x0, 0x0, 0x9, 0xff, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, 0xd0, 0x0, + 0x3, 0xbf, 0xff, 0xe3, 0x0, 0x0, 0xaf, 0xf0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xef, 0xf6, + 0x0, 0x0, 0x0, 0x3d, 0xfc, 0x0, 0x9a, 0xbf, + 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, + 0xfc, 0x0, 0x0, 0x0, 0x0, 0x9, 0x30, 0xa, + 0xff, 0xff, 0xa0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1a, 0xfe, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x3f, 0xfe, 0x91, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x7, 0x20, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x41, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xd, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x30, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf2, 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, + 0x54, 0x44, 0x6f, 0xf7, 0x44, 0x44, 0xff, 0xa4, + 0x44, 0x4d, 0xff, 0x20, 0x0, 0x0, 0x0, 0x0, + 0xcf, 0xf1, 0x0, 0x2, 0xff, 0x40, 0x0, 0xe, + 0xf7, 0x0, 0x0, 0xbf, 0xf1, 0x0, 0x0, 0x0, + 0x0, 0xb, 0xff, 0x10, 0x0, 0x2f, 0xf4, 0x0, + 0x0, 0xef, 0x70, 0x0, 0xb, 0xff, 0x10, 0x0, + 0x0, 0x0, 0x0, 0xbf, 0xf1, 0x0, 0x2, 0xff, + 0x40, 0x0, 0xe, 0xf7, 0x0, 0x0, 0xbf, 0xf1, + 0x0, 0x0, 0x0, 0x0, 0xb, 0xff, 0x10, 0x0, + 0x2f, 0xf4, 0x0, 0x0, 0xef, 0x70, 0x0, 0xb, + 0xff, 0x10, 0x0, 0x0, 0x0, 0x0, 0xbf, 0xf1, + 0x0, 0x2, 0xff, 0x40, 0x0, 0xe, 0xf7, 0x0, + 0x0, 0xbf, 0xf1, 0x0, 0x0, 0x8, 0x76, 0x6d, + 0xff, 0x76, 0x66, 0x7f, 0xf8, 0x66, 0x66, 0xff, + 0xa6, 0x66, 0x6d, 0xff, 0x76, 0x67, 0x71, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, + 0x1f, 0xfe, 0xee, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, + 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xee, 0xee, + 0xff, 0xd0, + /* U+76EE "目" */ 0x5, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x51, 0xf, 0xff, 0xff, @@ -32111,178 +32186,179 @@ static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = { {.bitmap_index = 147741, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -5}, {.bitmap_index = 148319, .adv_w = 576, .box_w = 32, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, {.bitmap_index = 148863, .adv_w = 576, .box_w = 30, .box_h = 34, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 149373, .adv_w = 576, .box_w = 26, .box_h = 31, .ofs_x = 5, .ofs_y = -3}, - {.bitmap_index = 149776, .adv_w = 576, .box_w = 34, .box_h = 31, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 150303, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 150881, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 151459, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 152004, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 152582, .adv_w = 576, .box_w = 33, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 153110, .adv_w = 576, .box_w = 33, .box_h = 35, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 153688, .adv_w = 576, .box_w = 32, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 154200, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 154778, .adv_w = 576, .box_w = 33, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 155339, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 155917, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 156478, .adv_w = 576, .box_w = 32, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 157022, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 157600, .adv_w = 576, .box_w = 34, .box_h = 35, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 158195, .adv_w = 576, .box_w = 34, .box_h = 35, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 158790, .adv_w = 576, .box_w = 33, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 159351, .adv_w = 576, .box_w = 32, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 159879, .adv_w = 576, .box_w = 32, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 160407, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 160985, .adv_w = 576, .box_w = 34, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 161529, .adv_w = 576, .box_w = 34, .box_h = 35, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 162124, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 162685, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 149373, .adv_w = 576, .box_w = 35, .box_h = 33, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 149951, .adv_w = 576, .box_w = 26, .box_h = 31, .ofs_x = 5, .ofs_y = -3}, + {.bitmap_index = 150354, .adv_w = 576, .box_w = 34, .box_h = 31, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 150881, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 151459, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 152037, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 152582, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 153160, .adv_w = 576, .box_w = 33, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 153688, .adv_w = 576, .box_w = 33, .box_h = 35, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 154266, .adv_w = 576, .box_w = 32, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 154778, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 155356, .adv_w = 576, .box_w = 33, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 155917, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 156495, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 157056, .adv_w = 576, .box_w = 32, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 157600, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 158178, .adv_w = 576, .box_w = 34, .box_h = 35, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 158773, .adv_w = 576, .box_w = 34, .box_h = 35, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 159368, .adv_w = 576, .box_w = 33, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 159929, .adv_w = 576, .box_w = 32, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 160457, .adv_w = 576, .box_w = 32, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 160985, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 161563, .adv_w = 576, .box_w = 34, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 162107, .adv_w = 576, .box_w = 34, .box_h = 35, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 162702, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, {.bitmap_index = 163263, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 163841, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 164402, .adv_w = 576, .box_w = 32, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 164914, .adv_w = 576, .box_w = 32, .box_h = 31, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 165410, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 165955, .adv_w = 576, .box_w = 32, .box_h = 31, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 166451, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 167012, .adv_w = 576, .box_w = 33, .box_h = 35, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 167590, .adv_w = 576, .box_w = 26, .box_h = 33, .ofs_x = 5, .ofs_y = -3}, - {.bitmap_index = 168019, .adv_w = 576, .box_w = 33, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 168580, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 169125, .adv_w = 576, .box_w = 32, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 169653, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 170231, .adv_w = 576, .box_w = 34, .box_h = 35, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 170826, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 163841, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 164419, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 164980, .adv_w = 576, .box_w = 32, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 165492, .adv_w = 576, .box_w = 32, .box_h = 31, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 165988, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 166533, .adv_w = 576, .box_w = 32, .box_h = 31, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 167029, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 167590, .adv_w = 576, .box_w = 33, .box_h = 35, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 168168, .adv_w = 576, .box_w = 26, .box_h = 33, .ofs_x = 5, .ofs_y = -3}, + {.bitmap_index = 168597, .adv_w = 576, .box_w = 33, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 169158, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 169703, .adv_w = 576, .box_w = 32, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 170231, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 170809, .adv_w = 576, .box_w = 34, .box_h = 35, .ofs_x = 1, .ofs_y = -5}, {.bitmap_index = 171404, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, {.bitmap_index = 171982, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, {.bitmap_index = 172560, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 173138, .adv_w = 576, .box_w = 32, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 173666, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 174227, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 174805, .adv_w = 576, .box_w = 35, .box_h = 35, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 175418, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 175996, .adv_w = 576, .box_w = 30, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 176506, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 177084, .adv_w = 576, .box_w = 34, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 177628, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 178173, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 178751, .adv_w = 576, .box_w = 34, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 179295, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 173138, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 173716, .adv_w = 576, .box_w = 32, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 174244, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 174805, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 175383, .adv_w = 576, .box_w = 35, .box_h = 35, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 175996, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 176574, .adv_w = 576, .box_w = 30, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 177084, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 177662, .adv_w = 576, .box_w = 34, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 178206, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 178751, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 179329, .adv_w = 576, .box_w = 34, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, {.bitmap_index = 179873, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, {.bitmap_index = 180451, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, {.bitmap_index = 181029, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, {.bitmap_index = 181607, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, {.bitmap_index = 182185, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 182763, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 183308, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 183886, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 184431, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 184992, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 182763, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 183341, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 183886, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 184464, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 185009, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, {.bitmap_index = 185570, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, {.bitmap_index = 186148, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, {.bitmap_index = 186726, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 187304, .adv_w = 576, .box_w = 33, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 187865, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 188443, .adv_w = 576, .box_w = 34, .box_h = 35, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 189038, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 189599, .adv_w = 576, .box_w = 34, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 190143, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 190721, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 191266, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 191844, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 192405, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 192983, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 193544, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 194105, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 194650, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 195228, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 195789, .adv_w = 576, .box_w = 35, .box_h = 34, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 196384, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 196945, .adv_w = 576, .box_w = 33, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 197506, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 198067, .adv_w = 576, .box_w = 32, .box_h = 32, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 198579, .adv_w = 576, .box_w = 33, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 199091, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 199636, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 200197, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 187304, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 187882, .adv_w = 576, .box_w = 33, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 188443, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 189021, .adv_w = 576, .box_w = 34, .box_h = 35, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 189616, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 190177, .adv_w = 576, .box_w = 34, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 190721, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 191299, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 191844, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 192422, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 192983, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 193561, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 194122, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 194683, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 195228, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 195806, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 196367, .adv_w = 576, .box_w = 35, .box_h = 34, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 196962, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 197523, .adv_w = 576, .box_w = 33, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 198084, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 198645, .adv_w = 576, .box_w = 32, .box_h = 32, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 199157, .adv_w = 576, .box_w = 33, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 199669, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 200214, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, {.bitmap_index = 200775, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 201353, .adv_w = 576, .box_w = 32, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 201881, .adv_w = 576, .box_w = 30, .box_h = 34, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 202391, .adv_w = 576, .box_w = 30, .box_h = 35, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 202916, .adv_w = 576, .box_w = 31, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 203443, .adv_w = 576, .box_w = 32, .box_h = 35, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 204003, .adv_w = 576, .box_w = 33, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 204564, .adv_w = 576, .box_w = 32, .box_h = 31, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 205060, .adv_w = 576, .box_w = 32, .box_h = 35, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 205620, .adv_w = 576, .box_w = 32, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 206132, .adv_w = 576, .box_w = 34, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 206676, .adv_w = 576, .box_w = 33, .box_h = 32, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 207204, .adv_w = 576, .box_w = 34, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 207748, .adv_w = 576, .box_w = 35, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 208326, .adv_w = 576, .box_w = 35, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 208886, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 209447, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 210025, .adv_w = 576, .box_w = 32, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 210553, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 211131, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 211692, .adv_w = 576, .box_w = 36, .box_h = 37, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 212358, .adv_w = 576, .box_w = 36, .box_h = 27, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 212844, .adv_w = 576, .box_w = 36, .box_h = 33, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 213438, .adv_w = 576, .box_w = 36, .box_h = 27, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 213924, .adv_w = 396, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 214237, .adv_w = 576, .box_w = 36, .box_h = 36, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 214885, .adv_w = 576, .box_w = 35, .box_h = 37, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 215533, .adv_w = 648, .box_w = 41, .box_h = 33, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 216210, .adv_w = 576, .box_w = 36, .box_h = 37, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 216876, .adv_w = 648, .box_w = 41, .box_h = 27, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 217430, .adv_w = 576, .box_w = 36, .box_h = 37, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 218096, .adv_w = 288, .box_w = 18, .box_h = 29, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 218357, .adv_w = 432, .box_w = 27, .box_h = 29, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 218749, .adv_w = 648, .box_w = 41, .box_h = 35, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 219467, .adv_w = 576, .box_w = 36, .box_h = 27, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 219953, .adv_w = 396, .box_w = 25, .box_h = 37, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 220416, .adv_w = 504, .box_w = 24, .box_h = 33, .ofs_x = 4, .ofs_y = -3}, - {.bitmap_index = 220812, .adv_w = 504, .box_w = 32, .box_h = 37, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 221404, .adv_w = 504, .box_w = 32, .box_h = 33, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 221932, .adv_w = 504, .box_w = 32, .box_h = 33, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 222460, .adv_w = 504, .box_w = 23, .box_h = 33, .ofs_x = 4, .ofs_y = -3}, - {.bitmap_index = 222840, .adv_w = 504, .box_w = 34, .box_h = 33, .ofs_x = -1, .ofs_y = -3}, - {.bitmap_index = 223401, .adv_w = 360, .box_w = 20, .box_h = 31, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 223711, .adv_w = 360, .box_w = 20, .box_h = 31, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 224021, .adv_w = 504, .box_w = 32, .box_h = 33, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 224549, .adv_w = 504, .box_w = 32, .box_h = 7, .ofs_x = 0, .ofs_y = 10}, - {.bitmap_index = 224661, .adv_w = 648, .box_w = 41, .box_h = 27, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 225215, .adv_w = 720, .box_w = 47, .box_h = 37, .ofs_x = -1, .ofs_y = -5}, - {.bitmap_index = 226085, .adv_w = 648, .box_w = 42, .box_h = 37, .ofs_x = -1, .ofs_y = -5}, - {.bitmap_index = 226862, .adv_w = 576, .box_w = 36, .box_h = 33, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 227456, .adv_w = 504, .box_w = 32, .box_h = 19, .ofs_x = 0, .ofs_y = 4}, - {.bitmap_index = 227760, .adv_w = 504, .box_w = 32, .box_h = 19, .ofs_x = 0, .ofs_y = 4}, - {.bitmap_index = 228064, .adv_w = 720, .box_w = 45, .box_h = 29, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 228717, .adv_w = 576, .box_w = 36, .box_h = 27, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 229203, .adv_w = 576, .box_w = 36, .box_h = 37, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 229869, .adv_w = 576, .box_w = 37, .box_h = 37, .ofs_x = -1, .ofs_y = -5}, - {.bitmap_index = 230554, .adv_w = 504, .box_w = 32, .box_h = 33, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 231082, .adv_w = 504, .box_w = 32, .box_h = 37, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 231674, .adv_w = 504, .box_w = 32, .box_h = 33, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 232202, .adv_w = 504, .box_w = 32, .box_h = 29, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 232666, .adv_w = 576, .box_w = 36, .box_h = 27, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 233152, .adv_w = 360, .box_w = 24, .box_h = 37, .ofs_x = -1, .ofs_y = -5}, - {.bitmap_index = 233596, .adv_w = 504, .box_w = 32, .box_h = 37, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 234188, .adv_w = 504, .box_w = 32, .box_h = 37, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 234780, .adv_w = 648, .box_w = 41, .box_h = 27, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 235334, .adv_w = 576, .box_w = 38, .box_h = 38, .ofs_x = -1, .ofs_y = -5}, - {.bitmap_index = 236056, .adv_w = 432, .box_w = 27, .box_h = 37, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 236556, .adv_w = 720, .box_w = 45, .box_h = 34, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 237321, .adv_w = 720, .box_w = 45, .box_h = 23, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 237839, .adv_w = 720, .box_w = 45, .box_h = 23, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 238357, .adv_w = 720, .box_w = 45, .box_h = 23, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 238875, .adv_w = 720, .box_w = 45, .box_h = 23, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 239393, .adv_w = 720, .box_w = 45, .box_h = 23, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 239911, .adv_w = 720, .box_w = 46, .box_h = 29, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 240578, .adv_w = 504, .box_w = 28, .box_h = 37, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 241096, .adv_w = 504, .box_w = 32, .box_h = 37, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 241688, .adv_w = 576, .box_w = 37, .box_h = 37, .ofs_x = -1, .ofs_y = -5}, - {.bitmap_index = 242373, .adv_w = 720, .box_w = 45, .box_h = 27, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 242981, .adv_w = 432, .box_w = 27, .box_h = 37, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 243481, .adv_w = 579, .box_w = 37, .box_h = 23, .ofs_x = 0, .ofs_y = 2} + {.bitmap_index = 201353, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 201931, .adv_w = 576, .box_w = 32, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 202459, .adv_w = 576, .box_w = 30, .box_h = 34, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 202969, .adv_w = 576, .box_w = 30, .box_h = 35, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 203494, .adv_w = 576, .box_w = 31, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 204021, .adv_w = 576, .box_w = 32, .box_h = 35, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 204581, .adv_w = 576, .box_w = 33, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 205142, .adv_w = 576, .box_w = 32, .box_h = 31, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 205638, .adv_w = 576, .box_w = 32, .box_h = 35, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 206198, .adv_w = 576, .box_w = 32, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 206710, .adv_w = 576, .box_w = 34, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 207254, .adv_w = 576, .box_w = 33, .box_h = 32, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 207782, .adv_w = 576, .box_w = 34, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 208326, .adv_w = 576, .box_w = 35, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 208904, .adv_w = 576, .box_w = 35, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 209464, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 210025, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 210603, .adv_w = 576, .box_w = 32, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 211131, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 211709, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 212270, .adv_w = 576, .box_w = 36, .box_h = 37, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 212936, .adv_w = 576, .box_w = 36, .box_h = 27, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 213422, .adv_w = 576, .box_w = 36, .box_h = 33, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 214016, .adv_w = 576, .box_w = 36, .box_h = 27, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 214502, .adv_w = 396, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 214815, .adv_w = 576, .box_w = 36, .box_h = 36, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 215463, .adv_w = 576, .box_w = 35, .box_h = 37, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 216111, .adv_w = 648, .box_w = 41, .box_h = 33, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 216788, .adv_w = 576, .box_w = 36, .box_h = 37, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 217454, .adv_w = 648, .box_w = 41, .box_h = 27, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 218008, .adv_w = 576, .box_w = 36, .box_h = 37, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 218674, .adv_w = 288, .box_w = 18, .box_h = 29, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 218935, .adv_w = 432, .box_w = 27, .box_h = 29, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 219327, .adv_w = 648, .box_w = 41, .box_h = 35, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 220045, .adv_w = 576, .box_w = 36, .box_h = 27, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 220531, .adv_w = 396, .box_w = 25, .box_h = 37, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 220994, .adv_w = 504, .box_w = 24, .box_h = 33, .ofs_x = 4, .ofs_y = -3}, + {.bitmap_index = 221390, .adv_w = 504, .box_w = 32, .box_h = 37, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 221982, .adv_w = 504, .box_w = 32, .box_h = 33, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 222510, .adv_w = 504, .box_w = 32, .box_h = 33, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 223038, .adv_w = 504, .box_w = 23, .box_h = 33, .ofs_x = 4, .ofs_y = -3}, + {.bitmap_index = 223418, .adv_w = 504, .box_w = 34, .box_h = 33, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 223979, .adv_w = 360, .box_w = 20, .box_h = 31, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 224289, .adv_w = 360, .box_w = 20, .box_h = 31, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 224599, .adv_w = 504, .box_w = 32, .box_h = 33, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 225127, .adv_w = 504, .box_w = 32, .box_h = 7, .ofs_x = 0, .ofs_y = 10}, + {.bitmap_index = 225239, .adv_w = 648, .box_w = 41, .box_h = 27, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 225793, .adv_w = 720, .box_w = 47, .box_h = 37, .ofs_x = -1, .ofs_y = -5}, + {.bitmap_index = 226663, .adv_w = 648, .box_w = 42, .box_h = 37, .ofs_x = -1, .ofs_y = -5}, + {.bitmap_index = 227440, .adv_w = 576, .box_w = 36, .box_h = 33, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 228034, .adv_w = 504, .box_w = 32, .box_h = 19, .ofs_x = 0, .ofs_y = 4}, + {.bitmap_index = 228338, .adv_w = 504, .box_w = 32, .box_h = 19, .ofs_x = 0, .ofs_y = 4}, + {.bitmap_index = 228642, .adv_w = 720, .box_w = 45, .box_h = 29, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 229295, .adv_w = 576, .box_w = 36, .box_h = 27, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 229781, .adv_w = 576, .box_w = 36, .box_h = 37, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 230447, .adv_w = 576, .box_w = 37, .box_h = 37, .ofs_x = -1, .ofs_y = -5}, + {.bitmap_index = 231132, .adv_w = 504, .box_w = 32, .box_h = 33, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 231660, .adv_w = 504, .box_w = 32, .box_h = 37, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 232252, .adv_w = 504, .box_w = 32, .box_h = 33, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 232780, .adv_w = 504, .box_w = 32, .box_h = 29, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 233244, .adv_w = 576, .box_w = 36, .box_h = 27, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 233730, .adv_w = 360, .box_w = 24, .box_h = 37, .ofs_x = -1, .ofs_y = -5}, + {.bitmap_index = 234174, .adv_w = 504, .box_w = 32, .box_h = 37, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 234766, .adv_w = 504, .box_w = 32, .box_h = 37, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 235358, .adv_w = 648, .box_w = 41, .box_h = 27, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 235912, .adv_w = 576, .box_w = 38, .box_h = 38, .ofs_x = -1, .ofs_y = -5}, + {.bitmap_index = 236634, .adv_w = 432, .box_w = 27, .box_h = 37, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 237134, .adv_w = 720, .box_w = 45, .box_h = 34, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 237899, .adv_w = 720, .box_w = 45, .box_h = 23, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 238417, .adv_w = 720, .box_w = 45, .box_h = 23, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 238935, .adv_w = 720, .box_w = 45, .box_h = 23, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 239453, .adv_w = 720, .box_w = 45, .box_h = 23, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 239971, .adv_w = 720, .box_w = 45, .box_h = 23, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 240489, .adv_w = 720, .box_w = 46, .box_h = 29, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 241156, .adv_w = 504, .box_w = 28, .box_h = 37, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 241674, .adv_w = 504, .box_w = 32, .box_h = 37, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 242266, .adv_w = 576, .box_w = 37, .box_h = 37, .ofs_x = -1, .ofs_y = -5}, + {.bitmap_index = 242951, .adv_w = 720, .box_w = 45, .box_h = 27, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 243559, .adv_w = 432, .box_w = 27, .box_h = 37, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 244059, .adv_w = 579, .box_w = 37, .box_h = 23, .ofs_x = 0, .ofs_y = 2} }; /*--------------------- @@ -32319,29 +32395,29 @@ static const uint16_t unicode_list_1[] = { 0x6bb0, 0x6bf1, 0x6c25, 0x6c38, 0x6c8b, 0x6c91, 0x6c9b, 0x6cd8, 0x6d55, 0x6d79, 0x6de0, 0x6e2a, 0x6e31, 0x7009, 0x7018, 0x7076, 0x7086, 0x7198, 0x7206, 0x72ff, 0x7300, 0x7356, 0x746f, 0x7478, - 0x7485, 0x748b, 0x749c, 0x74a9, 0x75d4, 0x763e, 0x7644, 0x765b, - 0x7670, 0x768c, 0x773d, 0x7751, 0x77be, 0x788a, 0x78d1, 0x791d, - 0x795b, 0x79ca, 0x79d4, 0x7a2e, 0x7a3f, 0x7a76, 0x7c4b, 0x7c70, - 0x7c72, 0x7e0f, 0x7e1f, 0x7e21, 0x7e23, 0x7e2c, 0x7e2f, 0x7e3a, - 0x7ea1, 0x7ebe, 0x7f55, 0x7f83, 0x801c, 0x804d, 0x813a, 0x8144, - 0x81ff, 0x8307, 0x832c, 0x851f, 0x8652, 0x879c, 0x87b8, 0x87fb, - 0x8815, 0x88d1, 0x8914, 0x8916, 0x8918, 0x8922, 0x8ab6, 0x8af1, - 0x8af4, 0x8afe, 0x8b00, 0x8b0e, 0x8b0f, 0x8b11, 0x8b16, 0x8b25, - 0x8b47, 0x8b53, 0x8c75, 0x8c78, 0x8cd5, 0x8d7a, 0x8eb8, 0x8ebc, - 0x8ebe, 0x8ec4, 0x8ecd, 0x8ee3, 0x8f17, 0x8f20, 0x8f24, 0x8f29, - 0x8f2b, 0x8f2e, 0x8f49, 0x8f4d, 0x8f50, 0x8f51, 0x8f59, 0x8f6a, - 0x8f6f, 0x8fa3, 0x9038, 0x904d, 0x911d, 0x911f, 0x93ef, 0x9451, - 0x947e, 0x94ac, 0x94cf, 0x953d, 0x953e, 0x9544, 0x95b4, 0x95e0, - 0x96b2, 0x9743, 0x97c5, 0x97c6, 0x97c9, 0x97d4, 0x97e1, 0x981e, - 0x98c1, 0x99dc, 0x9d73, 0x9df6, 0x9e28, 0xef51, 0xef58, 0xef5b, - 0xef5c, 0xef5d, 0xef61, 0xef63, 0xef65, 0xef69, 0xef6c, 0xef71, - 0xef76, 0xef77, 0xef78, 0xef8e, 0xef93, 0xef98, 0xef9b, 0xef9c, - 0xef9d, 0xefa1, 0xefa2, 0xefa3, 0xefa4, 0xefb7, 0xefb8, 0xefbe, - 0xefc0, 0xefc1, 0xefc4, 0xefc7, 0xefc8, 0xefc9, 0xefcb, 0xefe3, - 0xefe5, 0xf014, 0xf015, 0xf017, 0xf019, 0xf030, 0xf037, 0xf03a, - 0xf043, 0xf06c, 0xf074, 0xf0ab, 0xf13b, 0xf190, 0xf191, 0xf192, - 0xf193, 0xf194, 0xf1d7, 0xf1e3, 0xf23d, 0xf254, 0xf4aa, 0xf712, - 0xf7f2 + 0x7485, 0x748b, 0x749c, 0x74a9, 0x75d4, 0x7628, 0x763e, 0x7644, + 0x765b, 0x7670, 0x768c, 0x773d, 0x7751, 0x77be, 0x788a, 0x78d1, + 0x791d, 0x795b, 0x79ca, 0x79d4, 0x7a2e, 0x7a3f, 0x7a76, 0x7c4b, + 0x7c70, 0x7c72, 0x7e0f, 0x7e1f, 0x7e21, 0x7e23, 0x7e2c, 0x7e2f, + 0x7e3a, 0x7ea1, 0x7ebe, 0x7f55, 0x7f83, 0x801c, 0x804d, 0x813a, + 0x8144, 0x81ff, 0x8307, 0x832c, 0x851f, 0x8652, 0x879c, 0x87b8, + 0x87fb, 0x8815, 0x88d1, 0x8914, 0x8916, 0x8918, 0x8922, 0x8ab6, + 0x8af1, 0x8af4, 0x8afe, 0x8b00, 0x8b0e, 0x8b0f, 0x8b11, 0x8b16, + 0x8b25, 0x8b47, 0x8b53, 0x8c75, 0x8c78, 0x8cd5, 0x8d7a, 0x8eb8, + 0x8ebc, 0x8ebe, 0x8ec4, 0x8ecd, 0x8ee3, 0x8f17, 0x8f20, 0x8f24, + 0x8f29, 0x8f2b, 0x8f2e, 0x8f49, 0x8f4d, 0x8f50, 0x8f51, 0x8f59, + 0x8f6a, 0x8f6f, 0x8fa3, 0x9038, 0x904d, 0x911d, 0x911f, 0x93ef, + 0x9451, 0x947e, 0x94ac, 0x94cf, 0x953d, 0x953e, 0x9544, 0x95b4, + 0x95e0, 0x96b2, 0x9743, 0x97c5, 0x97c6, 0x97c9, 0x97d4, 0x97e1, + 0x981e, 0x98c1, 0x99dc, 0x9d73, 0x9df6, 0x9e28, 0xef51, 0xef58, + 0xef5b, 0xef5c, 0xef5d, 0xef61, 0xef63, 0xef65, 0xef69, 0xef6c, + 0xef71, 0xef76, 0xef77, 0xef78, 0xef8e, 0xef93, 0xef98, 0xef9b, + 0xef9c, 0xef9d, 0xefa1, 0xefa2, 0xefa3, 0xefa4, 0xefb7, 0xefb8, + 0xefbe, 0xefc0, 0xefc1, 0xefc4, 0xefc7, 0xefc8, 0xefc9, 0xefcb, + 0xefe3, 0xefe5, 0xf014, 0xf015, 0xf017, 0xf019, 0xf030, 0xf037, + 0xf03a, 0xf043, 0xf06c, 0xf074, 0xf0ab, 0xf13b, 0xf190, 0xf191, + 0xf192, 0xf193, 0xf194, 0xf1d7, 0xf1e3, 0xf23d, 0xf254, 0xf4aa, + 0xf712, 0xf7f2 }; /*Collect the unicode lists and glyph_id offsets*/ @@ -32353,7 +32429,7 @@ static const lv_font_fmt_txt_cmap_t cmaps[] = }, { .range_start = 176, .range_length = 63475, .glyph_id_start = 96, - .unicode_list = unicode_list_1, .glyph_id_ofs_list = NULL, .list_length = 409, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY + .unicode_list = unicode_list_1, .glyph_id_ofs_list = NULL, .list_length = 410, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY } }; @@ -32428,7 +32504,7 @@ static const uint8_t kern_left_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0 + 0, 0 }; /*Map glyph_ids to kern right classes*/ @@ -32497,7 +32573,7 @@ static const uint8_t kern_right_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0 + 0, 0 }; /*Kern values between classes*/ diff --git a/lib/lvgl/lvgl/src/font/lv_font_montserrat_38.c b/lib/lvgl/lvgl/src/font/lv_font_montserrat_38.c index 8300e97c..ab7e6dad 100644 --- a/lib/lvgl/lvgl/src/font/lv_font_montserrat_38.c +++ b/lib/lvgl/lvgl/src/font/lv_font_montserrat_38.c @@ -1,7 +1,7 @@ /******************************************************************************* * Size: 38 px * Bpp: 4 - * Opts: --bpp 4 --size 38 --no-compress --font Montserrat-Medium.ttf --range 32-127,176,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20351,20363,20391,20445,20449,20462,20463,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29366,29615,29616,29702,29983,29992,30005,30011,30028,30041,30340,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31181,31243,31354,31364,31454,31471,31526,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33719,33756,34255,34562,34892,34920,34987,35013,35201,35268,35270,35272,35282,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35831,35843,36133,36136,36229,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --format lvgl -o out/lv_font_montserrat_38.c + * Opts: --bpp 4 --size 38 --no-compress --font Montserrat-Medium.ttf --range 32-127,176,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20351,20363,20391,20445,20449,20462,20463,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29366,29615,29616,29702,29983,29992,30005,30011,30028,30041,30340,30424,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31181,31243,31354,31364,31454,31471,31526,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33719,33756,34255,34562,34892,34920,34987,35013,35201,35268,35270,35272,35282,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35831,35843,36133,36136,36229,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --format lvgl -o out/lv_font_montserrat_38.c ******************************************************************************/ #ifdef LV_LVGL_H_INCLUDE_SIMPLE @@ -21554,6 +21554,87 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x49, 0x64, 0x0, 0x0, 0x0, 0x0, + /* U+76D8 "盘" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x8f, 0xc9, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xbf, 0xfa, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf3, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x77, 0x77, 0x79, 0xff, + 0xf7, 0x77, 0x77, 0x77, 0x77, 0x77, 0x71, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf2, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xff, 0xf3, 0x0, 0x0, 0x12, 0x0, + 0x0, 0x0, 0x0, 0x9f, 0xf2, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xef, 0xf3, 0x0, 0x0, + 0xaf, 0x81, 0x0, 0x0, 0x0, 0x9f, 0xf1, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xef, 0xf3, + 0x0, 0x3, 0xff, 0xff, 0x70, 0x0, 0x0, 0x9f, + 0xf1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xef, 0xf3, 0x0, 0x0, 0x2b, 0xff, 0xf2, 0x0, + 0x0, 0x9f, 0xf1, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xef, 0xf3, 0x0, 0x0, 0x0, 0x5e, + 0x60, 0x0, 0x0, 0x9f, 0xf1, 0x0, 0x0, 0x0, + 0x4, 0x98, 0x87, 0x77, 0xff, 0xf9, 0x77, 0x77, + 0x77, 0x78, 0x77, 0x77, 0x77, 0xcf, 0xf8, 0x77, + 0x88, 0x60, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xb0, 0x7, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0, 0x1, 0x21, + 0x11, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xcf, 0xe0, 0x1, 0x12, 0x20, + 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0xc, + 0x60, 0x0, 0x0, 0x0, 0x0, 0xcf, 0xe0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xd, 0xff, 0x40, + 0x0, 0x6f, 0xfe, 0x60, 0x0, 0x0, 0x0, 0xcf, + 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5f, + 0xfe, 0x0, 0x0, 0x6e, 0xff, 0xfd, 0x50, 0x0, + 0x0, 0xcf, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x7e, 0xff, + 0x80, 0x12, 0x36, 0xff, 0xe0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x3e, 0xff, 0xe0, 0x0, 0x0, 0x0, + 0x1, 0xbe, 0x0, 0x4f, 0xff, 0xff, 0xb0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xdf, 0xff, 0x30, 0x0, + 0x0, 0x0, 0x0, 0x2, 0x0, 0xc, 0xff, 0xff, + 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xf6, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, + 0xca, 0x61, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x5, 0x75, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, + 0x55, 0x55, 0x55, 0x55, 0x55, 0x51, 0x0, 0x0, + 0x0, 0x0, 0x2f, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, + 0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf3, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, + 0x11, 0x11, 0x1f, 0xf8, 0x11, 0x11, 0x7f, 0xf2, + 0x11, 0x11, 0xdf, 0xf3, 0x0, 0x0, 0x0, 0x0, + 0x1f, 0xfe, 0x0, 0x0, 0xf, 0xf7, 0x0, 0x0, + 0x7f, 0xf1, 0x0, 0x0, 0xdf, 0xf2, 0x0, 0x0, + 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0xf, 0xf7, + 0x0, 0x0, 0x7f, 0xf1, 0x0, 0x0, 0xdf, 0xf2, + 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, + 0xf, 0xf7, 0x0, 0x0, 0x7f, 0xf1, 0x0, 0x0, + 0xdf, 0xf2, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, + 0x0, 0x0, 0xf, 0xf7, 0x0, 0x0, 0x7f, 0xf1, + 0x0, 0x0, 0xdf, 0xf2, 0x0, 0x0, 0x0, 0x0, + 0xf, 0xfe, 0x0, 0x0, 0xf, 0xf7, 0x0, 0x0, + 0x7f, 0xf1, 0x0, 0x0, 0xdf, 0xf2, 0x0, 0x0, + 0x69, 0x98, 0x8f, 0xff, 0x88, 0x88, 0x8f, 0xfc, + 0x88, 0x88, 0xbf, 0xf8, 0x88, 0x88, 0xef, 0xf9, + 0x88, 0x98, 0xaf, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfd, 0xaf, 0xee, 0xee, 0xdd, + 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, + 0xdd, 0xdd, 0xde, 0xee, 0xef, 0xfc, + /* U+76EE "目" */ 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0xef, 0xff, 0xff, @@ -35462,178 +35543,179 @@ static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = { {.bitmap_index = 164014, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -5}, {.bitmap_index = 164662, .adv_w = 608, .box_w = 34, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, {.bitmap_index = 165274, .adv_w = 608, .box_w = 33, .box_h = 35, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 165852, .adv_w = 608, .box_w = 26, .box_h = 33, .ofs_x = 6, .ofs_y = -3}, - {.bitmap_index = 166281, .adv_w = 608, .box_w = 36, .box_h = 34, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 166893, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 167541, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 168154, .adv_w = 608, .box_w = 34, .box_h = 34, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 168732, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 169362, .adv_w = 608, .box_w = 35, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 169957, .adv_w = 608, .box_w = 35, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 170605, .adv_w = 608, .box_w = 34, .box_h = 34, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 171183, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 171813, .adv_w = 608, .box_w = 35, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 172443, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 173091, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 173704, .adv_w = 608, .box_w = 34, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 174316, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 174964, .adv_w = 608, .box_w = 35, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 175612, .adv_w = 608, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 176278, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 176891, .adv_w = 608, .box_w = 34, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 177486, .adv_w = 608, .box_w = 34, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 178081, .adv_w = 608, .box_w = 37, .box_h = 36, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 178747, .adv_w = 608, .box_w = 36, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 179341, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 179989, .adv_w = 608, .box_w = 36, .box_h = 34, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 180601, .adv_w = 608, .box_w = 37, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 181249, .adv_w = 608, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 181915, .adv_w = 608, .box_w = 37, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 182563, .adv_w = 608, .box_w = 33, .box_h = 34, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 183124, .adv_w = 608, .box_w = 34, .box_h = 33, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 183685, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 184298, .adv_w = 608, .box_w = 35, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 184876, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 185506, .adv_w = 608, .box_w = 34, .box_h = 36, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 186118, .adv_w = 608, .box_w = 26, .box_h = 34, .ofs_x = 6, .ofs_y = -3}, - {.bitmap_index = 186560, .adv_w = 608, .box_w = 35, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 187190, .adv_w = 608, .box_w = 34, .box_h = 34, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 187768, .adv_w = 608, .box_w = 34, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 188363, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 188993, .adv_w = 608, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 189659, .adv_w = 608, .box_w = 37, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 190325, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 190973, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 191586, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 192234, .adv_w = 608, .box_w = 34, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 192829, .adv_w = 608, .box_w = 36, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 193441, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 194089, .adv_w = 608, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 194755, .adv_w = 608, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 195421, .adv_w = 608, .box_w = 32, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 195997, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 196645, .adv_w = 608, .box_w = 35, .box_h = 34, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 197240, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 197870, .adv_w = 608, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 198536, .adv_w = 608, .box_w = 36, .box_h = 34, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 199148, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 199778, .adv_w = 608, .box_w = 35, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 200408, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 201038, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 201686, .adv_w = 608, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 202352, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 202982, .adv_w = 608, .box_w = 35, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 203577, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 204225, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 204838, .adv_w = 608, .box_w = 37, .box_h = 34, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 205467, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 206115, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 206763, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 207393, .adv_w = 608, .box_w = 37, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 208059, .adv_w = 608, .box_w = 35, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 208689, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 209337, .adv_w = 608, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 210003, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 210633, .adv_w = 608, .box_w = 35, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 211211, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 211824, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 212437, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 213085, .adv_w = 608, .box_w = 36, .box_h = 34, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 213697, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 165852, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 166482, .adv_w = 608, .box_w = 26, .box_h = 33, .ofs_x = 6, .ofs_y = -3}, + {.bitmap_index = 166911, .adv_w = 608, .box_w = 36, .box_h = 34, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 167523, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 168171, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 168784, .adv_w = 608, .box_w = 34, .box_h = 34, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 169362, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 169992, .adv_w = 608, .box_w = 35, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 170587, .adv_w = 608, .box_w = 35, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 171235, .adv_w = 608, .box_w = 34, .box_h = 34, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 171813, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 172443, .adv_w = 608, .box_w = 35, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 173073, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 173721, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 174334, .adv_w = 608, .box_w = 34, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 174946, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 175594, .adv_w = 608, .box_w = 35, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 176242, .adv_w = 608, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 176908, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 177521, .adv_w = 608, .box_w = 34, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 178116, .adv_w = 608, .box_w = 34, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 178711, .adv_w = 608, .box_w = 37, .box_h = 36, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 179377, .adv_w = 608, .box_w = 36, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 179971, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 180619, .adv_w = 608, .box_w = 36, .box_h = 34, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 181231, .adv_w = 608, .box_w = 37, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 181879, .adv_w = 608, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 182545, .adv_w = 608, .box_w = 37, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 183193, .adv_w = 608, .box_w = 33, .box_h = 34, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 183754, .adv_w = 608, .box_w = 34, .box_h = 33, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 184315, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 184928, .adv_w = 608, .box_w = 35, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 185506, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 186136, .adv_w = 608, .box_w = 34, .box_h = 36, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 186748, .adv_w = 608, .box_w = 26, .box_h = 34, .ofs_x = 6, .ofs_y = -3}, + {.bitmap_index = 187190, .adv_w = 608, .box_w = 35, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 187820, .adv_w = 608, .box_w = 34, .box_h = 34, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 188398, .adv_w = 608, .box_w = 34, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 188993, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 189623, .adv_w = 608, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 190289, .adv_w = 608, .box_w = 37, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 190955, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 191603, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 192216, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 192864, .adv_w = 608, .box_w = 34, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 193459, .adv_w = 608, .box_w = 36, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 194071, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 194719, .adv_w = 608, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 195385, .adv_w = 608, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 196051, .adv_w = 608, .box_w = 32, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 196627, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 197275, .adv_w = 608, .box_w = 35, .box_h = 34, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 197870, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 198500, .adv_w = 608, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 199166, .adv_w = 608, .box_w = 36, .box_h = 34, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 199778, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 200408, .adv_w = 608, .box_w = 35, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 201038, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 201668, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 202316, .adv_w = 608, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 202982, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 203612, .adv_w = 608, .box_w = 35, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 204207, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 204855, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 205468, .adv_w = 608, .box_w = 37, .box_h = 34, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 206097, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 206745, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 207393, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 208023, .adv_w = 608, .box_w = 37, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 208689, .adv_w = 608, .box_w = 35, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 209319, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 209967, .adv_w = 608, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 210633, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 211263, .adv_w = 608, .box_w = 35, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 211841, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 212454, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 213067, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 213715, .adv_w = 608, .box_w = 36, .box_h = 34, .ofs_x = 1, .ofs_y = -3}, {.bitmap_index = 214327, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, {.bitmap_index = 214957, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 215587, .adv_w = 608, .box_w = 34, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 216182, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 216795, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 217425, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 218073, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 218703, .adv_w = 608, .box_w = 35, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 219333, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 219963, .adv_w = 608, .box_w = 34, .box_h = 34, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 220541, .adv_w = 608, .box_w = 35, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 221119, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 221732, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 215587, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 216217, .adv_w = 608, .box_w = 34, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 216812, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 217425, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 218055, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 218703, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 219333, .adv_w = 608, .box_w = 35, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 219963, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 220593, .adv_w = 608, .box_w = 34, .box_h = 34, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 221171, .adv_w = 608, .box_w = 35, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 221749, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, {.bitmap_index = 222362, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 222992, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 223640, .adv_w = 608, .box_w = 34, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 224235, .adv_w = 608, .box_w = 32, .box_h = 36, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 224811, .adv_w = 608, .box_w = 32, .box_h = 36, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 225387, .adv_w = 608, .box_w = 32, .box_h = 36, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 225963, .adv_w = 608, .box_w = 34, .box_h = 37, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 226592, .adv_w = 608, .box_w = 35, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 227222, .adv_w = 608, .box_w = 34, .box_h = 33, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 227783, .adv_w = 608, .box_w = 34, .box_h = 37, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 228412, .adv_w = 608, .box_w = 34, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 228973, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 229586, .adv_w = 608, .box_w = 35, .box_h = 34, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 230181, .adv_w = 608, .box_w = 34, .box_h = 34, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 230759, .adv_w = 608, .box_w = 37, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 231407, .adv_w = 608, .box_w = 36, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 232019, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 232649, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 233297, .adv_w = 608, .box_w = 34, .box_h = 34, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 233875, .adv_w = 608, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 234541, .adv_w = 608, .box_w = 35, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 235136, .adv_w = 608, .box_w = 39, .box_h = 39, .ofs_x = -1, .ofs_y = -5}, - {.bitmap_index = 235897, .adv_w = 608, .box_w = 38, .box_h = 29, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 236448, .adv_w = 608, .box_w = 38, .box_h = 34, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 237094, .adv_w = 608, .box_w = 38, .box_h = 29, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 237645, .adv_w = 418, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 238010, .adv_w = 608, .box_w = 38, .box_h = 39, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 238751, .adv_w = 608, .box_w = 36, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 239453, .adv_w = 684, .box_w = 43, .box_h = 34, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 240184, .adv_w = 608, .box_w = 38, .box_h = 39, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 240925, .adv_w = 684, .box_w = 43, .box_h = 29, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 241549, .adv_w = 608, .box_w = 38, .box_h = 39, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 242290, .adv_w = 304, .box_w = 19, .box_h = 30, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 242575, .adv_w = 456, .box_w = 29, .box_h = 30, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 243010, .adv_w = 684, .box_w = 43, .box_h = 37, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 243806, .adv_w = 608, .box_w = 38, .box_h = 29, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 244357, .adv_w = 418, .box_w = 27, .box_h = 39, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 244884, .adv_w = 532, .box_w = 25, .box_h = 35, .ofs_x = 4, .ofs_y = -3}, - {.bitmap_index = 245322, .adv_w = 532, .box_w = 34, .box_h = 40, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 246002, .adv_w = 532, .box_w = 34, .box_h = 34, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 246580, .adv_w = 532, .box_w = 34, .box_h = 34, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 247158, .adv_w = 532, .box_w = 25, .box_h = 35, .ofs_x = 4, .ofs_y = -3}, - {.bitmap_index = 247596, .adv_w = 532, .box_w = 35, .box_h = 34, .ofs_x = -1, .ofs_y = -3}, - {.bitmap_index = 248191, .adv_w = 380, .box_w = 20, .box_h = 33, .ofs_x = 2, .ofs_y = -2}, - {.bitmap_index = 248521, .adv_w = 380, .box_w = 20, .box_h = 33, .ofs_x = 2, .ofs_y = -2}, - {.bitmap_index = 248851, .adv_w = 532, .box_w = 34, .box_h = 34, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 249429, .adv_w = 532, .box_w = 34, .box_h = 8, .ofs_x = 0, .ofs_y = 10}, - {.bitmap_index = 249565, .adv_w = 684, .box_w = 43, .box_h = 29, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 250189, .adv_w = 760, .box_w = 48, .box_h = 39, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 251125, .adv_w = 684, .box_w = 45, .box_h = 39, .ofs_x = -1, .ofs_y = -5}, - {.bitmap_index = 252003, .adv_w = 608, .box_w = 38, .box_h = 35, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 252668, .adv_w = 532, .box_w = 33, .box_h = 21, .ofs_x = 0, .ofs_y = 4}, - {.bitmap_index = 253015, .adv_w = 532, .box_w = 33, .box_h = 21, .ofs_x = 0, .ofs_y = 4}, - {.bitmap_index = 253362, .adv_w = 760, .box_w = 48, .box_h = 30, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 254082, .adv_w = 608, .box_w = 38, .box_h = 29, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 254633, .adv_w = 608, .box_w = 38, .box_h = 39, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 255374, .adv_w = 608, .box_w = 39, .box_h = 39, .ofs_x = -1, .ofs_y = -5}, - {.bitmap_index = 256135, .adv_w = 532, .box_w = 34, .box_h = 34, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 256713, .adv_w = 532, .box_w = 34, .box_h = 39, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 257376, .adv_w = 532, .box_w = 34, .box_h = 34, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 257954, .adv_w = 532, .box_w = 34, .box_h = 30, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 258464, .adv_w = 608, .box_w = 38, .box_h = 29, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 259015, .adv_w = 380, .box_w = 26, .box_h = 39, .ofs_x = -1, .ofs_y = -5}, - {.bitmap_index = 259522, .adv_w = 532, .box_w = 34, .box_h = 39, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 260185, .adv_w = 532, .box_w = 34, .box_h = 39, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 260848, .adv_w = 684, .box_w = 43, .box_h = 29, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 261472, .adv_w = 608, .box_w = 40, .box_h = 39, .ofs_x = -1, .ofs_y = -5}, - {.bitmap_index = 262252, .adv_w = 456, .box_w = 29, .box_h = 39, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 262818, .adv_w = 760, .box_w = 48, .box_h = 35, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 263658, .adv_w = 760, .box_w = 48, .box_h = 25, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 264258, .adv_w = 760, .box_w = 48, .box_h = 25, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 264858, .adv_w = 760, .box_w = 48, .box_h = 25, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 265458, .adv_w = 760, .box_w = 48, .box_h = 25, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 266058, .adv_w = 760, .box_w = 48, .box_h = 25, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 266658, .adv_w = 760, .box_w = 48, .box_h = 30, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 267378, .adv_w = 532, .box_w = 30, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 267963, .adv_w = 532, .box_w = 34, .box_h = 39, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 268626, .adv_w = 608, .box_w = 39, .box_h = 39, .ofs_x = -1, .ofs_y = -5}, - {.bitmap_index = 269387, .adv_w = 760, .box_w = 48, .box_h = 29, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 270083, .adv_w = 456, .box_w = 29, .box_h = 39, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 270649, .adv_w = 612, .box_w = 39, .box_h = 25, .ofs_x = 0, .ofs_y = 2} + {.bitmap_index = 222992, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 223622, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 224270, .adv_w = 608, .box_w = 34, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 224865, .adv_w = 608, .box_w = 32, .box_h = 36, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 225441, .adv_w = 608, .box_w = 32, .box_h = 36, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 226017, .adv_w = 608, .box_w = 32, .box_h = 36, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 226593, .adv_w = 608, .box_w = 34, .box_h = 37, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 227222, .adv_w = 608, .box_w = 35, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 227852, .adv_w = 608, .box_w = 34, .box_h = 33, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 228413, .adv_w = 608, .box_w = 34, .box_h = 37, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 229042, .adv_w = 608, .box_w = 34, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 229603, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 230216, .adv_w = 608, .box_w = 35, .box_h = 34, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 230811, .adv_w = 608, .box_w = 34, .box_h = 34, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 231389, .adv_w = 608, .box_w = 37, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 232037, .adv_w = 608, .box_w = 36, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 232649, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 233279, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 233927, .adv_w = 608, .box_w = 34, .box_h = 34, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 234505, .adv_w = 608, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 235171, .adv_w = 608, .box_w = 35, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 235766, .adv_w = 608, .box_w = 39, .box_h = 39, .ofs_x = -1, .ofs_y = -5}, + {.bitmap_index = 236527, .adv_w = 608, .box_w = 38, .box_h = 29, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 237078, .adv_w = 608, .box_w = 38, .box_h = 34, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 237724, .adv_w = 608, .box_w = 38, .box_h = 29, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 238275, .adv_w = 418, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 238640, .adv_w = 608, .box_w = 38, .box_h = 39, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 239381, .adv_w = 608, .box_w = 36, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 240083, .adv_w = 684, .box_w = 43, .box_h = 34, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 240814, .adv_w = 608, .box_w = 38, .box_h = 39, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 241555, .adv_w = 684, .box_w = 43, .box_h = 29, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 242179, .adv_w = 608, .box_w = 38, .box_h = 39, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 242920, .adv_w = 304, .box_w = 19, .box_h = 30, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 243205, .adv_w = 456, .box_w = 29, .box_h = 30, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 243640, .adv_w = 684, .box_w = 43, .box_h = 37, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 244436, .adv_w = 608, .box_w = 38, .box_h = 29, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 244987, .adv_w = 418, .box_w = 27, .box_h = 39, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 245514, .adv_w = 532, .box_w = 25, .box_h = 35, .ofs_x = 4, .ofs_y = -3}, + {.bitmap_index = 245952, .adv_w = 532, .box_w = 34, .box_h = 40, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 246632, .adv_w = 532, .box_w = 34, .box_h = 34, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 247210, .adv_w = 532, .box_w = 34, .box_h = 34, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 247788, .adv_w = 532, .box_w = 25, .box_h = 35, .ofs_x = 4, .ofs_y = -3}, + {.bitmap_index = 248226, .adv_w = 532, .box_w = 35, .box_h = 34, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 248821, .adv_w = 380, .box_w = 20, .box_h = 33, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 249151, .adv_w = 380, .box_w = 20, .box_h = 33, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 249481, .adv_w = 532, .box_w = 34, .box_h = 34, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 250059, .adv_w = 532, .box_w = 34, .box_h = 8, .ofs_x = 0, .ofs_y = 10}, + {.bitmap_index = 250195, .adv_w = 684, .box_w = 43, .box_h = 29, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 250819, .adv_w = 760, .box_w = 48, .box_h = 39, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 251755, .adv_w = 684, .box_w = 45, .box_h = 39, .ofs_x = -1, .ofs_y = -5}, + {.bitmap_index = 252633, .adv_w = 608, .box_w = 38, .box_h = 35, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 253298, .adv_w = 532, .box_w = 33, .box_h = 21, .ofs_x = 0, .ofs_y = 4}, + {.bitmap_index = 253645, .adv_w = 532, .box_w = 33, .box_h = 21, .ofs_x = 0, .ofs_y = 4}, + {.bitmap_index = 253992, .adv_w = 760, .box_w = 48, .box_h = 30, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 254712, .adv_w = 608, .box_w = 38, .box_h = 29, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 255263, .adv_w = 608, .box_w = 38, .box_h = 39, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 256004, .adv_w = 608, .box_w = 39, .box_h = 39, .ofs_x = -1, .ofs_y = -5}, + {.bitmap_index = 256765, .adv_w = 532, .box_w = 34, .box_h = 34, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 257343, .adv_w = 532, .box_w = 34, .box_h = 39, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 258006, .adv_w = 532, .box_w = 34, .box_h = 34, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 258584, .adv_w = 532, .box_w = 34, .box_h = 30, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 259094, .adv_w = 608, .box_w = 38, .box_h = 29, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 259645, .adv_w = 380, .box_w = 26, .box_h = 39, .ofs_x = -1, .ofs_y = -5}, + {.bitmap_index = 260152, .adv_w = 532, .box_w = 34, .box_h = 39, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 260815, .adv_w = 532, .box_w = 34, .box_h = 39, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 261478, .adv_w = 684, .box_w = 43, .box_h = 29, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 262102, .adv_w = 608, .box_w = 40, .box_h = 39, .ofs_x = -1, .ofs_y = -5}, + {.bitmap_index = 262882, .adv_w = 456, .box_w = 29, .box_h = 39, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 263448, .adv_w = 760, .box_w = 48, .box_h = 35, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 264288, .adv_w = 760, .box_w = 48, .box_h = 25, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 264888, .adv_w = 760, .box_w = 48, .box_h = 25, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 265488, .adv_w = 760, .box_w = 48, .box_h = 25, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 266088, .adv_w = 760, .box_w = 48, .box_h = 25, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 266688, .adv_w = 760, .box_w = 48, .box_h = 25, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 267288, .adv_w = 760, .box_w = 48, .box_h = 30, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 268008, .adv_w = 532, .box_w = 30, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 268593, .adv_w = 532, .box_w = 34, .box_h = 39, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 269256, .adv_w = 608, .box_w = 39, .box_h = 39, .ofs_x = -1, .ofs_y = -5}, + {.bitmap_index = 270017, .adv_w = 760, .box_w = 48, .box_h = 29, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 270713, .adv_w = 456, .box_w = 29, .box_h = 39, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 271279, .adv_w = 612, .box_w = 39, .box_h = 25, .ofs_x = 0, .ofs_y = 2} }; /*--------------------- @@ -35670,29 +35752,29 @@ static const uint16_t unicode_list_1[] = { 0x6bb0, 0x6bf1, 0x6c25, 0x6c38, 0x6c8b, 0x6c91, 0x6c9b, 0x6cd8, 0x6d55, 0x6d79, 0x6de0, 0x6e2a, 0x6e31, 0x7009, 0x7018, 0x7076, 0x7086, 0x7198, 0x7206, 0x72ff, 0x7300, 0x7356, 0x746f, 0x7478, - 0x7485, 0x748b, 0x749c, 0x74a9, 0x75d4, 0x763e, 0x7644, 0x765b, - 0x7670, 0x768c, 0x773d, 0x7751, 0x77be, 0x788a, 0x78d1, 0x791d, - 0x795b, 0x79ca, 0x79d4, 0x7a2e, 0x7a3f, 0x7a76, 0x7c4b, 0x7c70, - 0x7c72, 0x7e0f, 0x7e1f, 0x7e21, 0x7e23, 0x7e2c, 0x7e2f, 0x7e3a, - 0x7ea1, 0x7ebe, 0x7f55, 0x7f83, 0x801c, 0x804d, 0x813a, 0x8144, - 0x81ff, 0x8307, 0x832c, 0x851f, 0x8652, 0x879c, 0x87b8, 0x87fb, - 0x8815, 0x88d1, 0x8914, 0x8916, 0x8918, 0x8922, 0x8ab6, 0x8af1, - 0x8af4, 0x8afe, 0x8b00, 0x8b0e, 0x8b0f, 0x8b11, 0x8b16, 0x8b25, - 0x8b47, 0x8b53, 0x8c75, 0x8c78, 0x8cd5, 0x8d7a, 0x8eb8, 0x8ebc, - 0x8ebe, 0x8ec4, 0x8ecd, 0x8ee3, 0x8f17, 0x8f20, 0x8f24, 0x8f29, - 0x8f2b, 0x8f2e, 0x8f49, 0x8f4d, 0x8f50, 0x8f51, 0x8f59, 0x8f6a, - 0x8f6f, 0x8fa3, 0x9038, 0x904d, 0x911d, 0x911f, 0x93ef, 0x9451, - 0x947e, 0x94ac, 0x94cf, 0x953d, 0x953e, 0x9544, 0x95b4, 0x95e0, - 0x96b2, 0x9743, 0x97c5, 0x97c6, 0x97c9, 0x97d4, 0x97e1, 0x981e, - 0x98c1, 0x99dc, 0x9d73, 0x9df6, 0x9e28, 0xef51, 0xef58, 0xef5b, - 0xef5c, 0xef5d, 0xef61, 0xef63, 0xef65, 0xef69, 0xef6c, 0xef71, - 0xef76, 0xef77, 0xef78, 0xef8e, 0xef93, 0xef98, 0xef9b, 0xef9c, - 0xef9d, 0xefa1, 0xefa2, 0xefa3, 0xefa4, 0xefb7, 0xefb8, 0xefbe, - 0xefc0, 0xefc1, 0xefc4, 0xefc7, 0xefc8, 0xefc9, 0xefcb, 0xefe3, - 0xefe5, 0xf014, 0xf015, 0xf017, 0xf019, 0xf030, 0xf037, 0xf03a, - 0xf043, 0xf06c, 0xf074, 0xf0ab, 0xf13b, 0xf190, 0xf191, 0xf192, - 0xf193, 0xf194, 0xf1d7, 0xf1e3, 0xf23d, 0xf254, 0xf4aa, 0xf712, - 0xf7f2 + 0x7485, 0x748b, 0x749c, 0x74a9, 0x75d4, 0x7628, 0x763e, 0x7644, + 0x765b, 0x7670, 0x768c, 0x773d, 0x7751, 0x77be, 0x788a, 0x78d1, + 0x791d, 0x795b, 0x79ca, 0x79d4, 0x7a2e, 0x7a3f, 0x7a76, 0x7c4b, + 0x7c70, 0x7c72, 0x7e0f, 0x7e1f, 0x7e21, 0x7e23, 0x7e2c, 0x7e2f, + 0x7e3a, 0x7ea1, 0x7ebe, 0x7f55, 0x7f83, 0x801c, 0x804d, 0x813a, + 0x8144, 0x81ff, 0x8307, 0x832c, 0x851f, 0x8652, 0x879c, 0x87b8, + 0x87fb, 0x8815, 0x88d1, 0x8914, 0x8916, 0x8918, 0x8922, 0x8ab6, + 0x8af1, 0x8af4, 0x8afe, 0x8b00, 0x8b0e, 0x8b0f, 0x8b11, 0x8b16, + 0x8b25, 0x8b47, 0x8b53, 0x8c75, 0x8c78, 0x8cd5, 0x8d7a, 0x8eb8, + 0x8ebc, 0x8ebe, 0x8ec4, 0x8ecd, 0x8ee3, 0x8f17, 0x8f20, 0x8f24, + 0x8f29, 0x8f2b, 0x8f2e, 0x8f49, 0x8f4d, 0x8f50, 0x8f51, 0x8f59, + 0x8f6a, 0x8f6f, 0x8fa3, 0x9038, 0x904d, 0x911d, 0x911f, 0x93ef, + 0x9451, 0x947e, 0x94ac, 0x94cf, 0x953d, 0x953e, 0x9544, 0x95b4, + 0x95e0, 0x96b2, 0x9743, 0x97c5, 0x97c6, 0x97c9, 0x97d4, 0x97e1, + 0x981e, 0x98c1, 0x99dc, 0x9d73, 0x9df6, 0x9e28, 0xef51, 0xef58, + 0xef5b, 0xef5c, 0xef5d, 0xef61, 0xef63, 0xef65, 0xef69, 0xef6c, + 0xef71, 0xef76, 0xef77, 0xef78, 0xef8e, 0xef93, 0xef98, 0xef9b, + 0xef9c, 0xef9d, 0xefa1, 0xefa2, 0xefa3, 0xefa4, 0xefb7, 0xefb8, + 0xefbe, 0xefc0, 0xefc1, 0xefc4, 0xefc7, 0xefc8, 0xefc9, 0xefcb, + 0xefe3, 0xefe5, 0xf014, 0xf015, 0xf017, 0xf019, 0xf030, 0xf037, + 0xf03a, 0xf043, 0xf06c, 0xf074, 0xf0ab, 0xf13b, 0xf190, 0xf191, + 0xf192, 0xf193, 0xf194, 0xf1d7, 0xf1e3, 0xf23d, 0xf254, 0xf4aa, + 0xf712, 0xf7f2 }; /*Collect the unicode lists and glyph_id offsets*/ @@ -35704,7 +35786,7 @@ static const lv_font_fmt_txt_cmap_t cmaps[] = }, { .range_start = 176, .range_length = 63475, .glyph_id_start = 96, - .unicode_list = unicode_list_1, .glyph_id_ofs_list = NULL, .list_length = 409, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY + .unicode_list = unicode_list_1, .glyph_id_ofs_list = NULL, .list_length = 410, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY } }; @@ -35779,7 +35861,7 @@ static const uint8_t kern_left_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0 + 0, 0 }; /*Map glyph_ids to kern right classes*/ @@ -35848,7 +35930,7 @@ static const uint8_t kern_right_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0 + 0, 0 }; /*Kern values between classes*/ diff --git a/lib/lvgl/lvgl/src/font/lv_font_montserrat_40.c b/lib/lvgl/lvgl/src/font/lv_font_montserrat_40.c index 4f8c42bc..73d29844 100644 --- a/lib/lvgl/lvgl/src/font/lv_font_montserrat_40.c +++ b/lib/lvgl/lvgl/src/font/lv_font_montserrat_40.c @@ -1,7 +1,7 @@ /******************************************************************************* * Size: 40 px * Bpp: 4 - * Opts: --bpp 4 --size 40 --no-compress --font Montserrat-Medium.ttf --range 32-127,176,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20351,20363,20391,20445,20449,20462,20463,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29366,29615,29616,29702,29983,29992,30005,30011,30028,30041,30340,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31181,31243,31354,31364,31454,31471,31526,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33719,33756,34255,34562,34892,34920,34987,35013,35201,35268,35270,35272,35282,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35831,35843,36133,36136,36229,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --format lvgl -o out/lv_font_montserrat_40.c + * Opts: --bpp 4 --size 40 --no-compress --font Montserrat-Medium.ttf --range 32-127,176,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20351,20363,20391,20445,20449,20462,20463,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29366,29615,29616,29702,29983,29992,30005,30011,30028,30041,30340,30424,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31181,31243,31354,31364,31454,31471,31526,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33719,33756,34255,34562,34892,34920,34987,35013,35201,35268,35270,35272,35282,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35831,35843,36133,36136,36229,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --format lvgl -o out/lv_font_montserrat_40.c ******************************************************************************/ #ifdef LV_LVGL_H_INCLUDE_SIMPLE @@ -23835,6 +23835,94 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0xca, 0x73, 0x0, 0x0, 0x0, + /* U+76D8 "盘" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, + 0x95, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2f, 0xff, 0x90, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x5f, 0xff, 0x10, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xaf, 0xfa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xbf, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xbf, 0xfd, + 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, + 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xaf, 0xf9, 0x0, 0x0, 0x5, 0x20, 0x0, + 0x0, 0x0, 0x0, 0xef, 0xf0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xaf, 0xf9, 0x0, 0x0, + 0x2f, 0xf9, 0x10, 0x0, 0x0, 0x0, 0xef, 0xe0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xaf, + 0xf9, 0x0, 0x0, 0xaf, 0xff, 0xe6, 0x0, 0x0, + 0x0, 0xef, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xaf, 0xf9, 0x0, 0x0, 0x7, 0xff, + 0xff, 0x20, 0x0, 0x0, 0xef, 0xe0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xaf, 0xf9, 0x0, + 0x0, 0x0, 0x1b, 0xf6, 0x0, 0x0, 0x0, 0xef, + 0xe0, 0x0, 0x0, 0x0, 0x1, 0x32, 0x21, 0x11, + 0xaf, 0xf9, 0x11, 0x11, 0x11, 0x11, 0x61, 0x11, + 0x11, 0x11, 0xef, 0xe1, 0x11, 0x22, 0x30, 0x5, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xd0, 0x5, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xd0, 0x3, 0xaa, 0x99, + 0x99, 0xef, 0xfa, 0x99, 0x99, 0x99, 0x99, 0x99, + 0x99, 0x99, 0x99, 0xff, 0xe9, 0x99, 0x9a, 0x90, + 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x1, + 0x30, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xb0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, + 0xd0, 0x0, 0x9, 0xfb, 0x30, 0x0, 0x0, 0x0, + 0x1, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xc, 0xff, 0x80, 0x0, 0x1f, 0xff, 0xfb, + 0x30, 0x0, 0x0, 0x1, 0xff, 0xb0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x5f, 0xff, 0x20, 0x0, + 0x3, 0xaf, 0xff, 0xf9, 0x0, 0x0, 0x3, 0xff, + 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, + 0xfa, 0x0, 0x0, 0x0, 0x3, 0xdf, 0xf2, 0x4, + 0x9a, 0xbf, 0xff, 0xa0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x6f, 0xff, 0xe1, 0x0, 0x0, 0x0, 0x0, + 0x8, 0x80, 0x1, 0xef, 0xff, 0xff, 0x60, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x7e, 0xff, 0x40, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xff, + 0xf9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, + 0xc6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x29, 0x63, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x8, 0x98, 0x88, 0x88, 0x88, 0x88, + 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, + 0x81, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf3, 0x0, 0x0, 0x0, 0x0, + 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf2, 0x0, + 0x0, 0x0, 0x0, 0xf, 0xff, 0x30, 0x0, 0x9, + 0xff, 0x10, 0x0, 0x9, 0xff, 0x10, 0x0, 0x0, + 0xff, 0xf2, 0x0, 0x0, 0x0, 0x0, 0xe, 0xff, + 0x30, 0x0, 0x9, 0xff, 0x10, 0x0, 0x9, 0xff, + 0x10, 0x0, 0x0, 0xff, 0xf1, 0x0, 0x0, 0x0, + 0x0, 0xe, 0xff, 0x30, 0x0, 0x9, 0xff, 0x10, + 0x0, 0x9, 0xff, 0x10, 0x0, 0x0, 0xff, 0xf1, + 0x0, 0x0, 0x0, 0x0, 0xe, 0xff, 0x30, 0x0, + 0x9, 0xff, 0x10, 0x0, 0x9, 0xff, 0x10, 0x0, + 0x0, 0xff, 0xf1, 0x0, 0x0, 0x0, 0x0, 0xe, + 0xff, 0x30, 0x0, 0x9, 0xff, 0x10, 0x0, 0x9, + 0xff, 0x10, 0x0, 0x0, 0xff, 0xf1, 0x0, 0x0, + 0x0, 0x0, 0xe, 0xff, 0x30, 0x0, 0x9, 0xff, + 0x10, 0x0, 0x9, 0xff, 0x10, 0x0, 0x0, 0xff, + 0xf1, 0x0, 0x0, 0x9c, 0xba, 0xaf, 0xff, 0xba, + 0xaa, 0xad, 0xff, 0xaa, 0xaa, 0xad, 0xff, 0xba, + 0xaa, 0xaa, 0xff, 0xfb, 0xab, 0xc9, 0xcf, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfc, 0xbf, 0xee, 0xed, 0xdd, 0xdd, 0xdd, 0xdd, + 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, + 0xdd, 0xee, 0xef, 0xfb, + /* U+76EE "目" */ 0x38, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x84, 0x5f, 0xff, @@ -39044,178 +39132,179 @@ static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = { {.bitmap_index = 182115, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, {.bitmap_index = 182818, .adv_w = 640, .box_w = 35, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, {.bitmap_index = 183466, .adv_w = 640, .box_w = 34, .box_h = 37, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 184095, .adv_w = 640, .box_w = 28, .box_h = 34, .ofs_x = 6, .ofs_y = -3}, - {.bitmap_index = 184571, .adv_w = 640, .box_w = 37, .box_h = 35, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 185219, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 185922, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 186607, .adv_w = 640, .box_w = 35, .box_h = 36, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 187237, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 187940, .adv_w = 640, .box_w = 37, .box_h = 36, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 188606, .adv_w = 640, .box_w = 36, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 189308, .adv_w = 640, .box_w = 35, .box_h = 35, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 189921, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 190606, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 191291, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 191994, .adv_w = 640, .box_w = 37, .box_h = 36, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 192660, .adv_w = 640, .box_w = 36, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 193326, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 194029, .adv_w = 640, .box_w = 37, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 194732, .adv_w = 640, .box_w = 38, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 195473, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 196158, .adv_w = 640, .box_w = 35, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 196806, .adv_w = 640, .box_w = 36, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 197472, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 198194, .adv_w = 640, .box_w = 37, .box_h = 35, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 198842, .adv_w = 640, .box_w = 37, .box_h = 38, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 199545, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 200229, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 200932, .adv_w = 640, .box_w = 38, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 201673, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 202376, .adv_w = 640, .box_w = 34, .box_h = 35, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 202971, .adv_w = 640, .box_w = 36, .box_h = 34, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 203583, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 204268, .adv_w = 640, .box_w = 36, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 204880, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 205564, .adv_w = 640, .box_w = 36, .box_h = 38, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 206248, .adv_w = 640, .box_w = 29, .box_h = 36, .ofs_x = 6, .ofs_y = -3}, - {.bitmap_index = 206770, .adv_w = 640, .box_w = 36, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 207436, .adv_w = 640, .box_w = 37, .box_h = 36, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 208102, .adv_w = 640, .box_w = 36, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 208750, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 209453, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 210175, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 210897, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 211619, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 212304, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 213007, .adv_w = 640, .box_w = 36, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 213673, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 214376, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 215098, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 215820, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 216542, .adv_w = 640, .box_w = 34, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 217188, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 217910, .adv_w = 640, .box_w = 38, .box_h = 35, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 218575, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 219278, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 220000, .adv_w = 640, .box_w = 37, .box_h = 35, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 220648, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 221370, .adv_w = 640, .box_w = 36, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 222036, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 222739, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 223461, .adv_w = 640, .box_w = 37, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 224164, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 224849, .adv_w = 640, .box_w = 37, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 225515, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 226237, .adv_w = 640, .box_w = 37, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 226903, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 227587, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 228309, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 229012, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 229697, .adv_w = 640, .box_w = 39, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 230438, .adv_w = 640, .box_w = 37, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 231141, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 231863, .adv_w = 640, .box_w = 38, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 232604, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 233307, .adv_w = 640, .box_w = 37, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 233973, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 234676, .adv_w = 640, .box_w = 37, .box_h = 36, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 235342, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 236045, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 236729, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 237432, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 238135, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 238838, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 239523, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 240226, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 240910, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 241613, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 242316, .adv_w = 640, .box_w = 37, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 243019, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 243703, .adv_w = 640, .box_w = 36, .box_h = 35, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 244333, .adv_w = 640, .box_w = 36, .box_h = 34, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 244945, .adv_w = 640, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 245593, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 246315, .adv_w = 640, .box_w = 39, .box_h = 37, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 247037, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 247740, .adv_w = 640, .box_w = 36, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 248406, .adv_w = 640, .box_w = 34, .box_h = 38, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 249052, .adv_w = 640, .box_w = 34, .box_h = 38, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 249698, .adv_w = 640, .box_w = 34, .box_h = 38, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 250344, .adv_w = 640, .box_w = 36, .box_h = 39, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 251046, .adv_w = 640, .box_w = 37, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 251749, .adv_w = 640, .box_w = 36, .box_h = 34, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 252361, .adv_w = 640, .box_w = 36, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 253063, .adv_w = 640, .box_w = 35, .box_h = 36, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 253693, .adv_w = 640, .box_w = 37, .box_h = 36, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 254359, .adv_w = 640, .box_w = 37, .box_h = 36, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 255025, .adv_w = 640, .box_w = 36, .box_h = 36, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 255673, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 256395, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 257079, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 257763, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 258485, .adv_w = 640, .box_w = 36, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 259151, .adv_w = 640, .box_w = 38, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 259892, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 260576, .adv_w = 640, .box_w = 40, .box_h = 41, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 261396, .adv_w = 640, .box_w = 40, .box_h = 30, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 261996, .adv_w = 640, .box_w = 40, .box_h = 36, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 262716, .adv_w = 640, .box_w = 40, .box_h = 30, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 263316, .adv_w = 440, .box_w = 28, .box_h = 28, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 263708, .adv_w = 640, .box_w = 40, .box_h = 40, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 264508, .adv_w = 640, .box_w = 38, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 265268, .adv_w = 720, .box_w = 45, .box_h = 36, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 266078, .adv_w = 640, .box_w = 40, .box_h = 40, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 266878, .adv_w = 720, .box_w = 45, .box_h = 30, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 267553, .adv_w = 640, .box_w = 40, .box_h = 42, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 268393, .adv_w = 320, .box_w = 20, .box_h = 32, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 268713, .adv_w = 480, .box_w = 30, .box_h = 32, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 269193, .adv_w = 720, .box_w = 45, .box_h = 38, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 270048, .adv_w = 640, .box_w = 40, .box_h = 30, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 270648, .adv_w = 440, .box_w = 28, .box_h = 40, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 271208, .adv_w = 560, .box_w = 25, .box_h = 37, .ofs_x = 5, .ofs_y = -4}, - {.bitmap_index = 271671, .adv_w = 560, .box_w = 35, .box_h = 42, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 272406, .adv_w = 560, .box_w = 35, .box_h = 36, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 273036, .adv_w = 560, .box_w = 35, .box_h = 36, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 273666, .adv_w = 560, .box_w = 25, .box_h = 37, .ofs_x = 5, .ofs_y = -4}, - {.bitmap_index = 274129, .adv_w = 560, .box_w = 37, .box_h = 36, .ofs_x = -1, .ofs_y = -3}, - {.bitmap_index = 274795, .adv_w = 400, .box_w = 21, .box_h = 36, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 275173, .adv_w = 400, .box_w = 21, .box_h = 36, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 275551, .adv_w = 560, .box_w = 35, .box_h = 36, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 276181, .adv_w = 560, .box_w = 35, .box_h = 8, .ofs_x = 0, .ofs_y = 11}, - {.bitmap_index = 276321, .adv_w = 720, .box_w = 45, .box_h = 30, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 276996, .adv_w = 800, .box_w = 51, .box_h = 40, .ofs_x = -1, .ofs_y = -5}, - {.bitmap_index = 278016, .adv_w = 720, .box_w = 47, .box_h = 40, .ofs_x = -1, .ofs_y = -5}, - {.bitmap_index = 278956, .adv_w = 640, .box_w = 40, .box_h = 36, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 279676, .adv_w = 560, .box_w = 35, .box_h = 22, .ofs_x = 0, .ofs_y = 4}, - {.bitmap_index = 280061, .adv_w = 560, .box_w = 35, .box_h = 22, .ofs_x = 0, .ofs_y = 4}, - {.bitmap_index = 280446, .adv_w = 800, .box_w = 50, .box_h = 32, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 281246, .adv_w = 640, .box_w = 40, .box_h = 30, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 281846, .adv_w = 640, .box_w = 40, .box_h = 40, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 282646, .adv_w = 640, .box_w = 41, .box_h = 41, .ofs_x = -1, .ofs_y = -5}, - {.bitmap_index = 283487, .adv_w = 560, .box_w = 36, .box_h = 36, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 284135, .adv_w = 560, .box_w = 35, .box_h = 40, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 284835, .adv_w = 560, .box_w = 35, .box_h = 36, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 285465, .adv_w = 560, .box_w = 35, .box_h = 32, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 286025, .adv_w = 640, .box_w = 40, .box_h = 30, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 286625, .adv_w = 400, .box_w = 27, .box_h = 40, .ofs_x = -1, .ofs_y = -5}, - {.bitmap_index = 287165, .adv_w = 560, .box_w = 35, .box_h = 40, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 287865, .adv_w = 560, .box_w = 35, .box_h = 40, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 288565, .adv_w = 720, .box_w = 45, .box_h = 30, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 289240, .adv_w = 640, .box_w = 42, .box_h = 42, .ofs_x = -1, .ofs_y = -6}, - {.bitmap_index = 290122, .adv_w = 480, .box_w = 30, .box_h = 40, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 290722, .adv_w = 800, .box_w = 50, .box_h = 37, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 291647, .adv_w = 800, .box_w = 50, .box_h = 26, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 292297, .adv_w = 800, .box_w = 50, .box_h = 26, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 292947, .adv_w = 800, .box_w = 50, .box_h = 26, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 293597, .adv_w = 800, .box_w = 50, .box_h = 26, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 294247, .adv_w = 800, .box_w = 50, .box_h = 26, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 294897, .adv_w = 800, .box_w = 51, .box_h = 32, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 295713, .adv_w = 560, .box_w = 31, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 296333, .adv_w = 560, .box_w = 35, .box_h = 40, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 297033, .adv_w = 640, .box_w = 41, .box_h = 41, .ofs_x = -1, .ofs_y = -6}, - {.bitmap_index = 297874, .adv_w = 800, .box_w = 50, .box_h = 30, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 298624, .adv_w = 480, .box_w = 30, .box_h = 40, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 299224, .adv_w = 644, .box_w = 41, .box_h = 26, .ofs_x = 0, .ofs_y = 2} + {.bitmap_index = 184095, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 184779, .adv_w = 640, .box_w = 28, .box_h = 34, .ofs_x = 6, .ofs_y = -3}, + {.bitmap_index = 185255, .adv_w = 640, .box_w = 37, .box_h = 35, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 185903, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 186606, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 187291, .adv_w = 640, .box_w = 35, .box_h = 36, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 187921, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 188624, .adv_w = 640, .box_w = 37, .box_h = 36, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 189290, .adv_w = 640, .box_w = 36, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 189992, .adv_w = 640, .box_w = 35, .box_h = 35, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 190605, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 191290, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 191975, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 192678, .adv_w = 640, .box_w = 37, .box_h = 36, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 193344, .adv_w = 640, .box_w = 36, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 194010, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 194713, .adv_w = 640, .box_w = 37, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 195416, .adv_w = 640, .box_w = 38, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 196157, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 196842, .adv_w = 640, .box_w = 35, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 197490, .adv_w = 640, .box_w = 36, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 198156, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 198878, .adv_w = 640, .box_w = 37, .box_h = 35, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 199526, .adv_w = 640, .box_w = 37, .box_h = 38, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 200229, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 200913, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 201616, .adv_w = 640, .box_w = 38, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 202357, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 203060, .adv_w = 640, .box_w = 34, .box_h = 35, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 203655, .adv_w = 640, .box_w = 36, .box_h = 34, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 204267, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 204952, .adv_w = 640, .box_w = 36, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 205564, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 206248, .adv_w = 640, .box_w = 36, .box_h = 38, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 206932, .adv_w = 640, .box_w = 29, .box_h = 36, .ofs_x = 6, .ofs_y = -3}, + {.bitmap_index = 207454, .adv_w = 640, .box_w = 36, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 208120, .adv_w = 640, .box_w = 37, .box_h = 36, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 208786, .adv_w = 640, .box_w = 36, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 209434, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 210137, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 210859, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 211581, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 212303, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 212988, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 213691, .adv_w = 640, .box_w = 36, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 214357, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 215060, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 215782, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 216504, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 217226, .adv_w = 640, .box_w = 34, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 217872, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 218594, .adv_w = 640, .box_w = 38, .box_h = 35, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 219259, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 219962, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 220684, .adv_w = 640, .box_w = 37, .box_h = 35, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 221332, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 222054, .adv_w = 640, .box_w = 36, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 222720, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 223423, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 224145, .adv_w = 640, .box_w = 37, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 224848, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 225533, .adv_w = 640, .box_w = 37, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 226199, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 226921, .adv_w = 640, .box_w = 37, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 227587, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 228271, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 228993, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 229696, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 230381, .adv_w = 640, .box_w = 39, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 231122, .adv_w = 640, .box_w = 37, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 231825, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 232547, .adv_w = 640, .box_w = 38, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 233288, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 233991, .adv_w = 640, .box_w = 37, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 234657, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 235360, .adv_w = 640, .box_w = 37, .box_h = 36, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 236026, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 236729, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 237413, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 238116, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 238819, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 239522, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 240207, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 240910, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 241594, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 242297, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 243000, .adv_w = 640, .box_w = 37, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 243703, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 244387, .adv_w = 640, .box_w = 36, .box_h = 35, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 245017, .adv_w = 640, .box_w = 36, .box_h = 34, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 245629, .adv_w = 640, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 246277, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 246999, .adv_w = 640, .box_w = 39, .box_h = 37, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 247721, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 248424, .adv_w = 640, .box_w = 36, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 249090, .adv_w = 640, .box_w = 34, .box_h = 38, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 249736, .adv_w = 640, .box_w = 34, .box_h = 38, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 250382, .adv_w = 640, .box_w = 34, .box_h = 38, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 251028, .adv_w = 640, .box_w = 36, .box_h = 39, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 251730, .adv_w = 640, .box_w = 37, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 252433, .adv_w = 640, .box_w = 36, .box_h = 34, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 253045, .adv_w = 640, .box_w = 36, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 253747, .adv_w = 640, .box_w = 35, .box_h = 36, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 254377, .adv_w = 640, .box_w = 37, .box_h = 36, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 255043, .adv_w = 640, .box_w = 37, .box_h = 36, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 255709, .adv_w = 640, .box_w = 36, .box_h = 36, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 256357, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 257079, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 257763, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 258447, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 259169, .adv_w = 640, .box_w = 36, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 259835, .adv_w = 640, .box_w = 38, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 260576, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 261260, .adv_w = 640, .box_w = 40, .box_h = 41, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 262080, .adv_w = 640, .box_w = 40, .box_h = 30, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 262680, .adv_w = 640, .box_w = 40, .box_h = 36, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 263400, .adv_w = 640, .box_w = 40, .box_h = 30, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 264000, .adv_w = 440, .box_w = 28, .box_h = 28, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 264392, .adv_w = 640, .box_w = 40, .box_h = 40, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 265192, .adv_w = 640, .box_w = 38, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 265952, .adv_w = 720, .box_w = 45, .box_h = 36, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 266762, .adv_w = 640, .box_w = 40, .box_h = 40, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 267562, .adv_w = 720, .box_w = 45, .box_h = 30, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 268237, .adv_w = 640, .box_w = 40, .box_h = 42, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 269077, .adv_w = 320, .box_w = 20, .box_h = 32, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 269397, .adv_w = 480, .box_w = 30, .box_h = 32, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 269877, .adv_w = 720, .box_w = 45, .box_h = 38, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 270732, .adv_w = 640, .box_w = 40, .box_h = 30, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 271332, .adv_w = 440, .box_w = 28, .box_h = 40, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 271892, .adv_w = 560, .box_w = 25, .box_h = 37, .ofs_x = 5, .ofs_y = -4}, + {.bitmap_index = 272355, .adv_w = 560, .box_w = 35, .box_h = 42, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 273090, .adv_w = 560, .box_w = 35, .box_h = 36, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 273720, .adv_w = 560, .box_w = 35, .box_h = 36, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 274350, .adv_w = 560, .box_w = 25, .box_h = 37, .ofs_x = 5, .ofs_y = -4}, + {.bitmap_index = 274813, .adv_w = 560, .box_w = 37, .box_h = 36, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 275479, .adv_w = 400, .box_w = 21, .box_h = 36, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 275857, .adv_w = 400, .box_w = 21, .box_h = 36, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 276235, .adv_w = 560, .box_w = 35, .box_h = 36, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 276865, .adv_w = 560, .box_w = 35, .box_h = 8, .ofs_x = 0, .ofs_y = 11}, + {.bitmap_index = 277005, .adv_w = 720, .box_w = 45, .box_h = 30, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 277680, .adv_w = 800, .box_w = 51, .box_h = 40, .ofs_x = -1, .ofs_y = -5}, + {.bitmap_index = 278700, .adv_w = 720, .box_w = 47, .box_h = 40, .ofs_x = -1, .ofs_y = -5}, + {.bitmap_index = 279640, .adv_w = 640, .box_w = 40, .box_h = 36, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 280360, .adv_w = 560, .box_w = 35, .box_h = 22, .ofs_x = 0, .ofs_y = 4}, + {.bitmap_index = 280745, .adv_w = 560, .box_w = 35, .box_h = 22, .ofs_x = 0, .ofs_y = 4}, + {.bitmap_index = 281130, .adv_w = 800, .box_w = 50, .box_h = 32, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 281930, .adv_w = 640, .box_w = 40, .box_h = 30, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 282530, .adv_w = 640, .box_w = 40, .box_h = 40, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 283330, .adv_w = 640, .box_w = 41, .box_h = 41, .ofs_x = -1, .ofs_y = -5}, + {.bitmap_index = 284171, .adv_w = 560, .box_w = 36, .box_h = 36, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 284819, .adv_w = 560, .box_w = 35, .box_h = 40, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 285519, .adv_w = 560, .box_w = 35, .box_h = 36, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 286149, .adv_w = 560, .box_w = 35, .box_h = 32, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 286709, .adv_w = 640, .box_w = 40, .box_h = 30, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 287309, .adv_w = 400, .box_w = 27, .box_h = 40, .ofs_x = -1, .ofs_y = -5}, + {.bitmap_index = 287849, .adv_w = 560, .box_w = 35, .box_h = 40, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 288549, .adv_w = 560, .box_w = 35, .box_h = 40, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 289249, .adv_w = 720, .box_w = 45, .box_h = 30, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 289924, .adv_w = 640, .box_w = 42, .box_h = 42, .ofs_x = -1, .ofs_y = -6}, + {.bitmap_index = 290806, .adv_w = 480, .box_w = 30, .box_h = 40, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 291406, .adv_w = 800, .box_w = 50, .box_h = 37, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 292331, .adv_w = 800, .box_w = 50, .box_h = 26, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 292981, .adv_w = 800, .box_w = 50, .box_h = 26, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 293631, .adv_w = 800, .box_w = 50, .box_h = 26, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 294281, .adv_w = 800, .box_w = 50, .box_h = 26, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 294931, .adv_w = 800, .box_w = 50, .box_h = 26, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 295581, .adv_w = 800, .box_w = 51, .box_h = 32, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 296397, .adv_w = 560, .box_w = 31, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 297017, .adv_w = 560, .box_w = 35, .box_h = 40, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 297717, .adv_w = 640, .box_w = 41, .box_h = 41, .ofs_x = -1, .ofs_y = -6}, + {.bitmap_index = 298558, .adv_w = 800, .box_w = 50, .box_h = 30, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 299308, .adv_w = 480, .box_w = 30, .box_h = 40, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 299908, .adv_w = 644, .box_w = 41, .box_h = 26, .ofs_x = 0, .ofs_y = 2} }; /*--------------------- @@ -39252,29 +39341,29 @@ static const uint16_t unicode_list_1[] = { 0x6bb0, 0x6bf1, 0x6c25, 0x6c38, 0x6c8b, 0x6c91, 0x6c9b, 0x6cd8, 0x6d55, 0x6d79, 0x6de0, 0x6e2a, 0x6e31, 0x7009, 0x7018, 0x7076, 0x7086, 0x7198, 0x7206, 0x72ff, 0x7300, 0x7356, 0x746f, 0x7478, - 0x7485, 0x748b, 0x749c, 0x74a9, 0x75d4, 0x763e, 0x7644, 0x765b, - 0x7670, 0x768c, 0x773d, 0x7751, 0x77be, 0x788a, 0x78d1, 0x791d, - 0x795b, 0x79ca, 0x79d4, 0x7a2e, 0x7a3f, 0x7a76, 0x7c4b, 0x7c70, - 0x7c72, 0x7e0f, 0x7e1f, 0x7e21, 0x7e23, 0x7e2c, 0x7e2f, 0x7e3a, - 0x7ea1, 0x7ebe, 0x7f55, 0x7f83, 0x801c, 0x804d, 0x813a, 0x8144, - 0x81ff, 0x8307, 0x832c, 0x851f, 0x8652, 0x879c, 0x87b8, 0x87fb, - 0x8815, 0x88d1, 0x8914, 0x8916, 0x8918, 0x8922, 0x8ab6, 0x8af1, - 0x8af4, 0x8afe, 0x8b00, 0x8b0e, 0x8b0f, 0x8b11, 0x8b16, 0x8b25, - 0x8b47, 0x8b53, 0x8c75, 0x8c78, 0x8cd5, 0x8d7a, 0x8eb8, 0x8ebc, - 0x8ebe, 0x8ec4, 0x8ecd, 0x8ee3, 0x8f17, 0x8f20, 0x8f24, 0x8f29, - 0x8f2b, 0x8f2e, 0x8f49, 0x8f4d, 0x8f50, 0x8f51, 0x8f59, 0x8f6a, - 0x8f6f, 0x8fa3, 0x9038, 0x904d, 0x911d, 0x911f, 0x93ef, 0x9451, - 0x947e, 0x94ac, 0x94cf, 0x953d, 0x953e, 0x9544, 0x95b4, 0x95e0, - 0x96b2, 0x9743, 0x97c5, 0x97c6, 0x97c9, 0x97d4, 0x97e1, 0x981e, - 0x98c1, 0x99dc, 0x9d73, 0x9df6, 0x9e28, 0xef51, 0xef58, 0xef5b, - 0xef5c, 0xef5d, 0xef61, 0xef63, 0xef65, 0xef69, 0xef6c, 0xef71, - 0xef76, 0xef77, 0xef78, 0xef8e, 0xef93, 0xef98, 0xef9b, 0xef9c, - 0xef9d, 0xefa1, 0xefa2, 0xefa3, 0xefa4, 0xefb7, 0xefb8, 0xefbe, - 0xefc0, 0xefc1, 0xefc4, 0xefc7, 0xefc8, 0xefc9, 0xefcb, 0xefe3, - 0xefe5, 0xf014, 0xf015, 0xf017, 0xf019, 0xf030, 0xf037, 0xf03a, - 0xf043, 0xf06c, 0xf074, 0xf0ab, 0xf13b, 0xf190, 0xf191, 0xf192, - 0xf193, 0xf194, 0xf1d7, 0xf1e3, 0xf23d, 0xf254, 0xf4aa, 0xf712, - 0xf7f2 + 0x7485, 0x748b, 0x749c, 0x74a9, 0x75d4, 0x7628, 0x763e, 0x7644, + 0x765b, 0x7670, 0x768c, 0x773d, 0x7751, 0x77be, 0x788a, 0x78d1, + 0x791d, 0x795b, 0x79ca, 0x79d4, 0x7a2e, 0x7a3f, 0x7a76, 0x7c4b, + 0x7c70, 0x7c72, 0x7e0f, 0x7e1f, 0x7e21, 0x7e23, 0x7e2c, 0x7e2f, + 0x7e3a, 0x7ea1, 0x7ebe, 0x7f55, 0x7f83, 0x801c, 0x804d, 0x813a, + 0x8144, 0x81ff, 0x8307, 0x832c, 0x851f, 0x8652, 0x879c, 0x87b8, + 0x87fb, 0x8815, 0x88d1, 0x8914, 0x8916, 0x8918, 0x8922, 0x8ab6, + 0x8af1, 0x8af4, 0x8afe, 0x8b00, 0x8b0e, 0x8b0f, 0x8b11, 0x8b16, + 0x8b25, 0x8b47, 0x8b53, 0x8c75, 0x8c78, 0x8cd5, 0x8d7a, 0x8eb8, + 0x8ebc, 0x8ebe, 0x8ec4, 0x8ecd, 0x8ee3, 0x8f17, 0x8f20, 0x8f24, + 0x8f29, 0x8f2b, 0x8f2e, 0x8f49, 0x8f4d, 0x8f50, 0x8f51, 0x8f59, + 0x8f6a, 0x8f6f, 0x8fa3, 0x9038, 0x904d, 0x911d, 0x911f, 0x93ef, + 0x9451, 0x947e, 0x94ac, 0x94cf, 0x953d, 0x953e, 0x9544, 0x95b4, + 0x95e0, 0x96b2, 0x9743, 0x97c5, 0x97c6, 0x97c9, 0x97d4, 0x97e1, + 0x981e, 0x98c1, 0x99dc, 0x9d73, 0x9df6, 0x9e28, 0xef51, 0xef58, + 0xef5b, 0xef5c, 0xef5d, 0xef61, 0xef63, 0xef65, 0xef69, 0xef6c, + 0xef71, 0xef76, 0xef77, 0xef78, 0xef8e, 0xef93, 0xef98, 0xef9b, + 0xef9c, 0xef9d, 0xefa1, 0xefa2, 0xefa3, 0xefa4, 0xefb7, 0xefb8, + 0xefbe, 0xefc0, 0xefc1, 0xefc4, 0xefc7, 0xefc8, 0xefc9, 0xefcb, + 0xefe3, 0xefe5, 0xf014, 0xf015, 0xf017, 0xf019, 0xf030, 0xf037, + 0xf03a, 0xf043, 0xf06c, 0xf074, 0xf0ab, 0xf13b, 0xf190, 0xf191, + 0xf192, 0xf193, 0xf194, 0xf1d7, 0xf1e3, 0xf23d, 0xf254, 0xf4aa, + 0xf712, 0xf7f2 }; /*Collect the unicode lists and glyph_id offsets*/ @@ -39286,7 +39375,7 @@ static const lv_font_fmt_txt_cmap_t cmaps[] = }, { .range_start = 176, .range_length = 63475, .glyph_id_start = 96, - .unicode_list = unicode_list_1, .glyph_id_ofs_list = NULL, .list_length = 409, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY + .unicode_list = unicode_list_1, .glyph_id_ofs_list = NULL, .list_length = 410, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY } }; @@ -39361,7 +39450,7 @@ static const uint8_t kern_left_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0 + 0, 0 }; /*Map glyph_ids to kern right classes*/ @@ -39430,7 +39519,7 @@ static const uint8_t kern_right_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0 + 0, 0 }; /*Kern values between classes*/ diff --git a/lib/lvgl/lvgl/src/font/lv_font_montserrat_42.c b/lib/lvgl/lvgl/src/font/lv_font_montserrat_42.c index 2124f4e9..bb855aa0 100644 --- a/lib/lvgl/lvgl/src/font/lv_font_montserrat_42.c +++ b/lib/lvgl/lvgl/src/font/lv_font_montserrat_42.c @@ -1,7 +1,7 @@ /******************************************************************************* * Size: 42 px * Bpp: 4 - * Opts: --bpp 4 --size 42 --no-compress --font Montserrat-Medium.ttf --range 32-127,176,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20351,20363,20391,20445,20449,20462,20463,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29366,29615,29616,29702,29983,29992,30005,30011,30028,30041,30340,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31181,31243,31354,31364,31454,31471,31526,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33719,33756,34255,34562,34892,34920,34987,35013,35201,35268,35270,35272,35282,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35831,35843,36133,36136,36229,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --format lvgl -o out/lv_font_montserrat_42.c + * Opts: --bpp 4 --size 42 --no-compress --font Montserrat-Medium.ttf --range 32-127,176,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20351,20363,20391,20445,20449,20462,20463,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29366,29615,29616,29702,29983,29992,30005,30011,30028,30041,30340,30424,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31181,31243,31354,31364,31454,31471,31526,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33719,33756,34255,34562,34892,34920,34987,35013,35201,35268,35270,35272,35282,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35831,35843,36133,36136,36229,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --format lvgl -o out/lv_font_montserrat_42.c ******************************************************************************/ #ifdef LV_LVGL_H_INCLUDE_SIMPLE @@ -26139,6 +26139,106 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+76D8 "盘" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x4, 0xfe, 0xb8, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, + 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xb, 0xff, 0xf0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x12, 0x22, 0x22, 0x2f, + 0xff, 0xa2, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x40, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x6f, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x6f, 0xff, 0xba, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, + 0xaa, 0xaa, 0xae, 0xff, 0x30, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x5f, 0xff, 0x20, 0x0, + 0x0, 0x63, 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, + 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x5f, 0xff, 0x20, 0x0, 0x4, 0xff, 0xb3, 0x0, + 0x0, 0x0, 0xc, 0xff, 0x20, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x5f, 0xff, 0x20, 0x0, + 0xd, 0xff, 0xff, 0xa1, 0x0, 0x0, 0xc, 0xff, + 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x5f, 0xff, 0x20, 0x0, 0x0, 0x7e, 0xff, 0xf8, + 0x0, 0x0, 0xc, 0xff, 0x20, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x5f, 0xff, 0x20, 0x0, + 0x0, 0x0, 0x9f, 0xc0, 0x0, 0x0, 0xc, 0xff, + 0x20, 0x0, 0x0, 0x0, 0x0, 0x43, 0x22, 0x21, + 0x6f, 0xff, 0x31, 0x11, 0x11, 0x11, 0x15, 0x31, + 0x11, 0x11, 0x1d, 0xff, 0x31, 0x22, 0x23, 0x10, + 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x60, 0x3, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x60, + 0x2, 0xcc, 0xbb, 0xaa, 0xdf, 0xfe, 0xaa, 0xaa, + 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaf, 0xff, + 0xaa, 0xbb, 0xcc, 0x50, 0x0, 0x0, 0x0, 0x0, + 0xaf, 0xf9, 0x0, 0x0, 0x10, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xef, 0xf5, 0x0, 0x0, + 0xbe, 0x81, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, + 0xff, 0xf1, 0x0, 0x4, 0xff, 0xff, 0x92, 0x0, + 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xe, 0xff, 0xa0, 0x0, 0x1, + 0x8f, 0xff, 0xff, 0xa1, 0x0, 0x0, 0xf, 0xff, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xbf, + 0xff, 0x30, 0x0, 0x0, 0x1, 0x8f, 0xff, 0xb0, + 0x5, 0x56, 0xbf, 0xfe, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xb, 0xff, 0xfa, 0x0, 0x0, 0x0, + 0x0, 0x2, 0xbf, 0x10, 0xb, 0xff, 0xff, 0xfc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9f, 0xff, + 0xd1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x0, + 0x3, 0xff, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x5, 0xfe, 0x20, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xee, 0xb7, 0x20, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x34, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xe, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0xd, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, + 0x0, 0x0, 0xd, 0xff, 0xc9, 0x99, 0x99, 0xff, + 0xf9, 0x99, 0x99, 0xaf, 0xfd, 0x99, 0x99, 0x9e, + 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, + 0x80, 0x0, 0x0, 0xef, 0xd0, 0x0, 0x0, 0x2f, + 0xfa, 0x0, 0x0, 0xd, 0xff, 0x80, 0x0, 0x0, + 0x0, 0x0, 0xc, 0xff, 0x80, 0x0, 0x0, 0xef, + 0xd0, 0x0, 0x0, 0x2f, 0xfa, 0x0, 0x0, 0xd, + 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, + 0x80, 0x0, 0x0, 0xef, 0xd0, 0x0, 0x0, 0x2f, + 0xfa, 0x0, 0x0, 0xd, 0xff, 0x70, 0x0, 0x0, + 0x0, 0x0, 0xc, 0xff, 0x80, 0x0, 0x0, 0xef, + 0xd0, 0x0, 0x0, 0x2f, 0xfa, 0x0, 0x0, 0xd, + 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, + 0x80, 0x0, 0x0, 0xef, 0xd0, 0x0, 0x0, 0x2f, + 0xfa, 0x0, 0x0, 0xd, 0xff, 0x70, 0x0, 0x0, + 0x0, 0x0, 0xc, 0xff, 0x80, 0x0, 0x0, 0xef, + 0xd0, 0x0, 0x0, 0x2f, 0xfa, 0x0, 0x0, 0xd, + 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, + 0x80, 0x0, 0x0, 0xef, 0xd0, 0x0, 0x0, 0x2f, + 0xfa, 0x0, 0x0, 0xd, 0xff, 0x70, 0x0, 0x0, + 0xce, 0xdc, 0xcf, 0xff, 0xec, 0xcc, 0xcc, 0xff, + 0xfc, 0xcc, 0xcc, 0xcf, 0xfe, 0xcc, 0xcc, 0xcf, + 0xff, 0xec, 0xdd, 0xea, 0xdf, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, + 0xdf, 0xee, 0xed, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, + 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, + 0xde, 0xee, 0xef, 0xfa, + /* U+76EE "目" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, @@ -42916,178 +43016,179 @@ static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = { {.bitmap_index = 200365, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, {.bitmap_index = 201126, .adv_w = 672, .box_w = 37, .box_h = 39, .ofs_x = 3, .ofs_y = -4}, {.bitmap_index = 201848, .adv_w = 672, .box_w = 36, .box_h = 39, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 202550, .adv_w = 672, .box_w = 30, .box_h = 37, .ofs_x = 6, .ofs_y = -4}, - {.bitmap_index = 203105, .adv_w = 672, .box_w = 39, .box_h = 37, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 203827, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 204607, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 2, .ofs_y = -6}, - {.bitmap_index = 205368, .adv_w = 672, .box_w = 38, .box_h = 38, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 206090, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 206870, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 207611, .adv_w = 672, .box_w = 39, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 208391, .adv_w = 672, .box_w = 37, .box_h = 37, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 209076, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 209817, .adv_w = 672, .box_w = 39, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 210597, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 211377, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 212138, .adv_w = 672, .box_w = 38, .box_h = 39, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 212879, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 213679, .adv_w = 672, .box_w = 39, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 214459, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 215259, .adv_w = 672, .box_w = 38, .box_h = 39, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 216000, .adv_w = 672, .box_w = 37, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 216703, .adv_w = 672, .box_w = 37, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 217425, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 218205, .adv_w = 672, .box_w = 39, .box_h = 37, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 218927, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 219688, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 220468, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 221248, .adv_w = 672, .box_w = 40, .box_h = 41, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 222068, .adv_w = 672, .box_w = 40, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 222828, .adv_w = 672, .box_w = 36, .box_h = 37, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 223494, .adv_w = 672, .box_w = 38, .box_h = 36, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 224178, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 224919, .adv_w = 672, .box_w = 38, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 225603, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 226344, .adv_w = 672, .box_w = 38, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 227085, .adv_w = 672, .box_w = 30, .box_h = 39, .ofs_x = 6, .ofs_y = -4}, - {.bitmap_index = 227670, .adv_w = 672, .box_w = 38, .box_h = 39, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 228411, .adv_w = 672, .box_w = 38, .box_h = 38, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 229133, .adv_w = 672, .box_w = 38, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 229855, .adv_w = 672, .box_w = 40, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 230615, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 231415, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 202550, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 203330, .adv_w = 672, .box_w = 30, .box_h = 37, .ofs_x = 6, .ofs_y = -4}, + {.bitmap_index = 203885, .adv_w = 672, .box_w = 39, .box_h = 37, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 204607, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 205387, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 206148, .adv_w = 672, .box_w = 38, .box_h = 38, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 206870, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 207650, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 208391, .adv_w = 672, .box_w = 39, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 209171, .adv_w = 672, .box_w = 37, .box_h = 37, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 209856, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 210597, .adv_w = 672, .box_w = 39, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 211377, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 212157, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 212918, .adv_w = 672, .box_w = 38, .box_h = 39, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 213659, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 214459, .adv_w = 672, .box_w = 39, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 215239, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 216039, .adv_w = 672, .box_w = 38, .box_h = 39, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 216780, .adv_w = 672, .box_w = 37, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 217483, .adv_w = 672, .box_w = 37, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 218205, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 218985, .adv_w = 672, .box_w = 39, .box_h = 37, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 219707, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 220468, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 221248, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 222028, .adv_w = 672, .box_w = 40, .box_h = 41, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 222848, .adv_w = 672, .box_w = 40, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 223608, .adv_w = 672, .box_w = 36, .box_h = 37, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 224274, .adv_w = 672, .box_w = 38, .box_h = 36, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 224958, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 225699, .adv_w = 672, .box_w = 38, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 226383, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 227124, .adv_w = 672, .box_w = 38, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 227865, .adv_w = 672, .box_w = 30, .box_h = 39, .ofs_x = 6, .ofs_y = -4}, + {.bitmap_index = 228450, .adv_w = 672, .box_w = 38, .box_h = 39, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 229191, .adv_w = 672, .box_w = 38, .box_h = 38, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 229913, .adv_w = 672, .box_w = 38, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 230635, .adv_w = 672, .box_w = 40, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 231395, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, {.bitmap_index = 232195, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 232975, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 233736, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 234516, .adv_w = 672, .box_w = 38, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 235238, .adv_w = 672, .box_w = 40, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 235998, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 236798, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 237598, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 238398, .adv_w = 672, .box_w = 36, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 239118, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 239898, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 240639, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 241400, .adv_w = 672, .box_w = 39, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 242180, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 242921, .adv_w = 672, .box_w = 39, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 243701, .adv_w = 672, .box_w = 38, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 244461, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 245241, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 246041, .adv_w = 672, .box_w = 39, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 246821, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 247601, .adv_w = 672, .box_w = 38, .box_h = 38, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 248323, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 249103, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 249864, .adv_w = 672, .box_w = 40, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 250624, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 232975, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 233755, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 234516, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 235296, .adv_w = 672, .box_w = 38, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 236018, .adv_w = 672, .box_w = 40, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 236778, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 237578, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 238378, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 239178, .adv_w = 672, .box_w = 36, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 239898, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 240678, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 241419, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 242180, .adv_w = 672, .box_w = 39, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 242960, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 243701, .adv_w = 672, .box_w = 39, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 244481, .adv_w = 672, .box_w = 38, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 245241, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 246021, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 246821, .adv_w = 672, .box_w = 39, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 247601, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 248381, .adv_w = 672, .box_w = 38, .box_h = 38, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 249103, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 249883, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 250644, .adv_w = 672, .box_w = 40, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, {.bitmap_index = 251404, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 252184, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 252945, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 253725, .adv_w = 672, .box_w = 39, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 254505, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 255305, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 256105, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 256885, .adv_w = 672, .box_w = 38, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 257588, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 258349, .adv_w = 672, .box_w = 38, .box_h = 39, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 259090, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 259890, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 252184, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 252964, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 253725, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 254505, .adv_w = 672, .box_w = 39, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 255285, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 256085, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 256885, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 257665, .adv_w = 672, .box_w = 38, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 258368, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 259129, .adv_w = 672, .box_w = 38, .box_h = 39, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 259870, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, {.bitmap_index = 260670, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 261450, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 262191, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 262971, .adv_w = 672, .box_w = 38, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 263693, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 264434, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 265214, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 266014, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 266794, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 267555, .adv_w = 672, .box_w = 40, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 268315, .adv_w = 672, .box_w = 38, .box_h = 37, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 269018, .adv_w = 672, .box_w = 38, .box_h = 36, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 269702, .adv_w = 672, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 270424, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 271185, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 271965, .adv_w = 672, .box_w = 41, .box_h = 40, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 272785, .adv_w = 672, .box_w = 38, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 273507, .adv_w = 672, .box_w = 36, .box_h = 40, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 274227, .adv_w = 672, .box_w = 36, .box_h = 40, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 274947, .adv_w = 672, .box_w = 36, .box_h = 40, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 275667, .adv_w = 672, .box_w = 39, .box_h = 40, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 276447, .adv_w = 672, .box_w = 39, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 277227, .adv_w = 672, .box_w = 38, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 277911, .adv_w = 672, .box_w = 38, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 278671, .adv_w = 672, .box_w = 36, .box_h = 38, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 279355, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 280096, .adv_w = 672, .box_w = 39, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 280818, .adv_w = 672, .box_w = 38, .box_h = 38, .ofs_x = 2, .ofs_y = -6}, - {.bitmap_index = 281540, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 282320, .adv_w = 672, .box_w = 40, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 283080, .adv_w = 672, .box_w = 40, .box_h = 38, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 283840, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 284640, .adv_w = 672, .box_w = 37, .box_h = 38, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 285343, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 286143, .adv_w = 672, .box_w = 40, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 286903, .adv_w = 672, .box_w = 43, .box_h = 44, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 287849, .adv_w = 672, .box_w = 42, .box_h = 32, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 288521, .adv_w = 672, .box_w = 42, .box_h = 38, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 289319, .adv_w = 672, .box_w = 42, .box_h = 32, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 289991, .adv_w = 462, .box_w = 29, .box_h = 30, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 290426, .adv_w = 672, .box_w = 42, .box_h = 42, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 291308, .adv_w = 672, .box_w = 40, .box_h = 43, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 292168, .adv_w = 756, .box_w = 48, .box_h = 38, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 293080, .adv_w = 672, .box_w = 42, .box_h = 43, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 293983, .adv_w = 756, .box_w = 48, .box_h = 32, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 294751, .adv_w = 672, .box_w = 42, .box_h = 43, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 295654, .adv_w = 336, .box_w = 21, .box_h = 33, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 296001, .adv_w = 504, .box_w = 32, .box_h = 33, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 296529, .adv_w = 756, .box_w = 48, .box_h = 41, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 297513, .adv_w = 672, .box_w = 42, .box_h = 32, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 298185, .adv_w = 462, .box_w = 29, .box_h = 43, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 298809, .adv_w = 588, .box_w = 27, .box_h = 39, .ofs_x = 5, .ofs_y = -4}, - {.bitmap_index = 299336, .adv_w = 588, .box_w = 37, .box_h = 44, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 300150, .adv_w = 588, .box_w = 37, .box_h = 38, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 300853, .adv_w = 588, .box_w = 37, .box_h = 38, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 301556, .adv_w = 588, .box_w = 27, .box_h = 39, .ofs_x = 5, .ofs_y = -4}, - {.bitmap_index = 302083, .adv_w = 588, .box_w = 39, .box_h = 38, .ofs_x = -1, .ofs_y = -3}, - {.bitmap_index = 302824, .adv_w = 420, .box_w = 23, .box_h = 37, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 303250, .adv_w = 420, .box_w = 23, .box_h = 37, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 303676, .adv_w = 588, .box_w = 37, .box_h = 38, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 304379, .adv_w = 588, .box_w = 37, .box_h = 9, .ofs_x = 0, .ofs_y = 11}, - {.bitmap_index = 304546, .adv_w = 756, .box_w = 48, .box_h = 32, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 305314, .adv_w = 840, .box_w = 53, .box_h = 43, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 306454, .adv_w = 756, .box_w = 49, .box_h = 43, .ofs_x = -1, .ofs_y = -6}, - {.bitmap_index = 307508, .adv_w = 672, .box_w = 42, .box_h = 39, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 308327, .adv_w = 588, .box_w = 37, .box_h = 23, .ofs_x = 0, .ofs_y = 4}, - {.bitmap_index = 308753, .adv_w = 588, .box_w = 37, .box_h = 23, .ofs_x = 0, .ofs_y = 4}, - {.bitmap_index = 309179, .adv_w = 840, .box_w = 53, .box_h = 33, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 310054, .adv_w = 672, .box_w = 42, .box_h = 32, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 310726, .adv_w = 672, .box_w = 42, .box_h = 43, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 311629, .adv_w = 672, .box_w = 43, .box_h = 44, .ofs_x = -1, .ofs_y = -6}, - {.bitmap_index = 312575, .adv_w = 588, .box_w = 38, .box_h = 38, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 313297, .adv_w = 588, .box_w = 37, .box_h = 43, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 314093, .adv_w = 588, .box_w = 37, .box_h = 38, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 314796, .adv_w = 588, .box_w = 37, .box_h = 33, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 315407, .adv_w = 672, .box_w = 42, .box_h = 32, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 316079, .adv_w = 420, .box_w = 28, .box_h = 43, .ofs_x = -1, .ofs_y = -6}, - {.bitmap_index = 316681, .adv_w = 588, .box_w = 37, .box_h = 43, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 317477, .adv_w = 588, .box_w = 37, .box_h = 43, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 318273, .adv_w = 756, .box_w = 48, .box_h = 32, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 319041, .adv_w = 672, .box_w = 44, .box_h = 44, .ofs_x = -1, .ofs_y = -6}, - {.bitmap_index = 320009, .adv_w = 504, .box_w = 32, .box_h = 43, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 320697, .adv_w = 840, .box_w = 53, .box_h = 39, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 321731, .adv_w = 840, .box_w = 53, .box_h = 27, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 322447, .adv_w = 840, .box_w = 53, .box_h = 27, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 323163, .adv_w = 840, .box_w = 53, .box_h = 27, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 323879, .adv_w = 840, .box_w = 53, .box_h = 27, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 324595, .adv_w = 840, .box_w = 53, .box_h = 27, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 325311, .adv_w = 840, .box_w = 53, .box_h = 33, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 326186, .adv_w = 588, .box_w = 33, .box_h = 43, .ofs_x = 2, .ofs_y = -6}, - {.bitmap_index = 326896, .adv_w = 588, .box_w = 37, .box_h = 43, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 327692, .adv_w = 672, .box_w = 43, .box_h = 43, .ofs_x = -1, .ofs_y = -6}, - {.bitmap_index = 328617, .adv_w = 840, .box_w = 53, .box_h = 32, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 329465, .adv_w = 504, .box_w = 32, .box_h = 43, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 330153, .adv_w = 676, .box_w = 43, .box_h = 28, .ofs_x = 0, .ofs_y = 2} + {.bitmap_index = 261450, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 262230, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 262971, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 263751, .adv_w = 672, .box_w = 38, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 264473, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 265214, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 265994, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 266794, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 267574, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 268335, .adv_w = 672, .box_w = 40, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 269095, .adv_w = 672, .box_w = 38, .box_h = 37, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 269798, .adv_w = 672, .box_w = 38, .box_h = 36, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 270482, .adv_w = 672, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 271204, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 271965, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 272745, .adv_w = 672, .box_w = 41, .box_h = 40, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 273565, .adv_w = 672, .box_w = 38, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 274287, .adv_w = 672, .box_w = 36, .box_h = 40, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 275007, .adv_w = 672, .box_w = 36, .box_h = 40, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 275727, .adv_w = 672, .box_w = 36, .box_h = 40, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 276447, .adv_w = 672, .box_w = 39, .box_h = 40, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 277227, .adv_w = 672, .box_w = 39, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 278007, .adv_w = 672, .box_w = 38, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 278691, .adv_w = 672, .box_w = 38, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 279451, .adv_w = 672, .box_w = 36, .box_h = 38, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 280135, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 280876, .adv_w = 672, .box_w = 39, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 281598, .adv_w = 672, .box_w = 38, .box_h = 38, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 282320, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 283100, .adv_w = 672, .box_w = 40, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 283860, .adv_w = 672, .box_w = 40, .box_h = 38, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 284620, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 285420, .adv_w = 672, .box_w = 37, .box_h = 38, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 286123, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 286923, .adv_w = 672, .box_w = 40, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 287683, .adv_w = 672, .box_w = 43, .box_h = 44, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 288629, .adv_w = 672, .box_w = 42, .box_h = 32, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 289301, .adv_w = 672, .box_w = 42, .box_h = 38, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 290099, .adv_w = 672, .box_w = 42, .box_h = 32, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 290771, .adv_w = 462, .box_w = 29, .box_h = 30, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 291206, .adv_w = 672, .box_w = 42, .box_h = 42, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 292088, .adv_w = 672, .box_w = 40, .box_h = 43, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 292948, .adv_w = 756, .box_w = 48, .box_h = 38, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 293860, .adv_w = 672, .box_w = 42, .box_h = 43, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 294763, .adv_w = 756, .box_w = 48, .box_h = 32, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 295531, .adv_w = 672, .box_w = 42, .box_h = 43, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 296434, .adv_w = 336, .box_w = 21, .box_h = 33, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 296781, .adv_w = 504, .box_w = 32, .box_h = 33, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 297309, .adv_w = 756, .box_w = 48, .box_h = 41, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 298293, .adv_w = 672, .box_w = 42, .box_h = 32, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 298965, .adv_w = 462, .box_w = 29, .box_h = 43, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 299589, .adv_w = 588, .box_w = 27, .box_h = 39, .ofs_x = 5, .ofs_y = -4}, + {.bitmap_index = 300116, .adv_w = 588, .box_w = 37, .box_h = 44, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 300930, .adv_w = 588, .box_w = 37, .box_h = 38, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 301633, .adv_w = 588, .box_w = 37, .box_h = 38, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 302336, .adv_w = 588, .box_w = 27, .box_h = 39, .ofs_x = 5, .ofs_y = -4}, + {.bitmap_index = 302863, .adv_w = 588, .box_w = 39, .box_h = 38, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 303604, .adv_w = 420, .box_w = 23, .box_h = 37, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 304030, .adv_w = 420, .box_w = 23, .box_h = 37, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 304456, .adv_w = 588, .box_w = 37, .box_h = 38, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 305159, .adv_w = 588, .box_w = 37, .box_h = 9, .ofs_x = 0, .ofs_y = 11}, + {.bitmap_index = 305326, .adv_w = 756, .box_w = 48, .box_h = 32, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 306094, .adv_w = 840, .box_w = 53, .box_h = 43, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 307234, .adv_w = 756, .box_w = 49, .box_h = 43, .ofs_x = -1, .ofs_y = -6}, + {.bitmap_index = 308288, .adv_w = 672, .box_w = 42, .box_h = 39, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 309107, .adv_w = 588, .box_w = 37, .box_h = 23, .ofs_x = 0, .ofs_y = 4}, + {.bitmap_index = 309533, .adv_w = 588, .box_w = 37, .box_h = 23, .ofs_x = 0, .ofs_y = 4}, + {.bitmap_index = 309959, .adv_w = 840, .box_w = 53, .box_h = 33, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 310834, .adv_w = 672, .box_w = 42, .box_h = 32, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 311506, .adv_w = 672, .box_w = 42, .box_h = 43, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 312409, .adv_w = 672, .box_w = 43, .box_h = 44, .ofs_x = -1, .ofs_y = -6}, + {.bitmap_index = 313355, .adv_w = 588, .box_w = 38, .box_h = 38, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 314077, .adv_w = 588, .box_w = 37, .box_h = 43, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 314873, .adv_w = 588, .box_w = 37, .box_h = 38, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 315576, .adv_w = 588, .box_w = 37, .box_h = 33, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 316187, .adv_w = 672, .box_w = 42, .box_h = 32, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 316859, .adv_w = 420, .box_w = 28, .box_h = 43, .ofs_x = -1, .ofs_y = -6}, + {.bitmap_index = 317461, .adv_w = 588, .box_w = 37, .box_h = 43, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 318257, .adv_w = 588, .box_w = 37, .box_h = 43, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 319053, .adv_w = 756, .box_w = 48, .box_h = 32, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 319821, .adv_w = 672, .box_w = 44, .box_h = 44, .ofs_x = -1, .ofs_y = -6}, + {.bitmap_index = 320789, .adv_w = 504, .box_w = 32, .box_h = 43, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 321477, .adv_w = 840, .box_w = 53, .box_h = 39, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 322511, .adv_w = 840, .box_w = 53, .box_h = 27, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 323227, .adv_w = 840, .box_w = 53, .box_h = 27, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 323943, .adv_w = 840, .box_w = 53, .box_h = 27, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 324659, .adv_w = 840, .box_w = 53, .box_h = 27, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 325375, .adv_w = 840, .box_w = 53, .box_h = 27, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 326091, .adv_w = 840, .box_w = 53, .box_h = 33, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 326966, .adv_w = 588, .box_w = 33, .box_h = 43, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 327676, .adv_w = 588, .box_w = 37, .box_h = 43, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 328472, .adv_w = 672, .box_w = 43, .box_h = 43, .ofs_x = -1, .ofs_y = -6}, + {.bitmap_index = 329397, .adv_w = 840, .box_w = 53, .box_h = 32, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 330245, .adv_w = 504, .box_w = 32, .box_h = 43, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 330933, .adv_w = 676, .box_w = 43, .box_h = 28, .ofs_x = 0, .ofs_y = 2} }; /*--------------------- @@ -43124,29 +43225,29 @@ static const uint16_t unicode_list_1[] = { 0x6bb0, 0x6bf1, 0x6c25, 0x6c38, 0x6c8b, 0x6c91, 0x6c9b, 0x6cd8, 0x6d55, 0x6d79, 0x6de0, 0x6e2a, 0x6e31, 0x7009, 0x7018, 0x7076, 0x7086, 0x7198, 0x7206, 0x72ff, 0x7300, 0x7356, 0x746f, 0x7478, - 0x7485, 0x748b, 0x749c, 0x74a9, 0x75d4, 0x763e, 0x7644, 0x765b, - 0x7670, 0x768c, 0x773d, 0x7751, 0x77be, 0x788a, 0x78d1, 0x791d, - 0x795b, 0x79ca, 0x79d4, 0x7a2e, 0x7a3f, 0x7a76, 0x7c4b, 0x7c70, - 0x7c72, 0x7e0f, 0x7e1f, 0x7e21, 0x7e23, 0x7e2c, 0x7e2f, 0x7e3a, - 0x7ea1, 0x7ebe, 0x7f55, 0x7f83, 0x801c, 0x804d, 0x813a, 0x8144, - 0x81ff, 0x8307, 0x832c, 0x851f, 0x8652, 0x879c, 0x87b8, 0x87fb, - 0x8815, 0x88d1, 0x8914, 0x8916, 0x8918, 0x8922, 0x8ab6, 0x8af1, - 0x8af4, 0x8afe, 0x8b00, 0x8b0e, 0x8b0f, 0x8b11, 0x8b16, 0x8b25, - 0x8b47, 0x8b53, 0x8c75, 0x8c78, 0x8cd5, 0x8d7a, 0x8eb8, 0x8ebc, - 0x8ebe, 0x8ec4, 0x8ecd, 0x8ee3, 0x8f17, 0x8f20, 0x8f24, 0x8f29, - 0x8f2b, 0x8f2e, 0x8f49, 0x8f4d, 0x8f50, 0x8f51, 0x8f59, 0x8f6a, - 0x8f6f, 0x8fa3, 0x9038, 0x904d, 0x911d, 0x911f, 0x93ef, 0x9451, - 0x947e, 0x94ac, 0x94cf, 0x953d, 0x953e, 0x9544, 0x95b4, 0x95e0, - 0x96b2, 0x9743, 0x97c5, 0x97c6, 0x97c9, 0x97d4, 0x97e1, 0x981e, - 0x98c1, 0x99dc, 0x9d73, 0x9df6, 0x9e28, 0xef51, 0xef58, 0xef5b, - 0xef5c, 0xef5d, 0xef61, 0xef63, 0xef65, 0xef69, 0xef6c, 0xef71, - 0xef76, 0xef77, 0xef78, 0xef8e, 0xef93, 0xef98, 0xef9b, 0xef9c, - 0xef9d, 0xefa1, 0xefa2, 0xefa3, 0xefa4, 0xefb7, 0xefb8, 0xefbe, - 0xefc0, 0xefc1, 0xefc4, 0xefc7, 0xefc8, 0xefc9, 0xefcb, 0xefe3, - 0xefe5, 0xf014, 0xf015, 0xf017, 0xf019, 0xf030, 0xf037, 0xf03a, - 0xf043, 0xf06c, 0xf074, 0xf0ab, 0xf13b, 0xf190, 0xf191, 0xf192, - 0xf193, 0xf194, 0xf1d7, 0xf1e3, 0xf23d, 0xf254, 0xf4aa, 0xf712, - 0xf7f2 + 0x7485, 0x748b, 0x749c, 0x74a9, 0x75d4, 0x7628, 0x763e, 0x7644, + 0x765b, 0x7670, 0x768c, 0x773d, 0x7751, 0x77be, 0x788a, 0x78d1, + 0x791d, 0x795b, 0x79ca, 0x79d4, 0x7a2e, 0x7a3f, 0x7a76, 0x7c4b, + 0x7c70, 0x7c72, 0x7e0f, 0x7e1f, 0x7e21, 0x7e23, 0x7e2c, 0x7e2f, + 0x7e3a, 0x7ea1, 0x7ebe, 0x7f55, 0x7f83, 0x801c, 0x804d, 0x813a, + 0x8144, 0x81ff, 0x8307, 0x832c, 0x851f, 0x8652, 0x879c, 0x87b8, + 0x87fb, 0x8815, 0x88d1, 0x8914, 0x8916, 0x8918, 0x8922, 0x8ab6, + 0x8af1, 0x8af4, 0x8afe, 0x8b00, 0x8b0e, 0x8b0f, 0x8b11, 0x8b16, + 0x8b25, 0x8b47, 0x8b53, 0x8c75, 0x8c78, 0x8cd5, 0x8d7a, 0x8eb8, + 0x8ebc, 0x8ebe, 0x8ec4, 0x8ecd, 0x8ee3, 0x8f17, 0x8f20, 0x8f24, + 0x8f29, 0x8f2b, 0x8f2e, 0x8f49, 0x8f4d, 0x8f50, 0x8f51, 0x8f59, + 0x8f6a, 0x8f6f, 0x8fa3, 0x9038, 0x904d, 0x911d, 0x911f, 0x93ef, + 0x9451, 0x947e, 0x94ac, 0x94cf, 0x953d, 0x953e, 0x9544, 0x95b4, + 0x95e0, 0x96b2, 0x9743, 0x97c5, 0x97c6, 0x97c9, 0x97d4, 0x97e1, + 0x981e, 0x98c1, 0x99dc, 0x9d73, 0x9df6, 0x9e28, 0xef51, 0xef58, + 0xef5b, 0xef5c, 0xef5d, 0xef61, 0xef63, 0xef65, 0xef69, 0xef6c, + 0xef71, 0xef76, 0xef77, 0xef78, 0xef8e, 0xef93, 0xef98, 0xef9b, + 0xef9c, 0xef9d, 0xefa1, 0xefa2, 0xefa3, 0xefa4, 0xefb7, 0xefb8, + 0xefbe, 0xefc0, 0xefc1, 0xefc4, 0xefc7, 0xefc8, 0xefc9, 0xefcb, + 0xefe3, 0xefe5, 0xf014, 0xf015, 0xf017, 0xf019, 0xf030, 0xf037, + 0xf03a, 0xf043, 0xf06c, 0xf074, 0xf0ab, 0xf13b, 0xf190, 0xf191, + 0xf192, 0xf193, 0xf194, 0xf1d7, 0xf1e3, 0xf23d, 0xf254, 0xf4aa, + 0xf712, 0xf7f2 }; /*Collect the unicode lists and glyph_id offsets*/ @@ -43158,7 +43259,7 @@ static const lv_font_fmt_txt_cmap_t cmaps[] = }, { .range_start = 176, .range_length = 63475, .glyph_id_start = 96, - .unicode_list = unicode_list_1, .glyph_id_ofs_list = NULL, .list_length = 409, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY + .unicode_list = unicode_list_1, .glyph_id_ofs_list = NULL, .list_length = 410, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY } }; @@ -43233,7 +43334,7 @@ static const uint8_t kern_left_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0 + 0, 0 }; /*Map glyph_ids to kern right classes*/ @@ -43302,7 +43403,7 @@ static const uint8_t kern_right_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0 + 0, 0 }; /*Kern values between classes*/ diff --git a/lib/lvgl/lvgl/src/font/lv_font_montserrat_44.c b/lib/lvgl/lvgl/src/font/lv_font_montserrat_44.c index 3e58d18a..a99465d8 100644 --- a/lib/lvgl/lvgl/src/font/lv_font_montserrat_44.c +++ b/lib/lvgl/lvgl/src/font/lv_font_montserrat_44.c @@ -1,7 +1,7 @@ /******************************************************************************* * Size: 44 px * Bpp: 4 - * Opts: --bpp 4 --size 44 --no-compress --font Montserrat-Medium.ttf --range 32-127,176,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20351,20363,20391,20445,20449,20462,20463,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29366,29615,29616,29702,29983,29992,30005,30011,30028,30041,30340,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31181,31243,31354,31364,31454,31471,31526,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33719,33756,34255,34562,34892,34920,34987,35013,35201,35268,35270,35272,35282,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35831,35843,36133,36136,36229,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --format lvgl -o out/lv_font_montserrat_44.c + * Opts: --bpp 4 --size 44 --no-compress --font Montserrat-Medium.ttf --range 32-127,176,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20351,20363,20391,20445,20449,20462,20463,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29366,29615,29616,29702,29983,29992,30005,30011,30028,30041,30340,30424,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31181,31243,31354,31364,31454,31471,31526,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33719,33756,34255,34562,34892,34920,34987,35013,35201,35268,35270,35272,35282,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35831,35843,36133,36136,36229,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --format lvgl -o out/lv_font_montserrat_44.c ******************************************************************************/ #ifdef LV_LVGL_H_INCLUDE_SIMPLE @@ -28505,6 +28505,116 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+76D8 "盘" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x5f, 0xd9, 0x60, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x8f, 0xff, 0x90, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, + 0xff, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xff, 0xfa, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xee, 0xee, + 0xee, 0xff, 0xfe, 0xee, 0xee, 0xee, 0xee, 0xee, + 0xee, 0xee, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xd, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x20, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x20, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0xd0, 0x0, + 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, + 0xff, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xc, 0xff, 0xd0, 0x0, 0x0, 0xd, 0xb3, + 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x10, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, + 0xd0, 0x0, 0x0, 0x9f, 0xff, 0xa1, 0x0, 0x0, + 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xc, 0xff, 0xd0, 0x0, 0x0, + 0xaf, 0xff, 0xff, 0x60, 0x0, 0x0, 0xf, 0xff, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xc, 0xff, 0xd0, 0x0, 0x0, 0x3, 0xcf, 0xff, + 0x70, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0xd0, + 0x0, 0x0, 0x0, 0x7, 0xfb, 0x0, 0x0, 0x0, + 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x44, + 0x32, 0x22, 0x2c, 0xff, 0xe2, 0x22, 0x22, 0x22, + 0x22, 0x44, 0x22, 0x22, 0x22, 0x2f, 0xff, 0x22, + 0x22, 0x34, 0x20, 0x1, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, + 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x90, 0x1, 0xee, 0xdd, + 0xcc, 0xcf, 0xff, 0xec, 0xcc, 0xcc, 0xcc, 0xcc, + 0xcc, 0xcc, 0xcc, 0xcc, 0xdf, 0xff, 0xcc, 0xcd, + 0xde, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, + 0x50, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x6f, 0xff, 0x10, 0x0, 0xb, + 0xd6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xdf, 0xfd, 0x0, 0x0, 0x4f, 0xff, 0xe7, 0x10, + 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x5, 0xff, 0xf6, 0x0, + 0x0, 0x3b, 0xff, 0xff, 0xf9, 0x10, 0x0, 0x0, + 0x4f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x2f, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3b, + 0xff, 0xfd, 0x10, 0x22, 0x34, 0xcf, 0xfd, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xef, 0xff, + 0x70, 0x0, 0x0, 0x0, 0x0, 0x4e, 0xf3, 0x0, + 0x9f, 0xff, 0xff, 0xfb, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x5f, 0xff, 0xfb, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1, 0x60, 0x0, 0x1f, 0xff, 0xff, + 0xf5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, + 0xef, 0xd1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xa, 0xff, 0xfb, 0x50, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2b, 0x10, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, + 0x42, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x5, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, + 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, + 0xbb, 0x60, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0x0, + 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, + 0x6, 0xff, 0xf1, 0x0, 0x0, 0x1f, 0xfd, 0x0, + 0x0, 0x1, 0xff, 0xd0, 0x0, 0x0, 0xf, 0xff, + 0x80, 0x0, 0x0, 0x0, 0x0, 0x6, 0xff, 0xf1, + 0x0, 0x0, 0x1f, 0xfd, 0x0, 0x0, 0x1, 0xff, + 0xd0, 0x0, 0x0, 0xf, 0xff, 0x70, 0x0, 0x0, + 0x0, 0x0, 0x5, 0xff, 0xf1, 0x0, 0x0, 0x1f, + 0xfd, 0x0, 0x0, 0x1, 0xff, 0xd0, 0x0, 0x0, + 0xf, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0x5, + 0xff, 0xf1, 0x0, 0x0, 0x1f, 0xfd, 0x0, 0x0, + 0x1, 0xff, 0xd0, 0x0, 0x0, 0xf, 0xff, 0x70, + 0x0, 0x0, 0x0, 0x0, 0x5, 0xff, 0xf1, 0x0, + 0x0, 0x1f, 0xfd, 0x0, 0x0, 0x1, 0xff, 0xd0, + 0x0, 0x0, 0xf, 0xff, 0x70, 0x0, 0x0, 0x0, + 0x0, 0x5, 0xff, 0xf1, 0x0, 0x0, 0x1f, 0xfd, + 0x0, 0x0, 0x1, 0xff, 0xd0, 0x0, 0x0, 0xf, + 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0x5, 0xff, + 0xf1, 0x0, 0x0, 0x1f, 0xfd, 0x0, 0x0, 0x1, + 0xff, 0xd0, 0x0, 0x0, 0xf, 0xff, 0x70, 0x0, + 0x0, 0x0, 0x0, 0x5, 0xff, 0xf1, 0x0, 0x0, + 0x1f, 0xfd, 0x0, 0x0, 0x1, 0xff, 0xd0, 0x0, + 0x0, 0xf, 0xff, 0x70, 0x0, 0x0, 0xbf, 0xff, + 0xff, 0xff, 0xfe, 0xee, 0xee, 0xef, 0xff, 0xee, + 0xee, 0xee, 0xff, 0xfe, 0xee, 0xee, 0xef, 0xff, + 0xff, 0xff, 0xfa, 0xbf, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, + 0xaf, 0xee, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, + 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, + 0xdd, 0xdd, 0xde, 0xef, 0xf9, + /* U+76EE "目" */ 0x7b, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xa, @@ -46783,178 +46893,179 @@ static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = { {.bitmap_index = 219078, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, {.bitmap_index = 219898, .adv_w = 704, .box_w = 38, .box_h = 40, .ofs_x = 3, .ofs_y = -4}, {.bitmap_index = 220658, .adv_w = 704, .box_w = 37, .box_h = 41, .ofs_x = 4, .ofs_y = -5}, - {.bitmap_index = 221417, .adv_w = 704, .box_w = 31, .box_h = 38, .ofs_x = 7, .ofs_y = -4}, - {.bitmap_index = 222006, .adv_w = 704, .box_w = 40, .box_h = 38, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 222766, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 223606, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 2, .ofs_y = -6}, - {.bitmap_index = 224447, .adv_w = 704, .box_w = 39, .box_h = 40, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 225227, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 226067, .adv_w = 704, .box_w = 41, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 226867, .adv_w = 704, .box_w = 41, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 227728, .adv_w = 704, .box_w = 39, .box_h = 39, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 228489, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 229289, .adv_w = 704, .box_w = 41, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 230150, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 231011, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 231852, .adv_w = 704, .box_w = 39, .box_h = 41, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 232652, .adv_w = 704, .box_w = 42, .box_h = 43, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 233555, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 234396, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 235278, .adv_w = 704, .box_w = 40, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 236098, .adv_w = 704, .box_w = 39, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 236898, .adv_w = 704, .box_w = 39, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 237698, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 238580, .adv_w = 704, .box_w = 40, .box_h = 38, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 239340, .adv_w = 704, .box_w = 40, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 240160, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 241000, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 241861, .adv_w = 704, .box_w = 42, .box_h = 43, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 242764, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 243604, .adv_w = 704, .box_w = 38, .box_h = 38, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 244326, .adv_w = 704, .box_w = 40, .box_h = 38, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 245086, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 245886, .adv_w = 704, .box_w = 40, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 246646, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 247466, .adv_w = 704, .box_w = 39, .box_h = 41, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 248266, .adv_w = 704, .box_w = 31, .box_h = 40, .ofs_x = 7, .ofs_y = -4}, - {.bitmap_index = 248886, .adv_w = 704, .box_w = 40, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 249706, .adv_w = 704, .box_w = 40, .box_h = 39, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 250486, .adv_w = 704, .box_w = 39, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 251286, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 252126, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 253008, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 221417, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 222278, .adv_w = 704, .box_w = 31, .box_h = 38, .ofs_x = 7, .ofs_y = -4}, + {.bitmap_index = 222867, .adv_w = 704, .box_w = 40, .box_h = 38, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 223627, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 224467, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 225308, .adv_w = 704, .box_w = 39, .box_h = 40, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 226088, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 226928, .adv_w = 704, .box_w = 41, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 227728, .adv_w = 704, .box_w = 41, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 228589, .adv_w = 704, .box_w = 39, .box_h = 39, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 229350, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 230150, .adv_w = 704, .box_w = 41, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 231011, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 231872, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 232713, .adv_w = 704, .box_w = 39, .box_h = 41, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 233513, .adv_w = 704, .box_w = 42, .box_h = 43, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 234416, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 235257, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 236139, .adv_w = 704, .box_w = 40, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 236959, .adv_w = 704, .box_w = 39, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 237759, .adv_w = 704, .box_w = 39, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 238559, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 239441, .adv_w = 704, .box_w = 40, .box_h = 38, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 240201, .adv_w = 704, .box_w = 40, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 241021, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 241861, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 242722, .adv_w = 704, .box_w = 42, .box_h = 43, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 243625, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 244465, .adv_w = 704, .box_w = 38, .box_h = 38, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 245187, .adv_w = 704, .box_w = 40, .box_h = 38, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 245947, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 246747, .adv_w = 704, .box_w = 40, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 247507, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 248327, .adv_w = 704, .box_w = 39, .box_h = 41, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 249127, .adv_w = 704, .box_w = 31, .box_h = 40, .ofs_x = 7, .ofs_y = -4}, + {.bitmap_index = 249747, .adv_w = 704, .box_w = 40, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 250567, .adv_w = 704, .box_w = 40, .box_h = 39, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 251347, .adv_w = 704, .box_w = 39, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 252147, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 252987, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, {.bitmap_index = 253869, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 254730, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 255571, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 256432, .adv_w = 704, .box_w = 39, .box_h = 41, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 257232, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 258072, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 258954, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 259836, .adv_w = 704, .box_w = 41, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 260697, .adv_w = 704, .box_w = 37, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 261474, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 262335, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 263155, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 263996, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 264878, .adv_w = 704, .box_w = 41, .box_h = 39, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 265678, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 266539, .adv_w = 704, .box_w = 40, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 267379, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 268219, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 269101, .adv_w = 704, .box_w = 40, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 269921, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 270782, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 271582, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 272443, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 273243, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 274083, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 254730, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 255591, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 256432, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 257293, .adv_w = 704, .box_w = 39, .box_h = 41, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 258093, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 258933, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 259815, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 260697, .adv_w = 704, .box_w = 41, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 261558, .adv_w = 704, .box_w = 37, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 262335, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 263196, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 264016, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 264857, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 265739, .adv_w = 704, .box_w = 41, .box_h = 39, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 266539, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 267400, .adv_w = 704, .box_w = 40, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 268240, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 269080, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 269962, .adv_w = 704, .box_w = 40, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 270782, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 271643, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 272443, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 273304, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 274104, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, {.bitmap_index = 274944, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 275805, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 276646, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 277507, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 278348, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 279230, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 280112, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 280973, .adv_w = 704, .box_w = 40, .box_h = 39, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 281753, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 282594, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 283394, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 284255, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 285095, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 285935, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 286755, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 287616, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 288416, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 289236, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 290097, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 290979, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 291840, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 292681, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 293501, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 294301, .adv_w = 704, .box_w = 40, .box_h = 38, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 295061, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 295861, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 275805, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 276666, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 277507, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 278368, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 279209, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 280091, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 280973, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 281834, .adv_w = 704, .box_w = 40, .box_h = 39, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 282614, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 283455, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 284255, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 285116, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 285956, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 286796, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 287616, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 288477, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 289277, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 290097, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 290958, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 291840, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 292701, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 293542, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 294362, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 295162, .adv_w = 704, .box_w = 40, .box_h = 38, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 295922, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, {.bitmap_index = 296722, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 297583, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 298465, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 299265, .adv_w = 704, .box_w = 38, .box_h = 42, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 300063, .adv_w = 704, .box_w = 36, .box_h = 41, .ofs_x = 4, .ofs_y = -5}, - {.bitmap_index = 300801, .adv_w = 704, .box_w = 37, .box_h = 42, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 301578, .adv_w = 704, .box_w = 40, .box_h = 42, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 302418, .adv_w = 704, .box_w = 40, .box_h = 41, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 303238, .adv_w = 704, .box_w = 39, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 303979, .adv_w = 704, .box_w = 40, .box_h = 41, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 304799, .adv_w = 704, .box_w = 38, .box_h = 39, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 305540, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 2, .ofs_y = -6}, - {.bitmap_index = 306340, .adv_w = 704, .box_w = 41, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 307119, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 2, .ofs_y = -6}, - {.bitmap_index = 307919, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 308780, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 309620, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 310481, .adv_w = 704, .box_w = 41, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 311342, .adv_w = 704, .box_w = 39, .box_h = 40, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 312122, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 313004, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 313824, .adv_w = 704, .box_w = 44, .box_h = 45, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 314814, .adv_w = 704, .box_w = 44, .box_h = 33, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 315540, .adv_w = 704, .box_w = 44, .box_h = 39, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 316398, .adv_w = 704, .box_w = 44, .box_h = 33, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 317124, .adv_w = 484, .box_w = 31, .box_h = 31, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 317605, .adv_w = 704, .box_w = 44, .box_h = 44, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 318573, .adv_w = 704, .box_w = 42, .box_h = 45, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 319518, .adv_w = 792, .box_w = 50, .box_h = 39, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 320493, .adv_w = 704, .box_w = 44, .box_h = 45, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 321483, .adv_w = 792, .box_w = 50, .box_h = 33, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 322308, .adv_w = 704, .box_w = 44, .box_h = 45, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 323298, .adv_w = 352, .box_w = 22, .box_h = 35, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 323683, .adv_w = 528, .box_w = 33, .box_h = 35, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 324261, .adv_w = 792, .box_w = 50, .box_h = 43, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 325336, .adv_w = 704, .box_w = 44, .box_h = 33, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 326062, .adv_w = 484, .box_w = 31, .box_h = 45, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 326760, .adv_w = 616, .box_w = 29, .box_h = 41, .ofs_x = 5, .ofs_y = -4}, - {.bitmap_index = 327355, .adv_w = 616, .box_w = 39, .box_h = 47, .ofs_x = 0, .ofs_y = -7}, - {.bitmap_index = 328272, .adv_w = 616, .box_w = 39, .box_h = 39, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 329033, .adv_w = 616, .box_w = 39, .box_h = 39, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 329794, .adv_w = 616, .box_w = 28, .box_h = 41, .ofs_x = 5, .ofs_y = -4}, - {.bitmap_index = 330368, .adv_w = 616, .box_w = 41, .box_h = 39, .ofs_x = -1, .ofs_y = -3}, - {.bitmap_index = 331168, .adv_w = 440, .box_w = 24, .box_h = 39, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 331636, .adv_w = 440, .box_w = 24, .box_h = 39, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 332104, .adv_w = 616, .box_w = 39, .box_h = 39, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 332865, .adv_w = 616, .box_w = 39, .box_h = 9, .ofs_x = 0, .ofs_y = 12}, - {.bitmap_index = 333041, .adv_w = 792, .box_w = 50, .box_h = 33, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 333866, .adv_w = 880, .box_w = 56, .box_h = 45, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 335126, .adv_w = 792, .box_w = 52, .box_h = 45, .ofs_x = -1, .ofs_y = -6}, - {.bitmap_index = 336296, .adv_w = 704, .box_w = 44, .box_h = 39, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 337154, .adv_w = 616, .box_w = 38, .box_h = 23, .ofs_x = 0, .ofs_y = 5}, - {.bitmap_index = 337591, .adv_w = 616, .box_w = 38, .box_h = 23, .ofs_x = 0, .ofs_y = 5}, - {.bitmap_index = 338028, .adv_w = 880, .box_w = 55, .box_h = 35, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 338991, .adv_w = 704, .box_w = 44, .box_h = 33, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 339717, .adv_w = 704, .box_w = 44, .box_h = 45, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 340707, .adv_w = 704, .box_w = 45, .box_h = 45, .ofs_x = -1, .ofs_y = -6}, - {.bitmap_index = 341720, .adv_w = 616, .box_w = 39, .box_h = 39, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 342481, .adv_w = 616, .box_w = 39, .box_h = 45, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 343359, .adv_w = 616, .box_w = 39, .box_h = 39, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 344120, .adv_w = 616, .box_w = 39, .box_h = 35, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 344803, .adv_w = 704, .box_w = 44, .box_h = 33, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 345529, .adv_w = 440, .box_w = 29, .box_h = 45, .ofs_x = -1, .ofs_y = -6}, - {.bitmap_index = 346182, .adv_w = 616, .box_w = 39, .box_h = 45, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 347060, .adv_w = 616, .box_w = 39, .box_h = 45, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 347938, .adv_w = 792, .box_w = 50, .box_h = 33, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 348763, .adv_w = 704, .box_w = 46, .box_h = 46, .ofs_x = -1, .ofs_y = -6}, - {.bitmap_index = 349821, .adv_w = 528, .box_w = 33, .box_h = 45, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 350564, .adv_w = 880, .box_w = 55, .box_h = 41, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 351692, .adv_w = 880, .box_w = 55, .box_h = 29, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 352490, .adv_w = 880, .box_w = 55, .box_h = 29, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 353288, .adv_w = 880, .box_w = 55, .box_h = 29, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 354086, .adv_w = 880, .box_w = 55, .box_h = 29, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 354884, .adv_w = 880, .box_w = 55, .box_h = 29, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 355682, .adv_w = 880, .box_w = 56, .box_h = 35, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 356662, .adv_w = 616, .box_w = 34, .box_h = 45, .ofs_x = 2, .ofs_y = -6}, - {.bitmap_index = 357427, .adv_w = 616, .box_w = 39, .box_h = 45, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 358305, .adv_w = 704, .box_w = 45, .box_h = 45, .ofs_x = -1, .ofs_y = -6}, - {.bitmap_index = 359318, .adv_w = 880, .box_w = 55, .box_h = 33, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 360226, .adv_w = 528, .box_w = 33, .box_h = 45, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 360969, .adv_w = 708, .box_w = 45, .box_h = 29, .ofs_x = 0, .ofs_y = 2} + {.bitmap_index = 297583, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 298444, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 299326, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 300126, .adv_w = 704, .box_w = 38, .box_h = 42, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 300924, .adv_w = 704, .box_w = 36, .box_h = 41, .ofs_x = 4, .ofs_y = -5}, + {.bitmap_index = 301662, .adv_w = 704, .box_w = 37, .box_h = 42, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 302439, .adv_w = 704, .box_w = 40, .box_h = 42, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 303279, .adv_w = 704, .box_w = 40, .box_h = 41, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 304099, .adv_w = 704, .box_w = 39, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 304840, .adv_w = 704, .box_w = 40, .box_h = 41, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 305660, .adv_w = 704, .box_w = 38, .box_h = 39, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 306401, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 307201, .adv_w = 704, .box_w = 41, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 307980, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 308780, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 309641, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 310481, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 311342, .adv_w = 704, .box_w = 41, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 312203, .adv_w = 704, .box_w = 39, .box_h = 40, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 312983, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 313865, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 314685, .adv_w = 704, .box_w = 44, .box_h = 45, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 315675, .adv_w = 704, .box_w = 44, .box_h = 33, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 316401, .adv_w = 704, .box_w = 44, .box_h = 39, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 317259, .adv_w = 704, .box_w = 44, .box_h = 33, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 317985, .adv_w = 484, .box_w = 31, .box_h = 31, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 318466, .adv_w = 704, .box_w = 44, .box_h = 44, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 319434, .adv_w = 704, .box_w = 42, .box_h = 45, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 320379, .adv_w = 792, .box_w = 50, .box_h = 39, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 321354, .adv_w = 704, .box_w = 44, .box_h = 45, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 322344, .adv_w = 792, .box_w = 50, .box_h = 33, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 323169, .adv_w = 704, .box_w = 44, .box_h = 45, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 324159, .adv_w = 352, .box_w = 22, .box_h = 35, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 324544, .adv_w = 528, .box_w = 33, .box_h = 35, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 325122, .adv_w = 792, .box_w = 50, .box_h = 43, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 326197, .adv_w = 704, .box_w = 44, .box_h = 33, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 326923, .adv_w = 484, .box_w = 31, .box_h = 45, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 327621, .adv_w = 616, .box_w = 29, .box_h = 41, .ofs_x = 5, .ofs_y = -4}, + {.bitmap_index = 328216, .adv_w = 616, .box_w = 39, .box_h = 47, .ofs_x = 0, .ofs_y = -7}, + {.bitmap_index = 329133, .adv_w = 616, .box_w = 39, .box_h = 39, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 329894, .adv_w = 616, .box_w = 39, .box_h = 39, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 330655, .adv_w = 616, .box_w = 28, .box_h = 41, .ofs_x = 5, .ofs_y = -4}, + {.bitmap_index = 331229, .adv_w = 616, .box_w = 41, .box_h = 39, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 332029, .adv_w = 440, .box_w = 24, .box_h = 39, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 332497, .adv_w = 440, .box_w = 24, .box_h = 39, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 332965, .adv_w = 616, .box_w = 39, .box_h = 39, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 333726, .adv_w = 616, .box_w = 39, .box_h = 9, .ofs_x = 0, .ofs_y = 12}, + {.bitmap_index = 333902, .adv_w = 792, .box_w = 50, .box_h = 33, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 334727, .adv_w = 880, .box_w = 56, .box_h = 45, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 335987, .adv_w = 792, .box_w = 52, .box_h = 45, .ofs_x = -1, .ofs_y = -6}, + {.bitmap_index = 337157, .adv_w = 704, .box_w = 44, .box_h = 39, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 338015, .adv_w = 616, .box_w = 38, .box_h = 23, .ofs_x = 0, .ofs_y = 5}, + {.bitmap_index = 338452, .adv_w = 616, .box_w = 38, .box_h = 23, .ofs_x = 0, .ofs_y = 5}, + {.bitmap_index = 338889, .adv_w = 880, .box_w = 55, .box_h = 35, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 339852, .adv_w = 704, .box_w = 44, .box_h = 33, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 340578, .adv_w = 704, .box_w = 44, .box_h = 45, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 341568, .adv_w = 704, .box_w = 45, .box_h = 45, .ofs_x = -1, .ofs_y = -6}, + {.bitmap_index = 342581, .adv_w = 616, .box_w = 39, .box_h = 39, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 343342, .adv_w = 616, .box_w = 39, .box_h = 45, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 344220, .adv_w = 616, .box_w = 39, .box_h = 39, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 344981, .adv_w = 616, .box_w = 39, .box_h = 35, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 345664, .adv_w = 704, .box_w = 44, .box_h = 33, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 346390, .adv_w = 440, .box_w = 29, .box_h = 45, .ofs_x = -1, .ofs_y = -6}, + {.bitmap_index = 347043, .adv_w = 616, .box_w = 39, .box_h = 45, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 347921, .adv_w = 616, .box_w = 39, .box_h = 45, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 348799, .adv_w = 792, .box_w = 50, .box_h = 33, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 349624, .adv_w = 704, .box_w = 46, .box_h = 46, .ofs_x = -1, .ofs_y = -6}, + {.bitmap_index = 350682, .adv_w = 528, .box_w = 33, .box_h = 45, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 351425, .adv_w = 880, .box_w = 55, .box_h = 41, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 352553, .adv_w = 880, .box_w = 55, .box_h = 29, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 353351, .adv_w = 880, .box_w = 55, .box_h = 29, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 354149, .adv_w = 880, .box_w = 55, .box_h = 29, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 354947, .adv_w = 880, .box_w = 55, .box_h = 29, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 355745, .adv_w = 880, .box_w = 55, .box_h = 29, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 356543, .adv_w = 880, .box_w = 56, .box_h = 35, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 357523, .adv_w = 616, .box_w = 34, .box_h = 45, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 358288, .adv_w = 616, .box_w = 39, .box_h = 45, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 359166, .adv_w = 704, .box_w = 45, .box_h = 45, .ofs_x = -1, .ofs_y = -6}, + {.bitmap_index = 360179, .adv_w = 880, .box_w = 55, .box_h = 33, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 361087, .adv_w = 528, .box_w = 33, .box_h = 45, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 361830, .adv_w = 708, .box_w = 45, .box_h = 29, .ofs_x = 0, .ofs_y = 2} }; /*--------------------- @@ -46991,29 +47102,29 @@ static const uint16_t unicode_list_1[] = { 0x6bb0, 0x6bf1, 0x6c25, 0x6c38, 0x6c8b, 0x6c91, 0x6c9b, 0x6cd8, 0x6d55, 0x6d79, 0x6de0, 0x6e2a, 0x6e31, 0x7009, 0x7018, 0x7076, 0x7086, 0x7198, 0x7206, 0x72ff, 0x7300, 0x7356, 0x746f, 0x7478, - 0x7485, 0x748b, 0x749c, 0x74a9, 0x75d4, 0x763e, 0x7644, 0x765b, - 0x7670, 0x768c, 0x773d, 0x7751, 0x77be, 0x788a, 0x78d1, 0x791d, - 0x795b, 0x79ca, 0x79d4, 0x7a2e, 0x7a3f, 0x7a76, 0x7c4b, 0x7c70, - 0x7c72, 0x7e0f, 0x7e1f, 0x7e21, 0x7e23, 0x7e2c, 0x7e2f, 0x7e3a, - 0x7ea1, 0x7ebe, 0x7f55, 0x7f83, 0x801c, 0x804d, 0x813a, 0x8144, - 0x81ff, 0x8307, 0x832c, 0x851f, 0x8652, 0x879c, 0x87b8, 0x87fb, - 0x8815, 0x88d1, 0x8914, 0x8916, 0x8918, 0x8922, 0x8ab6, 0x8af1, - 0x8af4, 0x8afe, 0x8b00, 0x8b0e, 0x8b0f, 0x8b11, 0x8b16, 0x8b25, - 0x8b47, 0x8b53, 0x8c75, 0x8c78, 0x8cd5, 0x8d7a, 0x8eb8, 0x8ebc, - 0x8ebe, 0x8ec4, 0x8ecd, 0x8ee3, 0x8f17, 0x8f20, 0x8f24, 0x8f29, - 0x8f2b, 0x8f2e, 0x8f49, 0x8f4d, 0x8f50, 0x8f51, 0x8f59, 0x8f6a, - 0x8f6f, 0x8fa3, 0x9038, 0x904d, 0x911d, 0x911f, 0x93ef, 0x9451, - 0x947e, 0x94ac, 0x94cf, 0x953d, 0x953e, 0x9544, 0x95b4, 0x95e0, - 0x96b2, 0x9743, 0x97c5, 0x97c6, 0x97c9, 0x97d4, 0x97e1, 0x981e, - 0x98c1, 0x99dc, 0x9d73, 0x9df6, 0x9e28, 0xef51, 0xef58, 0xef5b, - 0xef5c, 0xef5d, 0xef61, 0xef63, 0xef65, 0xef69, 0xef6c, 0xef71, - 0xef76, 0xef77, 0xef78, 0xef8e, 0xef93, 0xef98, 0xef9b, 0xef9c, - 0xef9d, 0xefa1, 0xefa2, 0xefa3, 0xefa4, 0xefb7, 0xefb8, 0xefbe, - 0xefc0, 0xefc1, 0xefc4, 0xefc7, 0xefc8, 0xefc9, 0xefcb, 0xefe3, - 0xefe5, 0xf014, 0xf015, 0xf017, 0xf019, 0xf030, 0xf037, 0xf03a, - 0xf043, 0xf06c, 0xf074, 0xf0ab, 0xf13b, 0xf190, 0xf191, 0xf192, - 0xf193, 0xf194, 0xf1d7, 0xf1e3, 0xf23d, 0xf254, 0xf4aa, 0xf712, - 0xf7f2 + 0x7485, 0x748b, 0x749c, 0x74a9, 0x75d4, 0x7628, 0x763e, 0x7644, + 0x765b, 0x7670, 0x768c, 0x773d, 0x7751, 0x77be, 0x788a, 0x78d1, + 0x791d, 0x795b, 0x79ca, 0x79d4, 0x7a2e, 0x7a3f, 0x7a76, 0x7c4b, + 0x7c70, 0x7c72, 0x7e0f, 0x7e1f, 0x7e21, 0x7e23, 0x7e2c, 0x7e2f, + 0x7e3a, 0x7ea1, 0x7ebe, 0x7f55, 0x7f83, 0x801c, 0x804d, 0x813a, + 0x8144, 0x81ff, 0x8307, 0x832c, 0x851f, 0x8652, 0x879c, 0x87b8, + 0x87fb, 0x8815, 0x88d1, 0x8914, 0x8916, 0x8918, 0x8922, 0x8ab6, + 0x8af1, 0x8af4, 0x8afe, 0x8b00, 0x8b0e, 0x8b0f, 0x8b11, 0x8b16, + 0x8b25, 0x8b47, 0x8b53, 0x8c75, 0x8c78, 0x8cd5, 0x8d7a, 0x8eb8, + 0x8ebc, 0x8ebe, 0x8ec4, 0x8ecd, 0x8ee3, 0x8f17, 0x8f20, 0x8f24, + 0x8f29, 0x8f2b, 0x8f2e, 0x8f49, 0x8f4d, 0x8f50, 0x8f51, 0x8f59, + 0x8f6a, 0x8f6f, 0x8fa3, 0x9038, 0x904d, 0x911d, 0x911f, 0x93ef, + 0x9451, 0x947e, 0x94ac, 0x94cf, 0x953d, 0x953e, 0x9544, 0x95b4, + 0x95e0, 0x96b2, 0x9743, 0x97c5, 0x97c6, 0x97c9, 0x97d4, 0x97e1, + 0x981e, 0x98c1, 0x99dc, 0x9d73, 0x9df6, 0x9e28, 0xef51, 0xef58, + 0xef5b, 0xef5c, 0xef5d, 0xef61, 0xef63, 0xef65, 0xef69, 0xef6c, + 0xef71, 0xef76, 0xef77, 0xef78, 0xef8e, 0xef93, 0xef98, 0xef9b, + 0xef9c, 0xef9d, 0xefa1, 0xefa2, 0xefa3, 0xefa4, 0xefb7, 0xefb8, + 0xefbe, 0xefc0, 0xefc1, 0xefc4, 0xefc7, 0xefc8, 0xefc9, 0xefcb, + 0xefe3, 0xefe5, 0xf014, 0xf015, 0xf017, 0xf019, 0xf030, 0xf037, + 0xf03a, 0xf043, 0xf06c, 0xf074, 0xf0ab, 0xf13b, 0xf190, 0xf191, + 0xf192, 0xf193, 0xf194, 0xf1d7, 0xf1e3, 0xf23d, 0xf254, 0xf4aa, + 0xf712, 0xf7f2 }; /*Collect the unicode lists and glyph_id offsets*/ @@ -47025,7 +47136,7 @@ static const lv_font_fmt_txt_cmap_t cmaps[] = }, { .range_start = 176, .range_length = 63475, .glyph_id_start = 96, - .unicode_list = unicode_list_1, .glyph_id_ofs_list = NULL, .list_length = 409, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY + .unicode_list = unicode_list_1, .glyph_id_ofs_list = NULL, .list_length = 410, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY } }; @@ -47100,7 +47211,7 @@ static const uint8_t kern_left_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0 + 0, 0 }; /*Map glyph_ids to kern right classes*/ @@ -47169,7 +47280,7 @@ static const uint8_t kern_right_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0 + 0, 0 }; /*Kern values between classes*/ diff --git a/lib/lvgl/lvgl/src/font/lv_font_montserrat_46.c b/lib/lvgl/lvgl/src/font/lv_font_montserrat_46.c index 62e5b3a3..306a6f62 100644 --- a/lib/lvgl/lvgl/src/font/lv_font_montserrat_46.c +++ b/lib/lvgl/lvgl/src/font/lv_font_montserrat_46.c @@ -1,7 +1,7 @@ /******************************************************************************* * Size: 46 px * Bpp: 4 - * Opts: --bpp 4 --size 46 --no-compress --font Montserrat-Medium.ttf --range 32-127,176,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20351,20363,20391,20445,20449,20462,20463,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29366,29615,29616,29702,29983,29992,30005,30011,30028,30041,30340,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31181,31243,31354,31364,31454,31471,31526,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33719,33756,34255,34562,34892,34920,34987,35013,35201,35268,35270,35272,35282,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35831,35843,36133,36136,36229,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --format lvgl -o out/lv_font_montserrat_46.c + * Opts: --bpp 4 --size 46 --no-compress --font Montserrat-Medium.ttf --range 32-127,176,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20351,20363,20391,20445,20449,20462,20463,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29366,29615,29616,29702,29983,29992,30005,30011,30028,30041,30340,30424,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31181,31243,31354,31364,31454,31471,31526,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33719,33756,34255,34562,34892,34920,34987,35013,35201,35268,35270,35272,35282,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35831,35843,36133,36136,36229,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --format lvgl -o out/lv_font_montserrat_46.c ******************************************************************************/ #ifdef LV_LVGL_H_INCLUDE_SIMPLE @@ -31023,6 +31023,124 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x1, 0x31, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+76D8 "盘" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1, 0x73, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5, 0xff, + 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x9, 0xff, 0xf8, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xd, 0xff, 0xf1, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x11, 0x11, 0x11, + 0x3f, 0xff, 0xb1, 0x11, 0x11, 0x11, 0x11, 0x11, + 0x11, 0x11, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x4, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf9, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2, 0xff, 0xfb, 0x0, + 0x0, 0x0, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xbf, 0xf9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1, 0xff, 0xfb, 0x0, 0x0, 0x0, + 0xdd, 0x50, 0x0, 0x0, 0x0, 0x0, 0xbf, 0xf8, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1, 0xff, 0xfb, 0x0, 0x0, 0x9, 0xff, 0xfd, + 0x40, 0x0, 0x0, 0x0, 0xbf, 0xf8, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, + 0xfb, 0x0, 0x0, 0x7, 0xef, 0xff, 0xfa, 0x0, + 0x0, 0x0, 0xbf, 0xf8, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xfb, 0x0, + 0x0, 0x0, 0x18, 0xff, 0xf8, 0x0, 0x0, 0x0, + 0xbf, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1, 0xff, 0xfb, 0x0, 0x0, 0x0, + 0x0, 0x3d, 0xc0, 0x0, 0x0, 0x0, 0xbf, 0xf8, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x66, 0x65, 0x54, + 0x45, 0xff, 0xfc, 0x44, 0x44, 0x44, 0x44, 0x45, + 0x64, 0x44, 0x44, 0x44, 0xcf, 0xfa, 0x44, 0x45, + 0x56, 0x20, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x50, + 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x50, 0x0, 0xde, + 0xdc, 0xcc, 0xcd, 0xff, 0xfd, 0xcc, 0xcc, 0xcc, + 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xff, 0xfd, + 0xcc, 0xcd, 0xde, 0x40, 0x0, 0x0, 0x0, 0x0, + 0x7, 0xff, 0xf2, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xef, 0xf5, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, 0xff, + 0xe0, 0x0, 0x0, 0x9c, 0x40, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xef, 0xf5, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xa0, 0x0, + 0x2, 0xff, 0xfc, 0x40, 0x0, 0x0, 0x0, 0x0, + 0xef, 0xf5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xaf, 0xff, 0x40, 0x0, 0x6, 0xff, + 0xff, 0xfd, 0x50, 0x0, 0x0, 0x0, 0xef, 0xf5, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5, + 0xff, 0xfe, 0x0, 0x0, 0x0, 0x18, 0xff, 0xff, + 0xf5, 0x0, 0x0, 0x2, 0xff, 0xf4, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x4f, 0xff, 0xf6, + 0x0, 0x0, 0x0, 0x0, 0x1a, 0xff, 0xa0, 0x6, + 0xbc, 0xdf, 0xff, 0xf3, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x6, 0xff, 0xff, 0xb0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x5e, 0x10, 0x1, 0xff, 0xff, + 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1b, 0xff, 0xfe, 0x10, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x9f, 0xff, 0xff, 0x50, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4e, + 0xe2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x4f, 0xc9, 0x51, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x40, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x20, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, + 0xff, 0xdd, 0xdd, 0xdd, 0xff, 0xfd, 0xdd, 0xdd, + 0xdf, 0xff, 0xdd, 0xdd, 0xdd, 0xef, 0xff, 0x10, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xfb, 0x0, + 0x0, 0x2, 0xff, 0xe0, 0x0, 0x0, 0xe, 0xff, + 0x20, 0x0, 0x0, 0x9f, 0xff, 0x10, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xef, 0xfb, 0x0, 0x0, 0x2, + 0xff, 0xe0, 0x0, 0x0, 0xe, 0xff, 0x20, 0x0, + 0x0, 0x9f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xef, 0xfb, 0x0, 0x0, 0x2, 0xff, 0xe0, + 0x0, 0x0, 0xe, 0xff, 0x20, 0x0, 0x0, 0x9f, + 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xef, + 0xfb, 0x0, 0x0, 0x2, 0xff, 0xe0, 0x0, 0x0, + 0xe, 0xff, 0x20, 0x0, 0x0, 0x9f, 0xff, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xef, 0xfb, 0x0, + 0x0, 0x2, 0xff, 0xe0, 0x0, 0x0, 0xe, 0xff, + 0x20, 0x0, 0x0, 0x9f, 0xff, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xef, 0xfb, 0x0, 0x0, 0x2, + 0xff, 0xe0, 0x0, 0x0, 0xe, 0xff, 0x20, 0x0, + 0x0, 0x9f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xef, 0xfb, 0x0, 0x0, 0x2, 0xff, 0xe0, + 0x0, 0x0, 0xe, 0xff, 0x20, 0x0, 0x0, 0x9f, + 0xff, 0x0, 0x0, 0x0, 0x12, 0x21, 0x10, 0xef, + 0xfb, 0x0, 0x0, 0x2, 0xff, 0xe0, 0x0, 0x0, + 0xe, 0xff, 0x20, 0x0, 0x0, 0x9f, 0xff, 0x11, + 0x12, 0x21, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, + 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0x7f, 0xee, + 0xed, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, + 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, + 0xdd, 0xee, 0xef, 0xf8, + /* U+76EE "目" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @@ -50868,178 +50986,179 @@ static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = { {.bitmap_index = 239048, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, {.bitmap_index = 239951, .adv_w = 736, .box_w = 40, .box_h = 42, .ofs_x = 3, .ofs_y = -4}, {.bitmap_index = 240791, .adv_w = 736, .box_w = 39, .box_h = 42, .ofs_x = 4, .ofs_y = -5}, - {.bitmap_index = 241610, .adv_w = 736, .box_w = 32, .box_h = 40, .ofs_x = 7, .ofs_y = -4}, - {.bitmap_index = 242250, .adv_w = 736, .box_w = 42, .box_h = 40, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 243090, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 244014, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 2, .ofs_y = -6}, - {.bitmap_index = 244939, .adv_w = 736, .box_w = 41, .box_h = 41, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 245780, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 246704, .adv_w = 736, .box_w = 43, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 247586, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 248511, .adv_w = 736, .box_w = 41, .box_h = 40, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 249331, .adv_w = 736, .box_w = 42, .box_h = 42, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 250213, .adv_w = 736, .box_w = 43, .box_h = 44, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 251159, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 252105, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 253008, .adv_w = 736, .box_w = 40, .box_h = 42, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 253848, .adv_w = 736, .box_w = 44, .box_h = 44, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 254816, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 255741, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 256687, .adv_w = 736, .box_w = 42, .box_h = 43, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 257590, .adv_w = 736, .box_w = 41, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 258451, .adv_w = 736, .box_w = 41, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 259312, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 260258, .adv_w = 736, .box_w = 42, .box_h = 40, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 261098, .adv_w = 736, .box_w = 42, .box_h = 43, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 262001, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 262925, .adv_w = 736, .box_w = 44, .box_h = 44, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 263893, .adv_w = 736, .box_w = 44, .box_h = 44, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 264861, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 265785, .adv_w = 736, .box_w = 40, .box_h = 40, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 266585, .adv_w = 736, .box_w = 42, .box_h = 39, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 267404, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 268307, .adv_w = 736, .box_w = 42, .box_h = 39, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 269126, .adv_w = 736, .box_w = 42, .box_h = 41, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 269987, .adv_w = 736, .box_w = 41, .box_h = 43, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 270869, .adv_w = 736, .box_w = 32, .box_h = 42, .ofs_x = 7, .ofs_y = -4}, - {.bitmap_index = 271541, .adv_w = 736, .box_w = 42, .box_h = 43, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 272444, .adv_w = 736, .box_w = 42, .box_h = 41, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 273305, .adv_w = 736, .box_w = 41, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 274166, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 275069, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 276015, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 276961, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 277885, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 278810, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 279713, .adv_w = 736, .box_w = 41, .box_h = 43, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 280595, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 281519, .adv_w = 736, .box_w = 44, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 282487, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 283433, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 284379, .adv_w = 736, .box_w = 38, .box_h = 44, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 285215, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 286161, .adv_w = 736, .box_w = 43, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 287043, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 287946, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 288892, .adv_w = 736, .box_w = 43, .box_h = 41, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 289774, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 290698, .adv_w = 736, .box_w = 42, .box_h = 43, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 291601, .adv_w = 736, .box_w = 44, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 292503, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 293428, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 294353, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 295278, .adv_w = 736, .box_w = 42, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 296139, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 297085, .adv_w = 736, .box_w = 42, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 297967, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 241610, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 242534, .adv_w = 736, .box_w = 32, .box_h = 40, .ofs_x = 7, .ofs_y = -4}, + {.bitmap_index = 243174, .adv_w = 736, .box_w = 42, .box_h = 40, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 244014, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 244938, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 245863, .adv_w = 736, .box_w = 41, .box_h = 41, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 246704, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 247628, .adv_w = 736, .box_w = 43, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 248510, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 249435, .adv_w = 736, .box_w = 41, .box_h = 40, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 250255, .adv_w = 736, .box_w = 42, .box_h = 42, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 251137, .adv_w = 736, .box_w = 43, .box_h = 44, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 252083, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 253029, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 253932, .adv_w = 736, .box_w = 40, .box_h = 42, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 254772, .adv_w = 736, .box_w = 44, .box_h = 44, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 255740, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 256665, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 257611, .adv_w = 736, .box_w = 42, .box_h = 43, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 258514, .adv_w = 736, .box_w = 41, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 259375, .adv_w = 736, .box_w = 41, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 260236, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 261182, .adv_w = 736, .box_w = 42, .box_h = 40, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 262022, .adv_w = 736, .box_w = 42, .box_h = 43, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 262925, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 263849, .adv_w = 736, .box_w = 44, .box_h = 44, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 264817, .adv_w = 736, .box_w = 44, .box_h = 44, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 265785, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 266709, .adv_w = 736, .box_w = 40, .box_h = 40, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 267509, .adv_w = 736, .box_w = 42, .box_h = 39, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 268328, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 269231, .adv_w = 736, .box_w = 42, .box_h = 39, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 270050, .adv_w = 736, .box_w = 42, .box_h = 41, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 270911, .adv_w = 736, .box_w = 41, .box_h = 43, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 271793, .adv_w = 736, .box_w = 32, .box_h = 42, .ofs_x = 7, .ofs_y = -4}, + {.bitmap_index = 272465, .adv_w = 736, .box_w = 42, .box_h = 43, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 273368, .adv_w = 736, .box_w = 42, .box_h = 41, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 274229, .adv_w = 736, .box_w = 41, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 275090, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 275993, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 276939, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 277885, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 278809, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 279734, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 280637, .adv_w = 736, .box_w = 41, .box_h = 43, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 281519, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 282443, .adv_w = 736, .box_w = 44, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 283411, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 284357, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 285303, .adv_w = 736, .box_w = 38, .box_h = 44, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 286139, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 287085, .adv_w = 736, .box_w = 43, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 287967, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 288870, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 289816, .adv_w = 736, .box_w = 43, .box_h = 41, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 290698, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 291622, .adv_w = 736, .box_w = 42, .box_h = 43, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 292525, .adv_w = 736, .box_w = 44, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 293427, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 294352, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 295277, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 296202, .adv_w = 736, .box_w = 42, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 297063, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 298009, .adv_w = 736, .box_w = 42, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, {.bitmap_index = 298891, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, {.bitmap_index = 299815, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 300739, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 301664, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 302610, .adv_w = 736, .box_w = 42, .box_h = 42, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 303492, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 304417, .adv_w = 736, .box_w = 44, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 305385, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 306309, .adv_w = 736, .box_w = 42, .box_h = 41, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 307170, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 308095, .adv_w = 736, .box_w = 42, .box_h = 42, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 308977, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 309923, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 310826, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 311750, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 312653, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 313577, .adv_w = 736, .box_w = 42, .box_h = 41, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 314438, .adv_w = 736, .box_w = 42, .box_h = 41, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 315299, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 316223, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 317169, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 318093, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 319018, .adv_w = 736, .box_w = 44, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 319920, .adv_w = 736, .box_w = 42, .box_h = 41, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 320781, .adv_w = 736, .box_w = 42, .box_h = 40, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 321621, .adv_w = 736, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 322482, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 323385, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 324331, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 325277, .adv_w = 736, .box_w = 41, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 326138, .adv_w = 736, .box_w = 40, .box_h = 43, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 326998, .adv_w = 736, .box_w = 38, .box_h = 43, .ofs_x = 4, .ofs_y = -5}, - {.bitmap_index = 327815, .adv_w = 736, .box_w = 39, .box_h = 44, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 328673, .adv_w = 736, .box_w = 42, .box_h = 44, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 329597, .adv_w = 736, .box_w = 42, .box_h = 43, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 330500, .adv_w = 736, .box_w = 40, .box_h = 40, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 331300, .adv_w = 736, .box_w = 41, .box_h = 43, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 332182, .adv_w = 736, .box_w = 40, .box_h = 40, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 332982, .adv_w = 736, .box_w = 42, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 333843, .adv_w = 736, .box_w = 43, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 334703, .adv_w = 736, .box_w = 42, .box_h = 41, .ofs_x = 2, .ofs_y = -6}, - {.bitmap_index = 335564, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 336510, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 337434, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 338337, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 339283, .adv_w = 736, .box_w = 41, .box_h = 41, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 340124, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 341070, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 341973, .adv_w = 736, .box_w = 47, .box_h = 47, .ofs_x = -1, .ofs_y = -6}, - {.bitmap_index = 343078, .adv_w = 736, .box_w = 46, .box_h = 35, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 343883, .adv_w = 736, .box_w = 46, .box_h = 41, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 344826, .adv_w = 736, .box_w = 46, .box_h = 35, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 345631, .adv_w = 506, .box_w = 32, .box_h = 33, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 346159, .adv_w = 736, .box_w = 45, .box_h = 47, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 347217, .adv_w = 736, .box_w = 44, .box_h = 47, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 348251, .adv_w = 828, .box_w = 52, .box_h = 41, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 349317, .adv_w = 736, .box_w = 46, .box_h = 47, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 350398, .adv_w = 828, .box_w = 52, .box_h = 35, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 351308, .adv_w = 736, .box_w = 46, .box_h = 47, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 352389, .adv_w = 368, .box_w = 23, .box_h = 36, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 352803, .adv_w = 552, .box_w = 35, .box_h = 36, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 353433, .adv_w = 828, .box_w = 52, .box_h = 44, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 354577, .adv_w = 736, .box_w = 46, .box_h = 35, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 355382, .adv_w = 506, .box_w = 32, .box_h = 47, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 356134, .adv_w = 644, .box_w = 30, .box_h = 42, .ofs_x = 5, .ofs_y = -4}, - {.bitmap_index = 356764, .adv_w = 644, .box_w = 41, .box_h = 48, .ofs_x = 0, .ofs_y = -7}, - {.bitmap_index = 357748, .adv_w = 644, .box_w = 41, .box_h = 41, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 358589, .adv_w = 644, .box_w = 41, .box_h = 41, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 359430, .adv_w = 644, .box_w = 30, .box_h = 42, .ofs_x = 5, .ofs_y = -4}, - {.bitmap_index = 360060, .adv_w = 644, .box_w = 42, .box_h = 41, .ofs_x = -1, .ofs_y = -3}, - {.bitmap_index = 360921, .adv_w = 460, .box_w = 25, .box_h = 40, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 361421, .adv_w = 460, .box_w = 25, .box_h = 40, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 361921, .adv_w = 644, .box_w = 41, .box_h = 41, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 362762, .adv_w = 644, .box_w = 41, .box_h = 10, .ofs_x = 0, .ofs_y = 12}, - {.bitmap_index = 362967, .adv_w = 828, .box_w = 52, .box_h = 35, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 363877, .adv_w = 920, .box_w = 58, .box_h = 47, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 365240, .adv_w = 828, .box_w = 54, .box_h = 47, .ofs_x = -1, .ofs_y = -6}, - {.bitmap_index = 366509, .adv_w = 736, .box_w = 46, .box_h = 42, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 367475, .adv_w = 644, .box_w = 40, .box_h = 25, .ofs_x = 0, .ofs_y = 5}, - {.bitmap_index = 367975, .adv_w = 644, .box_w = 40, .box_h = 25, .ofs_x = 0, .ofs_y = 5}, - {.bitmap_index = 368475, .adv_w = 920, .box_w = 58, .box_h = 36, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 369519, .adv_w = 736, .box_w = 46, .box_h = 35, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 370324, .adv_w = 736, .box_w = 46, .box_h = 47, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 371405, .adv_w = 736, .box_w = 47, .box_h = 47, .ofs_x = -1, .ofs_y = -6}, - {.bitmap_index = 372510, .adv_w = 644, .box_w = 41, .box_h = 41, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 373351, .adv_w = 644, .box_w = 41, .box_h = 47, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 374315, .adv_w = 644, .box_w = 41, .box_h = 41, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 375156, .adv_w = 644, .box_w = 41, .box_h = 36, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 375894, .adv_w = 736, .box_w = 46, .box_h = 35, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 376699, .adv_w = 460, .box_w = 31, .box_h = 47, .ofs_x = -1, .ofs_y = -6}, - {.bitmap_index = 377428, .adv_w = 644, .box_w = 41, .box_h = 47, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 378392, .adv_w = 644, .box_w = 41, .box_h = 47, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 379356, .adv_w = 828, .box_w = 52, .box_h = 35, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 380266, .adv_w = 736, .box_w = 48, .box_h = 47, .ofs_x = -1, .ofs_y = -6}, - {.bitmap_index = 381394, .adv_w = 552, .box_w = 35, .box_h = 47, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 382217, .adv_w = 920, .box_w = 58, .box_h = 42, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 383435, .adv_w = 920, .box_w = 58, .box_h = 30, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 384305, .adv_w = 920, .box_w = 58, .box_h = 30, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 385175, .adv_w = 920, .box_w = 58, .box_h = 30, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 386045, .adv_w = 920, .box_w = 58, .box_h = 30, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 386915, .adv_w = 920, .box_w = 58, .box_h = 30, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 387785, .adv_w = 920, .box_w = 58, .box_h = 36, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 388829, .adv_w = 644, .box_w = 36, .box_h = 47, .ofs_x = 2, .ofs_y = -6}, - {.bitmap_index = 389675, .adv_w = 644, .box_w = 41, .box_h = 47, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 390639, .adv_w = 736, .box_w = 47, .box_h = 47, .ofs_x = -1, .ofs_y = -6}, - {.bitmap_index = 391744, .adv_w = 920, .box_w = 58, .box_h = 35, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 392759, .adv_w = 552, .box_w = 35, .box_h = 47, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 393582, .adv_w = 740, .box_w = 47, .box_h = 30, .ofs_x = 0, .ofs_y = 2} + {.bitmap_index = 300739, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 301663, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 302588, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 303534, .adv_w = 736, .box_w = 42, .box_h = 42, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 304416, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 305341, .adv_w = 736, .box_w = 44, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 306309, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 307233, .adv_w = 736, .box_w = 42, .box_h = 41, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 308094, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 309019, .adv_w = 736, .box_w = 42, .box_h = 42, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 309901, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 310847, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 311750, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 312674, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 313577, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 314501, .adv_w = 736, .box_w = 42, .box_h = 41, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 315362, .adv_w = 736, .box_w = 42, .box_h = 41, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 316223, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 317147, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 318093, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 319017, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 319942, .adv_w = 736, .box_w = 44, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 320844, .adv_w = 736, .box_w = 42, .box_h = 41, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 321705, .adv_w = 736, .box_w = 42, .box_h = 40, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 322545, .adv_w = 736, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 323406, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 324309, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 325255, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 326201, .adv_w = 736, .box_w = 41, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 327062, .adv_w = 736, .box_w = 40, .box_h = 43, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 327922, .adv_w = 736, .box_w = 38, .box_h = 43, .ofs_x = 4, .ofs_y = -5}, + {.bitmap_index = 328739, .adv_w = 736, .box_w = 39, .box_h = 44, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 329597, .adv_w = 736, .box_w = 42, .box_h = 44, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 330521, .adv_w = 736, .box_w = 42, .box_h = 43, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 331424, .adv_w = 736, .box_w = 40, .box_h = 40, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 332224, .adv_w = 736, .box_w = 41, .box_h = 43, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 333106, .adv_w = 736, .box_w = 40, .box_h = 40, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 333906, .adv_w = 736, .box_w = 42, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 334767, .adv_w = 736, .box_w = 43, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 335627, .adv_w = 736, .box_w = 42, .box_h = 41, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 336488, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 337434, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 338358, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 339261, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 340207, .adv_w = 736, .box_w = 41, .box_h = 41, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 341048, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 341994, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 342897, .adv_w = 736, .box_w = 47, .box_h = 47, .ofs_x = -1, .ofs_y = -6}, + {.bitmap_index = 344002, .adv_w = 736, .box_w = 46, .box_h = 35, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 344807, .adv_w = 736, .box_w = 46, .box_h = 41, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 345750, .adv_w = 736, .box_w = 46, .box_h = 35, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 346555, .adv_w = 506, .box_w = 32, .box_h = 33, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 347083, .adv_w = 736, .box_w = 45, .box_h = 47, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 348141, .adv_w = 736, .box_w = 44, .box_h = 47, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 349175, .adv_w = 828, .box_w = 52, .box_h = 41, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 350241, .adv_w = 736, .box_w = 46, .box_h = 47, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 351322, .adv_w = 828, .box_w = 52, .box_h = 35, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 352232, .adv_w = 736, .box_w = 46, .box_h = 47, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 353313, .adv_w = 368, .box_w = 23, .box_h = 36, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 353727, .adv_w = 552, .box_w = 35, .box_h = 36, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 354357, .adv_w = 828, .box_w = 52, .box_h = 44, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 355501, .adv_w = 736, .box_w = 46, .box_h = 35, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 356306, .adv_w = 506, .box_w = 32, .box_h = 47, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 357058, .adv_w = 644, .box_w = 30, .box_h = 42, .ofs_x = 5, .ofs_y = -4}, + {.bitmap_index = 357688, .adv_w = 644, .box_w = 41, .box_h = 48, .ofs_x = 0, .ofs_y = -7}, + {.bitmap_index = 358672, .adv_w = 644, .box_w = 41, .box_h = 41, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 359513, .adv_w = 644, .box_w = 41, .box_h = 41, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 360354, .adv_w = 644, .box_w = 30, .box_h = 42, .ofs_x = 5, .ofs_y = -4}, + {.bitmap_index = 360984, .adv_w = 644, .box_w = 42, .box_h = 41, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 361845, .adv_w = 460, .box_w = 25, .box_h = 40, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 362345, .adv_w = 460, .box_w = 25, .box_h = 40, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 362845, .adv_w = 644, .box_w = 41, .box_h = 41, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 363686, .adv_w = 644, .box_w = 41, .box_h = 10, .ofs_x = 0, .ofs_y = 12}, + {.bitmap_index = 363891, .adv_w = 828, .box_w = 52, .box_h = 35, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 364801, .adv_w = 920, .box_w = 58, .box_h = 47, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 366164, .adv_w = 828, .box_w = 54, .box_h = 47, .ofs_x = -1, .ofs_y = -6}, + {.bitmap_index = 367433, .adv_w = 736, .box_w = 46, .box_h = 42, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 368399, .adv_w = 644, .box_w = 40, .box_h = 25, .ofs_x = 0, .ofs_y = 5}, + {.bitmap_index = 368899, .adv_w = 644, .box_w = 40, .box_h = 25, .ofs_x = 0, .ofs_y = 5}, + {.bitmap_index = 369399, .adv_w = 920, .box_w = 58, .box_h = 36, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 370443, .adv_w = 736, .box_w = 46, .box_h = 35, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 371248, .adv_w = 736, .box_w = 46, .box_h = 47, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 372329, .adv_w = 736, .box_w = 47, .box_h = 47, .ofs_x = -1, .ofs_y = -6}, + {.bitmap_index = 373434, .adv_w = 644, .box_w = 41, .box_h = 41, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 374275, .adv_w = 644, .box_w = 41, .box_h = 47, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 375239, .adv_w = 644, .box_w = 41, .box_h = 41, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 376080, .adv_w = 644, .box_w = 41, .box_h = 36, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 376818, .adv_w = 736, .box_w = 46, .box_h = 35, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 377623, .adv_w = 460, .box_w = 31, .box_h = 47, .ofs_x = -1, .ofs_y = -6}, + {.bitmap_index = 378352, .adv_w = 644, .box_w = 41, .box_h = 47, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 379316, .adv_w = 644, .box_w = 41, .box_h = 47, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 380280, .adv_w = 828, .box_w = 52, .box_h = 35, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 381190, .adv_w = 736, .box_w = 48, .box_h = 47, .ofs_x = -1, .ofs_y = -6}, + {.bitmap_index = 382318, .adv_w = 552, .box_w = 35, .box_h = 47, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 383141, .adv_w = 920, .box_w = 58, .box_h = 42, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 384359, .adv_w = 920, .box_w = 58, .box_h = 30, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 385229, .adv_w = 920, .box_w = 58, .box_h = 30, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 386099, .adv_w = 920, .box_w = 58, .box_h = 30, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 386969, .adv_w = 920, .box_w = 58, .box_h = 30, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 387839, .adv_w = 920, .box_w = 58, .box_h = 30, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 388709, .adv_w = 920, .box_w = 58, .box_h = 36, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 389753, .adv_w = 644, .box_w = 36, .box_h = 47, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 390599, .adv_w = 644, .box_w = 41, .box_h = 47, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 391563, .adv_w = 736, .box_w = 47, .box_h = 47, .ofs_x = -1, .ofs_y = -6}, + {.bitmap_index = 392668, .adv_w = 920, .box_w = 58, .box_h = 35, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 393683, .adv_w = 552, .box_w = 35, .box_h = 47, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 394506, .adv_w = 740, .box_w = 47, .box_h = 30, .ofs_x = 0, .ofs_y = 2} }; /*--------------------- @@ -51076,29 +51195,29 @@ static const uint16_t unicode_list_1[] = { 0x6bb0, 0x6bf1, 0x6c25, 0x6c38, 0x6c8b, 0x6c91, 0x6c9b, 0x6cd8, 0x6d55, 0x6d79, 0x6de0, 0x6e2a, 0x6e31, 0x7009, 0x7018, 0x7076, 0x7086, 0x7198, 0x7206, 0x72ff, 0x7300, 0x7356, 0x746f, 0x7478, - 0x7485, 0x748b, 0x749c, 0x74a9, 0x75d4, 0x763e, 0x7644, 0x765b, - 0x7670, 0x768c, 0x773d, 0x7751, 0x77be, 0x788a, 0x78d1, 0x791d, - 0x795b, 0x79ca, 0x79d4, 0x7a2e, 0x7a3f, 0x7a76, 0x7c4b, 0x7c70, - 0x7c72, 0x7e0f, 0x7e1f, 0x7e21, 0x7e23, 0x7e2c, 0x7e2f, 0x7e3a, - 0x7ea1, 0x7ebe, 0x7f55, 0x7f83, 0x801c, 0x804d, 0x813a, 0x8144, - 0x81ff, 0x8307, 0x832c, 0x851f, 0x8652, 0x879c, 0x87b8, 0x87fb, - 0x8815, 0x88d1, 0x8914, 0x8916, 0x8918, 0x8922, 0x8ab6, 0x8af1, - 0x8af4, 0x8afe, 0x8b00, 0x8b0e, 0x8b0f, 0x8b11, 0x8b16, 0x8b25, - 0x8b47, 0x8b53, 0x8c75, 0x8c78, 0x8cd5, 0x8d7a, 0x8eb8, 0x8ebc, - 0x8ebe, 0x8ec4, 0x8ecd, 0x8ee3, 0x8f17, 0x8f20, 0x8f24, 0x8f29, - 0x8f2b, 0x8f2e, 0x8f49, 0x8f4d, 0x8f50, 0x8f51, 0x8f59, 0x8f6a, - 0x8f6f, 0x8fa3, 0x9038, 0x904d, 0x911d, 0x911f, 0x93ef, 0x9451, - 0x947e, 0x94ac, 0x94cf, 0x953d, 0x953e, 0x9544, 0x95b4, 0x95e0, - 0x96b2, 0x9743, 0x97c5, 0x97c6, 0x97c9, 0x97d4, 0x97e1, 0x981e, - 0x98c1, 0x99dc, 0x9d73, 0x9df6, 0x9e28, 0xef51, 0xef58, 0xef5b, - 0xef5c, 0xef5d, 0xef61, 0xef63, 0xef65, 0xef69, 0xef6c, 0xef71, - 0xef76, 0xef77, 0xef78, 0xef8e, 0xef93, 0xef98, 0xef9b, 0xef9c, - 0xef9d, 0xefa1, 0xefa2, 0xefa3, 0xefa4, 0xefb7, 0xefb8, 0xefbe, - 0xefc0, 0xefc1, 0xefc4, 0xefc7, 0xefc8, 0xefc9, 0xefcb, 0xefe3, - 0xefe5, 0xf014, 0xf015, 0xf017, 0xf019, 0xf030, 0xf037, 0xf03a, - 0xf043, 0xf06c, 0xf074, 0xf0ab, 0xf13b, 0xf190, 0xf191, 0xf192, - 0xf193, 0xf194, 0xf1d7, 0xf1e3, 0xf23d, 0xf254, 0xf4aa, 0xf712, - 0xf7f2 + 0x7485, 0x748b, 0x749c, 0x74a9, 0x75d4, 0x7628, 0x763e, 0x7644, + 0x765b, 0x7670, 0x768c, 0x773d, 0x7751, 0x77be, 0x788a, 0x78d1, + 0x791d, 0x795b, 0x79ca, 0x79d4, 0x7a2e, 0x7a3f, 0x7a76, 0x7c4b, + 0x7c70, 0x7c72, 0x7e0f, 0x7e1f, 0x7e21, 0x7e23, 0x7e2c, 0x7e2f, + 0x7e3a, 0x7ea1, 0x7ebe, 0x7f55, 0x7f83, 0x801c, 0x804d, 0x813a, + 0x8144, 0x81ff, 0x8307, 0x832c, 0x851f, 0x8652, 0x879c, 0x87b8, + 0x87fb, 0x8815, 0x88d1, 0x8914, 0x8916, 0x8918, 0x8922, 0x8ab6, + 0x8af1, 0x8af4, 0x8afe, 0x8b00, 0x8b0e, 0x8b0f, 0x8b11, 0x8b16, + 0x8b25, 0x8b47, 0x8b53, 0x8c75, 0x8c78, 0x8cd5, 0x8d7a, 0x8eb8, + 0x8ebc, 0x8ebe, 0x8ec4, 0x8ecd, 0x8ee3, 0x8f17, 0x8f20, 0x8f24, + 0x8f29, 0x8f2b, 0x8f2e, 0x8f49, 0x8f4d, 0x8f50, 0x8f51, 0x8f59, + 0x8f6a, 0x8f6f, 0x8fa3, 0x9038, 0x904d, 0x911d, 0x911f, 0x93ef, + 0x9451, 0x947e, 0x94ac, 0x94cf, 0x953d, 0x953e, 0x9544, 0x95b4, + 0x95e0, 0x96b2, 0x9743, 0x97c5, 0x97c6, 0x97c9, 0x97d4, 0x97e1, + 0x981e, 0x98c1, 0x99dc, 0x9d73, 0x9df6, 0x9e28, 0xef51, 0xef58, + 0xef5b, 0xef5c, 0xef5d, 0xef61, 0xef63, 0xef65, 0xef69, 0xef6c, + 0xef71, 0xef76, 0xef77, 0xef78, 0xef8e, 0xef93, 0xef98, 0xef9b, + 0xef9c, 0xef9d, 0xefa1, 0xefa2, 0xefa3, 0xefa4, 0xefb7, 0xefb8, + 0xefbe, 0xefc0, 0xefc1, 0xefc4, 0xefc7, 0xefc8, 0xefc9, 0xefcb, + 0xefe3, 0xefe5, 0xf014, 0xf015, 0xf017, 0xf019, 0xf030, 0xf037, + 0xf03a, 0xf043, 0xf06c, 0xf074, 0xf0ab, 0xf13b, 0xf190, 0xf191, + 0xf192, 0xf193, 0xf194, 0xf1d7, 0xf1e3, 0xf23d, 0xf254, 0xf4aa, + 0xf712, 0xf7f2 }; /*Collect the unicode lists and glyph_id offsets*/ @@ -51110,7 +51229,7 @@ static const lv_font_fmt_txt_cmap_t cmaps[] = }, { .range_start = 176, .range_length = 63475, .glyph_id_start = 96, - .unicode_list = unicode_list_1, .glyph_id_ofs_list = NULL, .list_length = 409, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY + .unicode_list = unicode_list_1, .glyph_id_ofs_list = NULL, .list_length = 410, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY } }; @@ -51185,7 +51304,7 @@ static const uint8_t kern_left_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0 + 0, 0 }; /*Map glyph_ids to kern right classes*/ @@ -51254,7 +51373,7 @@ static const uint8_t kern_right_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0 + 0, 0 }; /*Kern values between classes*/ diff --git a/lib/lvgl/lvgl/src/font/lv_font_montserrat_48.c b/lib/lvgl/lvgl/src/font/lv_font_montserrat_48.c index 202d396a..f43704f3 100644 --- a/lib/lvgl/lvgl/src/font/lv_font_montserrat_48.c +++ b/lib/lvgl/lvgl/src/font/lv_font_montserrat_48.c @@ -1,7 +1,7 @@ /******************************************************************************* * Size: 48 px * Bpp: 4 - * Opts: --bpp 4 --size 48 --no-compress --font Montserrat-Medium.ttf --range 32-127,176,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20351,20363,20391,20445,20449,20462,20463,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29366,29615,29616,29702,29983,29992,30005,30011,30028,30041,30340,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31181,31243,31354,31364,31454,31471,31526,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33719,33756,34255,34562,34892,34920,34987,35013,35201,35268,35270,35272,35282,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35831,35843,36133,36136,36229,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --format lvgl -o out/lv_font_montserrat_48.c + * Opts: --bpp 4 --size 48 --no-compress --font Montserrat-Medium.ttf --range 32-127,176,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20351,20363,20391,20445,20449,20462,20463,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29366,29615,29616,29702,29983,29992,30005,30011,30028,30041,30340,30424,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31181,31243,31354,31364,31454,31471,31526,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33719,33756,34255,34562,34892,34920,34987,35013,35201,35268,35270,35272,35282,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35831,35843,36133,36136,36229,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --format lvgl -o out/lv_font_montserrat_48.c ******************************************************************************/ #ifdef LV_LVGL_H_INCLUDE_SIMPLE @@ -33641,6 +33641,135 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x97, 0x42, 0x0, 0x0, 0x0, 0x0, + /* U+76D8 "盘" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x36, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x7f, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xbf, + 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xef, 0xff, + 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xfa, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xde, 0xee, 0xee, 0xef, 0xff, 0xff, 0xee, 0xee, + 0xee, 0xee, 0xee, 0xee, 0xee, 0xe4, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xef, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf4, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf3, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xff, 0x84, + 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, + 0x47, 0xff, 0xf3, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, 0x50, 0x0, + 0x0, 0x9, 0x70, 0x0, 0x0, 0x0, 0x0, 0x4, + 0xff, 0xf2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xcf, 0xff, 0x50, 0x0, 0x0, + 0x4f, 0xfd, 0x40, 0x0, 0x0, 0x0, 0x4, 0xff, + 0xf2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xcf, 0xff, 0x50, 0x0, 0x0, 0xdf, + 0xff, 0xfb, 0x20, 0x0, 0x0, 0x4, 0xff, 0xf1, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xcf, 0xff, 0x50, 0x0, 0x0, 0x2b, 0xff, + 0xff, 0xe0, 0x0, 0x0, 0x4, 0xff, 0xf1, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xcf, 0xff, 0x50, 0x0, 0x0, 0x0, 0x5e, 0xff, + 0x60, 0x0, 0x0, 0x4, 0xff, 0xf1, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, + 0xff, 0x50, 0x0, 0x0, 0x0, 0x1, 0xbb, 0x0, + 0x0, 0x0, 0x4, 0xff, 0xf1, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x78, 0x77, 0x66, 0x66, 0xdf, 0xff, + 0x96, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, + 0x66, 0x68, 0xff, 0xf7, 0x66, 0x66, 0x78, 0x20, + 0x0, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x30, 0x0, + 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x30, 0x0, 0xce, + 0xed, 0xdd, 0xdd, 0xff, 0xff, 0xdd, 0xdd, 0xdd, + 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xde, 0xff, + 0xfd, 0xdd, 0xde, 0xef, 0x30, 0x0, 0x0, 0x0, + 0x0, 0x1, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xe0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x5, 0xff, 0xf8, 0x0, 0x0, 0x9, 0x91, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xe0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, + 0xff, 0xf4, 0x0, 0x0, 0x1f, 0xff, 0x80, 0x0, + 0x0, 0x0, 0x0, 0x7, 0xff, 0xe0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, + 0xe0, 0x0, 0x0, 0x9f, 0xff, 0xfe, 0x70, 0x0, + 0x0, 0x0, 0x7, 0xff, 0xe0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xbf, 0xff, 0x80, + 0x0, 0x0, 0x18, 0xff, 0xff, 0xfe, 0x40, 0x0, + 0x0, 0x8, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0x20, 0x0, + 0x0, 0x0, 0x19, 0xff, 0xfe, 0x10, 0x12, 0x33, + 0x6e, 0xff, 0xd0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x7f, 0xff, 0xf8, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x4e, 0xf5, 0x0, 0x4f, 0xff, 0xff, + 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x9, 0xff, 0xff, 0xd0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1, 0x90, 0x0, 0xb, 0xff, 0xff, 0xff, + 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, + 0xcf, 0xfe, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x4, 0xff, 0xff, 0xe6, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9, + 0xf3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xb9, 0x62, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x34, 0x64, + 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, + 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xdf, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfd, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xcf, 0xff, 0xbb, 0xbb, 0xbb, + 0xdf, 0xff, 0xbb, 0xbb, 0xbb, 0xff, 0xfc, 0xbb, + 0xbb, 0xbb, 0xff, 0xfd, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xcf, 0xff, 0x10, 0x0, 0x0, 0x5f, + 0xfd, 0x0, 0x0, 0x0, 0xef, 0xf4, 0x0, 0x0, + 0x0, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xbf, 0xff, 0x10, 0x0, 0x0, 0x5f, 0xfd, + 0x0, 0x0, 0x0, 0xef, 0xf4, 0x0, 0x0, 0x0, + 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xbf, 0xff, 0x10, 0x0, 0x0, 0x5f, 0xfd, 0x0, + 0x0, 0x0, 0xef, 0xf4, 0x0, 0x0, 0x0, 0xff, + 0xfb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xbf, + 0xff, 0x10, 0x0, 0x0, 0x5f, 0xfd, 0x0, 0x0, + 0x0, 0xef, 0xf4, 0x0, 0x0, 0x0, 0xff, 0xfb, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xbf, 0xff, + 0x10, 0x0, 0x0, 0x5f, 0xfd, 0x0, 0x0, 0x0, + 0xef, 0xf4, 0x0, 0x0, 0x0, 0xff, 0xfb, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xbf, 0xff, 0x10, + 0x0, 0x0, 0x5f, 0xfd, 0x0, 0x0, 0x0, 0xef, + 0xf4, 0x0, 0x0, 0x0, 0xff, 0xfb, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xbf, 0xff, 0x10, 0x0, + 0x0, 0x5f, 0xfd, 0x0, 0x0, 0x0, 0xef, 0xf4, + 0x0, 0x0, 0x0, 0xff, 0xfb, 0x0, 0x0, 0x0, + 0x25, 0x43, 0x33, 0xbf, 0xff, 0x33, 0x33, 0x33, + 0x7f, 0xfd, 0x33, 0x33, 0x33, 0xef, 0xf6, 0x33, + 0x33, 0x33, 0xff, 0xfc, 0x33, 0x34, 0x52, 0x8f, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x8f, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf8, 0x7f, 0xee, 0xdd, + 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, + 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, + 0xdd, 0xee, 0xef, 0xf7, + /* U+76EE "目" */ 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, @@ -55051,178 +55180,179 @@ static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = { {.bitmap_index = 259721, .adv_w = 768, .box_w = 44, .box_h = 45, .ofs_x = 2, .ofs_y = -6}, {.bitmap_index = 260711, .adv_w = 768, .box_w = 42, .box_h = 44, .ofs_x = 3, .ofs_y = -5}, {.bitmap_index = 261635, .adv_w = 768, .box_w = 40, .box_h = 45, .ofs_x = 4, .ofs_y = -5}, - {.bitmap_index = 262535, .adv_w = 768, .box_w = 34, .box_h = 41, .ofs_x = 7, .ofs_y = -4}, - {.bitmap_index = 263232, .adv_w = 768, .box_w = 44, .box_h = 42, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 264156, .adv_w = 768, .box_w = 45, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 265169, .adv_w = 768, .box_w = 45, .box_h = 45, .ofs_x = 2, .ofs_y = -7}, - {.bitmap_index = 266182, .adv_w = 768, .box_w = 43, .box_h = 43, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 267107, .adv_w = 768, .box_w = 46, .box_h = 43, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 268096, .adv_w = 768, .box_w = 45, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 269064, .adv_w = 768, .box_w = 44, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 270076, .adv_w = 768, .box_w = 42, .box_h = 42, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 270958, .adv_w = 768, .box_w = 44, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 271926, .adv_w = 768, .box_w = 44, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 272938, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 273973, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 274963, .adv_w = 768, .box_w = 42, .box_h = 45, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 275908, .adv_w = 768, .box_w = 46, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 276966, .adv_w = 768, .box_w = 45, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 278001, .adv_w = 768, .box_w = 46, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 279059, .adv_w = 768, .box_w = 44, .box_h = 45, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 280049, .adv_w = 768, .box_w = 42, .box_h = 44, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 280973, .adv_w = 768, .box_w = 43, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 281919, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 282954, .adv_w = 768, .box_w = 44, .box_h = 42, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 283878, .adv_w = 768, .box_w = 44, .box_h = 45, .ofs_x = 2, .ofs_y = -6}, - {.bitmap_index = 284868, .adv_w = 768, .box_w = 46, .box_h = 43, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 285857, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 286892, .adv_w = 768, .box_w = 46, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 287950, .adv_w = 768, .box_w = 46, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 288962, .adv_w = 768, .box_w = 42, .box_h = 42, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 289844, .adv_w = 768, .box_w = 43, .box_h = 41, .ofs_x = 3, .ofs_y = -3}, - {.bitmap_index = 290726, .adv_w = 768, .box_w = 44, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 291694, .adv_w = 768, .box_w = 43, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 292597, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 293587, .adv_w = 768, .box_w = 43, .box_h = 45, .ofs_x = 3, .ofs_y = -6}, - {.bitmap_index = 294555, .adv_w = 768, .box_w = 34, .box_h = 44, .ofs_x = 7, .ofs_y = -4}, - {.bitmap_index = 295303, .adv_w = 768, .box_w = 43, .box_h = 45, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 296271, .adv_w = 768, .box_w = 43, .box_h = 43, .ofs_x = 3, .ofs_y = -3}, - {.bitmap_index = 297196, .adv_w = 768, .box_w = 43, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 298142, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 299132, .adv_w = 768, .box_w = 46, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 300190, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 301225, .adv_w = 768, .box_w = 45, .box_h = 45, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 302238, .adv_w = 768, .box_w = 45, .box_h = 45, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 303251, .adv_w = 768, .box_w = 45, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 304264, .adv_w = 768, .box_w = 43, .box_h = 44, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 305210, .adv_w = 768, .box_w = 46, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 306199, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 307234, .adv_w = 768, .box_w = 46, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 308292, .adv_w = 768, .box_w = 45, .box_h = 46, .ofs_x = 2, .ofs_y = -6}, - {.bitmap_index = 309327, .adv_w = 768, .box_w = 40, .box_h = 45, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 310227, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 311262, .adv_w = 768, .box_w = 44, .box_h = 43, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 312208, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 313198, .adv_w = 768, .box_w = 45, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 314233, .adv_w = 768, .box_w = 44, .box_h = 42, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 315157, .adv_w = 768, .box_w = 46, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 316169, .adv_w = 768, .box_w = 44, .box_h = 45, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 317159, .adv_w = 768, .box_w = 46, .box_h = 43, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 318148, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 319183, .adv_w = 768, .box_w = 44, .box_h = 46, .ofs_x = 2, .ofs_y = -6}, - {.bitmap_index = 320195, .adv_w = 768, .box_w = 44, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 321163, .adv_w = 768, .box_w = 43, .box_h = 44, .ofs_x = 2, .ofs_y = -6}, - {.bitmap_index = 322109, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 323099, .adv_w = 768, .box_w = 44, .box_h = 45, .ofs_x = 2, .ofs_y = -6}, - {.bitmap_index = 324089, .adv_w = 768, .box_w = 46, .box_h = 43, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 325078, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 326113, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 327148, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 328138, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 329173, .adv_w = 768, .box_w = 43, .box_h = 45, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 330141, .adv_w = 768, .box_w = 45, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 331176, .adv_w = 768, .box_w = 46, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 332234, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 333224, .adv_w = 768, .box_w = 44, .box_h = 42, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 334148, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 335138, .adv_w = 768, .box_w = 44, .box_h = 44, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 336106, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 337141, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 338131, .adv_w = 768, .box_w = 46, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 339143, .adv_w = 768, .box_w = 45, .box_h = 43, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 340111, .adv_w = 768, .box_w = 46, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 341123, .adv_w = 768, .box_w = 44, .box_h = 43, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 342069, .adv_w = 768, .box_w = 44, .box_h = 44, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 343037, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 344027, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 345062, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 346052, .adv_w = 768, .box_w = 44, .box_h = 45, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 347042, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 348032, .adv_w = 768, .box_w = 44, .box_h = 43, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 348978, .adv_w = 768, .box_w = 43, .box_h = 42, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 349881, .adv_w = 768, .box_w = 44, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 350849, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 351839, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 352829, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 353864, .adv_w = 768, .box_w = 43, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 354810, .adv_w = 768, .box_w = 40, .box_h = 45, .ofs_x = 4, .ofs_y = -5}, - {.bitmap_index = 355710, .adv_w = 768, .box_w = 40, .box_h = 45, .ofs_x = 4, .ofs_y = -6}, - {.bitmap_index = 356610, .adv_w = 768, .box_w = 41, .box_h = 45, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 357533, .adv_w = 768, .box_w = 43, .box_h = 46, .ofs_x = 4, .ofs_y = -6}, - {.bitmap_index = 358522, .adv_w = 768, .box_w = 44, .box_h = 44, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 359490, .adv_w = 768, .box_w = 42, .box_h = 41, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 360351, .adv_w = 768, .box_w = 42, .box_h = 45, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 361296, .adv_w = 768, .box_w = 42, .box_h = 43, .ofs_x = 3, .ofs_y = -6}, - {.bitmap_index = 362199, .adv_w = 768, .box_w = 44, .box_h = 43, .ofs_x = 2, .ofs_y = -6}, - {.bitmap_index = 363145, .adv_w = 768, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 364091, .adv_w = 768, .box_w = 44, .box_h = 43, .ofs_x = 2, .ofs_y = -6}, - {.bitmap_index = 365037, .adv_w = 768, .box_w = 46, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 366049, .adv_w = 768, .box_w = 46, .box_h = 44, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 367061, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 368051, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 369086, .adv_w = 768, .box_w = 42, .box_h = 44, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 370010, .adv_w = 768, .box_w = 45, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 371023, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 372013, .adv_w = 768, .box_w = 48, .box_h = 49, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 373189, .adv_w = 768, .box_w = 48, .box_h = 36, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 374053, .adv_w = 768, .box_w = 48, .box_h = 42, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 375061, .adv_w = 768, .box_w = 48, .box_h = 36, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 375925, .adv_w = 528, .box_w = 33, .box_h = 34, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 376486, .adv_w = 768, .box_w = 48, .box_h = 48, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 377638, .adv_w = 768, .box_w = 46, .box_h = 48, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 378742, .adv_w = 864, .box_w = 54, .box_h = 42, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 379876, .adv_w = 768, .box_w = 48, .box_h = 48, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 381028, .adv_w = 864, .box_w = 54, .box_h = 36, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 382000, .adv_w = 768, .box_w = 48, .box_h = 48, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 383152, .adv_w = 384, .box_w = 24, .box_h = 38, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 383608, .adv_w = 576, .box_w = 36, .box_h = 38, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 384292, .adv_w = 864, .box_w = 54, .box_h = 46, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 385534, .adv_w = 768, .box_w = 48, .box_h = 36, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 386398, .adv_w = 528, .box_w = 33, .box_h = 48, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 387190, .adv_w = 672, .box_w = 30, .box_h = 44, .ofs_x = 6, .ofs_y = -4}, - {.bitmap_index = 387850, .adv_w = 672, .box_w = 42, .box_h = 50, .ofs_x = 0, .ofs_y = -7}, - {.bitmap_index = 388900, .adv_w = 672, .box_w = 42, .box_h = 43, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 389803, .adv_w = 672, .box_w = 42, .box_h = 42, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 390685, .adv_w = 672, .box_w = 30, .box_h = 44, .ofs_x = 6, .ofs_y = -4}, - {.bitmap_index = 391345, .adv_w = 672, .box_w = 44, .box_h = 42, .ofs_x = -1, .ofs_y = -3}, - {.bitmap_index = 392269, .adv_w = 480, .box_w = 26, .box_h = 42, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 392815, .adv_w = 480, .box_w = 26, .box_h = 42, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 393361, .adv_w = 672, .box_w = 42, .box_h = 42, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 394243, .adv_w = 672, .box_w = 42, .box_h = 10, .ofs_x = 0, .ofs_y = 13}, - {.bitmap_index = 394453, .adv_w = 864, .box_w = 54, .box_h = 36, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 395425, .adv_w = 960, .box_w = 60, .box_h = 48, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 396865, .adv_w = 864, .box_w = 56, .box_h = 48, .ofs_x = -1, .ofs_y = -6}, - {.bitmap_index = 398209, .adv_w = 768, .box_w = 48, .box_h = 44, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 399265, .adv_w = 672, .box_w = 42, .box_h = 26, .ofs_x = 0, .ofs_y = 5}, - {.bitmap_index = 399811, .adv_w = 672, .box_w = 42, .box_h = 26, .ofs_x = 0, .ofs_y = 5}, - {.bitmap_index = 400357, .adv_w = 960, .box_w = 60, .box_h = 38, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 401497, .adv_w = 768, .box_w = 48, .box_h = 36, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 402361, .adv_w = 768, .box_w = 48, .box_h = 48, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 403513, .adv_w = 768, .box_w = 49, .box_h = 49, .ofs_x = -1, .ofs_y = -6}, - {.bitmap_index = 404714, .adv_w = 672, .box_w = 43, .box_h = 42, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 405617, .adv_w = 672, .box_w = 42, .box_h = 48, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 406625, .adv_w = 672, .box_w = 42, .box_h = 42, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 407507, .adv_w = 672, .box_w = 42, .box_h = 38, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 408305, .adv_w = 768, .box_w = 48, .box_h = 36, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 409169, .adv_w = 480, .box_w = 32, .box_h = 48, .ofs_x = -1, .ofs_y = -6}, - {.bitmap_index = 409937, .adv_w = 672, .box_w = 42, .box_h = 48, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 410945, .adv_w = 672, .box_w = 42, .box_h = 48, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 411953, .adv_w = 864, .box_w = 54, .box_h = 36, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 412925, .adv_w = 768, .box_w = 50, .box_h = 50, .ofs_x = -1, .ofs_y = -7}, - {.bitmap_index = 414175, .adv_w = 576, .box_w = 36, .box_h = 48, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 415039, .adv_w = 960, .box_w = 60, .box_h = 44, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 416359, .adv_w = 960, .box_w = 60, .box_h = 30, .ofs_x = 0, .ofs_y = 3}, - {.bitmap_index = 417259, .adv_w = 960, .box_w = 60, .box_h = 30, .ofs_x = 0, .ofs_y = 3}, - {.bitmap_index = 418159, .adv_w = 960, .box_w = 60, .box_h = 30, .ofs_x = 0, .ofs_y = 3}, - {.bitmap_index = 419059, .adv_w = 960, .box_w = 60, .box_h = 30, .ofs_x = 0, .ofs_y = 3}, - {.bitmap_index = 419959, .adv_w = 960, .box_w = 60, .box_h = 30, .ofs_x = 0, .ofs_y = 3}, - {.bitmap_index = 420859, .adv_w = 960, .box_w = 61, .box_h = 38, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 422018, .adv_w = 672, .box_w = 36, .box_h = 48, .ofs_x = 3, .ofs_y = -6}, - {.bitmap_index = 422882, .adv_w = 672, .box_w = 42, .box_h = 48, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 423890, .adv_w = 768, .box_w = 49, .box_h = 49, .ofs_x = -1, .ofs_y = -7}, - {.bitmap_index = 425091, .adv_w = 960, .box_w = 60, .box_h = 36, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 426171, .adv_w = 576, .box_w = 36, .box_h = 48, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 427035, .adv_w = 773, .box_w = 49, .box_h = 31, .ofs_x = 0, .ofs_y = 3} + {.bitmap_index = 262535, .adv_w = 768, .box_w = 46, .box_h = 44, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 263547, .adv_w = 768, .box_w = 34, .box_h = 41, .ofs_x = 7, .ofs_y = -4}, + {.bitmap_index = 264244, .adv_w = 768, .box_w = 44, .box_h = 42, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 265168, .adv_w = 768, .box_w = 45, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 266181, .adv_w = 768, .box_w = 45, .box_h = 45, .ofs_x = 2, .ofs_y = -7}, + {.bitmap_index = 267194, .adv_w = 768, .box_w = 43, .box_h = 43, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 268119, .adv_w = 768, .box_w = 46, .box_h = 43, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 269108, .adv_w = 768, .box_w = 45, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 270076, .adv_w = 768, .box_w = 44, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 271088, .adv_w = 768, .box_w = 42, .box_h = 42, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 271970, .adv_w = 768, .box_w = 44, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 272938, .adv_w = 768, .box_w = 44, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 273950, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 274985, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 275975, .adv_w = 768, .box_w = 42, .box_h = 45, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 276920, .adv_w = 768, .box_w = 46, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 277978, .adv_w = 768, .box_w = 45, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 279013, .adv_w = 768, .box_w = 46, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 280071, .adv_w = 768, .box_w = 44, .box_h = 45, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 281061, .adv_w = 768, .box_w = 42, .box_h = 44, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 281985, .adv_w = 768, .box_w = 43, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 282931, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 283966, .adv_w = 768, .box_w = 44, .box_h = 42, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 284890, .adv_w = 768, .box_w = 44, .box_h = 45, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 285880, .adv_w = 768, .box_w = 46, .box_h = 43, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 286869, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 287904, .adv_w = 768, .box_w = 46, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 288962, .adv_w = 768, .box_w = 46, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 289974, .adv_w = 768, .box_w = 42, .box_h = 42, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 290856, .adv_w = 768, .box_w = 43, .box_h = 41, .ofs_x = 3, .ofs_y = -3}, + {.bitmap_index = 291738, .adv_w = 768, .box_w = 44, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 292706, .adv_w = 768, .box_w = 43, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 293609, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 294599, .adv_w = 768, .box_w = 43, .box_h = 45, .ofs_x = 3, .ofs_y = -6}, + {.bitmap_index = 295567, .adv_w = 768, .box_w = 34, .box_h = 44, .ofs_x = 7, .ofs_y = -4}, + {.bitmap_index = 296315, .adv_w = 768, .box_w = 43, .box_h = 45, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 297283, .adv_w = 768, .box_w = 43, .box_h = 43, .ofs_x = 3, .ofs_y = -3}, + {.bitmap_index = 298208, .adv_w = 768, .box_w = 43, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 299154, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 300144, .adv_w = 768, .box_w = 46, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 301202, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 302237, .adv_w = 768, .box_w = 45, .box_h = 45, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 303250, .adv_w = 768, .box_w = 45, .box_h = 45, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 304263, .adv_w = 768, .box_w = 45, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 305276, .adv_w = 768, .box_w = 43, .box_h = 44, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 306222, .adv_w = 768, .box_w = 46, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 307211, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 308246, .adv_w = 768, .box_w = 46, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 309304, .adv_w = 768, .box_w = 45, .box_h = 46, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 310339, .adv_w = 768, .box_w = 40, .box_h = 45, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 311239, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 312274, .adv_w = 768, .box_w = 44, .box_h = 43, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 313220, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 314210, .adv_w = 768, .box_w = 45, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 315245, .adv_w = 768, .box_w = 44, .box_h = 42, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 316169, .adv_w = 768, .box_w = 46, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 317181, .adv_w = 768, .box_w = 44, .box_h = 45, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 318171, .adv_w = 768, .box_w = 46, .box_h = 43, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 319160, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 320195, .adv_w = 768, .box_w = 44, .box_h = 46, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 321207, .adv_w = 768, .box_w = 44, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 322175, .adv_w = 768, .box_w = 43, .box_h = 44, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 323121, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 324111, .adv_w = 768, .box_w = 44, .box_h = 45, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 325101, .adv_w = 768, .box_w = 46, .box_h = 43, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 326090, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 327125, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 328160, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 329150, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 330185, .adv_w = 768, .box_w = 43, .box_h = 45, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 331153, .adv_w = 768, .box_w = 45, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 332188, .adv_w = 768, .box_w = 46, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 333246, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 334236, .adv_w = 768, .box_w = 44, .box_h = 42, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 335160, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 336150, .adv_w = 768, .box_w = 44, .box_h = 44, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 337118, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 338153, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 339143, .adv_w = 768, .box_w = 46, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 340155, .adv_w = 768, .box_w = 45, .box_h = 43, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 341123, .adv_w = 768, .box_w = 46, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 342135, .adv_w = 768, .box_w = 44, .box_h = 43, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 343081, .adv_w = 768, .box_w = 44, .box_h = 44, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 344049, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 345039, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 346074, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 347064, .adv_w = 768, .box_w = 44, .box_h = 45, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 348054, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 349044, .adv_w = 768, .box_w = 44, .box_h = 43, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 349990, .adv_w = 768, .box_w = 43, .box_h = 42, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 350893, .adv_w = 768, .box_w = 44, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 351861, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 352851, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 353841, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 354876, .adv_w = 768, .box_w = 43, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 355822, .adv_w = 768, .box_w = 40, .box_h = 45, .ofs_x = 4, .ofs_y = -5}, + {.bitmap_index = 356722, .adv_w = 768, .box_w = 40, .box_h = 45, .ofs_x = 4, .ofs_y = -6}, + {.bitmap_index = 357622, .adv_w = 768, .box_w = 41, .box_h = 45, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 358545, .adv_w = 768, .box_w = 43, .box_h = 46, .ofs_x = 4, .ofs_y = -6}, + {.bitmap_index = 359534, .adv_w = 768, .box_w = 44, .box_h = 44, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 360502, .adv_w = 768, .box_w = 42, .box_h = 41, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 361363, .adv_w = 768, .box_w = 42, .box_h = 45, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 362308, .adv_w = 768, .box_w = 42, .box_h = 43, .ofs_x = 3, .ofs_y = -6}, + {.bitmap_index = 363211, .adv_w = 768, .box_w = 44, .box_h = 43, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 364157, .adv_w = 768, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 365103, .adv_w = 768, .box_w = 44, .box_h = 43, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 366049, .adv_w = 768, .box_w = 46, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 367061, .adv_w = 768, .box_w = 46, .box_h = 44, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 368073, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 369063, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 370098, .adv_w = 768, .box_w = 42, .box_h = 44, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 371022, .adv_w = 768, .box_w = 45, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 372035, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 373025, .adv_w = 768, .box_w = 48, .box_h = 49, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 374201, .adv_w = 768, .box_w = 48, .box_h = 36, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 375065, .adv_w = 768, .box_w = 48, .box_h = 42, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 376073, .adv_w = 768, .box_w = 48, .box_h = 36, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 376937, .adv_w = 528, .box_w = 33, .box_h = 34, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 377498, .adv_w = 768, .box_w = 48, .box_h = 48, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 378650, .adv_w = 768, .box_w = 46, .box_h = 48, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 379754, .adv_w = 864, .box_w = 54, .box_h = 42, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 380888, .adv_w = 768, .box_w = 48, .box_h = 48, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 382040, .adv_w = 864, .box_w = 54, .box_h = 36, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 383012, .adv_w = 768, .box_w = 48, .box_h = 48, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 384164, .adv_w = 384, .box_w = 24, .box_h = 38, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 384620, .adv_w = 576, .box_w = 36, .box_h = 38, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 385304, .adv_w = 864, .box_w = 54, .box_h = 46, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 386546, .adv_w = 768, .box_w = 48, .box_h = 36, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 387410, .adv_w = 528, .box_w = 33, .box_h = 48, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 388202, .adv_w = 672, .box_w = 30, .box_h = 44, .ofs_x = 6, .ofs_y = -4}, + {.bitmap_index = 388862, .adv_w = 672, .box_w = 42, .box_h = 50, .ofs_x = 0, .ofs_y = -7}, + {.bitmap_index = 389912, .adv_w = 672, .box_w = 42, .box_h = 43, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 390815, .adv_w = 672, .box_w = 42, .box_h = 42, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 391697, .adv_w = 672, .box_w = 30, .box_h = 44, .ofs_x = 6, .ofs_y = -4}, + {.bitmap_index = 392357, .adv_w = 672, .box_w = 44, .box_h = 42, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 393281, .adv_w = 480, .box_w = 26, .box_h = 42, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 393827, .adv_w = 480, .box_w = 26, .box_h = 42, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 394373, .adv_w = 672, .box_w = 42, .box_h = 42, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 395255, .adv_w = 672, .box_w = 42, .box_h = 10, .ofs_x = 0, .ofs_y = 13}, + {.bitmap_index = 395465, .adv_w = 864, .box_w = 54, .box_h = 36, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 396437, .adv_w = 960, .box_w = 60, .box_h = 48, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 397877, .adv_w = 864, .box_w = 56, .box_h = 48, .ofs_x = -1, .ofs_y = -6}, + {.bitmap_index = 399221, .adv_w = 768, .box_w = 48, .box_h = 44, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 400277, .adv_w = 672, .box_w = 42, .box_h = 26, .ofs_x = 0, .ofs_y = 5}, + {.bitmap_index = 400823, .adv_w = 672, .box_w = 42, .box_h = 26, .ofs_x = 0, .ofs_y = 5}, + {.bitmap_index = 401369, .adv_w = 960, .box_w = 60, .box_h = 38, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 402509, .adv_w = 768, .box_w = 48, .box_h = 36, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 403373, .adv_w = 768, .box_w = 48, .box_h = 48, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 404525, .adv_w = 768, .box_w = 49, .box_h = 49, .ofs_x = -1, .ofs_y = -6}, + {.bitmap_index = 405726, .adv_w = 672, .box_w = 43, .box_h = 42, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 406629, .adv_w = 672, .box_w = 42, .box_h = 48, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 407637, .adv_w = 672, .box_w = 42, .box_h = 42, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 408519, .adv_w = 672, .box_w = 42, .box_h = 38, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 409317, .adv_w = 768, .box_w = 48, .box_h = 36, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 410181, .adv_w = 480, .box_w = 32, .box_h = 48, .ofs_x = -1, .ofs_y = -6}, + {.bitmap_index = 410949, .adv_w = 672, .box_w = 42, .box_h = 48, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 411957, .adv_w = 672, .box_w = 42, .box_h = 48, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 412965, .adv_w = 864, .box_w = 54, .box_h = 36, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 413937, .adv_w = 768, .box_w = 50, .box_h = 50, .ofs_x = -1, .ofs_y = -7}, + {.bitmap_index = 415187, .adv_w = 576, .box_w = 36, .box_h = 48, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 416051, .adv_w = 960, .box_w = 60, .box_h = 44, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 417371, .adv_w = 960, .box_w = 60, .box_h = 30, .ofs_x = 0, .ofs_y = 3}, + {.bitmap_index = 418271, .adv_w = 960, .box_w = 60, .box_h = 30, .ofs_x = 0, .ofs_y = 3}, + {.bitmap_index = 419171, .adv_w = 960, .box_w = 60, .box_h = 30, .ofs_x = 0, .ofs_y = 3}, + {.bitmap_index = 420071, .adv_w = 960, .box_w = 60, .box_h = 30, .ofs_x = 0, .ofs_y = 3}, + {.bitmap_index = 420971, .adv_w = 960, .box_w = 60, .box_h = 30, .ofs_x = 0, .ofs_y = 3}, + {.bitmap_index = 421871, .adv_w = 960, .box_w = 61, .box_h = 38, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 423030, .adv_w = 672, .box_w = 36, .box_h = 48, .ofs_x = 3, .ofs_y = -6}, + {.bitmap_index = 423894, .adv_w = 672, .box_w = 42, .box_h = 48, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 424902, .adv_w = 768, .box_w = 49, .box_h = 49, .ofs_x = -1, .ofs_y = -7}, + {.bitmap_index = 426103, .adv_w = 960, .box_w = 60, .box_h = 36, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 427183, .adv_w = 576, .box_w = 36, .box_h = 48, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 428047, .adv_w = 773, .box_w = 49, .box_h = 31, .ofs_x = 0, .ofs_y = 3} }; /*--------------------- @@ -55259,29 +55389,29 @@ static const uint16_t unicode_list_1[] = { 0x6bb0, 0x6bf1, 0x6c25, 0x6c38, 0x6c8b, 0x6c91, 0x6c9b, 0x6cd8, 0x6d55, 0x6d79, 0x6de0, 0x6e2a, 0x6e31, 0x7009, 0x7018, 0x7076, 0x7086, 0x7198, 0x7206, 0x72ff, 0x7300, 0x7356, 0x746f, 0x7478, - 0x7485, 0x748b, 0x749c, 0x74a9, 0x75d4, 0x763e, 0x7644, 0x765b, - 0x7670, 0x768c, 0x773d, 0x7751, 0x77be, 0x788a, 0x78d1, 0x791d, - 0x795b, 0x79ca, 0x79d4, 0x7a2e, 0x7a3f, 0x7a76, 0x7c4b, 0x7c70, - 0x7c72, 0x7e0f, 0x7e1f, 0x7e21, 0x7e23, 0x7e2c, 0x7e2f, 0x7e3a, - 0x7ea1, 0x7ebe, 0x7f55, 0x7f83, 0x801c, 0x804d, 0x813a, 0x8144, - 0x81ff, 0x8307, 0x832c, 0x851f, 0x8652, 0x879c, 0x87b8, 0x87fb, - 0x8815, 0x88d1, 0x8914, 0x8916, 0x8918, 0x8922, 0x8ab6, 0x8af1, - 0x8af4, 0x8afe, 0x8b00, 0x8b0e, 0x8b0f, 0x8b11, 0x8b16, 0x8b25, - 0x8b47, 0x8b53, 0x8c75, 0x8c78, 0x8cd5, 0x8d7a, 0x8eb8, 0x8ebc, - 0x8ebe, 0x8ec4, 0x8ecd, 0x8ee3, 0x8f17, 0x8f20, 0x8f24, 0x8f29, - 0x8f2b, 0x8f2e, 0x8f49, 0x8f4d, 0x8f50, 0x8f51, 0x8f59, 0x8f6a, - 0x8f6f, 0x8fa3, 0x9038, 0x904d, 0x911d, 0x911f, 0x93ef, 0x9451, - 0x947e, 0x94ac, 0x94cf, 0x953d, 0x953e, 0x9544, 0x95b4, 0x95e0, - 0x96b2, 0x9743, 0x97c5, 0x97c6, 0x97c9, 0x97d4, 0x97e1, 0x981e, - 0x98c1, 0x99dc, 0x9d73, 0x9df6, 0x9e28, 0xef51, 0xef58, 0xef5b, - 0xef5c, 0xef5d, 0xef61, 0xef63, 0xef65, 0xef69, 0xef6c, 0xef71, - 0xef76, 0xef77, 0xef78, 0xef8e, 0xef93, 0xef98, 0xef9b, 0xef9c, - 0xef9d, 0xefa1, 0xefa2, 0xefa3, 0xefa4, 0xefb7, 0xefb8, 0xefbe, - 0xefc0, 0xefc1, 0xefc4, 0xefc7, 0xefc8, 0xefc9, 0xefcb, 0xefe3, - 0xefe5, 0xf014, 0xf015, 0xf017, 0xf019, 0xf030, 0xf037, 0xf03a, - 0xf043, 0xf06c, 0xf074, 0xf0ab, 0xf13b, 0xf190, 0xf191, 0xf192, - 0xf193, 0xf194, 0xf1d7, 0xf1e3, 0xf23d, 0xf254, 0xf4aa, 0xf712, - 0xf7f2 + 0x7485, 0x748b, 0x749c, 0x74a9, 0x75d4, 0x7628, 0x763e, 0x7644, + 0x765b, 0x7670, 0x768c, 0x773d, 0x7751, 0x77be, 0x788a, 0x78d1, + 0x791d, 0x795b, 0x79ca, 0x79d4, 0x7a2e, 0x7a3f, 0x7a76, 0x7c4b, + 0x7c70, 0x7c72, 0x7e0f, 0x7e1f, 0x7e21, 0x7e23, 0x7e2c, 0x7e2f, + 0x7e3a, 0x7ea1, 0x7ebe, 0x7f55, 0x7f83, 0x801c, 0x804d, 0x813a, + 0x8144, 0x81ff, 0x8307, 0x832c, 0x851f, 0x8652, 0x879c, 0x87b8, + 0x87fb, 0x8815, 0x88d1, 0x8914, 0x8916, 0x8918, 0x8922, 0x8ab6, + 0x8af1, 0x8af4, 0x8afe, 0x8b00, 0x8b0e, 0x8b0f, 0x8b11, 0x8b16, + 0x8b25, 0x8b47, 0x8b53, 0x8c75, 0x8c78, 0x8cd5, 0x8d7a, 0x8eb8, + 0x8ebc, 0x8ebe, 0x8ec4, 0x8ecd, 0x8ee3, 0x8f17, 0x8f20, 0x8f24, + 0x8f29, 0x8f2b, 0x8f2e, 0x8f49, 0x8f4d, 0x8f50, 0x8f51, 0x8f59, + 0x8f6a, 0x8f6f, 0x8fa3, 0x9038, 0x904d, 0x911d, 0x911f, 0x93ef, + 0x9451, 0x947e, 0x94ac, 0x94cf, 0x953d, 0x953e, 0x9544, 0x95b4, + 0x95e0, 0x96b2, 0x9743, 0x97c5, 0x97c6, 0x97c9, 0x97d4, 0x97e1, + 0x981e, 0x98c1, 0x99dc, 0x9d73, 0x9df6, 0x9e28, 0xef51, 0xef58, + 0xef5b, 0xef5c, 0xef5d, 0xef61, 0xef63, 0xef65, 0xef69, 0xef6c, + 0xef71, 0xef76, 0xef77, 0xef78, 0xef8e, 0xef93, 0xef98, 0xef9b, + 0xef9c, 0xef9d, 0xefa1, 0xefa2, 0xefa3, 0xefa4, 0xefb7, 0xefb8, + 0xefbe, 0xefc0, 0xefc1, 0xefc4, 0xefc7, 0xefc8, 0xefc9, 0xefcb, + 0xefe3, 0xefe5, 0xf014, 0xf015, 0xf017, 0xf019, 0xf030, 0xf037, + 0xf03a, 0xf043, 0xf06c, 0xf074, 0xf0ab, 0xf13b, 0xf190, 0xf191, + 0xf192, 0xf193, 0xf194, 0xf1d7, 0xf1e3, 0xf23d, 0xf254, 0xf4aa, + 0xf712, 0xf7f2 }; /*Collect the unicode lists and glyph_id offsets*/ @@ -55293,7 +55423,7 @@ static const lv_font_fmt_txt_cmap_t cmaps[] = }, { .range_start = 176, .range_length = 63475, .glyph_id_start = 96, - .unicode_list = unicode_list_1, .glyph_id_ofs_list = NULL, .list_length = 409, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY + .unicode_list = unicode_list_1, .glyph_id_ofs_list = NULL, .list_length = 410, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY } }; @@ -55368,7 +55498,7 @@ static const uint8_t kern_left_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0 + 0, 0 }; /*Map glyph_ids to kern right classes*/ @@ -55437,7 +55567,7 @@ static const uint8_t kern_right_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0 + 0, 0 }; /*Kern values between classes*/ diff --git a/lib/lvgl/lvgl/src/font/lv_font_montserrat_8.c b/lib/lvgl/lvgl/src/font/lv_font_montserrat_8.c index ed3624ae..3b05cf0f 100644 --- a/lib/lvgl/lvgl/src/font/lv_font_montserrat_8.c +++ b/lib/lvgl/lvgl/src/font/lv_font_montserrat_8.c @@ -1,7 +1,7 @@ /******************************************************************************* * Size: 8 px * Bpp: 4 - * Opts: --bpp 4 --size 8 --no-compress --font Montserrat-Medium.ttf --range 32-127,176,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20351,20363,20391,20445,20449,20462,20463,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29366,29615,29616,29702,29983,29992,30005,30011,30028,30041,30340,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31181,31243,31354,31364,31454,31471,31526,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33719,33756,34255,34562,34892,34920,34987,35013,35201,35268,35270,35272,35282,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35831,35843,36133,36136,36229,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --format lvgl -o out/lv_font_montserrat_8.c + * Opts: --bpp 4 --size 8 --no-compress --font Montserrat-Medium.ttf --range 32-127,176,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20351,20363,20391,20445,20449,20462,20463,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29366,29615,29616,29702,29983,29992,30005,30011,30028,30041,30340,30424,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31181,31243,31354,31364,31454,31471,31526,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33719,33756,34255,34562,34892,34920,34987,35013,35201,35268,35270,35272,35282,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35831,35843,36133,36136,36229,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --format lvgl -o out/lv_font_montserrat_8.c ******************************************************************************/ #ifdef LV_LVGL_H_INCLUDE_SIMPLE @@ -1873,6 +1873,12 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0xc, 0x8b, 0xb, 0x8, 0x9, 0x9, 0x6, 0x18, 0xc, 0x8b, 0x0, 0x27, 0x5, 0x4, 0x5, 0x91, + /* U+76D8 "盘" */ + 0x0, 0x5, 0x0, 0x0, 0x1, 0xaa, 0x89, 0x40, + 0x2, 0x93, 0x53, 0x50, 0x4a, 0xba, 0x8a, 0xa4, + 0xa, 0x24, 0x4b, 0x30, 0x9, 0x8a, 0xa8, 0x80, + 0xa, 0x8, 0x80, 0xa0, 0x6c, 0x8b, 0xb8, 0xc6, + /* U+76EE "目" */ 0xa8, 0x88, 0x8b, 0xa7, 0x77, 0x7a, 0xa0, 0x0, 0xa, 0xa8, 0x88, 0x8a, 0xa0, 0x0, 0xa, 0xa8, @@ -3295,178 +3301,179 @@ static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = { {.bitmap_index = 8730, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 8766, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 8798, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 8830, .adv_w = 128, .box_w = 6, .box_h = 7, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 8851, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 8830, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 8862, .adv_w = 128, .box_w = 6, .box_h = 7, .ofs_x = 1, .ofs_y = -1}, {.bitmap_index = 8883, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 8915, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 8947, .adv_w = 128, .box_w = 8, .box_h = 7, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 8975, .adv_w = 128, .box_w = 9, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 9016, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 8915, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 8947, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 8979, .adv_w = 128, .box_w = 8, .box_h = 7, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 9007, .adv_w = 128, .box_w = 9, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 9048, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 9080, .adv_w = 128, .box_w = 8, .box_h = 7, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 9108, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 9144, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 9080, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 9112, .adv_w = 128, .box_w = 8, .box_h = 7, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 9140, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 9176, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 9208, .adv_w = 128, .box_w = 9, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 9249, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 9281, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 9317, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 9353, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 9389, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 9208, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 9240, .adv_w = 128, .box_w = 9, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 9281, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 9313, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 9349, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 9385, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 9421, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 9453, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 9485, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 9517, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 9549, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 9585, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 9621, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 9657, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 9693, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 9725, .adv_w = 128, .box_w = 8, .box_h = 7, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 9753, .adv_w = 128, .box_w = 8, .box_h = 7, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 9781, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 9549, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 9581, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 9617, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 9653, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 9689, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 9725, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 9757, .adv_w = 128, .box_w = 8, .box_h = 7, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 9785, .adv_w = 128, .box_w = 8, .box_h = 7, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 9813, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 9845, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 9877, .adv_w = 128, .box_w = 8, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 9917, .adv_w = 128, .box_w = 6, .box_h = 8, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 9941, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 9877, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 9909, .adv_w = 128, .box_w = 8, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 9949, .adv_w = 128, .box_w = 6, .box_h = 8, .ofs_x = 1, .ofs_y = -1}, {.bitmap_index = 9973, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 10005, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 10041, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 10077, .adv_w = 128, .box_w = 8, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 10117, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 10153, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 10005, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 10037, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 10073, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 10109, .adv_w = 128, .box_w = 8, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 10149, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 10185, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 10217, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 10253, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 10217, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 10249, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 10285, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 10317, .adv_w = 128, .box_w = 9, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 10358, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 10394, .adv_w = 128, .box_w = 8, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 10434, .adv_w = 128, .box_w = 7, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 10466, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 10502, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 10534, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 10570, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 10317, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 10349, .adv_w = 128, .box_w = 9, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 10390, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 10426, .adv_w = 128, .box_w = 8, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 10466, .adv_w = 128, .box_w = 7, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 10498, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 10534, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 10566, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 10602, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 10634, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 10666, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 10702, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 10666, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 10698, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 10734, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 10766, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 10798, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 10834, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 10798, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 10830, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 10866, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 10898, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 10930, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 10962, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 10994, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 11026, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 11062, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 11094, .adv_w = 128, .box_w = 8, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 11134, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 11170, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 11206, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 11242, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 11278, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 11314, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 11346, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 11382, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 11414, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 11450, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 11486, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 11522, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 11558, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 11594, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 11630, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 11666, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 11026, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 11058, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 11094, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 11126, .adv_w = 128, .box_w = 8, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 11166, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 11202, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 11238, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 11274, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 11310, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 11346, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 11378, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 11414, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 11446, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 11482, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 11518, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 11554, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 11590, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 11626, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 11662, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 11698, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 11730, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 11766, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 11798, .adv_w = 128, .box_w = 8, .box_h = 7, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 11826, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 11730, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 11762, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 11798, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 11830, .adv_w = 128, .box_w = 8, .box_h = 7, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 11858, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 11890, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 11926, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 11962, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 11994, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 12030, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 12066, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 12102, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 12138, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 12174, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 12206, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 12242, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 11890, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 11922, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 11958, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 11994, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 12026, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 12062, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 12098, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 12134, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 12170, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 12206, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 12238, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 12274, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 12306, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 12338, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 12374, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 12406, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 12438, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 12338, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 12370, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 12406, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 12438, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 12470, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 12502, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 12534, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 12566, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 12598, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 12634, .adv_w = 128, .box_w = 8, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 12658, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 12690, .adv_w = 128, .box_w = 8, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 12714, .adv_w = 88, .box_w = 6, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 12732, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 12598, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 12630, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 12666, .adv_w = 128, .box_w = 8, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 12690, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 12722, .adv_w = 128, .box_w = 8, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 12746, .adv_w = 88, .box_w = 6, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, {.bitmap_index = 12764, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 12796, .adv_w = 144, .box_w = 9, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 12832, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 12864, .adv_w = 144, .box_w = 9, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 12891, .adv_w = 128, .box_w = 8, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 12931, .adv_w = 64, .box_w = 4, .box_h = 7, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 12945, .adv_w = 96, .box_w = 6, .box_h = 7, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 12966, .adv_w = 144, .box_w = 9, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 13002, .adv_w = 128, .box_w = 8, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 13026, .adv_w = 88, .box_w = 6, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 13050, .adv_w = 112, .box_w = 5, .box_h = 8, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 13070, .adv_w = 112, .box_w = 7, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 13105, .adv_w = 112, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 13133, .adv_w = 112, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 13161, .adv_w = 112, .box_w = 5, .box_h = 8, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 13181, .adv_w = 112, .box_w = 9, .box_h = 8, .ofs_x = -1, .ofs_y = -1}, - {.bitmap_index = 13217, .adv_w = 80, .box_w = 5, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 13237, .adv_w = 80, .box_w = 5, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 13257, .adv_w = 112, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 13285, .adv_w = 112, .box_w = 7, .box_h = 2, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 13292, .adv_w = 144, .box_w = 9, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 13319, .adv_w = 160, .box_w = 11, .box_h = 8, .ofs_x = -1, .ofs_y = -1}, - {.bitmap_index = 13363, .adv_w = 144, .box_w = 11, .box_h = 8, .ofs_x = -1, .ofs_y = -1}, - {.bitmap_index = 13407, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 13439, .adv_w = 112, .box_w = 7, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 13460, .adv_w = 112, .box_w = 7, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 13481, .adv_w = 160, .box_w = 11, .box_h = 7, .ofs_x = -1, .ofs_y = -1}, - {.bitmap_index = 13520, .adv_w = 128, .box_w = 8, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 13544, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 13576, .adv_w = 128, .box_w = 9, .box_h = 9, .ofs_x = -1, .ofs_y = -1}, - {.bitmap_index = 13617, .adv_w = 112, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 13649, .adv_w = 112, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 13677, .adv_w = 112, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 13705, .adv_w = 112, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 13733, .adv_w = 128, .box_w = 8, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 13757, .adv_w = 80, .box_w = 7, .box_h = 8, .ofs_x = -1, .ofs_y = -1}, - {.bitmap_index = 13785, .adv_w = 112, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 13813, .adv_w = 112, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 13841, .adv_w = 144, .box_w = 9, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 13868, .adv_w = 128, .box_w = 10, .box_h = 10, .ofs_x = -1, .ofs_y = -2}, - {.bitmap_index = 13918, .adv_w = 96, .box_w = 6, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 13942, .adv_w = 160, .box_w = 10, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 13982, .adv_w = 160, .box_w = 10, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 14012, .adv_w = 160, .box_w = 10, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 14042, .adv_w = 160, .box_w = 10, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 14072, .adv_w = 160, .box_w = 10, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 14102, .adv_w = 160, .box_w = 10, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 14132, .adv_w = 160, .box_w = 11, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 14176, .adv_w = 112, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 14204, .adv_w = 112, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 14232, .adv_w = 128, .box_w = 9, .box_h = 9, .ofs_x = -1, .ofs_y = -2}, - {.bitmap_index = 14273, .adv_w = 160, .box_w = 10, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 14303, .adv_w = 96, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 14331, .adv_w = 129, .box_w = 9, .box_h = 6, .ofs_x = 0, .ofs_y = 0} + {.bitmap_index = 12796, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 12828, .adv_w = 144, .box_w = 9, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 12864, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 12896, .adv_w = 144, .box_w = 9, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 12923, .adv_w = 128, .box_w = 8, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 12963, .adv_w = 64, .box_w = 4, .box_h = 7, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 12977, .adv_w = 96, .box_w = 6, .box_h = 7, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 12998, .adv_w = 144, .box_w = 9, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 13034, .adv_w = 128, .box_w = 8, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 13058, .adv_w = 88, .box_w = 6, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 13082, .adv_w = 112, .box_w = 5, .box_h = 8, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 13102, .adv_w = 112, .box_w = 7, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 13137, .adv_w = 112, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 13165, .adv_w = 112, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 13193, .adv_w = 112, .box_w = 5, .box_h = 8, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 13213, .adv_w = 112, .box_w = 9, .box_h = 8, .ofs_x = -1, .ofs_y = -1}, + {.bitmap_index = 13249, .adv_w = 80, .box_w = 5, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 13269, .adv_w = 80, .box_w = 5, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 13289, .adv_w = 112, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 13317, .adv_w = 112, .box_w = 7, .box_h = 2, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 13324, .adv_w = 144, .box_w = 9, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 13351, .adv_w = 160, .box_w = 11, .box_h = 8, .ofs_x = -1, .ofs_y = -1}, + {.bitmap_index = 13395, .adv_w = 144, .box_w = 11, .box_h = 8, .ofs_x = -1, .ofs_y = -1}, + {.bitmap_index = 13439, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 13471, .adv_w = 112, .box_w = 7, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 13492, .adv_w = 112, .box_w = 7, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 13513, .adv_w = 160, .box_w = 11, .box_h = 7, .ofs_x = -1, .ofs_y = -1}, + {.bitmap_index = 13552, .adv_w = 128, .box_w = 8, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 13576, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 13608, .adv_w = 128, .box_w = 9, .box_h = 9, .ofs_x = -1, .ofs_y = -1}, + {.bitmap_index = 13649, .adv_w = 112, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 13681, .adv_w = 112, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 13709, .adv_w = 112, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 13737, .adv_w = 112, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 13765, .adv_w = 128, .box_w = 8, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 13789, .adv_w = 80, .box_w = 7, .box_h = 8, .ofs_x = -1, .ofs_y = -1}, + {.bitmap_index = 13817, .adv_w = 112, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 13845, .adv_w = 112, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 13873, .adv_w = 144, .box_w = 9, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 13900, .adv_w = 128, .box_w = 10, .box_h = 10, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 13950, .adv_w = 96, .box_w = 6, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 13974, .adv_w = 160, .box_w = 10, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 14014, .adv_w = 160, .box_w = 10, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 14044, .adv_w = 160, .box_w = 10, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 14074, .adv_w = 160, .box_w = 10, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 14104, .adv_w = 160, .box_w = 10, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 14134, .adv_w = 160, .box_w = 10, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 14164, .adv_w = 160, .box_w = 11, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 14208, .adv_w = 112, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 14236, .adv_w = 112, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 14264, .adv_w = 128, .box_w = 9, .box_h = 9, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 14305, .adv_w = 160, .box_w = 10, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 14335, .adv_w = 96, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 14363, .adv_w = 129, .box_w = 9, .box_h = 6, .ofs_x = 0, .ofs_y = 0} }; /*--------------------- @@ -3503,29 +3510,29 @@ static const uint16_t unicode_list_1[] = { 0x6bb0, 0x6bf1, 0x6c25, 0x6c38, 0x6c8b, 0x6c91, 0x6c9b, 0x6cd8, 0x6d55, 0x6d79, 0x6de0, 0x6e2a, 0x6e31, 0x7009, 0x7018, 0x7076, 0x7086, 0x7198, 0x7206, 0x72ff, 0x7300, 0x7356, 0x746f, 0x7478, - 0x7485, 0x748b, 0x749c, 0x74a9, 0x75d4, 0x763e, 0x7644, 0x765b, - 0x7670, 0x768c, 0x773d, 0x7751, 0x77be, 0x788a, 0x78d1, 0x791d, - 0x795b, 0x79ca, 0x79d4, 0x7a2e, 0x7a3f, 0x7a76, 0x7c4b, 0x7c70, - 0x7c72, 0x7e0f, 0x7e1f, 0x7e21, 0x7e23, 0x7e2c, 0x7e2f, 0x7e3a, - 0x7ea1, 0x7ebe, 0x7f55, 0x7f83, 0x801c, 0x804d, 0x813a, 0x8144, - 0x81ff, 0x8307, 0x832c, 0x851f, 0x8652, 0x879c, 0x87b8, 0x87fb, - 0x8815, 0x88d1, 0x8914, 0x8916, 0x8918, 0x8922, 0x8ab6, 0x8af1, - 0x8af4, 0x8afe, 0x8b00, 0x8b0e, 0x8b0f, 0x8b11, 0x8b16, 0x8b25, - 0x8b47, 0x8b53, 0x8c75, 0x8c78, 0x8cd5, 0x8d7a, 0x8eb8, 0x8ebc, - 0x8ebe, 0x8ec4, 0x8ecd, 0x8ee3, 0x8f17, 0x8f20, 0x8f24, 0x8f29, - 0x8f2b, 0x8f2e, 0x8f49, 0x8f4d, 0x8f50, 0x8f51, 0x8f59, 0x8f6a, - 0x8f6f, 0x8fa3, 0x9038, 0x904d, 0x911d, 0x911f, 0x93ef, 0x9451, - 0x947e, 0x94ac, 0x94cf, 0x953d, 0x953e, 0x9544, 0x95b4, 0x95e0, - 0x96b2, 0x9743, 0x97c5, 0x97c6, 0x97c9, 0x97d4, 0x97e1, 0x981e, - 0x98c1, 0x99dc, 0x9d73, 0x9df6, 0x9e28, 0xef51, 0xef58, 0xef5b, - 0xef5c, 0xef5d, 0xef61, 0xef63, 0xef65, 0xef69, 0xef6c, 0xef71, - 0xef76, 0xef77, 0xef78, 0xef8e, 0xef93, 0xef98, 0xef9b, 0xef9c, - 0xef9d, 0xefa1, 0xefa2, 0xefa3, 0xefa4, 0xefb7, 0xefb8, 0xefbe, - 0xefc0, 0xefc1, 0xefc4, 0xefc7, 0xefc8, 0xefc9, 0xefcb, 0xefe3, - 0xefe5, 0xf014, 0xf015, 0xf017, 0xf019, 0xf030, 0xf037, 0xf03a, - 0xf043, 0xf06c, 0xf074, 0xf0ab, 0xf13b, 0xf190, 0xf191, 0xf192, - 0xf193, 0xf194, 0xf1d7, 0xf1e3, 0xf23d, 0xf254, 0xf4aa, 0xf712, - 0xf7f2 + 0x7485, 0x748b, 0x749c, 0x74a9, 0x75d4, 0x7628, 0x763e, 0x7644, + 0x765b, 0x7670, 0x768c, 0x773d, 0x7751, 0x77be, 0x788a, 0x78d1, + 0x791d, 0x795b, 0x79ca, 0x79d4, 0x7a2e, 0x7a3f, 0x7a76, 0x7c4b, + 0x7c70, 0x7c72, 0x7e0f, 0x7e1f, 0x7e21, 0x7e23, 0x7e2c, 0x7e2f, + 0x7e3a, 0x7ea1, 0x7ebe, 0x7f55, 0x7f83, 0x801c, 0x804d, 0x813a, + 0x8144, 0x81ff, 0x8307, 0x832c, 0x851f, 0x8652, 0x879c, 0x87b8, + 0x87fb, 0x8815, 0x88d1, 0x8914, 0x8916, 0x8918, 0x8922, 0x8ab6, + 0x8af1, 0x8af4, 0x8afe, 0x8b00, 0x8b0e, 0x8b0f, 0x8b11, 0x8b16, + 0x8b25, 0x8b47, 0x8b53, 0x8c75, 0x8c78, 0x8cd5, 0x8d7a, 0x8eb8, + 0x8ebc, 0x8ebe, 0x8ec4, 0x8ecd, 0x8ee3, 0x8f17, 0x8f20, 0x8f24, + 0x8f29, 0x8f2b, 0x8f2e, 0x8f49, 0x8f4d, 0x8f50, 0x8f51, 0x8f59, + 0x8f6a, 0x8f6f, 0x8fa3, 0x9038, 0x904d, 0x911d, 0x911f, 0x93ef, + 0x9451, 0x947e, 0x94ac, 0x94cf, 0x953d, 0x953e, 0x9544, 0x95b4, + 0x95e0, 0x96b2, 0x9743, 0x97c5, 0x97c6, 0x97c9, 0x97d4, 0x97e1, + 0x981e, 0x98c1, 0x99dc, 0x9d73, 0x9df6, 0x9e28, 0xef51, 0xef58, + 0xef5b, 0xef5c, 0xef5d, 0xef61, 0xef63, 0xef65, 0xef69, 0xef6c, + 0xef71, 0xef76, 0xef77, 0xef78, 0xef8e, 0xef93, 0xef98, 0xef9b, + 0xef9c, 0xef9d, 0xefa1, 0xefa2, 0xefa3, 0xefa4, 0xefb7, 0xefb8, + 0xefbe, 0xefc0, 0xefc1, 0xefc4, 0xefc7, 0xefc8, 0xefc9, 0xefcb, + 0xefe3, 0xefe5, 0xf014, 0xf015, 0xf017, 0xf019, 0xf030, 0xf037, + 0xf03a, 0xf043, 0xf06c, 0xf074, 0xf0ab, 0xf13b, 0xf190, 0xf191, + 0xf192, 0xf193, 0xf194, 0xf1d7, 0xf1e3, 0xf23d, 0xf254, 0xf4aa, + 0xf712, 0xf7f2 }; /*Collect the unicode lists and glyph_id offsets*/ @@ -3537,7 +3544,7 @@ static const lv_font_fmt_txt_cmap_t cmaps[] = }, { .range_start = 176, .range_length = 63475, .glyph_id_start = 96, - .unicode_list = unicode_list_1, .glyph_id_ofs_list = NULL, .list_length = 409, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY + .unicode_list = unicode_list_1, .glyph_id_ofs_list = NULL, .list_length = 410, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY } }; @@ -3612,7 +3619,7 @@ static const uint8_t kern_left_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0 + 0, 0 }; /*Map glyph_ids to kern right classes*/ @@ -3681,7 +3688,7 @@ static const uint8_t kern_right_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0 + 0, 0 }; /*Kern values between classes*/ diff --git a/mkapp/app/language/zh_hans.ini b/mkapp/app/language/zh_hans.ini index 8853d9dd..49790a8f 100644 --- a/mkapp/app/language/zh_hans.ini +++ b/mkapp/app/language/zh_hans.ini @@ -315,3 +315,11 @@ scroll to cancel = "转动滚轮取消" Elements reset = "复位元素" Pos-X = "X轴坐标" Pos-Y = "Y轴坐标" + +; ui_keyboard +Highlight Key = "切换键" +Select Key = "选择键" +Click = "点击" +Close Keyboard = "关闭键盘" +Hold = "长按" +Erase Text = "清除文本" diff --git a/src/lang/language.h b/src/lang/language.h index aa3c6f86..1430d0e3 100644 --- a/src/lang/language.h +++ b/src/lang/language.h @@ -3,7 +3,7 @@ #include "core/settings.h" -#define TRANSLATE_STRING_NUM 280 +#define TRANSLATE_STRING_NUM 286 #define LANG_FOLDER "/mnt/app/language" typedef enum { diff --git a/src/ui/ui_keyboard.c b/src/ui/ui_keyboard.c index 99562e53..dccf8d0b 100644 --- a/src/ui/ui_keyboard.c +++ b/src/ui/ui_keyboard.c @@ -4,6 +4,7 @@ #include "core/common.hh" #include "core/osd.h" +#include "lang/language.h" #include "ui/page_common.h" #include "ui/ui_style.h" @@ -86,6 +87,7 @@ static void keyboard_update(uint8_t key) { * External Functions */ void keyboard_init() { + char buf[128]; if (!g_keyboard.input || !g_keyboard.text) { char filename[128]; @@ -121,7 +123,7 @@ void keyboard_init() { g_keyboard.dial_scroll_text = lv_label_create(lv_scr_act()); lv_obj_add_style(g_keyboard.dial_scroll_text, &style_rootmenu, LV_PART_MAIN); - lv_label_set_text(g_keyboard.dial_scroll_text, "Highlight Key"); + lv_label_set_text(g_keyboard.dial_scroll_text, _lang("Highlight Key")); lv_obj_set_style_text_font(g_keyboard.dial_scroll_text, &lv_font_montserrat_26, 0); lv_obj_set_style_text_align(g_keyboard.dial_scroll_text, LV_TEXT_ALIGN_LEFT, 0); lv_obj_set_pos(g_keyboard.dial_scroll_text, 620, 130); @@ -136,7 +138,7 @@ void keyboard_init() { g_keyboard.dial_click_text = lv_label_create(lv_scr_act()); lv_obj_add_style(g_keyboard.dial_click_text, &style_rootmenu, LV_PART_MAIN); - lv_label_set_text(g_keyboard.dial_click_text, "Select Key"); + lv_label_set_text(g_keyboard.dial_click_text, _lang("Select Key")); lv_obj_set_style_text_font(g_keyboard.dial_click_text, &lv_font_montserrat_26, 0); lv_obj_set_style_text_align(g_keyboard.dial_click_text, LV_TEXT_ALIGN_LEFT, 0); lv_obj_set_pos(g_keyboard.dial_click_text, 1020, 130); @@ -152,7 +154,8 @@ void keyboard_init() { g_keyboard.right_button_text = lv_label_create(lv_scr_act()); lv_obj_add_style(g_keyboard.right_button_text, &style_rootmenu, LV_PART_MAIN); - lv_label_set_text(g_keyboard.right_button_text, "Click: Close Keyboard\nHold: Erase Text"); + snprintf(buf, sizeof(buf), "%s: %s\n%s: %s", _lang("Click"), _lang("Close Keyboard"), _lang("Hold"), _lang("Erase Text")); + lv_label_set_text(g_keyboard.right_button_text, buf); lv_obj_set_style_text_font(g_keyboard.right_button_text, &lv_font_montserrat_26, 0); lv_obj_set_style_text_align(g_keyboard.right_button_text, LV_TEXT_ALIGN_LEFT, 0); lv_obj_set_pos(g_keyboard.right_button_text, 1360, 116); From cfb68c1ec9a87a160e15f658419d2b88b049b809 Mon Sep 17 00:00:00 2001 From: ligenxxxx <59721724+ligenxxxx@users.noreply.github.com> Date: Fri, 24 Jan 2025 15:55:35 +0800 Subject: [PATCH 3/3] fix live stream translate --- mkapp/app/language/zh_hans.ini | 2 +- src/ui/page_wifi.c | 23 +++++++++++------------ 2 files changed, 12 insertions(+), 13 deletions(-) diff --git a/mkapp/app/language/zh_hans.ini b/mkapp/app/language/zh_hans.ini index 49790a8f..fb78211a 100644 --- a/mkapp/app/language/zh_hans.ini +++ b/mkapp/app/language/zh_hans.ini @@ -137,7 +137,7 @@ Invalid Format = "格式无效" Password Requirements = "密码要求" Minimum 8 characters = "最少8个字符" maximum 64 characters = "最多64个字符" -Live stream: = "直播:" +Live stream = "直播" Connect to the WiFi network identified above = "连接上面标识的WiFi网络" Use VLC Player to open a Network Stream = "使用VLC播放器打开网络串流" Apply Settings = "生效设置" diff --git a/src/ui/page_wifi.c b/src/ui/page_wifi.c index bb9c1876..20bff823 100644 --- a/src/ui/page_wifi.c +++ b/src/ui/page_wifi.c @@ -357,22 +357,22 @@ static void page_wifi_update_page_1_notes() { static char buf[1024]; snprintf(buf, sizeof(buf), "%s:\n %s,%s.\n\n%s:\n 1. %s.\n 2. %s:\n\n rtsp://%s:8554/hdzero\n\n", - _lang("Password Requirements"), - _lang("Minimum 8 characters"), - _lang("maximum 64 characters"), - _lang("Live Stream"), - _lang("Connect to the WiFi network identified above"), - _lang("Use VLC Player to open a Network Stream"), - address ? address : page_wifi.page_2.ip_addr.text); + _lang("Password Requirements"), + _lang("Minimum 8 characters"), + _lang("maximum 64 characters"), + _lang("Live stream"), + _lang("Connect to the WiFi network identified above"), + _lang("Use VLC Player to open a Network Stream"), + address ? address : page_wifi.page_2.ip_addr.text); lv_label_set_text(page_wifi.page_1.note, buf); } static void page_wifi_update_page_3_notes() { static char buf[256]; snprintf(buf, sizeof(buf), "%s:\n %s,%s.\n\n", - _lang("Password Requirements"), - _lang("Minimum 8 characters"), - _lang("maximum 64 characters")); + _lang("Password Requirements"), + _lang("Minimum 8 characters"), + _lang("maximum 64 characters")); lv_label_set_text(page_wifi.page_3.note, buf); } @@ -859,7 +859,7 @@ static void page_wifi_on_roller(uint8_t key) { /** * Common handling method of the three "apply settings" buttons. */ -static void page_wifi_handle_apply_button(lv_obj_t* apply_button) { +static void page_wifi_handle_apply_button(lv_obj_t *apply_button) { if (page_wifi.confirm_settings) { lv_label_set_text(apply_button, "#FF0000 Updating WiFi...#"); page_wifi_apply_settings_timer = lv_timer_create(page_wifi_apply_settings_timer_cb, 1000, NULL); @@ -1016,7 +1016,6 @@ static void page_wifi_on_click(uint8_t key, int sel) { break; } - // Enable/Disable panel scrolling when elements are in focus pp_wifi.p_arr.max = keyboard_active() || page_wifi.page_2.rf_channel.active