diff --git a/.vscode/settings.json b/.vscode/settings.json index b89aec2a..4a90dbb7 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -63,7 +63,21 @@ "memory": "c", "new": "c", "rtc.h": "c", - "cstdlib": "c" + "cstdlib": "c", + "aic_hal.h": "c", + "stdlib.h": "c", + "time.h": "c", + "stdint.h": "c", + "errno.h": "c", + "unistd.h": "c", + "zigbee.h": "c", + "widgets_init.h": "c", + "lv_dropdown.h": "c", + "stdbool.h": "c", + "zigbee_fun.h": "c", + "chrono": "c", + "random": "c", + "aic_core.h": "c" }, - "cmake.sourceDirectory": "D:/ArtInChip/luban-lite-t3e-pro_v1.0.2/packages/third-party/cherryusb" + "cmake.sourceDirectory": "D:/ArtInChip/luban-lite-t3e-pro_v1.0.5/packages/third-party/cherryusb" } diff --git a/ReadMe.md b/ReadMe.md index 12b26380..74f3af55 100644 --- a/ReadMe.md +++ b/ReadMe.md @@ -1,3 +1,7 @@ +# v1.0.5 +* 1.场景界面添加弹窗警告用于提醒时间对的的可以手动更新 +* 2.增加手动设置区域和时间 + # v1.0.4 * 1.正式出货版本 diff --git a/application/rt-thread/t3e-pro/components/FontEnum.c b/application/rt-thread/t3e-pro/components/FontEnum.c index 8a2716ca..eff2f102 100644 --- a/application/rt-thread/t3e-pro/components/FontEnum.c +++ b/application/rt-thread/t3e-pro/components/FontEnum.c @@ -89,6 +89,9 @@ const char Menu_List[LANG_MAX][MENU_LIST_MAX][80]= "自动设置时间", "日期", "时间 ", + "时区 ", + "更改", + "取消", "语言", "网络", "场景", @@ -230,12 +233,13 @@ const char Menu_List[LANG_MAX][MENU_LIST_MAX][80]= "下载更新",//下载更新, "当前版本已经是最新版本!", "获取固件信息失败!", - "固件更新成功,3s后系统将会重启!", + "固件更新成功, 3s后系统将会重启!", "系统更新失败!", "系统升级中,请勿断电!", "新版本", "\n您将选择时钟模式?\n", - "\n您将选择开关模式?\n", + "\n您将选择开关模式?\n", + "当前时间可能有误,\n您需要手动设置时间.\n", #elif defined(CONFIG_LANAGUAGE_CHT) #error "not suptort cht" #endif @@ -305,10 +309,13 @@ const char Menu_List[LANG_MAX][MENU_LIST_MAX][80]= "Adjust brightness to ambient light to energy saving", "Automatic screen", "10s\n30s\n45s\n1min\n2min\n5min\n10min\nnever", - "Time", + "Date&Time", "Set time Automatically", "Date", "Time", + "Time Zone", + "Change", + "Cancel", "Language", "Network", "Scene", @@ -456,6 +463,7 @@ const char Menu_List[LANG_MAX][MENU_LIST_MAX][80]= "New Version", "\nAre you sure to change?\n", "\nAre you sure to change?\n", + "The currt time may be wrong, \nyou need to set the time manually.\n", } }; diff --git a/application/rt-thread/t3e-pro/components/FontEnum.h b/application/rt-thread/t3e-pro/components/FontEnum.h index 0b16a582..08f91aad 100644 --- a/application/rt-thread/t3e-pro/components/FontEnum.h +++ b/application/rt-thread/t3e-pro/components/FontEnum.h @@ -11,7 +11,7 @@ #define D_System_Storage "16MB+8MB" #define D_System_Hardware "1.0" #define D_System_Screen "480*480" -#define D_System_Ver 104 +#define D_System_Ver 105 enum { @@ -83,6 +83,9 @@ enum MENU_LIST_SetClockauto, //自动设置时间 MENU_LIST_SetClockDate, //日期 MENU_LIST_SetClockTime, //时间 + MENU_LIST_SetClockZone, //时区 + MENU_LIST_SetClockChange, //时间设置的更改 + MENU_LIST_SetClockcancel, //时间设置的取消 MENU_LIST_SetLanguange, //语言 MENU_LIST_SetNetwork, //网络 MENU_LIST_SetScene, //场景 @@ -221,7 +224,7 @@ enum MENU_LIST_OTA_NEW_VER,//新版本 MENU_LIST_Clockmodeselect, //时钟+开关 MENU_LIST_switchhmodeselect, //时钟+开关 - + MENU_LIST_power_date_alarm, //上电时间警告 MENU_LIST_MAX, }; diff --git a/application/rt-thread/t3e-pro/components/RTC_Clock/ESP32_Clock.c b/application/rt-thread/t3e-pro/components/RTC_Clock/ESP32_Clock.c index 4ac23c9f..f35a2687 100644 --- a/application/rt-thread/t3e-pro/components/RTC_Clock/ESP32_Clock.c +++ b/application/rt-thread/t3e-pro/components/RTC_Clock/ESP32_Clock.c @@ -54,6 +54,52 @@ * EXTERNAL FUNCTIONS */ + + int isLeapYear(int year) + { + return (year % 4 == 0 && year % 100 != 0) || (year % 400 == 0); +} + + +int daysInMonth(int year, int month) +{ + if (month == 2) + { + return isLeapYear(year) ? 29 : 28; + } + else if (month == 4 || month == 6 || month == 9 || month == 11) + { + return 30; + } + else + { + return 31; + } +} + + +long dateToEpoch(int year, int month, int day, int hour, int minute, int second) +{ + int days = 0; + + for (int y = 1970; y < year; y++) + { + days += isLeapYear(y) ? 366 : 365; + } + + for (int m = 1; m < month; m++) + { + days += daysInMonth(year, m); + } + + days += day - 1; + + long seconds = days * 86400 + hour * 3600 + minute * 60 + second; + + return seconds; + + +} /********************************************************************* * LOCAL VARIABLES */ diff --git a/application/rt-thread/t3e-pro/components/RTC_Clock/ESP32_Clock.h b/application/rt-thread/t3e-pro/components/RTC_Clock/ESP32_Clock.h index 191de51a..c31d42e0 100644 --- a/application/rt-thread/t3e-pro/components/RTC_Clock/ESP32_Clock.h +++ b/application/rt-thread/t3e-pro/components/RTC_Clock/ESP32_Clock.h @@ -132,7 +132,7 @@ typedef struct * tm - pointer to UTC time struct */ extern UTCTime esp32_ConvertUTCSecs( UTCTimeStruct *tm ); - + extern long dateToEpoch(int year, int month, int day, int hour, int minute, int second); /* * Update/Adjust the esp32 clock and timers * Msec - elapsed time in milli seconds diff --git a/application/rt-thread/t3e-pro/components/custom/custom.c b/application/rt-thread/t3e-pro/components/custom/custom.c index 3496bf5a..8d64e711 100644 --- a/application/rt-thread/t3e-pro/components/custom/custom.c +++ b/application/rt-thread/t3e-pro/components/custom/custom.c @@ -19,13 +19,11 @@ #ifdef RT_USING_ULOG #include #endif - -#include - #include #include #include #include +#include #include "aic_core.h" #include "aic_hal_gpio.h" @@ -40,7 +38,7 @@ #include "zigbee_fun.h" // #include "cJSON.h" #include - +#include "ESP32_Clock.h" extern rt_mutex_t xGuiSemaphore; @@ -142,13 +140,14 @@ void gpio_set_level(char *name, u32 value) */ //接收消息 rt_mq_t custom_rx_evt_queue = NULL; //定义一个队列返回变量 - +lv_timer_t * poweralarmtimer = NULL;//上电 时间错误警告 lv_timer_t * animationtimer = NULL;//动画定时器 窗帘 纱帘 卷帘 幕布等使用 int scenebarindex;// void custom_Task(void *pvParameter); rt_thread_t custom_thread = RT_NULL; + void custom_init(lv_ui *ui) { /* Add your codes here */ @@ -722,6 +721,16 @@ static void custom_rollersinfo_timerclose(lv_timer_t * timer) } } +static void custom_power_timealarm(lv_timer_t * timer) +{ + if(guider_ui.scene_alarmtimecont) + { + lv_obj_del(guider_ui.scene_alarmtimecont); + } + + lv_timer_del(poweralarmtimer); + poweralarmtimer=NULL; +} void custom_Task(void *pvParameter) { ZIGEvent evt; @@ -732,14 +741,16 @@ void custom_Task(void *pvParameter) time_t now; struct tm timeinfo; - // struct timeval tv; - // tv.tv_sec=(time_t)1741335863;//用本地时间 不用处理时区了 - // tv.tv_usec=0; + struct timeval tv; + tv.tv_sec=(time_t)1735689600;//上电的默认时间 2025-01-01 08:00:00 + tv.tv_usec=0; // // int settimeofday(const struct timeval *tv , const struct timezone *tz); // //tz参数为时区 通常将参数tz设置为NULL,表示使用当前系统的时区 // //输入时间戳,通过settimeofday()函数来设置系统时间,这个函数设置的精度可以精确到微秒 - // settimeofday(&tv, NULL);//不用重新设置时区 + settimeofday(&tv, NULL);//不用重新设置时区 + //开启lv_time定时3s之后删除时间警告 + poweralarmtimer = lv_timer_create(custom_power_timealarm,5000,NULL); for(;;) { if(evt.buffStr)//接收到的是指针 用完释放内存 @@ -1067,9 +1078,11 @@ void custom_Task(void *pvParameter) break; //======================================================================= case ZIG_STATE_RTC_CURRENT://显示 - { + {//在RT-Thread中,使用time()函数来获取当前的系统时间。这个函数返回一个time_t类型的值,表示自1970年1月1日(UTC)以来的秒数 + /* 获取当前时间 */ time(&now); - localtime_r(&now, &timeinfo); + /* 将time_t类型转换为struct tm类型 */ + localtime_r(&now, &timeinfo);//localtime_r()先加上时区值,再调用gmtime_r()转换为结构体 // //struct tm // //{ // // int tm_sec; //分后的秒(0~61) @@ -1083,16 +1096,18 @@ void custom_Task(void *pvParameter) // // int tm_isdst; //夏令时标志(大于0说明夏令时有效,等于0说明无效,小于0说明信息不可用) // // // //}; - // LOG_I("time==%d:%d:%d:%d:%02d:%02d:%02d:%02d:%02d", - // timeinfo.tm_isdst, //是否为夏时制 - // timeinfo.tm_yday, //一年过去的天数 - // timeinfo.tm_wday, //星期,1对应星期一 - // timeinfo.tm_year, //年,距离1900年的差值,默认是70 - // timeinfo.tm_mon, //日期:月,从0开始 0~11 - // timeinfo.tm_mday, //日期:日,从1开始 - // timeinfo.tm_hour, //小时 - // timeinfo.tm_min, //分钟 - // timeinfo.tm_sec); //秒钟 + LOG_I("now=%d",now); + LOG_I("zone:%d",tz_get()); + LOG_I("time==%d:%d:%d:%d:%02d:%02d:%02d:%02d:%02d", + timeinfo.tm_isdst, //是否为夏时制 + timeinfo.tm_yday, //一年过去的天数 + timeinfo.tm_wday, //星期,1对应星期一 + timeinfo.tm_year+1900, //年,距离1900年的差值,默认是70 + timeinfo.tm_mon+1, //日期:月,从0开始 0~11 + timeinfo.tm_mday, //日期:日,从1开始 + timeinfo.tm_hour, //小时 + timeinfo.tm_min, //分钟 + timeinfo.tm_sec); //秒钟 if((timeinfo.tm_min==59)&&(timeinfo.tm_sec==59))//每小时更新一次 { ZIGEvent evtstate; @@ -1133,6 +1148,20 @@ void custom_Task(void *pvParameter) //printf("hh-angle:%d\r\n",angle); lv_img_set_angle(guider_ui.screensaver_clock_hour, angle);// } + + if(guider_ui.dateinfopage)//时间开关页 + { + lv_label_set_text_fmt(guider_ui.dateinfopage_timetxtlabel,"%02d:%02d",timeinfo.tm_hour,timeinfo.tm_min); + + if(GET_nvs_Sys_Info_language()==LANG_CH) + { + lv_label_set_text_fmt(guider_ui.dateinfopage_datetxtlabel,"%d年%d月%d日",timeinfo.tm_year+1900,timeinfo.tm_mon+1,timeinfo.tm_mday); + } + else + { + lv_label_set_text_fmt(guider_ui.dateinfopage_datetxtlabel,"%s %d, %d",Menu_monList[timeinfo.tm_mon+1],timeinfo.tm_mday,timeinfo.tm_year+1900); + } + } if(guider_ui.scene)//情景页时间 { lv_label_set_text_fmt(guider_ui.scene_timelabel,"%02d:%02d",timeinfo.tm_hour,timeinfo.tm_min); @@ -6095,6 +6124,224 @@ void custom_language_key_status(char key,lv_event_code_t code) // evtstate.buffStr=NULL; // rt_mq_send(custom_rx_evt_queue, &evtstate, sizeof(ZIGEvent));//上报给zigbee } + + +static void month_erro_msgbox_callback(lv_event_t *event) +{ + lv_event_code_t code = lv_event_get_code(event); + lv_obj_t * msgbox = lv_event_get_current_target(event); + + if ((code == LV_EVENT_VALUE_CHANGED) && (msgbox != NULL)) + { + lv_msgbox_close(msgbox); + } +} + +void custom_datetime_key_status(char key,lv_event_code_t code) +{ + switch(key) + { + case 1://自动获取时间开关 + { + if (lv_obj_has_state(guider_ui.dateinfopage_sw_1, LV_STATE_CHECKED)) + {//自动获取时间 禁用按钮 + printf("on\r\n"); + + //日期按键禁止按下 + lv_obj_add_state(guider_ui.dateinfopage_datebtn, LV_STATE_DISABLED);//off + //时间禁止允许按下 + lv_obj_add_state(guider_ui.dateinfopage_timebtn, LV_STATE_DISABLED);//off + + SET_nvs_Sys_Info_autoupdatetime(true); + nvs_eepom_sysInfo_update(); + + //立即去更新时间 + ZIGEvent evt; + evt.event=ZIG_STATE_RTC_UPDATE; + evt.length=0; + evt.buffStr=NULL; + + rt_mq_send(zig_rx_evt_queue, &evt, sizeof(ZIGEvent));//上报给zigbee + } + else + {//手动 允许按钮操作 + printf("off\r\n"); + + //日期按键允许按下 + lv_obj_clear_state(guider_ui.dateinfopage_datebtn, LV_STATE_DISABLED);//on + //时间按键允许按下 + lv_obj_clear_state(guider_ui.dateinfopage_timebtn, LV_STATE_DISABLED);//on + + SET_nvs_Sys_Info_autoupdatetime(false); + nvs_eepom_sysInfo_update(); + } + } + break; + case 2://更改 + { + LOG_I("custom_datetime_key_status"); + + /* + struct tm { + int tm_sec; // 秒 [0-59] + int tm_min; // 分 [0-59] + int tm_hour; // 时 [0-23] + int tm_mday; // 日 [1-31] + int tm_mon; // 月 [0-11](0 代表 1 月) + int tm_year; // 年(自 1900 年的偏移,如 2024 年为 124) + int tm_wday; // 星期 [0-6](0 代表周日) + int tm_yday; // 年中的第几天 [0-365] + int tm_isdst; // 夏令时标志(UTC 时间中通常为 0) + }; + */ + + ////timeinfo.tm_sec //秒钟 + //struct tm timeinfo = {0}; + char str[64]; + //uint16_t int year, int month, int day, int hour, int minute, int second;// + //年 + uint16_t sel_opt_idt=lv_dropdown_get_selected(guider_ui.datesetpage_yearddlist);//0~99 + lv_dropdown_get_selected_str(guider_ui.datesetpage_yearddlist,str,sizeof(str)); + int year=sel_opt_idt+2024;//0~99-->2024~2099 + LOG_I("year:%s---%d",str,year); + //timeinfo.tm_year=(int)((year)-1900); + //月 + sel_opt_idt=lv_dropdown_get_selected(guider_ui.datesetpage_moonddlist);//0~11 + lv_dropdown_get_selected_str(guider_ui.datesetpage_moonddlist,str,sizeof(str)); + int month=sel_opt_idt+1;//0~11-->1~12 + LOG_I("mon:%s---%d",str,month); + //timeinfo.tm_mon=month-1; + //日 + sel_opt_idt=lv_dropdown_get_selected(guider_ui.datesetpage_sunddlist);//0~30 + lv_dropdown_get_selected_str(guider_ui.datesetpage_sunddlist,str,sizeof(str)); + int day=sel_opt_idt+1;//0~30-->1~31 + LOG_I("sun:%s---%d",str,sel_opt_idt+1); + //timeinfo.tm_mday=day-1; + //时 + sel_opt_idt=lv_dropdown_get_selected(guider_ui.datesetpage_hourddlist);//0~23 + lv_dropdown_get_selected_str(guider_ui.datesetpage_hourddlist,str,sizeof(str)); + int hour=sel_opt_idt; + LOG_I("hour:%s---%d",str,hour); + //timeinfo.tm_hour=hour; + //分 + sel_opt_idt=lv_dropdown_get_selected(guider_ui.datesetpage_minuteddlist);//0~59 + lv_dropdown_get_selected_str(guider_ui.datesetpage_minuteddlist,str,sizeof(str)); + int minute=sel_opt_idt; + LOG_I("min:%s---%d",str,minute); + //timeinfo.tm_min=minute; +//1 3 5 7 8 10 12 31天 +//4 6 9 11 30天 +//2 28天 +//卡月对应天 不能超过最大日 + // if( + // ( + // (month==1) + // ||(month==3) + // ||(month==5) + // ||(month==7) + // ||(month==8) + // ||(month==10) + // ||(month==12) + // ) + // &&(day<=31) + // ) + // { + + // } + //警告 + if( + ( ( (month==4)||(month==6)||(month==9)||(month==11) ) && (day>30) ) + ||((month==2)&&(day>28)) + ) + { + char txtbuf[64]; + if(GET_nvs_Sys_Info_language()==LANG_CH) + { + sprintf(txtbuf,"%d月没有%d日",month,day); + } + else + { + sprintf(txtbuf,"There is no %dth in %s",day,Menu_monList[month-1]); + } + //lv_obj_t * mbox1 = lv_msgbox_create(NULL,NULL, Menu_List[GET_nvs_Sys_Info_language()][MENU_LIST_System_Restartmsgbox], btns_chs[GET_nvs_Sys_Info_language()], false); + lv_obj_t * mbox1 = lv_msgbox_create(NULL,NULL, (const char *)txtbuf, btns_chs[GET_nvs_Sys_Info_language()], false); + lv_msgbox_t * mbox = (lv_msgbox_t *)mbox1; + +// lv_obj_set_style_text_font(mbox->title, &lv_font_simsun_16, LV_PART_MAIN | LV_STATE_DEFAULT);//标题字体 +// lv_obj_set_style_text_align(mbox->title, LV_TEXT_ALIGN_CENTER, 0);//标题居中显示 + + lv_obj_set_style_text_font(mbox->text, &lv_font_simsun_16, LV_PART_MAIN | LV_STATE_DEFAULT);//内容字体 + lv_obj_set_style_text_align(mbox->text, LV_TEXT_ALIGN_CENTER, 0);//内容居中显示 + + lv_obj_set_style_text_font(mbox->btns, &lv_font_simsun_16, LV_PART_ITEMS | LV_STATE_DEFAULT);//按键字体 + lv_obj_set_size(lv_msgbox_get_btns(mbox1), 250, 50); + + lv_obj_center(mbox1); + + lv_obj_add_event_cb((lv_obj_t *)mbox1,month_erro_msgbox_callback, LV_EVENT_ALL, NULL); + } + else + { + //时区 + sel_opt_idt=lv_dropdown_get_selected(guider_ui.datesetpage_zoneddlist);//0~24 + lv_dropdown_get_selected_str(guider_ui.datesetpage_zoneddlist,str,sizeof(str)); + LOG_I("zone:%s---%d",str,sel_opt_idt-12); + tz_set(sel_opt_idt-12); + + LOG_I("new read zone:%d",tz_get()); + //UTC的起始时间为‌1970年1月1日 00:00:00‌(协调世界时) + //标准时间戳通常指的是UTC( 协调世界时 )。时间戳以 1970年1月1日 零时(UTC)为起点 + //标准时间戳:格林威治时间,以 1970.01.01 00:00:00 为起点到现在的总秒数。 + //本地时间戳:考虑时区和夏令时的本地时间,即标准时间 ± 时差。一般设备以本地时间为准 + + + //UTC +时区差*3600秒=本地时间 + //zone=(Localtime-standardtime)/3600 + //UTC=本地时间-时区差*3600 + //now()显示的是 UTC标准时间 + + //设置的时间当本地时间 + + // LOG_I("dateToEpoch:%d\r\n", dateToEpoch(2025, 7, 8, 18, 20, 0));//当地时间 1970开始计算的 + // LOG_I("dateToEpoch2:%d\r\n", dateToEpoch(2025, 7, 8, 18, 20, 0)-tz_get()*3600);//utc时间 + + time_t Localtime=dateToEpoch(year, month, day, hour, minute, 0);//年月日转换为本地时间(1970开始计算的) + LOG_I("Localtime:%d\r\n", Localtime); + time_t standardtime=Localtime-tz_get()*3600;//本地时间转换为UTC标准时间戳 + LOG_I("standardtime:%d\r\n",standardtime); + + //更新时间 更新的是utc时间 + struct timeval tv; + tv.tv_sec=(time_t)standardtime;//utc时间 + tv.tv_usec=0; + settimeofday(&tv, NULL);//不用重新设置时区 + + // SET_nvs_Sys_Info_tzzone(zone); + // nvs_eepom_sysInfo_update(); + + //退出 + if(!guider_ui.dateinfopage) + { + setup_scr_dateinfopage(&guider_ui); + } + lv_scr_load(guider_ui.dateinfopage); + + if(guider_ui.datesetpage) + { + lv_obj_del(guider_ui.datesetpage); + guider_ui.datesetpage = NULL; + } + } + } + break; + default: + break; + + } +} + + + // //实现原理 top层创建arc,默认是1s是1%,100s超时退出; 根据入网进程,改变animationtimer的周期 入网成功后,定时器周期改为100ms 很快到达100% void custom_network_timercb(lv_timer_t * timer) { diff --git a/application/rt-thread/t3e-pro/components/custom/custom.h b/application/rt-thread/t3e-pro/components/custom/custom.h index 43c13d68..84dcbdee 100644 --- a/application/rt-thread/t3e-pro/components/custom/custom.h +++ b/application/rt-thread/t3e-pro/components/custom/custom.h @@ -55,6 +55,8 @@ void custom_mianinfo_key_status(char key,lv_event_code_t code); void custom_display_key_status(char key,lv_event_code_t code); //语言 void custom_language_key_status(char key,lv_event_code_t code); +//时间设置 +void custom_datetime_key_status(char key,lv_event_code_t code); //网络页 void custom_network_key_status(char key,lv_event_code_t code); //首屏 diff --git a/application/rt-thread/t3e-pro/components/generated/events_init.c b/application/rt-thread/t3e-pro/components/generated/events_init.c index 355a1062..ce76ca8b 100644 --- a/application/rt-thread/t3e-pro/components/generated/events_init.c +++ b/application/rt-thread/t3e-pro/components/generated/events_init.c @@ -190,6 +190,26 @@ static void setting_dispinfobtn_1_event_handler (lv_event_t *e) break; } } +static void setting_dateinfobtn_1_event_handler (lv_event_t *e) +{ + lv_event_code_t code = lv_event_get_code(e); + + switch (code) { + case LV_EVENT_CLICKED: + { + LOG_I("setting_dateinfobtn_1_event_handler"); + + if(!guider_ui.dateinfopage) + { + setup_scr_dateinfopage(&guider_ui); + } + lv_scr_load(guider_ui.dateinfopage); + break; + } + default: + break; + } +} static void setting_langinfobtn_1_event_handler (lv_event_t *e) { lv_event_code_t code = lv_event_get_code(e); @@ -275,6 +295,7 @@ void events_init_setting(lv_ui *ui) lv_obj_add_event_cb(ui->setting_retrunbtn, setting_retrunbtn_event_handler, LV_EVENT_ALL, ui); lv_obj_add_event_cb(ui->setting_mainfobtn_1, setting_mainfobtn_1_event_handler, LV_EVENT_ALL, ui); lv_obj_add_event_cb(ui->setting_dispinfobtn_1, setting_dispinfobtn_1_event_handler, LV_EVENT_ALL, ui); + lv_obj_add_event_cb(ui->setting_dateinfobtn_1, setting_dateinfobtn_1_event_handler, LV_EVENT_ALL, ui); lv_obj_add_event_cb(ui->setting_langinfobtn_1, setting_langinfobtn_1_event_handler, LV_EVENT_ALL, ui); lv_obj_add_event_cb(ui->setting_smartconfibtn_1, setting_smartconfibtn_1_event_handler, LV_EVENT_ALL, ui); lv_obj_add_event_cb(ui->setting_firstinfobtn_1, setting_firstinfobtn_1_event_handler, LV_EVENT_ALL, ui); @@ -341,6 +362,167 @@ void events_init_mianinfopage(lv_ui *ui) lv_obj_add_event_cb(ui->mianinfopage_restartbtn, mianinfopage_restartbtn_event_handler, LV_EVENT_ALL, NULL); lv_obj_add_event_cb(ui->mianinfopage_factorybtn, mianinfopage_factorybtn_event_handler, LV_EVENT_ALL, NULL); } +static void dateinfopage_retrunbtn_event_handler (lv_event_t *e) +{ + lv_event_code_t code = lv_event_get_code(e); + + switch (code) { + case LV_EVENT_RELEASED: + { + LOG_I("dateinfopage_retrunbtn_event_handler"); + + if(!guider_ui.setting) + { + setup_scr_setting(&guider_ui); + } + lv_scr_load(guider_ui.setting); + + if(guider_ui.dateinfopage) + { + lv_obj_del(guider_ui.dateinfopage); + guider_ui.dateinfopage = NULL; + } + break; + } + default: + break; + } +} +static void dateinfopage_sw_1_event_handler (lv_event_t *e) +{ + lv_event_code_t code = lv_event_get_code(e); + + switch (code) { + case LV_EVENT_VALUE_CHANGED: + { + LOG_I("dateinfopage_sw_1_event_handler"); + custom_datetime_key_status(1,LV_EVENT_CLICKED); + break; + } + default: + break; + } +} +static void dateinfopage_datebtn_event_handler (lv_event_t *e) +{ + lv_event_code_t code = lv_event_get_code(e); + + switch (code) { + case LV_EVENT_RELEASED: + { + LOG_I("dateinfopage_datebtn_event_handler"); + + if(!guider_ui.datesetpage) + { + setup_scr_datesetpage(&guider_ui); + } + lv_scr_load(guider_ui.datesetpage); + break; + } + default: + break; + } +} +static void dateinfopage_timebtn_event_handler (lv_event_t *e) +{ + lv_event_code_t code = lv_event_get_code(e); + + switch (code) { + case LV_EVENT_RELEASED: + { + LOG_I("dateinfopage_timebtn_event_handler"); + + if(!guider_ui.datesetpage) + { + setup_scr_datesetpage(&guider_ui); + } + lv_scr_load(guider_ui.datesetpage); + break; + } + default: + break; + } +} +void events_init_dateinfopage(lv_ui *ui) +{ + lv_obj_add_event_cb(ui->dateinfopage_retrunbtn, dateinfopage_retrunbtn_event_handler, LV_EVENT_ALL, ui); + lv_obj_add_event_cb(ui->dateinfopage_sw_1, dateinfopage_sw_1_event_handler, LV_EVENT_ALL, ui); + lv_obj_add_event_cb(ui->dateinfopage_datebtn, dateinfopage_datebtn_event_handler, LV_EVENT_ALL, ui); + lv_obj_add_event_cb(ui->dateinfopage_timebtn, dateinfopage_timebtn_event_handler, LV_EVENT_ALL, ui); +} +static void datesetpage_retrunbtn_event_handler (lv_event_t *e) +{ + lv_event_code_t code = lv_event_get_code(e); + + switch (code) { + case LV_EVENT_CLICKED: + { + LOG_I("datesetpage_retrunbtn_event_handler"); + + if(!guider_ui.dateinfopage) + { + setup_scr_dateinfopage(&guider_ui); + } + lv_scr_load(guider_ui.dateinfopage); + + if(guider_ui.datesetpage) + { + lv_obj_del(guider_ui.datesetpage); + guider_ui.datesetpage = NULL; + } + break; + } + default: + break; + } +} +static void datesetpage_changebtn_event_handler (lv_event_t *e) +{ + lv_event_code_t code = lv_event_get_code(e); + + switch (code) { + case LV_EVENT_CLICKED: + { + LOG_I("datesetpage_changebtn_event_handler"); + custom_datetime_key_status(2,LV_EVENT_CLICKED); + break; + } + default: + break; + } +} +static void datesetpage_cancelbtn_event_handler (lv_event_t *e) +{ + lv_event_code_t code = lv_event_get_code(e); + + switch (code) { + case LV_EVENT_CLICKED: + { + LOG_I("datesetpage_cancelbtn_event_handler"); + + if(!guider_ui.dateinfopage) + { + setup_scr_dateinfopage(&guider_ui); + } + lv_scr_load(guider_ui.dateinfopage); + + if(guider_ui.datesetpage) + { + lv_obj_del(guider_ui.datesetpage); + guider_ui.datesetpage = NULL; + } + break; + } + default: + break; + } +} +void events_init_datesetpage(lv_ui *ui) +{ + lv_obj_add_event_cb(ui->datesetpage_retrunbtn, datesetpage_retrunbtn_event_handler, LV_EVENT_ALL, ui); + lv_obj_add_event_cb(ui->datesetpage_changebtn, datesetpage_changebtn_event_handler, LV_EVENT_ALL, ui); + lv_obj_add_event_cb(ui->datesetpage_cancelbtn, datesetpage_cancelbtn_event_handler, LV_EVENT_ALL, ui); +} static void langinfopage_retrunbtn_event_handler (lv_event_t *e) { lv_event_code_t code = lv_event_get_code(e); diff --git a/application/rt-thread/t3e-pro/components/generated/events_init.h b/application/rt-thread/t3e-pro/components/generated/events_init.h index 4594c6dd..268e7893 100644 --- a/application/rt-thread/t3e-pro/components/generated/events_init.h +++ b/application/rt-thread/t3e-pro/components/generated/events_init.h @@ -21,8 +21,10 @@ void events_init(lv_ui *ui); void events_init_screen_main(lv_ui *ui); void events_init_setting(lv_ui *ui); void events_init_mianinfopage(lv_ui *ui); -void events_init_langinfopage(lv_ui *ui); void events_init_displayinfopage(lv_ui *ui); +void events_init_dateinfopage(lv_ui *ui); +void events_init_datesetpage(lv_ui *ui); +void events_init_langinfopage(lv_ui *ui); void events_init_smartinfopage(lv_ui *ui); void events_init_firstinfopage(lv_ui *ui); void events_init_relayinfopage(lv_ui *ui); diff --git a/application/rt-thread/t3e-pro/components/generated/guider_fonts.zip b/application/rt-thread/t3e-pro/components/generated/guider_fonts.zip deleted file mode 100644 index 1157cdf3..00000000 Binary files a/application/rt-thread/t3e-pro/components/generated/guider_fonts.zip and /dev/null differ diff --git a/application/rt-thread/t3e-pro/components/generated/guider_fonts/lv_font_albbhptR_12.c b/application/rt-thread/t3e-pro/components/generated/guider_fonts/lv_font_albbhptR_12.c new file mode 100644 index 00000000..e8d4d1c5 --- /dev/null +++ b/application/rt-thread/t3e-pro/components/generated/guider_fonts/lv_font_albbhptR_12.c @@ -0,0 +1,1954 @@ +/* + * Copyright 2025 NXP + * NXP Confidential and Proprietary. This software is owned or controlled by NXP and may only be used strictly in + * accordance with the applicable license terms. By expressly accepting such terms or by downloading, installing, + * activating and/or otherwise using the software, you are agreeing that you have read, and that you agree to + * comply with and are bound by, such license terms. If you do not agree to be bound by the applicable license + * terms, then you may not retain, install, activate or otherwise use the software. + */ +/******************************************************************************* + * Size: 12 px + * Bpp: 4 + * Opts: --user-data-dir=C:\Users\Administrator\AppData\Roaming\gui-guider --app-path=F:\NXP\GUI-Guider-1.7.2-GA\resources\app.asar --no-sandbox --no-zygote --lang=zh-CN --device-scale-factor=1 --num-raster-threads=4 --enable-main-frame-before-activation --renderer-client-id=5 --time-ticks-at-unix-epoch=-1751881633023639 --launch-time-ticks=1589680672 --mojo-platform-channel-handle=3080 --field-trial-handle=2076,i,2682981464684109899,2457214471190466014,131072 --disable-features=SpareRendererForSitePerProcess,WinRetrieveSuggestionsOnlyOnDemand /prefetch:1 + ******************************************************************************/ + +#ifdef LV_LVGL_H_INCLUDE_SIMPLE +#include "lvgl.h" +#else +#include "lvgl.h" +#endif + +#ifndef LV_FONT_ALBBHPTR_12 +#define LV_FONT_ALBBHPTR_12 1 +#endif + +#if LV_FONT_ALBBHPTR_12 + +/*----------------- + * BITMAPS + *----------------*/ + +/*Store the image of the glyphs*/ +static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { + /* U+000A "\n" */ + + /* U+0020 " " */ + + /* U+0021 "!" */ + 0x6b, 0x6b, 0x5a, 0x5a, 0x59, 0x49, 0x12, 0x47, + 0x8c, + + /* U+0022 "\"" */ + 0xf, 0x5e, 0xf, 0x2d, 0xd, 0x1c, 0x8, 0x8, + + /* U+0023 "#" */ + 0x0, 0x96, 0xa, 0x40, 0xc, 0x20, 0xe1, 0xae, + 0xfe, 0xef, 0xd0, 0x2c, 0x4, 0xb0, 0x5, 0xa0, + 0x68, 0x0, 0x78, 0x8, 0x60, 0xaf, 0xee, 0xfe, + 0xd0, 0xd1, 0xe, 0x0, 0x1e, 0x2, 0xc0, 0x0, + + /* U+0024 "$" */ + 0x0, 0xb, 0x0, 0x6, 0xef, 0xe7, 0xe, 0x1b, + 0x1, 0x1d, 0xb, 0x0, 0xd, 0x8b, 0x0, 0x1, + 0x9f, 0xc2, 0x0, 0xb, 0x6c, 0x0, 0xb, 0xe, + 0x11, 0xb, 0x4c, 0x2d, 0xff, 0xc3, 0x0, 0xb, + 0x0, 0x0, 0xb, 0x0, + + /* U+0025 "%" */ + 0x9, 0xb9, 0x0, 0x66, 0x0, 0x1b, 0xa, 0x10, + 0xb0, 0x0, 0x2a, 0x9, 0x37, 0x50, 0x0, 0xb, + 0xb, 0x2b, 0x0, 0x0, 0x7, 0xa7, 0x74, 0x9a, + 0x50, 0x0, 0x1, 0xb3, 0x90, 0xc0, 0x0, 0x8, + 0x45, 0x70, 0xc0, 0x0, 0x1b, 0x4, 0x80, 0xc0, + 0x0, 0x83, 0x0, 0xa9, 0x70, + + /* U+0026 "&" */ + 0x0, 0x8e, 0xc2, 0x0, 0x2, 0xe0, 0x99, 0x0, + 0x4, 0xd0, 0x98, 0x0, 0x0, 0xeb, 0xc1, 0x0, + 0x6, 0xef, 0x10, 0x72, 0x3e, 0x18, 0xb0, 0xf0, + 0x79, 0x0, 0xcd, 0xb0, 0x5d, 0x20, 0x7f, 0x70, + 0x8, 0xee, 0xa5, 0xda, + + /* U+0027 "'" */ + 0xf, 0x10, 0xf0, 0xd, 0x0, 0x80, + + /* U+0028 "(" */ + 0x0, 0x87, 0x1, 0xe0, 0x7, 0x80, 0xc, 0x30, + 0xf, 0x0, 0x2e, 0x0, 0x3d, 0x0, 0x2e, 0x0, + 0xf, 0x0, 0xd, 0x30, 0x8, 0x80, 0x2, 0xd0, + 0x0, 0x96, + + /* U+0029 ")" */ + 0x2d, 0x0, 0x9, 0x60, 0x3, 0xc0, 0x0, 0xe2, + 0x0, 0xb5, 0x0, 0x97, 0x0, 0x88, 0x0, 0x97, + 0x0, 0xb5, 0x0, 0xe1, 0x4, 0xc0, 0xa, 0x50, + 0x2d, 0x0, + + /* U+002A "*" */ + 0x0, 0xe0, 0x6, 0x8d, 0x78, 0x28, 0xf9, 0x20, + 0xc6, 0xd1, 0x3, 0x3, 0x0, + + /* U+002B "+" */ + 0x0, 0x3d, 0x0, 0x0, 0x3, 0xd0, 0x0, 0x8f, + 0xff, 0xff, 0x31, 0x25, 0xd2, 0x20, 0x0, 0x3d, + 0x0, 0x0, 0x3, 0xd0, 0x0, 0x0, 0x1, 0x0, + 0x0, + + /* U+002C "," */ + 0x3, 0x40, 0x86, 0xd, 0x14, 0x90, + + /* U+002D "-" */ + 0x2e, 0xee, 0x50, + + /* U+002E "." */ + 0x74, 0xd7, + + /* U+002F "/" */ + 0x0, 0x0, 0x70, 0x0, 0x2, 0xb0, 0x0, 0x8, + 0x60, 0x0, 0xd, 0x10, 0x0, 0x3b, 0x0, 0x0, + 0x85, 0x0, 0x0, 0xd0, 0x0, 0x3, 0xb0, 0x0, + 0x9, 0x50, 0x0, 0xd, 0x0, 0x0, + + /* U+0030 "0" */ + 0x3, 0xdf, 0xc2, 0x0, 0xe5, 0x7, 0xc0, 0x2e, + 0x0, 0xf, 0x15, 0xc0, 0x0, 0xd3, 0x5b, 0x0, + 0xd, 0x45, 0xc0, 0x0, 0xd3, 0x2e, 0x0, 0xf, + 0x10, 0xe5, 0x7, 0xc0, 0x3, 0xdf, 0xc2, 0x0, + + /* U+0031 "1" */ + 0x6b, 0xf5, 0x53, 0xb5, 0x0, 0xb5, 0x0, 0xb5, + 0x0, 0xb5, 0x0, 0xb5, 0x0, 0xb5, 0x0, 0xb5, + 0x0, 0xb5, + + /* U+0032 "2" */ + 0xa, 0xff, 0xb1, 0x0, 0x10, 0x9, 0x90, 0x0, + 0x0, 0x4c, 0x0, 0x0, 0x6, 0xa0, 0x0, 0x1, + 0xd3, 0x0, 0x0, 0xc8, 0x0, 0x1, 0xc8, 0x0, + 0x1, 0xd6, 0x0, 0x0, 0x5f, 0xff, 0xff, 0x20, + + /* U+0033 "3" */ + 0xa, 0xee, 0xa1, 0x1, 0x0, 0xa8, 0x0, 0x0, + 0x5a, 0x0, 0x1, 0xc6, 0x2, 0xef, 0xb0, 0x0, + 0x0, 0x8a, 0x0, 0x0, 0x2e, 0x0, 0x0, 0x9b, + 0x2e, 0xfe, 0xa1, + + /* U+0034 "4" */ + 0x0, 0x4, 0xf5, 0x0, 0x0, 0xdc, 0x50, 0x0, + 0x87, 0xa5, 0x0, 0x2d, 0xa, 0x50, 0xc, 0x40, + 0xa5, 0x6, 0xa0, 0xa, 0x50, 0x9f, 0xff, 0xff, + 0x50, 0x0, 0xa, 0x50, 0x0, 0x0, 0xa5, 0x0, + + /* U+0035 "5" */ + 0x7f, 0xff, 0x80, 0x95, 0x0, 0x0, 0xb3, 0x0, + 0x0, 0xdd, 0xda, 0x10, 0x0, 0x8, 0xc0, 0x0, + 0x0, 0xf0, 0x0, 0x0, 0xf0, 0x10, 0x9, 0xa0, + 0xdf, 0xea, 0x10, + + /* U+0036 "6" */ + 0x0, 0x3b, 0xf2, 0x0, 0x3e, 0x51, 0x0, 0xc, + 0x30, 0x0, 0x1, 0xe9, 0xdc, 0x30, 0x3f, 0x30, + 0x5d, 0x4, 0xc0, 0x0, 0xe1, 0x3c, 0x0, 0xe, + 0x10, 0xe4, 0x5, 0xd0, 0x3, 0xdf, 0xc2, 0x0, + + /* U+0037 "7" */ + 0x5f, 0xff, 0xff, 0x20, 0x0, 0x0, 0xe0, 0x0, + 0x0, 0x78, 0x0, 0x0, 0xd, 0x10, 0x0, 0x5, + 0xa0, 0x0, 0x0, 0xc3, 0x0, 0x0, 0x4c, 0x0, + 0x0, 0xb, 0x50, 0x0, 0x2, 0xe0, 0x0, 0x0, + + /* U+0038 "8" */ + 0x4, 0xde, 0xc3, 0x0, 0xe3, 0x5, 0xd0, 0x1d, + 0x0, 0xf, 0x0, 0xd3, 0x5, 0xc0, 0x4, 0xfe, + 0xf3, 0x2, 0xd2, 0x2, 0xe1, 0x5a, 0x0, 0xb, + 0x33, 0xe1, 0x2, 0xe1, 0x7, 0xee, 0xd5, 0x0, + + /* U+0039 "9" */ + 0x3, 0xce, 0xb2, 0x0, 0xe4, 0x6, 0xc0, 0x3c, + 0x0, 0xf, 0x14, 0xb0, 0x0, 0xe2, 0x1e, 0x30, + 0x5f, 0x0, 0x4c, 0xd9, 0xe0, 0x0, 0x0, 0x6a, + 0x0, 0x1, 0x6d, 0x20, 0x4, 0xea, 0x20, 0x0, + + /* U+003A ":" */ + 0x6e, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0, 0x3, + 0x80, 0x6e, 0x0, + + /* U+003B ";" */ + 0x6, 0xe0, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1, 0x90, 0x4, 0xa0, 0xa, 0x40, + 0x7, 0x0, + + /* U+003C "<" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x5, 0xc3, 0x1, + 0x7e, 0xc5, 0x6, 0xe9, 0x20, 0x0, 0x9c, 0x40, + 0x0, 0x0, 0x6d, 0xd6, 0x0, 0x0, 0x4, 0xbe, + 0x20, 0x0, 0x0, 0x21, + + /* U+003D "=" */ + 0x8f, 0xff, 0xff, 0x31, 0x22, 0x22, 0x20, 0x0, + 0x0, 0x0, 0x8, 0xff, 0xff, 0xf3, 0x12, 0x22, + 0x22, 0x0, + + /* U+003E ">" */ + 0x0, 0x0, 0x0, 0x8, 0x92, 0x0, 0x0, 0x17, + 0xeb, 0x50, 0x0, 0x0, 0x5c, 0xd2, 0x0, 0x0, + 0x6e, 0x30, 0x28, 0xea, 0x30, 0x7e, 0x81, 0x0, + 0x2, 0x0, 0x0, 0x0, + + /* U+003F "?" */ + 0x6e, 0xfd, 0x41, 0x10, 0x7c, 0x0, 0x3, 0xd0, + 0x0, 0xaa, 0x0, 0x9b, 0x0, 0x1e, 0x0, 0x1, + 0x40, 0x0, 0x38, 0x0, 0x6, 0xe0, 0x0, + + /* U+0040 "@" */ + 0x0, 0x7, 0xcd, 0xeb, 0x30, 0x0, 0xc9, 0x10, + 0x4, 0xe3, 0x9, 0x80, 0x8c, 0x9a, 0x5a, 0xe, + 0x6, 0x90, 0xa8, 0x1e, 0x4b, 0xc, 0x20, 0x86, + 0xe, 0x4a, 0xe, 0x0, 0xb3, 0x1c, 0x3c, 0xd, + 0x13, 0xf4, 0x77, 0xe, 0x35, 0xdb, 0x6d, 0xa0, + 0x4, 0xd4, 0x0, 0x1, 0x0, 0x0, 0x2a, 0xdd, + 0xda, 0x10, + + /* U+0041 "A" */ + 0x0, 0xe, 0xe0, 0x0, 0x0, 0x3c, 0xc4, 0x0, + 0x0, 0x96, 0x69, 0x0, 0x0, 0xe1, 0x1e, 0x0, + 0x4, 0xb0, 0xb, 0x40, 0xa, 0xfe, 0xef, 0xa0, + 0xe, 0x21, 0x12, 0xf0, 0x5b, 0x0, 0x0, 0xb5, + 0xb6, 0x0, 0x0, 0x6b, + + /* U+0042 "B" */ + 0xef, 0xfe, 0x70, 0xe3, 0x3, 0xf2, 0xe3, 0x0, + 0xc4, 0xe3, 0x3, 0xe1, 0xee, 0xff, 0x90, 0xe3, + 0x1, 0xd5, 0xe3, 0x0, 0x88, 0xe3, 0x1, 0xc6, + 0xef, 0xff, 0x90, + + /* U+0043 "C" */ + 0x0, 0x6d, 0xff, 0x70, 0x6e, 0x40, 0x2, 0xd, + 0x40, 0x0, 0x1, 0xf0, 0x0, 0x0, 0x2f, 0x0, + 0x0, 0x1, 0xf0, 0x0, 0x0, 0xe, 0x40, 0x0, + 0x0, 0x8d, 0x31, 0x13, 0x0, 0x8d, 0xfe, 0x70, + + /* U+0044 "D" */ + 0xef, 0xfe, 0xa2, 0xe, 0x30, 0x2a, 0xd0, 0xe3, + 0x0, 0xe, 0x4e, 0x30, 0x0, 0xa7, 0xe3, 0x0, + 0x9, 0x8e, 0x30, 0x0, 0xa7, 0xe3, 0x0, 0xe, + 0x4e, 0x30, 0x2b, 0xc0, 0xef, 0xfe, 0xa1, 0x0, + + /* U+0045 "E" */ + 0xef, 0xff, 0xb0, 0xe3, 0x0, 0x0, 0xe3, 0x0, + 0x0, 0xe3, 0x0, 0x0, 0xef, 0xff, 0x70, 0xe3, + 0x0, 0x0, 0xe3, 0x0, 0x0, 0xe3, 0x0, 0x0, + 0xef, 0xff, 0xf0, + + /* U+0046 "F" */ + 0xef, 0xff, 0xbe, 0x30, 0x0, 0xe3, 0x0, 0xe, + 0x30, 0x0, 0xee, 0xee, 0x7e, 0x41, 0x10, 0xe3, + 0x0, 0xe, 0x30, 0x0, 0xe3, 0x0, 0x0, + + /* U+0047 "G" */ + 0x0, 0x6c, 0xff, 0xc0, 0x6, 0xe4, 0x0, 0x30, + 0xd, 0x40, 0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, + 0x2f, 0x0, 0x6f, 0xf4, 0x1f, 0x0, 0x0, 0xc4, + 0xe, 0x40, 0x0, 0xc4, 0x8, 0xd3, 0x0, 0xc4, + 0x0, 0x8d, 0xff, 0xd2, + + /* U+0048 "H" */ + 0xe3, 0x0, 0xb, 0x6e, 0x30, 0x0, 0xb6, 0xe3, + 0x0, 0xb, 0x6e, 0x30, 0x0, 0xb6, 0xef, 0xff, + 0xff, 0x6e, 0x30, 0x0, 0xb6, 0xe3, 0x0, 0xb, + 0x6e, 0x30, 0x0, 0xb6, 0xe3, 0x0, 0xb, 0x60, + + /* U+0049 "I" */ + 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, + 0xe3, + + /* U+004A "J" */ + 0x0, 0xe3, 0x0, 0xe3, 0x0, 0xe3, 0x0, 0xe3, + 0x0, 0xe3, 0x0, 0xe3, 0x0, 0xe3, 0x0, 0xe3, + 0x0, 0xe3, 0x0, 0xe2, 0x4, 0xf0, 0xee, 0x50, + + /* U+004B "K" */ + 0xe3, 0x0, 0xaa, 0xe, 0x30, 0x6d, 0x0, 0xe3, + 0x2e, 0x20, 0xe, 0x3d, 0x50, 0x0, 0xef, 0xd0, + 0x0, 0xe, 0x3d, 0x70, 0x0, 0xe3, 0x2e, 0x30, + 0xe, 0x30, 0x5e, 0x10, 0xe3, 0x0, 0x9b, 0x0, + + /* U+004C "L" */ + 0xe3, 0x0, 0xe, 0x30, 0x0, 0xe3, 0x0, 0xe, + 0x30, 0x0, 0xe3, 0x0, 0xe, 0x30, 0x0, 0xe3, + 0x0, 0xe, 0x30, 0x0, 0xef, 0xff, 0xc0, + + /* U+004D "M" */ + 0xef, 0x0, 0x0, 0xfd, 0xed, 0x60, 0x6, 0xdd, + 0xe6, 0xb0, 0xc, 0x6d, 0xe2, 0xe1, 0x2d, 0x3d, + 0xe2, 0x87, 0x77, 0x3d, 0xe2, 0x2d, 0xd1, 0x3d, + 0xe2, 0xc, 0xb0, 0x3d, 0xe2, 0x0, 0x0, 0x3d, + 0xe2, 0x0, 0x0, 0x3d, + + /* U+004E "N" */ + 0xef, 0x10, 0x5, 0xbe, 0xb8, 0x0, 0x5b, 0xe3, + 0xe1, 0x5, 0xbe, 0x28, 0x90, 0x5b, 0xe2, 0x1e, + 0x15, 0xbe, 0x20, 0x79, 0x5b, 0xe2, 0x0, 0xe7, + 0xbe, 0x20, 0x7, 0xeb, 0xe2, 0x0, 0xe, 0xb0, + + /* U+004F "O" */ + 0x0, 0x9d, 0xfd, 0x80, 0x0, 0x9c, 0x10, 0x2d, + 0x70, 0xf, 0x30, 0x0, 0x5d, 0x1, 0xf0, 0x0, + 0x2, 0xf0, 0x2f, 0x0, 0x0, 0x1f, 0x1, 0xf0, + 0x0, 0x2, 0xf0, 0xf, 0x30, 0x0, 0x5d, 0x0, + 0x9c, 0x20, 0x2d, 0x70, 0x0, 0x9e, 0xfd, 0x80, + 0x0, + + /* U+0050 "P" */ + 0xef, 0xfe, 0x70, 0xe3, 0x3, 0xf3, 0xe3, 0x0, + 0xb6, 0xe3, 0x0, 0xb6, 0xe3, 0x3, 0xf3, 0xef, + 0xed, 0x60, 0xe3, 0x0, 0x0, 0xe3, 0x0, 0x0, + 0xe3, 0x0, 0x0, + + /* U+0051 "Q" */ + 0x0, 0x9d, 0xfd, 0x80, 0x0, 0x9c, 0x10, 0x2d, + 0x70, 0xf, 0x30, 0x0, 0x5d, 0x1, 0xf0, 0x0, + 0x2, 0xf0, 0x2f, 0x0, 0x0, 0x1f, 0x1, 0xf0, + 0x0, 0x2, 0xf0, 0xf, 0x30, 0x0, 0x5d, 0x0, + 0x9c, 0x20, 0x2d, 0x70, 0x0, 0x9e, 0xfe, 0x70, + 0x0, 0x0, 0x2, 0xe2, 0x0, 0x0, 0x0, 0x4, + 0x50, 0x0, + + /* U+0052 "R" */ + 0xef, 0xfe, 0x70, 0xe, 0x30, 0x3e, 0x30, 0xe3, + 0x0, 0xb5, 0xe, 0x30, 0x2e, 0x30, 0xef, 0xff, + 0x70, 0xe, 0x31, 0xe1, 0x0, 0xe3, 0x8, 0xa0, + 0xe, 0x30, 0xe, 0x40, 0xe3, 0x0, 0x5d, 0x0, + + /* U+0053 "S" */ + 0x5, 0xdf, 0xe8, 0x1, 0xf3, 0x1, 0x20, 0x2e, + 0x0, 0x0, 0x0, 0xe8, 0x20, 0x0, 0x2, 0x9e, + 0xd4, 0x0, 0x0, 0x5, 0xe0, 0x0, 0x0, 0xf, + 0x11, 0x20, 0x6, 0xe0, 0x3d, 0xff, 0xc3, 0x0, + + /* U+0054 "T" */ + 0xdf, 0xff, 0xff, 0x20, 0x6, 0xb0, 0x0, 0x0, + 0x6b, 0x0, 0x0, 0x6, 0xb0, 0x0, 0x0, 0x6b, + 0x0, 0x0, 0x6, 0xb0, 0x0, 0x0, 0x6b, 0x0, + 0x0, 0x6, 0xb0, 0x0, 0x0, 0x6b, 0x0, 0x0, + + /* U+0055 "U" */ + 0xf2, 0x0, 0xb, 0x5f, 0x20, 0x0, 0xb5, 0xf2, + 0x0, 0xb, 0x5f, 0x20, 0x0, 0xb5, 0xf2, 0x0, + 0xb, 0x5f, 0x20, 0x0, 0xb5, 0xd3, 0x0, 0xc, + 0x4a, 0xa1, 0x4, 0xf1, 0x1a, 0xef, 0xc4, 0x0, + + /* U+0056 "V" */ + 0xa7, 0x0, 0x0, 0xf1, 0x5c, 0x0, 0x5, 0xb0, + 0xf, 0x10, 0xa, 0x60, 0xb, 0x60, 0xe, 0x10, + 0x6, 0xb0, 0x4c, 0x0, 0x1, 0xf0, 0x87, 0x0, + 0x0, 0xc4, 0xd2, 0x0, 0x0, 0x7c, 0xd0, 0x0, + 0x0, 0x2f, 0x80, 0x0, + + /* U+0057 "W" */ + 0x98, 0x0, 0x0, 0x0, 0xb, 0x55, 0xb0, 0x5, + 0xf2, 0x0, 0xe2, 0x2f, 0x0, 0x9d, 0x60, 0x2e, + 0x0, 0xe2, 0xd, 0x5b, 0x5, 0xb0, 0xb, 0x51, + 0xc0, 0xe0, 0x87, 0x0, 0x88, 0x68, 0xc, 0x3b, + 0x40, 0x4, 0xca, 0x40, 0x87, 0xe0, 0x0, 0x1f, + 0xd0, 0x4, 0xdd, 0x0, 0x0, 0xdc, 0x0, 0xf, + 0x90, 0x0, + + /* U+0058 "X" */ + 0x3f, 0x10, 0x5, 0xc0, 0xa, 0x90, 0xe, 0x30, + 0x1, 0xf2, 0x89, 0x0, 0x0, 0x8b, 0xe1, 0x0, + 0x0, 0x2f, 0xa0, 0x0, 0x0, 0xa9, 0xe2, 0x0, + 0x3, 0xe0, 0x7b, 0x0, 0xd, 0x50, 0xd, 0x50, + 0x6c, 0x0, 0x5, 0xe0, + + /* U+0059 "Y" */ + 0xa9, 0x0, 0x6, 0xc0, 0x1f, 0x20, 0xe, 0x30, + 0x7, 0xb0, 0x79, 0x0, 0x0, 0xe5, 0xe1, 0x0, + 0x0, 0x5f, 0x70, 0x0, 0x0, 0xf, 0x10, 0x0, + 0x0, 0xf, 0x10, 0x0, 0x0, 0xf, 0x10, 0x0, + 0x0, 0xf, 0x10, 0x0, + + /* U+005A "Z" */ + 0x1f, 0xff, 0xff, 0xb0, 0x11, 0x11, 0xd6, 0x0, + 0x0, 0x8b, 0x0, 0x0, 0x3e, 0x10, 0x0, 0x1e, + 0x40, 0x0, 0xa, 0x90, 0x0, 0x5, 0xd0, 0x0, + 0x1, 0xe4, 0x11, 0x11, 0x4f, 0xff, 0xff, 0xf0, + + /* U+005B "[" */ + 0x2f, 0xf1, 0x2e, 0x0, 0x2e, 0x0, 0x2e, 0x0, + 0x2e, 0x0, 0x2e, 0x0, 0x2e, 0x0, 0x2e, 0x0, + 0x2e, 0x0, 0x2e, 0x0, 0x2e, 0x0, 0x2e, 0x0, + 0x2f, 0xf1, + + /* U+005C "\\" */ + 0x87, 0x0, 0x0, 0x1d, 0x0, 0x0, 0xa, 0x40, + 0x0, 0x4, 0xb0, 0x0, 0x0, 0xd2, 0x0, 0x0, + 0x68, 0x0, 0x0, 0xe, 0x0, 0x0, 0x9, 0x50, + 0x0, 0x2, 0xc0, 0x0, 0x0, 0xc3, 0x0, 0x0, + 0x59, + + /* U+005D "]" */ + 0x9f, 0xb0, 0x5b, 0x5, 0xb0, 0x5b, 0x5, 0xb0, + 0x5b, 0x5, 0xb0, 0x5b, 0x5, 0xb0, 0x5b, 0x5, + 0xb0, 0x5b, 0x8f, 0xb0, + + /* U+005E "^" */ + 0x0, 0x9f, 0x30, 0x0, 0xe8, 0x90, 0x5, 0xb1, + 0xe0, 0xb, 0x50, 0xb5, 0x1e, 0x0, 0x5b, + + /* U+005F "_" */ + 0xee, 0xee, 0xee, + + /* U+0060 "`" */ + 0x1e, 0x40, 0x3, 0xb0, + + /* U+0061 "a" */ + 0x0, 0xce, 0xe7, 0x0, 0x0, 0x1, 0xf2, 0x0, + 0x0, 0xc, 0x30, 0x7d, 0xee, 0xf3, 0x3e, 0x10, + 0xc, 0x34, 0xd0, 0x3, 0xf3, 0xa, 0xdc, 0x9b, + 0x30, + + /* U+0062 "b" */ + 0xe2, 0x0, 0x0, 0xe2, 0x0, 0x0, 0xe2, 0x0, + 0x0, 0xe7, 0xdf, 0xb1, 0xea, 0x0, 0xa9, 0xe3, + 0x0, 0x4d, 0xe1, 0x0, 0x3e, 0xe3, 0x0, 0x4c, + 0xea, 0x0, 0xa8, 0xe5, 0xef, 0xa0, + + /* U+0063 "c" */ + 0x3, 0xcf, 0xe5, 0xe, 0x50, 0x1, 0x3e, 0x0, + 0x0, 0x4d, 0x0, 0x0, 0x3e, 0x0, 0x0, 0xe, + 0x50, 0x1, 0x3, 0xcf, 0xf5, + + /* U+0064 "d" */ + 0x0, 0x0, 0x7, 0x80, 0x0, 0x0, 0x78, 0x0, + 0x0, 0x7, 0x80, 0x3d, 0xec, 0x98, 0xe, 0x50, + 0x3e, 0x83, 0xe0, 0x0, 0x98, 0x4d, 0x0, 0x7, + 0x83, 0xe0, 0x0, 0x88, 0xe, 0x30, 0x1e, 0x80, + 0x4d, 0xdb, 0x88, + + /* U+0065 "e" */ + 0x3, 0xce, 0xd4, 0x0, 0xe4, 0x2, 0xe0, 0x3d, + 0x0, 0x1d, 0x34, 0xeb, 0xcc, 0xc2, 0x3d, 0x0, + 0x0, 0x0, 0xe6, 0x0, 0x30, 0x3, 0xcf, 0xfa, + 0x0, + + /* U+0066 "f" */ + 0x2, 0xce, 0x20, 0x88, 0x0, 0xa, 0x50, 0xb, + 0xfe, 0xc0, 0xb, 0x50, 0x0, 0xb5, 0x0, 0xb, + 0x50, 0x0, 0xb5, 0x0, 0xb, 0x50, 0x0, 0xb5, + 0x0, + + /* U+0067 "g" */ + 0x3, 0xde, 0xc9, 0x80, 0xe5, 0x2, 0xd8, 0x3e, + 0x0, 0x9, 0x84, 0xd0, 0x0, 0x78, 0x3e, 0x0, + 0x9, 0x80, 0xe5, 0x2, 0xe8, 0x4, 0xdf, 0xc9, + 0x80, 0x0, 0x0, 0x97, 0x0, 0x0, 0x3e, 0x20, + 0x2e, 0xfd, 0x50, + + /* U+0068 "h" */ + 0xe2, 0x0, 0x0, 0xe2, 0x0, 0x0, 0xe2, 0x0, + 0x0, 0xe8, 0xef, 0xa0, 0xea, 0x1, 0xd4, 0xe2, + 0x0, 0xa5, 0xe2, 0x0, 0xa6, 0xe2, 0x0, 0xa6, + 0xe2, 0x0, 0xa6, 0xe2, 0x0, 0xa6, + + /* U+0069 "i" */ + 0xe2, 0x30, 0x0, 0xe2, 0xe2, 0xe2, 0xe2, 0xe2, + 0xe2, 0xe2, + + /* U+006A "j" */ + 0x0, 0xe2, 0x0, 0x30, 0x0, 0x0, 0x0, 0xe2, + 0x0, 0xe2, 0x0, 0xe2, 0x0, 0xe2, 0x0, 0xe2, + 0x0, 0xe2, 0x0, 0xe2, 0x0, 0xe1, 0x1, 0xf0, + 0xce, 0x60, + + /* U+006B "k" */ + 0xe2, 0x0, 0x0, 0xe2, 0x0, 0x0, 0xe2, 0x0, + 0x0, 0xe2, 0xa, 0xa0, 0xe2, 0x5c, 0x0, 0xe4, + 0xd2, 0x0, 0xef, 0x70, 0x0, 0xe4, 0xe2, 0x0, + 0xe2, 0x5d, 0x10, 0xe2, 0x8, 0xb0, + + /* U+006C "l" */ + 0xe2, 0xe, 0x20, 0xe2, 0xe, 0x20, 0xe2, 0xe, + 0x20, 0xe2, 0xe, 0x20, 0xe2, 0x8, 0xf3, + + /* U+006D "m" */ + 0xe9, 0xee, 0x59, 0xfe, 0x50, 0xe8, 0x4, 0xf7, + 0x5, 0xe0, 0xe2, 0x0, 0xf1, 0x0, 0xf0, 0xe2, + 0x0, 0xf1, 0x0, 0xf0, 0xe2, 0x0, 0xf1, 0x0, + 0xf0, 0xe2, 0x0, 0xf1, 0x0, 0xf0, 0xe2, 0x0, + 0xf1, 0x0, 0xf0, + + /* U+006E "n" */ + 0xe8, 0xef, 0xa0, 0xea, 0x1, 0xe4, 0xe2, 0x0, + 0xa5, 0xe2, 0x0, 0xa6, 0xe2, 0x0, 0xa6, 0xe2, + 0x0, 0xa6, 0xe2, 0x0, 0xa6, + + /* U+006F "o" */ + 0x3, 0xce, 0xe8, 0x0, 0xe5, 0x1, 0xd5, 0x3e, + 0x0, 0x7, 0x94, 0xd0, 0x0, 0x6b, 0x3e, 0x0, + 0x7, 0x90, 0xe5, 0x1, 0xd5, 0x3, 0xce, 0xe8, + 0x0, + + /* U+0070 "p" */ + 0xe7, 0xdf, 0xb1, 0xea, 0x0, 0xa9, 0xe3, 0x0, + 0x4d, 0xe1, 0x0, 0x3e, 0xe3, 0x0, 0x4c, 0xea, + 0x0, 0xa8, 0xe7, 0xef, 0xa0, 0xe2, 0x0, 0x0, + 0xe2, 0x0, 0x0, 0xe2, 0x0, 0x0, + + /* U+0071 "q" */ + 0x3, 0xde, 0xc9, 0x80, 0xe5, 0x2, 0xe8, 0x3e, + 0x0, 0x9, 0x84, 0xd0, 0x0, 0x78, 0x3e, 0x0, + 0x9, 0x80, 0xe5, 0x2, 0xd8, 0x4, 0xdf, 0xc9, + 0x80, 0x0, 0x0, 0x78, 0x0, 0x0, 0x7, 0x80, + 0x0, 0x0, 0x78, + + /* U+0072 "r" */ + 0xe7, 0xd3, 0xea, 0x0, 0xe2, 0x0, 0xe2, 0x0, + 0xe2, 0x0, 0xe2, 0x0, 0xe2, 0x0, + + /* U+0073 "s" */ + 0x7, 0xee, 0xa0, 0x1e, 0x0, 0x0, 0x1e, 0x30, + 0x0, 0x5, 0xce, 0x50, 0x0, 0x2, 0xf0, 0x0, + 0x1, 0xe0, 0x3e, 0xed, 0x50, + + /* U+0074 "t" */ + 0x6, 0x10, 0xd, 0x20, 0xbf, 0xeb, 0xd, 0x20, + 0xd, 0x20, 0xd, 0x20, 0xd, 0x20, 0xc, 0x40, + 0x6, 0xec, + + /* U+0075 "u" */ + 0xf1, 0x0, 0xc4, 0xf1, 0x0, 0xc4, 0xf1, 0x0, + 0xc4, 0xf1, 0x0, 0xc4, 0xf1, 0x0, 0xc4, 0xd4, + 0x3, 0xf4, 0x5d, 0xdb, 0xb4, + + /* U+0076 "v" */ + 0xb5, 0x0, 0x1f, 0x5, 0xa0, 0x6, 0xa0, 0xe, + 0x0, 0xb5, 0x0, 0xa5, 0xe, 0x0, 0x5, 0xa5, + 0xa0, 0x0, 0xe, 0xb4, 0x0, 0x0, 0xae, 0x0, + 0x0, + + /* U+0077 "w" */ + 0x96, 0x0, 0xcb, 0x0, 0x78, 0x5a, 0x1, 0xde, + 0x0, 0xb4, 0x1d, 0x5, 0x9a, 0x40, 0xe0, 0xd, + 0x19, 0x46, 0x82, 0xc0, 0x9, 0x5d, 0x1, 0xd6, + 0x80, 0x5, 0xbb, 0x0, 0xdb, 0x40, 0x1, 0xf7, + 0x0, 0x8f, 0x0, + + /* U+0078 "x" */ + 0x6b, 0x0, 0x89, 0x0, 0xc5, 0x2e, 0x10, 0x2, + 0xdb, 0x50, 0x0, 0xc, 0xf0, 0x0, 0x4, 0xda, + 0x70, 0x0, 0xd3, 0x1e, 0x20, 0x89, 0x0, 0x7b, + 0x0, + + /* U+0079 "y" */ + 0xb6, 0x0, 0xe, 0x5, 0xb0, 0x4, 0xb0, 0xe, + 0x10, 0x96, 0x0, 0xa5, 0xe, 0x10, 0x4, 0xb3, + 0xb0, 0x0, 0xe, 0x96, 0x0, 0x0, 0x9f, 0x10, + 0x0, 0x6, 0xb0, 0x0, 0x1, 0xd4, 0x0, 0x3, + 0xe7, 0x0, 0x0, + + /* U+007A "z" */ + 0x2f, 0xff, 0xf6, 0x0, 0x3, 0xe1, 0x0, 0xd, + 0x40, 0x0, 0xa8, 0x0, 0x5, 0xd0, 0x0, 0x1e, + 0x20, 0x0, 0x7f, 0xff, 0xfa, + + /* U+007B "{" */ + 0x2, 0xd2, 0x8, 0x80, 0xa, 0x60, 0xa, 0x60, + 0xa, 0x60, 0xb, 0x50, 0x6f, 0x10, 0xc, 0x50, + 0xa, 0x60, 0xa, 0x60, 0xa, 0x60, 0x9, 0x80, + 0x2, 0xd2, + + /* U+007C "|" */ + 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, + 0x69, 0x69, 0x69, 0x69, 0x69, + + /* U+007D "}" */ + 0x99, 0x0, 0xe2, 0xd, 0x30, 0xd3, 0xd, 0x30, + 0xc4, 0x7, 0xf0, 0xb6, 0xd, 0x30, 0xd3, 0xd, + 0x30, 0xe2, 0x9a, 0x0, + + /* U+007E "~" */ + 0x2d, 0xe6, 0xb, 0x28, 0x72, 0xbf, 0xb0, 0x0, + 0x0, 0x0, 0x0, + + /* U+4FDD "保" */ + 0x0, 0x5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x49, + 0x3f, 0xdd, 0xdf, 0x0, 0x0, 0xa4, 0x3b, 0x0, + 0xe, 0x0, 0x2, 0xf0, 0x3b, 0x0, 0xe, 0x0, + 0xb, 0xf0, 0x2d, 0xdf, 0xdd, 0x0, 0x6b, 0xd0, + 0x0, 0xd, 0x0, 0x0, 0x21, 0xd3, 0xdd, 0xdf, + 0xdd, 0xb0, 0x0, 0xd0, 0x0, 0xbf, 0x90, 0x0, + 0x0, 0xd0, 0x2c, 0x5d, 0x6a, 0x10, 0x0, 0xd7, + 0xd4, 0xd, 0x5, 0xd2, 0x0, 0xd1, 0x0, 0xd, + 0x0, 0x10, + + /* U+524D "前" */ + 0x0, 0x7, 0x0, 0x3, 0x50, 0x0, 0x0, 0x9, + 0x60, 0xc, 0x30, 0x0, 0x4d, 0xdd, 0xdd, 0xdd, + 0xdd, 0xd1, 0x1, 0x44, 0x42, 0x0, 0x6, 0x0, + 0x7, 0xb8, 0x9b, 0x1c, 0xd, 0x0, 0x7, 0x94, + 0x6b, 0x1c, 0xd, 0x0, 0x7, 0xb8, 0x9b, 0x1c, + 0xd, 0x0, 0x7, 0x95, 0x6b, 0x1c, 0xd, 0x0, + 0x7, 0xb7, 0x9b, 0x1c, 0xd, 0x0, 0x7, 0x60, + 0x2b, 0x0, 0xd, 0x0, 0x7, 0x63, 0xd8, 0x1, + 0xdd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+52A8 "动" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xd0, 0x0, 0x9, 0xdd, 0xda, 0xe, 0x0, + 0x0, 0x0, 0x0, 0x28, 0xf8, 0x87, 0x0, 0x0, + 0x1, 0x6e, 0x66, 0xd4, 0xdd, 0xdd, 0xc0, 0xd0, + 0xd, 0x0, 0x77, 0x0, 0x1c, 0x0, 0xc0, 0xd, + 0x2c, 0x2, 0xb0, 0x1c, 0x4, 0xb0, 0x94, 0x49, + 0x2, 0xb0, 0xb9, 0x6a, 0x99, 0x50, 0x2a, 0xb, + 0x97, 0x59, 0xd1, 0x38, 0x90, 0x0, 0x0, 0xa5, + 0x1b, 0x91, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, + + /* U+53EF "可" */ + 0x1d, 0xdd, 0xdd, 0xdd, 0xef, 0xd2, 0x0, 0x0, + 0x0, 0x0, 0x49, 0x0, 0x0, 0x11, 0x11, 0x10, + 0x49, 0x0, 0x0, 0xdc, 0xcd, 0x90, 0x49, 0x0, + 0x0, 0xd0, 0x4, 0x90, 0x49, 0x0, 0x0, 0xd0, + 0x4, 0x90, 0x49, 0x0, 0x0, 0xd1, 0x15, 0x90, + 0x49, 0x0, 0x0, 0xac, 0xcc, 0x70, 0x49, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x49, 0x0, 0x0, 0x0, + 0x0, 0xa, 0xd7, 0x0, 0x0, 0x0, 0x0, 0x2, + 0x10, 0x0, + + /* U+5B58 "存" */ + 0x0, 0x0, 0x23, 0x0, 0x0, 0x0, 0x1, 0x11, + 0xa7, 0x11, 0x11, 0x10, 0xa, 0xbc, 0xfb, 0xbb, + 0xbb, 0xa0, 0x0, 0xb, 0x60, 0x0, 0x0, 0x0, + 0x0, 0x6b, 0x3c, 0xcc, 0xdf, 0x50, 0x4, 0xf6, + 0x0, 0x2, 0xc7, 0x0, 0x4e, 0xa6, 0x0, 0xc, + 0x40, 0x0, 0x32, 0x76, 0xcd, 0xdf, 0xdd, 0xd2, + 0x0, 0x76, 0x0, 0xc, 0x10, 0x0, 0x0, 0x76, + 0x0, 0xd, 0x10, 0x0, 0x0, 0x76, 0x5, 0xca, + 0x0, 0x0, + + /* U+5F53 "当" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0x30, 0xc, + 0x20, 0x6, 0x4, 0xd1, 0xc, 0x20, 0x89, 0x0, + 0x7b, 0xc, 0x24, 0xd0, 0x0, 0x6, 0xc, 0x26, + 0x30, 0xd, 0xdd, 0xdf, 0xed, 0xdd, 0x0, 0x0, + 0x0, 0x0, 0xf, 0x0, 0x0, 0x0, 0x0, 0xf, + 0x7, 0xdd, 0xdd, 0xdd, 0xdf, 0x0, 0x0, 0x0, + 0x0, 0xf, 0x2, 0x22, 0x22, 0x22, 0x2f, 0x2b, + 0xbb, 0xbb, 0xbb, 0xbf, + + /* U+60A8 "您" */ + 0x0, 0x38, 0xa, 0x30, 0x0, 0x0, 0x0, 0xb3, + 0x2f, 0xbb, 0xbb, 0xa0, 0x4, 0xd0, 0xc3, 0x13, + 0x15, 0xa0, 0x1d, 0xd3, 0x62, 0xd, 0x7, 0x20, + 0x65, 0xd0, 0x4b, 0xd, 0x3b, 0x0, 0x0, 0xd2, + 0xc1, 0xd, 0x6, 0x90, 0x0, 0xd6, 0x23, 0xd8, + 0x0, 0x80, 0x0, 0x44, 0x34, 0x40, 0x6, 0x0, + 0x6, 0x78, 0x51, 0xd1, 0x1a, 0x50, 0xd, 0x17, + 0x60, 0x12, 0xb1, 0xd1, 0x25, 0x4, 0xed, 0xde, + 0x60, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+624B "手" */ + 0x0, 0x0, 0x0, 0x1, 0x24, 0x0, 0x5, 0xcd, + 0xde, 0xec, 0xa9, 0x10, 0x0, 0x0, 0x8, 0x70, + 0x0, 0x0, 0x0, 0x0, 0x8, 0x70, 0x0, 0x0, + 0x5, 0xdd, 0xde, 0xed, 0xdd, 0x20, 0x0, 0x0, + 0x8, 0x70, 0x0, 0x0, 0x0, 0x0, 0x8, 0x70, + 0x0, 0x0, 0x4d, 0xdd, 0xde, 0xed, 0xdd, 0xd2, + 0x0, 0x0, 0x8, 0x70, 0x0, 0x0, 0x0, 0x0, + 0x8, 0x70, 0x0, 0x0, 0x0, 0x2, 0xbe, 0x40, + 0x0, 0x0, 0x0, 0x0, 0x31, 0x0, 0x0, 0x0, + + /* U+65F6 "时" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1e, 0x0, 0xac, 0xca, 0x0, 0x1, 0xe0, + 0xd, 0x55, 0xd0, 0x0, 0x1e, 0x0, 0xd0, 0xd, + 0xad, 0xdd, 0xfd, 0x6d, 0x0, 0xd1, 0x40, 0x1e, + 0x0, 0xde, 0xed, 0xd, 0x21, 0xe0, 0xd, 0x0, + 0xd0, 0x5a, 0x1e, 0x0, 0xd0, 0xd, 0x0, 0x81, + 0xe0, 0xd, 0x0, 0xd0, 0x0, 0x1e, 0x0, 0xde, + 0xed, 0x0, 0x2, 0xd0, 0x0, 0x0, 0x0, 0xd, + 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+6709 "有" */ + 0x0, 0x0, 0x5, 0x0, 0x0, 0x0, 0x1, 0x11, + 0x7a, 0x11, 0x11, 0x10, 0x1c, 0xcc, 0xfc, 0xcc, + 0xcc, 0xc2, 0x0, 0xa, 0x80, 0x0, 0x0, 0x0, + 0x0, 0x7e, 0xcc, 0xcc, 0xdc, 0x0, 0x8, 0xea, + 0x0, 0x0, 0x2c, 0x0, 0x6a, 0x4e, 0xcc, 0xcc, + 0xcc, 0x0, 0x0, 0x3a, 0x0, 0x0, 0x2c, 0x0, + 0x0, 0x3e, 0xcc, 0xcc, 0xcc, 0x0, 0x0, 0x3a, + 0x0, 0x0, 0x2c, 0x0, 0x0, 0x3a, 0x0, 0x8, + 0xd6, 0x0, + + /* U+7F6E "置" */ + 0xa, 0xba, 0xea, 0xcc, 0xae, 0x10, 0x9, 0x98, + 0xd8, 0xab, 0x8d, 0x10, 0x1, 0x11, 0x19, 0x31, + 0x11, 0x0, 0x9, 0x99, 0x9d, 0xa9, 0x99, 0x40, + 0x0, 0xb9, 0x9a, 0x99, 0xb4, 0x0, 0x0, 0xe9, + 0x99, 0x99, 0xc5, 0x0, 0x0, 0xe8, 0x88, 0x88, + 0xc5, 0x0, 0x0, 0xe8, 0x88, 0x88, 0xc5, 0x0, + 0x0, 0xe0, 0x0, 0x0, 0x85, 0x0, 0x6b, 0xfb, + 0xbb, 0xbb, 0xdc, 0xb0, + + /* U+80FD "能" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0x90, + 0xa, 0x20, 0x10, 0x2, 0xd1, 0xb0, 0xa4, 0x8e, + 0x22, 0xe9, 0x7b, 0x8a, 0xd7, 0x10, 0x16, 0x54, + 0x48, 0xa3, 0x2, 0x90, 0x9c, 0xcc, 0x78, 0xdb, + 0xd5, 0xc, 0x11, 0x4a, 0x42, 0x11, 0x0, 0xcd, + 0xdd, 0xaa, 0x21, 0x94, 0xc, 0x0, 0x3a, 0xa9, + 0xe7, 0x0, 0xcc, 0xcc, 0xaa, 0x80, 0x5, 0xc, + 0x0, 0x39, 0xa4, 0x4, 0xa0, 0xc0, 0x4d, 0x64, + 0xcc, 0xc3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+8981 "要" */ + 0xc, 0xcc, 0xfc, 0xde, 0xcc, 0x70, 0x0, 0x0, + 0xd0, 0x67, 0x0, 0x0, 0x7, 0xdb, 0xfb, 0xdd, + 0xbf, 0x0, 0x7, 0x60, 0xd0, 0x67, 0xd, 0x0, + 0x5, 0xcc, 0xdc, 0xcc, 0xcc, 0x0, 0x0, 0x1, + 0xe0, 0x0, 0x0, 0x0, 0x6b, 0xbf, 0xcb, 0xbd, + 0xeb, 0xb0, 0x0, 0x5e, 0x40, 0x1d, 0x30, 0x0, + 0x0, 0x3, 0xaf, 0xfa, 0x10, 0x0, 0x9, 0xbd, + 0xb6, 0x27, 0xcc, 0x20, 0x3, 0x10, 0x0, 0x0, + 0x2, 0x0, + + /* U+8BBE "设" */ + 0x1, 0x10, 0x0, 0x0, 0x0, 0x0, 0x4, 0xd1, + 0xb, 0xdc, 0xe5, 0x0, 0x0, 0x79, 0xc, 0x30, + 0x95, 0x0, 0x0, 0x1, 0x2e, 0x0, 0x8b, 0x70, + 0x6c, 0xc0, 0xa4, 0x0, 0x15, 0x60, 0x0, 0xe0, + 0x7d, 0xdd, 0xde, 0x0, 0x0, 0xe0, 0xc, 0x10, + 0x3b, 0x0, 0x0, 0xe0, 0x6, 0xa1, 0xd2, 0x0, + 0x0, 0xe3, 0x90, 0x9e, 0x50, 0x0, 0x0, 0xed, + 0x37, 0xd9, 0xd5, 0x0, 0x1, 0xa5, 0xe8, 0x0, + 0x2a, 0xd1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10, + + /* U+8BEF "误" */ + 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0xb0, + 0x7e, 0xdd, 0xdf, 0x30, 0x0, 0x96, 0x76, 0x0, + 0xb, 0x30, 0x0, 0x0, 0x7e, 0xdd, 0xdf, 0x30, + 0x6e, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd0, + 0xcc, 0xce, 0xcc, 0x80, 0x0, 0xd0, 0x0, 0x1b, + 0x0, 0x0, 0x0, 0xd4, 0xcc, 0xdf, 0xcc, 0xc0, + 0x0, 0xd5, 0x10, 0xae, 0x40, 0x0, 0x0, 0xfa, + 0x29, 0xb1, 0xc7, 0x0, 0x1, 0x77, 0xd6, 0x0, + 0x8, 0xe3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+95F4 "间" */ + 0x52, 0x0, 0x0, 0x0, 0x0, 0x2d, 0x4e, 0xee, + 0xee, 0xf1, 0x74, 0x20, 0x0, 0x0, 0xd1, 0xe0, + 0x8a, 0xaa, 0x90, 0xd1, 0xe0, 0xc3, 0x22, 0xd0, + 0xd1, 0xe0, 0xc1, 0x0, 0xd0, 0xd1, 0xe0, 0xcd, + 0xdd, 0xe0, 0xd1, 0xe0, 0xc1, 0x0, 0xd0, 0xd1, + 0xe0, 0xcd, 0xcc, 0xe0, 0xd1, 0xe0, 0x1, 0x11, + 0x0, 0xe0, 0xe0, 0x0, 0x0, 0x3f, 0xa0, 0x0, + 0x0, 0x0, 0x0, 0x0, + + /* U+9700 "需" */ + 0x4, 0xbb, 0xbd, 0xcb, 0xbb, 0x20, 0x8b, 0xbb, + 0xdc, 0xbb, 0xb6, 0xc, 0x37, 0x68, 0x57, 0x74, + 0x90, 0x71, 0x33, 0x85, 0x33, 0x25, 0x0, 0x37, + 0x65, 0x37, 0x71, 0x0, 0x88, 0x88, 0xe9, 0x88, + 0x88, 0x2, 0xaa, 0xaf, 0xaa, 0xaa, 0x0, 0x3a, + 0xb, 0x14, 0x70, 0xd0, 0x3, 0xa0, 0xb1, 0x47, + 0xd, 0x0, 0x3a, 0xb, 0x14, 0x78, 0xb0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+F001 "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x12, 0x0, 0x0, + 0x0, 0x3, 0x7c, 0xff, 0x0, 0x0, 0x59, 0xef, + 0xff, 0xff, 0x0, 0xe, 0xff, 0xff, 0xff, 0xff, + 0x0, 0xf, 0xff, 0xfd, 0x84, 0x8f, 0x0, 0xf, + 0xd7, 0x20, 0x0, 0x8f, 0x0, 0xf, 0x80, 0x0, + 0x0, 0x8f, 0x0, 0xf, 0x80, 0x0, 0x0, 0x8f, + 0x0, 0xf, 0x80, 0x0, 0x7b, 0xdf, 0x2, 0x3f, + 0x80, 0x6, 0xff, 0xff, 0xaf, 0xff, 0x80, 0x2, + 0xef, 0xf9, 0xef, 0xff, 0x60, 0x0, 0x2, 0x10, + 0x29, 0xa7, 0x0, 0x0, 0x0, 0x0, + + /* U+F008 "" */ + 0xb4, 0xdf, 0xff, 0xff, 0xfd, 0x4b, 0xe8, 0xe7, + 0x22, 0x22, 0x7e, 0x8e, 0xc0, 0xc5, 0x0, 0x0, + 0x6c, 0xc, 0xfc, 0xf6, 0x11, 0x11, 0x7f, 0xcf, + 0xc0, 0xcf, 0xff, 0xff, 0xfb, 0xc, 0xfc, 0xf6, + 0x11, 0x11, 0x7f, 0xcf, 0xc0, 0xc5, 0x0, 0x0, + 0x6c, 0xc, 0xe8, 0xe7, 0x22, 0x22, 0x7e, 0x8e, + 0xb4, 0xdf, 0xff, 0xff, 0xfd, 0x4b, + + /* U+F00B "" */ + 0xdf, 0xf6, 0x9f, 0xff, 0xff, 0xfd, 0xff, 0xf8, + 0xcf, 0xff, 0xff, 0xff, 0xef, 0xf6, 0xaf, 0xff, + 0xff, 0xfe, 0x13, 0x20, 0x3, 0x33, 0x33, 0x31, + 0xff, 0xf7, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xf8, + 0xcf, 0xff, 0xff, 0xff, 0xff, 0xf7, 0xbf, 0xff, + 0xff, 0xff, 0x13, 0x20, 0x3, 0x33, 0x33, 0x31, + 0xef, 0xf6, 0xaf, 0xff, 0xff, 0xfe, 0xff, 0xf8, + 0xcf, 0xff, 0xff, 0xff, 0xdf, 0xf6, 0xaf, 0xff, + 0xff, 0xfd, + + /* U+F00C "" */ + 0x0, 0x0, 0x0, 0x0, 0x3, 0xd4, 0x0, 0x0, + 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x3, + 0xff, 0xf4, 0x4d, 0x30, 0x0, 0x3f, 0xff, 0x40, + 0xef, 0xf3, 0x3, 0xff, 0xf4, 0x0, 0x4f, 0xff, + 0x6f, 0xff, 0x40, 0x0, 0x4, 0xff, 0xff, 0xf4, + 0x0, 0x0, 0x0, 0x4f, 0xff, 0x40, 0x0, 0x0, + 0x0, 0x3, 0xd3, 0x0, 0x0, 0x0, + + /* U+F00D "" */ + 0x14, 0x0, 0x0, 0x22, 0xd, 0xf7, 0x0, 0x4f, + 0xf1, 0x9f, 0xf7, 0x4f, 0xfd, 0x0, 0xaf, 0xff, + 0xfd, 0x10, 0x0, 0xbf, 0xfe, 0x10, 0x0, 0x4f, + 0xff, 0xf7, 0x0, 0x4f, 0xfd, 0xaf, 0xf7, 0xe, + 0xfd, 0x10, 0xaf, 0xf2, 0x5b, 0x10, 0x0, 0x99, + 0x0, + + /* U+F011 "" */ + 0x0, 0x0, 0x7, 0x70, 0x0, 0x0, 0x0, 0x32, + 0xf, 0xf0, 0x24, 0x0, 0x5, 0xfc, 0xf, 0xf0, + 0xcf, 0x50, 0x1f, 0xf4, 0xf, 0xf0, 0x5f, 0xf1, + 0x7f, 0x80, 0xf, 0xf0, 0x8, 0xf7, 0xbf, 0x20, + 0xf, 0xf0, 0x2, 0xfb, 0xcf, 0x10, 0xe, 0xe0, + 0x1, 0xfc, 0xaf, 0x40, 0x1, 0x10, 0x4, 0xfa, + 0x5f, 0xb0, 0x0, 0x0, 0xb, 0xf6, 0xd, 0xfa, + 0x10, 0x1, 0xaf, 0xd0, 0x2, 0xdf, 0xfc, 0xcf, + 0xfd, 0x20, 0x0, 0x8, 0xef, 0xfe, 0x91, 0x0, + 0x0, 0x0, 0x1, 0x10, 0x0, 0x0, + + /* U+F013 "" */ + 0x0, 0x0, 0x14, 0x41, 0x0, 0x0, 0x0, 0x0, + 0x7f, 0xf7, 0x0, 0x0, 0x3, 0x43, 0xdf, 0xfd, + 0x34, 0x30, 0xe, 0xff, 0xff, 0xff, 0xff, 0xe0, + 0x6f, 0xff, 0xfb, 0xbf, 0xff, 0xf6, 0x1b, 0xff, + 0x70, 0x7, 0xff, 0xb1, 0x7, 0xff, 0x20, 0x2, + 0xff, 0x70, 0x1b, 0xff, 0x70, 0x7, 0xff, 0xb1, + 0x6f, 0xff, 0xfb, 0xbf, 0xff, 0xf6, 0xe, 0xff, + 0xff, 0xff, 0xff, 0xe0, 0x3, 0x42, 0xcf, 0xfc, + 0x23, 0x30, 0x0, 0x0, 0x7f, 0xf7, 0x0, 0x0, + 0x0, 0x0, 0x4, 0x41, 0x0, 0x0, + + /* U+F015 "" */ + 0x0, 0x0, 0x0, 0x73, 0x3, 0x83, 0x0, 0x0, + 0x0, 0x1d, 0xff, 0x67, 0xf7, 0x0, 0x0, 0x3, + 0xee, 0x5a, 0xfe, 0xf7, 0x0, 0x0, 0x6f, 0xd3, + 0xb5, 0x7f, 0xf7, 0x0, 0x9, 0xfb, 0x3d, 0xff, + 0x85, 0xfe, 0x30, 0xbf, 0x95, 0xff, 0xff, 0xfb, + 0x3e, 0xf4, 0x76, 0x6f, 0xff, 0xff, 0xff, 0xd2, + 0xa1, 0x0, 0xcf, 0xff, 0xff, 0xff, 0xf4, 0x0, + 0x0, 0xcf, 0xfa, 0x2, 0xff, 0xf4, 0x0, 0x0, + 0xcf, 0xfa, 0x2, 0xff, 0xf4, 0x0, 0x0, 0xaf, + 0xf8, 0x1, 0xff, 0xf3, 0x0, + + /* U+F019 "" */ + 0x0, 0x0, 0x27, 0x72, 0x0, 0x0, 0x0, 0x0, + 0x7f, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xf8, + 0x0, 0x0, 0x0, 0x0, 0x8f, 0xf8, 0x0, 0x0, + 0x0, 0x0, 0x8f, 0xf8, 0x0, 0x0, 0x0, 0xdf, + 0xff, 0xff, 0xfd, 0x0, 0x0, 0x4f, 0xff, 0xff, + 0xf4, 0x0, 0x0, 0x4, 0xff, 0xff, 0x40, 0x0, + 0x23, 0x33, 0x5f, 0xf5, 0x33, 0x32, 0xff, 0xff, + 0xa4, 0x4a, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xcf, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x5c, 0x8f, + 0x9a, 0xaa, 0xaa, 0xaa, 0xaa, 0xa8, + + /* U+F01C "" */ + 0x0, 0x4f, 0xff, 0xff, 0xff, 0xb0, 0x0, 0x1, + 0xed, 0x88, 0x88, 0x89, 0xf8, 0x0, 0xa, 0xf2, + 0x0, 0x0, 0x0, 0xaf, 0x30, 0x5f, 0x70, 0x0, + 0x0, 0x0, 0x1e, 0xc0, 0xef, 0x88, 0x60, 0x0, + 0x28, 0x8b, 0xf6, 0xff, 0xff, 0xf3, 0x0, 0xbf, + 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, + 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, + + /* U+F021 "" */ + 0x0, 0x0, 0x1, 0x10, 0x0, 0x59, 0x0, 0x19, + 0xef, 0xfd, 0x70, 0x9f, 0x3, 0xef, 0xda, 0x9d, + 0xfe, 0xbf, 0xe, 0xf6, 0x0, 0x0, 0x5f, 0xff, + 0x7f, 0x70, 0x0, 0x3f, 0xff, 0xff, 0x69, 0x0, + 0x0, 0x2a, 0xaa, 0xa9, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xaa, 0xaa, 0xa2, 0x0, 0x0, 0xa6, + 0xff, 0xfe, 0xf3, 0x0, 0x7, 0xf7, 0xff, 0xf5, + 0x0, 0x0, 0x7f, 0xe0, 0xfb, 0xef, 0xd9, 0xad, + 0xfe, 0x30, 0xfa, 0x8, 0xef, 0xfe, 0x91, 0x0, + 0x95, 0x0, 0x1, 0x10, 0x0, 0x0, + + /* U+F026 "" */ + 0x0, 0x0, 0x2a, 0x0, 0x2, 0xef, 0x78, 0x8e, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xdf, 0xff, 0xff, 0x0, 0x7, 0xff, + 0x0, 0x0, 0x7f, 0x0, 0x0, 0x1, + + /* U+F027 "" */ + 0x0, 0x0, 0x2a, 0x0, 0x0, 0x0, 0x2e, 0xf0, + 0x0, 0x78, 0x8e, 0xff, 0x3, 0xf, 0xff, 0xff, + 0xf0, 0xba, 0xff, 0xff, 0xff, 0x3, 0xff, 0xff, + 0xff, 0xf0, 0xaa, 0xdf, 0xff, 0xff, 0x4, 0x0, + 0x0, 0x8f, 0xf0, 0x0, 0x0, 0x0, 0x8f, 0x0, + 0x0, 0x0, 0x0, 0x10, 0x0, + + /* U+F028 "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x6, 0xd2, 0x0, 0x0, 0x0, + 0x2a, 0x0, 0x11, 0x8e, 0x10, 0x0, 0x2, 0xef, + 0x0, 0x7d, 0x2b, 0x90, 0x78, 0x8e, 0xff, 0x3, + 0xa, 0xb3, 0xf0, 0xff, 0xff, 0xff, 0xb, 0xa1, + 0xf1, 0xe3, 0xff, 0xff, 0xff, 0x3, 0xf0, 0xe3, + 0xc5, 0xff, 0xff, 0xff, 0xb, 0xa1, 0xf1, 0xe3, + 0xdf, 0xff, 0xff, 0x3, 0xa, 0xb3, 0xf0, 0x0, + 0x7, 0xff, 0x0, 0x7d, 0x2b, 0x90, 0x0, 0x0, + 0x7f, 0x0, 0x11, 0x9e, 0x10, 0x0, 0x0, 0x1, + 0x0, 0x6, 0xd2, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, + + /* U+F03E "" */ + 0xbf, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xfd, 0x5b, + 0xff, 0xff, 0xff, 0xff, 0xf5, 0x1, 0xff, 0xff, + 0xef, 0xff, 0xfb, 0x18, 0xff, 0xf6, 0x1c, 0xff, + 0xff, 0xfc, 0xff, 0x60, 0x1, 0xdf, 0xff, 0x60, + 0x96, 0x0, 0x0, 0x8f, 0xf9, 0x0, 0x0, 0x0, + 0x0, 0x8f, 0xfc, 0x88, 0x88, 0x88, 0x88, 0xcf, + 0xbf, 0xff, 0xff, 0xff, 0xff, 0xfb, + + /* U+F043 "" */ + 0x0, 0x2, 0x40, 0x0, 0x0, 0x0, 0xcf, 0x10, + 0x0, 0x0, 0x3f, 0xf7, 0x0, 0x0, 0xa, 0xff, + 0xe0, 0x0, 0x4, 0xff, 0xff, 0x80, 0x0, 0xef, + 0xff, 0xff, 0x30, 0x8f, 0xff, 0xff, 0xfc, 0xe, + 0xff, 0xff, 0xff, 0xf2, 0xf9, 0xcf, 0xff, 0xff, + 0x3d, 0xc5, 0xff, 0xff, 0xf1, 0x6f, 0xa3, 0xbf, + 0xfa, 0x0, 0x8f, 0xff, 0xfb, 0x0, 0x0, 0x26, + 0x74, 0x0, 0x0, + + /* U+F048 "" */ + 0x58, 0x0, 0x0, 0x35, 0x9f, 0x10, 0x5, 0xfe, + 0x9f, 0x10, 0x6f, 0xfe, 0x9f, 0x17, 0xff, 0xfe, + 0x9f, 0x9f, 0xff, 0xfe, 0x9f, 0xff, 0xff, 0xfe, + 0x9f, 0xef, 0xff, 0xfe, 0x9f, 0x2d, 0xff, 0xfe, + 0x9f, 0x10, 0xcf, 0xfe, 0x9f, 0x10, 0xb, 0xfe, + 0x8f, 0x0, 0x0, 0x9b, 0x0, 0x0, 0x0, 0x0, + + /* U+F04B "" */ + 0x46, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfd, 0x40, + 0x0, 0x0, 0x0, 0xff, 0xff, 0xa1, 0x0, 0x0, + 0xf, 0xff, 0xff, 0xf7, 0x0, 0x0, 0xff, 0xff, + 0xff, 0xfd, 0x50, 0xf, 0xff, 0xff, 0xff, 0xff, + 0xb1, 0xff, 0xff, 0xff, 0xff, 0xff, 0x6f, 0xff, + 0xff, 0xff, 0xff, 0xb1, 0xff, 0xff, 0xff, 0xfd, + 0x40, 0xf, 0xff, 0xff, 0xf7, 0x0, 0x0, 0xff, + 0xff, 0xa1, 0x0, 0x0, 0xf, 0xfd, 0x40, 0x0, + 0x0, 0x0, 0x36, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+F04C "" */ + 0xaf, 0xfe, 0x30, 0xaf, 0xfe, 0x3f, 0xff, 0xf7, + 0xf, 0xff, 0xf7, 0xff, 0xff, 0x80, 0xff, 0xff, + 0x8f, 0xff, 0xf8, 0xf, 0xff, 0xf8, 0xff, 0xff, + 0x80, 0xff, 0xff, 0x8f, 0xff, 0xf8, 0xf, 0xff, + 0xf8, 0xff, 0xff, 0x80, 0xff, 0xff, 0x8f, 0xff, + 0xf8, 0xf, 0xff, 0xf8, 0xff, 0xff, 0x80, 0xff, + 0xff, 0x8f, 0xff, 0xf7, 0xf, 0xff, 0xf7, 0x48, + 0x98, 0x10, 0x48, 0x98, 0x10, + + /* U+F04D "" */ + 0x48, 0x88, 0x88, 0x88, 0x88, 0x1f, 0xff, 0xff, + 0xff, 0xff, 0xf7, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x8f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x8f, 0xff, 0xff, 0xff, 0xff, + 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8f, 0xff, + 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xf7, 0xaf, + 0xff, 0xff, 0xff, 0xfe, 0x30, + + /* U+F051 "" */ + 0x26, 0x0, 0x0, 0x58, 0x7f, 0xa0, 0x0, 0xbf, + 0x8f, 0xfb, 0x0, 0xbf, 0x8f, 0xff, 0xc1, 0xbf, + 0x8f, 0xff, 0xfd, 0xcf, 0x8f, 0xff, 0xff, 0xff, + 0x8f, 0xff, 0xff, 0xef, 0x8f, 0xff, 0xf4, 0xbf, + 0x8f, 0xff, 0x40, 0xbf, 0x8f, 0xe3, 0x0, 0xbf, + 0x5d, 0x20, 0x0, 0xae, 0x0, 0x0, 0x0, 0x0, + + /* U+F052 "" */ + 0x0, 0x0, 0x3, 0x70, 0x0, 0x0, 0x0, 0x0, + 0x3f, 0xfa, 0x0, 0x0, 0x0, 0x2, 0xef, 0xff, + 0x90, 0x0, 0x0, 0x1e, 0xff, 0xff, 0xf8, 0x0, + 0x1, 0xdf, 0xff, 0xff, 0xff, 0x70, 0xc, 0xff, + 0xff, 0xff, 0xff, 0xf4, 0xd, 0xff, 0xff, 0xff, + 0xff, 0xf5, 0x1, 0x34, 0x44, 0x44, 0x44, 0x30, + 0xd, 0xff, 0xff, 0xff, 0xff, 0xf5, 0xf, 0xff, + 0xff, 0xff, 0xff, 0xf8, 0xc, 0xff, 0xff, 0xff, + 0xff, 0xf5, + + /* U+F053 "" */ + 0x0, 0x0, 0x3, 0x10, 0x0, 0x5, 0xfb, 0x0, + 0x5, 0xff, 0x40, 0x5, 0xff, 0x40, 0x5, 0xff, + 0x50, 0x3, 0xff, 0x50, 0x0, 0xb, 0xfc, 0x10, + 0x0, 0xb, 0xfc, 0x10, 0x0, 0xc, 0xfc, 0x10, + 0x0, 0xc, 0xfb, 0x0, 0x0, 0xa, 0x50, + + /* U+F054 "" */ + 0x3, 0x10, 0x0, 0x3, 0xfc, 0x10, 0x0, 0xb, + 0xfc, 0x10, 0x0, 0xb, 0xfc, 0x10, 0x0, 0xb, + 0xfc, 0x10, 0x0, 0xd, 0xfb, 0x0, 0x5, 0xff, + 0x50, 0x5, 0xff, 0x50, 0x5, 0xff, 0x50, 0x3, + 0xff, 0x50, 0x0, 0xa, 0x50, 0x0, 0x0, + + /* U+F067 "" */ + 0x0, 0x0, 0x69, 0x10, 0x0, 0x0, 0x0, 0xd, + 0xf5, 0x0, 0x0, 0x0, 0x0, 0xef, 0x60, 0x0, + 0x0, 0x0, 0xe, 0xf6, 0x0, 0x0, 0x58, 0x88, + 0xff, 0xb8, 0x88, 0x1f, 0xff, 0xff, 0xff, 0xff, + 0xf7, 0x9b, 0xbb, 0xff, 0xdb, 0xbb, 0x30, 0x0, + 0xe, 0xf6, 0x0, 0x0, 0x0, 0x0, 0xef, 0x60, + 0x0, 0x0, 0x0, 0xe, 0xf6, 0x0, 0x0, 0x0, + 0x0, 0x9d, 0x20, 0x0, 0x0, + + /* U+F068 "" */ + 0x46, 0x66, 0x66, 0x66, 0x66, 0x1f, 0xff, 0xff, + 0xff, 0xff, 0xf7, 0xad, 0xdd, 0xdd, 0xdd, 0xdd, + 0x40, + + /* U+F06E "" */ + 0x0, 0x3, 0xad, 0xff, 0xc7, 0x0, 0x0, 0x0, + 0x9f, 0xe6, 0x24, 0xaf, 0xe3, 0x0, 0xb, 0xff, + 0x20, 0x77, 0x9, 0xff, 0x40, 0x7f, 0xf9, 0x0, + 0xcf, 0xa1, 0xff, 0xe1, 0xef, 0xf6, 0x7f, 0xff, + 0xf0, 0xef, 0xf7, 0x8f, 0xf9, 0x3f, 0xff, 0xc1, + 0xff, 0xe1, 0xb, 0xff, 0x26, 0xca, 0x19, 0xff, + 0x40, 0x0, 0x9f, 0xe6, 0x24, 0xaf, 0xe3, 0x0, + 0x0, 0x3, 0x9d, 0xff, 0xc7, 0x0, 0x0, + + /* U+F070 "" */ + 0x32, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xdf, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1c, 0xf8, 0x4a, 0xef, 0xeb, 0x50, 0x0, 0x0, + 0x0, 0x9f, 0xfd, 0x52, 0x5d, 0xfc, 0x10, 0x0, + 0x0, 0x5, 0xfe, 0x4a, 0x70, 0xcf, 0xe1, 0x0, + 0xb, 0x80, 0x2d, 0xff, 0xf7, 0x4f, 0xfb, 0x0, + 0x2f, 0xfb, 0x0, 0xaf, 0xfb, 0x2f, 0xff, 0x30, + 0xb, 0xff, 0x50, 0x7, 0xfe, 0x7f, 0xfb, 0x0, + 0x1, 0xdf, 0xc0, 0x0, 0x3e, 0xff, 0xe1, 0x0, + 0x0, 0x1b, 0xfc, 0x42, 0x1, 0xbf, 0xa0, 0x0, + 0x0, 0x0, 0x5b, 0xef, 0xb0, 0x8, 0xfc, 0x10, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4f, 0xe0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0x40, + + /* U+F071 "" */ + 0x0, 0x0, 0x0, 0x3, 0x10, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x5, 0xfd, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xef, 0xf7, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x8f, 0xff, 0xf1, 0x0, 0x0, 0x0, 0x0, + 0x2f, 0xfd, 0xef, 0xa0, 0x0, 0x0, 0x0, 0xb, + 0xfb, 0x3, 0xff, 0x30, 0x0, 0x0, 0x4, 0xff, + 0xc0, 0x4f, 0xfc, 0x0, 0x0, 0x0, 0xdf, 0xfd, + 0x5, 0xff, 0xf6, 0x0, 0x0, 0x7f, 0xff, 0xf8, + 0xcf, 0xff, 0xe1, 0x0, 0x1f, 0xff, 0xfc, 0x4, + 0xff, 0xff, 0x90, 0xa, 0xff, 0xff, 0xd2, 0x7f, + 0xff, 0xff, 0x20, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf6, 0x4, 0x78, 0x88, 0x88, 0x88, 0x88, + 0x87, 0x0, + + /* U+F074 "" */ + 0x0, 0x0, 0x0, 0x0, 0x6, 0x10, 0x0, 0x0, + 0x0, 0x0, 0xf, 0xc1, 0xff, 0xf8, 0x0, 0x2e, + 0xff, 0xfc, 0xcd, 0xff, 0x62, 0xef, 0xdf, 0xf9, + 0x0, 0x2c, 0x4e, 0xf9, 0xf, 0x90, 0x0, 0x2, + 0xef, 0x90, 0x7, 0x0, 0x0, 0x2e, 0xf8, 0x88, + 0xf, 0xa0, 0xcd, 0xff, 0x80, 0xdf, 0xdf, 0xf9, + 0xff, 0xf8, 0x0, 0x1e, 0xff, 0xfc, 0x0, 0x0, + 0x0, 0x0, 0xf, 0xc0, 0x0, 0x0, 0x0, 0x0, + 0x6, 0x10, + + /* U+F077 "" */ + 0x0, 0x0, 0x27, 0x0, 0x0, 0x0, 0x0, 0x2e, + 0xf9, 0x0, 0x0, 0x0, 0x2e, 0xff, 0xf9, 0x0, + 0x0, 0x2e, 0xf9, 0x2e, 0xf9, 0x0, 0x2e, 0xf9, + 0x0, 0x2e, 0xf9, 0xb, 0xf9, 0x0, 0x0, 0x2e, + 0xf4, 0x27, 0x0, 0x0, 0x0, 0x27, 0x0, + + /* U+F078 "" */ + 0x27, 0x0, 0x0, 0x0, 0x27, 0xb, 0xf9, 0x0, + 0x0, 0x2e, 0xf4, 0x2e, 0xf9, 0x0, 0x2e, 0xf9, + 0x0, 0x2e, 0xf9, 0x2e, 0xf9, 0x0, 0x0, 0x2e, + 0xff, 0xf9, 0x0, 0x0, 0x0, 0x2e, 0xf9, 0x0, + 0x0, 0x0, 0x0, 0x26, 0x0, 0x0, 0x0, + + /* U+F079 "" */ + 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x3f, 0xc0, 0x7, 0x77, 0x77, 0x72, 0x0, + 0x3, 0xff, 0xfc, 0x2e, 0xff, 0xff, 0xf9, 0x0, + 0xf, 0xcf, 0xcf, 0xa0, 0x0, 0x0, 0xe9, 0x0, + 0x4, 0x1e, 0x93, 0x20, 0x0, 0x0, 0xe9, 0x0, + 0x0, 0xe, 0x90, 0x0, 0x0, 0x0, 0xe9, 0x0, + 0x0, 0xe, 0x90, 0x0, 0x0, 0xb5, 0xe9, 0x97, + 0x0, 0xe, 0xc7, 0x77, 0x73, 0xbf, 0xff, 0xf6, + 0x0, 0xd, 0xff, 0xff, 0xfd, 0xb, 0xff, 0x70, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa6, 0x0, + + /* U+F07B "" */ + 0xbf, 0xff, 0xf6, 0x0, 0x0, 0x0, 0xff, 0xff, + 0xff, 0x98, 0x88, 0x74, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xbf, 0xff, 0xff, 0xff, 0xff, 0xfb, + + /* U+F093 "" */ + 0x0, 0x0, 0x2, 0x20, 0x0, 0x0, 0x0, 0x0, + 0x3e, 0xe3, 0x0, 0x0, 0x0, 0x3, 0xef, 0xfe, + 0x30, 0x0, 0x0, 0x3e, 0xff, 0xff, 0xe3, 0x0, + 0x0, 0xef, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, + 0x8f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xf8, + 0x0, 0x0, 0x0, 0x0, 0x8f, 0xf8, 0x0, 0x0, + 0x23, 0x32, 0x8f, 0xf8, 0x23, 0x32, 0xff, 0xfe, + 0x39, 0x93, 0xef, 0xff, 0xff, 0xff, 0xc9, 0x9c, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x5c, 0x8f, + 0x9a, 0xaa, 0xaa, 0xaa, 0xaa, 0xa8, + + /* U+F095 "" */ + 0x0, 0x0, 0x0, 0x0, 0x3, 0x62, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xcf, 0xfe, 0x0, 0x0, 0x0, + 0x0, 0x3f, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x9, + 0xff, 0xfd, 0x0, 0x0, 0x0, 0x0, 0x2d, 0xff, + 0x90, 0x0, 0x0, 0x0, 0x0, 0x4f, 0xf4, 0x0, + 0x0, 0x0, 0x0, 0xc, 0xfd, 0x0, 0x0, 0x1, + 0x0, 0x9, 0xff, 0x40, 0x1, 0x8e, 0xe1, 0x1a, + 0xff, 0x70, 0x0, 0xef, 0xff, 0xde, 0xff, 0x90, + 0x0, 0xc, 0xff, 0xff, 0xff, 0x60, 0x0, 0x0, + 0x8f, 0xff, 0xe9, 0x10, 0x0, 0x0, 0x2, 0x76, + 0x30, 0x0, 0x0, 0x0, 0x0, + + /* U+F0C4 "" */ + 0x7, 0x93, 0x0, 0x0, 0x22, 0xa, 0xff, 0xf2, + 0x0, 0x8f, 0xf5, 0xf9, 0x1f, 0x70, 0x8f, 0xf9, + 0xc, 0xfc, 0xf8, 0x8f, 0xf9, 0x0, 0x1a, 0xef, + 0xff, 0xf9, 0x0, 0x0, 0x0, 0xef, 0xfc, 0x0, + 0x0, 0x7, 0xbf, 0xff, 0xf6, 0x0, 0xa, 0xff, + 0xfa, 0xbf, 0xf6, 0x0, 0xf9, 0x1f, 0x70, 0xbf, + 0xf6, 0xc, 0xfc, 0xf4, 0x0, 0xbf, 0xf4, 0x1a, + 0xc6, 0x0, 0x0, 0x56, 0x0, + + /* U+F0C5 "" */ + 0x0, 0x3, 0x44, 0x41, 0x20, 0x0, 0x0, 0xff, + 0xff, 0x5e, 0x40, 0x24, 0x1f, 0xff, 0xf5, 0xee, + 0x2f, 0xf4, 0xff, 0xff, 0xc8, 0x82, 0xff, 0x4f, + 0xff, 0xff, 0xff, 0x5f, 0xf4, 0xff, 0xff, 0xff, + 0xf5, 0xff, 0x4f, 0xff, 0xff, 0xff, 0x5f, 0xf4, + 0xff, 0xff, 0xff, 0xf5, 0xff, 0x4f, 0xff, 0xff, + 0xff, 0x5f, 0xf4, 0xff, 0xff, 0xff, 0xf4, 0xff, + 0x93, 0x44, 0x44, 0x43, 0xf, 0xff, 0xff, 0xff, + 0x50, 0x0, 0x68, 0x88, 0x88, 0x71, 0x0, 0x0, + + /* U+F0C7 "" */ + 0x48, 0x88, 0x88, 0x87, 0x0, 0xf, 0xff, 0xff, + 0xff, 0xfb, 0x0, 0xf8, 0x0, 0x0, 0xb, 0xfb, + 0xf, 0x80, 0x0, 0x0, 0xbf, 0xf3, 0xfb, 0x77, + 0x77, 0x7d, 0xff, 0x4f, 0xff, 0xff, 0xff, 0xff, + 0xf4, 0xff, 0xff, 0x42, 0xdf, 0xff, 0x4f, 0xff, + 0xc0, 0x8, 0xff, 0xf4, 0xff, 0xfe, 0x0, 0xaf, + 0xff, 0x4f, 0xff, 0xfc, 0xaf, 0xff, 0xf4, 0xaf, + 0xff, 0xff, 0xff, 0xfd, 0x10, + + /* U+F0C9 "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, + 0xff, 0xff, 0xf7, 0x9a, 0xaa, 0xaa, 0xaa, 0xaa, + 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x89, 0x99, + 0x99, 0x99, 0x99, 0x3f, 0xff, 0xff, 0xff, 0xff, + 0xf7, 0x12, 0x22, 0x22, 0x22, 0x22, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x9a, 0xaa, 0xaa, 0xaa, + 0xaa, 0x4f, 0xff, 0xff, 0xff, 0xff, 0xf7, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+F0E0 "" */ + 0xbf, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x4e, 0xff, 0xff, 0xff, + 0xff, 0xe4, 0xc3, 0xbf, 0xff, 0xff, 0xfb, 0x3c, + 0xff, 0x57, 0xff, 0xff, 0x75, 0xff, 0xff, 0xf9, + 0x3d, 0xd3, 0x9f, 0xff, 0xff, 0xff, 0xd5, 0x5d, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xbf, 0xff, 0xff, 0xff, 0xff, 0xfb, + + /* U+F0E7 "" */ + 0x1, 0xbb, 0xba, 0x10, 0x0, 0x5f, 0xff, 0xf1, + 0x0, 0x7, 0xff, 0xfb, 0x0, 0x0, 0x9f, 0xff, + 0x60, 0x0, 0xb, 0xff, 0xff, 0xff, 0x60, 0xef, + 0xff, 0xff, 0xf1, 0xe, 0xff, 0xff, 0xf8, 0x0, + 0x0, 0xc, 0xfe, 0x0, 0x0, 0x0, 0xff, 0x50, + 0x0, 0x0, 0x3f, 0xc0, 0x0, 0x0, 0x7, 0xf3, + 0x0, 0x0, 0x0, 0xa9, 0x0, 0x0, 0x0, 0x2, + 0x0, 0x0, 0x0, + + /* U+F0EA "" */ + 0x0, 0x2a, 0x50, 0x0, 0x0, 0xe, 0xff, 0x8f, + 0xff, 0x20, 0x0, 0xff, 0xf8, 0xff, 0xf4, 0x0, + 0xf, 0xff, 0xeb, 0xbb, 0x30, 0x0, 0xff, 0xf4, + 0x99, 0x92, 0x60, 0xf, 0xff, 0x5f, 0xff, 0x4f, + 0xa0, 0xff, 0xf5, 0xff, 0xf5, 0x56, 0x1f, 0xff, + 0x5f, 0xff, 0xff, 0xf4, 0xff, 0xf5, 0xff, 0xff, + 0xff, 0x4e, 0xff, 0x5f, 0xff, 0xff, 0xf4, 0x0, + 0x5, 0xff, 0xff, 0xff, 0x40, 0x0, 0x5f, 0xff, + 0xff, 0xf4, 0x0, 0x0, 0x44, 0x44, 0x44, 0x0, + + /* U+F0F3 "" */ + 0x0, 0x0, 0x15, 0x0, 0x0, 0x0, 0x0, 0x9, + 0xf1, 0x0, 0x0, 0x0, 0x2d, 0xff, 0xf9, 0x0, + 0x0, 0xe, 0xff, 0xff, 0xf7, 0x0, 0x5, 0xff, + 0xff, 0xff, 0xd0, 0x0, 0x8f, 0xff, 0xff, 0xff, + 0x0, 0xa, 0xff, 0xff, 0xff, 0xf2, 0x0, 0xdf, + 0xff, 0xff, 0xff, 0x50, 0x6f, 0xff, 0xff, 0xff, + 0xfd, 0xe, 0xff, 0xff, 0xff, 0xff, 0xf6, 0x24, + 0x44, 0x44, 0x44, 0x43, 0x0, 0x0, 0x2f, 0xf9, + 0x0, 0x0, 0x0, 0x0, 0x46, 0x0, 0x0, 0x0, + + /* U+F11C "" */ + 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, 0xfc, + 0x8e, 0x8e, 0x8e, 0x88, 0xe8, 0xf7, 0xf8, 0xc, + 0xc, 0xb, 0x0, 0xb0, 0xf8, 0xff, 0xec, 0xfc, + 0xec, 0xee, 0xcf, 0xf8, 0xff, 0xa0, 0xc0, 0xa0, + 0x77, 0x2f, 0xf8, 0xff, 0xec, 0xfc, 0xec, 0xee, + 0xcf, 0xf8, 0xf8, 0xc, 0x0, 0x0, 0x0, 0xb0, + 0xf8, 0xfc, 0x8e, 0x88, 0x88, 0x88, 0xe8, 0xf7, + 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, + + /* U+F124 "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0x30, 0x0, + 0x0, 0x0, 0x0, 0x18, 0xef, 0xe0, 0x0, 0x0, + 0x0, 0x29, 0xff, 0xff, 0xb0, 0x0, 0x0, 0x3a, + 0xff, 0xff, 0xff, 0x30, 0x0, 0x4c, 0xff, 0xff, + 0xff, 0xfc, 0x0, 0xb, 0xff, 0xff, 0xff, 0xff, + 0xf5, 0x0, 0xe, 0xff, 0xff, 0xff, 0xff, 0xd0, + 0x0, 0x1, 0x34, 0x44, 0xdf, 0xff, 0x60, 0x0, + 0x0, 0x0, 0x0, 0xcf, 0xfe, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xcf, 0xf8, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xcf, 0xf1, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xbf, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0, 0x26, + 0x0, 0x0, 0x0, + + /* U+F15B "" */ + 0x9b, 0xbb, 0xb2, 0x70, 0xf, 0xff, 0xff, 0x4f, + 0x90, 0xff, 0xff, 0xf4, 0xff, 0x9f, 0xff, 0xff, + 0x54, 0x44, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, 0x44, + 0x44, 0x44, 0x30, + + /* U+F1EB "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x5, 0x9b, 0xcb, 0x95, 0x0, 0x0, 0x0, + 0x8f, 0xff, 0xff, 0xff, 0xff, 0x80, 0x3, 0xef, + 0xfa, 0x53, 0x23, 0x5a, 0xff, 0xe3, 0xdf, 0xa1, + 0x0, 0x0, 0x0, 0x1, 0xaf, 0xd2, 0x60, 0x5, + 0xbe, 0xfe, 0xb5, 0x0, 0x52, 0x0, 0x1c, 0xff, + 0xfe, 0xff, 0xfc, 0x10, 0x0, 0x2, 0xec, 0x40, + 0x0, 0x4c, 0xe2, 0x0, 0x0, 0x1, 0x0, 0x1, + 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0xa, 0xfa, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0xd6, 0x0, + 0x0, 0x0, + + /* U+F240 "" */ + 0x37, 0x77, 0x77, 0x77, 0x77, 0x77, 0x75, 0xf, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 0xf8, + 0x34, 0x44, 0x44, 0x44, 0x44, 0x4f, 0xdf, 0x8c, + 0xff, 0xff, 0xff, 0xff, 0xf2, 0xcf, 0xf8, 0xcf, + 0xff, 0xff, 0xff, 0xff, 0x8, 0xff, 0x89, 0xcc, + 0xcc, 0xcc, 0xcc, 0xc3, 0xff, 0xfb, 0x77, 0x77, + 0x77, 0x77, 0x77, 0x9f, 0x9c, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xe1, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, + + /* U+F241 "" */ + 0x37, 0x77, 0x77, 0x77, 0x77, 0x77, 0x75, 0xf, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 0xf8, + 0x34, 0x44, 0x44, 0x43, 0x0, 0x4f, 0xdf, 0x8c, + 0xff, 0xff, 0xff, 0xc0, 0x2, 0xcf, 0xf8, 0xcf, + 0xff, 0xff, 0xfc, 0x0, 0x8, 0xff, 0x89, 0xcc, + 0xcc, 0xcc, 0x90, 0x3, 0xff, 0xfb, 0x77, 0x77, + 0x77, 0x77, 0x77, 0x9f, 0x9c, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xe1, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, + + /* U+F242 "" */ + 0x37, 0x77, 0x77, 0x77, 0x77, 0x77, 0x75, 0xf, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 0xf8, + 0x34, 0x44, 0x42, 0x0, 0x0, 0x4f, 0xdf, 0x8c, + 0xff, 0xff, 0x80, 0x0, 0x2, 0xcf, 0xf8, 0xcf, + 0xff, 0xf8, 0x0, 0x0, 0x8, 0xff, 0x89, 0xcc, + 0xcc, 0x60, 0x0, 0x3, 0xff, 0xfb, 0x77, 0x77, + 0x77, 0x77, 0x77, 0x9f, 0x9c, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xe1, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, + + /* U+F243 "" */ + 0x37, 0x77, 0x77, 0x77, 0x77, 0x77, 0x75, 0xf, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 0xf8, + 0x34, 0x41, 0x0, 0x0, 0x0, 0x4f, 0xdf, 0x8c, + 0xff, 0x40, 0x0, 0x0, 0x2, 0xcf, 0xf8, 0xcf, + 0xf4, 0x0, 0x0, 0x0, 0x8, 0xff, 0x89, 0xcc, + 0x30, 0x0, 0x0, 0x3, 0xff, 0xfb, 0x77, 0x77, + 0x77, 0x77, 0x77, 0x9f, 0x9c, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xe1, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, + + /* U+F244 "" */ + 0x37, 0x77, 0x77, 0x77, 0x77, 0x77, 0x75, 0xf, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 0xf8, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x4f, 0xdf, 0x80, + 0x0, 0x0, 0x0, 0x0, 0x2, 0xcf, 0xf8, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0x80, 0x0, + 0x0, 0x0, 0x0, 0x3, 0xff, 0xfb, 0x77, 0x77, + 0x77, 0x77, 0x77, 0x9f, 0x9c, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xe1, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, + + /* U+F287 "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x25, 0xfb, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x5, 0xcb, 0xfe, 0x0, 0x0, 0x0, + 0x1, 0x0, 0xd, 0x10, 0x42, 0x0, 0x0, 0x0, + 0x9f, 0xd1, 0x68, 0x0, 0x0, 0x0, 0x68, 0x0, + 0xff, 0xfe, 0xee, 0xed, 0xdd, 0xdd, 0xef, 0xc0, + 0x9f, 0xd1, 0x0, 0xb3, 0x0, 0x0, 0x68, 0x0, + 0x1, 0x0, 0x0, 0x3b, 0x5, 0x74, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x9, 0xbe, 0xfb, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2d, 0xfb, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+F293 "" */ + 0x0, 0x0, 0x34, 0x20, 0x0, 0x0, 0x6e, 0xfe, + 0xfd, 0x20, 0x4, 0xff, 0xf3, 0xff, 0xd0, 0xc, + 0xff, 0xf0, 0x4f, 0xf5, 0xf, 0xd5, 0xf2, 0x95, + 0xf8, 0x2f, 0xf7, 0x41, 0x3c, 0xfa, 0x3f, 0xff, + 0x60, 0xaf, 0xfb, 0x3f, 0xfe, 0x20, 0x4f, 0xfb, + 0x2f, 0xe2, 0x92, 0x75, 0xfa, 0xf, 0xeb, 0xf1, + 0x49, 0xf8, 0x9, 0xff, 0xf0, 0x9f, 0xf2, 0x1, + 0xdf, 0xf9, 0xff, 0x90, 0x0, 0x6, 0xab, 0x95, + 0x0, + + /* U+F2ED "" */ + 0x0, 0x4, 0x88, 0x70, 0x0, 0xb, 0xcc, 0xff, + 0xff, 0xdc, 0xc5, 0xbc, 0xcc, 0xcc, 0xcc, 0xcc, + 0x52, 0x88, 0x88, 0x88, 0x88, 0x60, 0x4f, 0xff, + 0xff, 0xff, 0xfc, 0x4, 0xfa, 0xae, 0x6f, 0x5f, + 0xc0, 0x4f, 0xaa, 0xe6, 0xf4, 0xfc, 0x4, 0xfa, + 0xae, 0x6f, 0x4f, 0xc0, 0x4f, 0xaa, 0xe6, 0xf4, + 0xfc, 0x4, 0xfa, 0xae, 0x6f, 0x4f, 0xc0, 0x4f, + 0xaa, 0xe6, 0xf5, 0xfc, 0x3, 0xff, 0xff, 0xff, + 0xff, 0xb0, 0x6, 0x88, 0x88, 0x88, 0x72, 0x0, + + /* U+F304 "" */ + 0x0, 0x0, 0x0, 0x0, 0x1, 0x71, 0x0, 0x0, + 0x0, 0x0, 0x2, 0xef, 0xd1, 0x0, 0x0, 0x0, + 0x1, 0x5f, 0xff, 0xc0, 0x0, 0x0, 0x2, 0xea, + 0x5f, 0xfd, 0x0, 0x0, 0x2, 0xef, 0xfa, 0x5d, + 0x20, 0x0, 0x2, 0xef, 0xff, 0xf8, 0x0, 0x0, + 0x2, 0xef, 0xff, 0xfe, 0x20, 0x0, 0x2, 0xef, + 0xff, 0xfe, 0x20, 0x0, 0x2, 0xef, 0xff, 0xfe, + 0x20, 0x0, 0x0, 0xbf, 0xff, 0xfe, 0x20, 0x0, + 0x0, 0xd, 0xff, 0xfe, 0x20, 0x0, 0x0, 0x0, + 0xff, 0xfe, 0x20, 0x0, 0x0, 0x0, 0x6, 0x64, + 0x10, 0x0, 0x0, 0x0, 0x0, + + /* U+F55A "" */ + 0x0, 0x5, 0xef, 0xff, 0xff, 0xff, 0xff, 0x80, + 0x5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x5, + 0xff, 0xff, 0x91, 0xdd, 0x19, 0xff, 0xf5, 0xff, + 0xff, 0xfd, 0x11, 0x11, 0xdf, 0xff, 0xef, 0xff, + 0xff, 0xfb, 0x0, 0xbf, 0xff, 0xf5, 0xff, 0xff, + 0xfd, 0x11, 0x11, 0xdf, 0xff, 0x5, 0xff, 0xff, + 0x91, 0xdd, 0x19, 0xff, 0xf0, 0x5, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x0, 0x4, 0xef, 0xff, + 0xff, 0xff, 0xff, 0x80, + + /* U+F7C2 "" */ + 0x0, 0x17, 0x88, 0x87, 0x20, 0x2d, 0xff, 0xff, + 0xfd, 0x2e, 0xa0, 0xb3, 0x78, 0xfe, 0xfa, 0xb, + 0x37, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0x4, 0x44, + 0x44, 0x44, 0x0, + + /* U+F8A2 "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x4, 0xf0, 0x0, 0x69, 0x0, + 0x0, 0x0, 0xdf, 0x0, 0x7f, 0xc0, 0x0, 0x0, + 0xd, 0xf0, 0x8f, 0xff, 0xdd, 0xdd, 0xdd, 0xff, + 0xb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xb, + 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0xc0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0 +}; + + +/*--------------------- + * GLYPH DESCRIPTION + *--------------------*/ + +static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = { + {.bitmap_index = 0, .adv_w = 0, .box_w = 0, .box_h = 0, .ofs_x = 0, .ofs_y = 0} /* id = 0 reserved */, + {.bitmap_index = 0, .adv_w = 0, .box_w = 0, .box_h = 0, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 0, .adv_w = 49, .box_w = 0, .box_h = 0, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 0, .adv_w = 69, .box_w = 2, .box_h = 9, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 9, .adv_w = 78, .box_w = 4, .box_h = 4, .ofs_x = 0, .ofs_y = 6}, + {.bitmap_index = 17, .adv_w = 115, .box_w = 7, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 49, .adv_w = 110, .box_w = 6, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 85, .adv_w = 158, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 130, .adv_w = 123, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 166, .adv_w = 49, .box_w = 3, .box_h = 4, .ofs_x = 0, .ofs_y = 6}, + {.bitmap_index = 172, .adv_w = 69, .box_w = 4, .box_h = 13, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 198, .adv_w = 69, .box_w = 4, .box_h = 13, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 224, .adv_w = 83, .box_w = 5, .box_h = 5, .ofs_x = 0, .ofs_y = 5}, + {.bitmap_index = 237, .adv_w = 106, .box_w = 7, .box_h = 7, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 262, .adv_w = 58, .box_w = 3, .box_h = 4, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 268, .adv_w = 84, .box_w = 5, .box_h = 1, .ofs_x = 0, .ofs_y = 3}, + {.bitmap_index = 271, .adv_w = 58, .box_w = 2, .box_h = 2, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 273, .adv_w = 96, .box_w = 6, .box_h = 10, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 303, .adv_w = 110, .box_w = 7, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 335, .adv_w = 110, .box_w = 4, .box_h = 9, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 353, .adv_w = 110, .box_w = 7, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 385, .adv_w = 110, .box_w = 6, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 412, .adv_w = 110, .box_w = 7, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 444, .adv_w = 110, .box_w = 6, .box_h = 9, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 471, .adv_w = 110, .box_w = 7, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 503, .adv_w = 110, .box_w = 7, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 535, .adv_w = 110, .box_w = 7, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 567, .adv_w = 110, .box_w = 7, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 599, .adv_w = 73, .box_w = 3, .box_h = 7, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 610, .adv_w = 73, .box_w = 4, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 628, .adv_w = 106, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 656, .adv_w = 106, .box_w = 7, .box_h = 5, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 674, .adv_w = 106, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 702, .adv_w = 83, .box_w = 5, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 725, .adv_w = 165, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 775, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 811, .adv_w = 119, .box_w = 6, .box_h = 9, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 838, .adv_w = 115, .box_w = 7, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 870, .adv_w = 134, .box_w = 7, .box_h = 9, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 902, .adv_w = 107, .box_w = 6, .box_h = 9, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 929, .adv_w = 101, .box_w = 5, .box_h = 9, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 952, .adv_w = 132, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 988, .adv_w = 136, .box_w = 7, .box_h = 9, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1020, .adv_w = 53, .box_w = 2, .box_h = 9, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1029, .adv_w = 52, .box_w = 4, .box_h = 12, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 1053, .adv_w = 118, .box_w = 7, .box_h = 9, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1085, .adv_w = 97, .box_w = 5, .box_h = 9, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1108, .adv_w = 159, .box_w = 8, .box_h = 9, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1144, .adv_w = 142, .box_w = 7, .box_h = 9, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1176, .adv_w = 143, .box_w = 9, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1217, .adv_w = 115, .box_w = 6, .box_h = 9, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1244, .adv_w = 143, .box_w = 9, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 1294, .adv_w = 118, .box_w = 7, .box_h = 9, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1326, .adv_w = 109, .box_w = 7, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1358, .adv_w = 101, .box_w = 7, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1390, .adv_w = 135, .box_w = 7, .box_h = 9, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1422, .adv_w = 118, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1458, .adv_w = 172, .box_w = 11, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1508, .adv_w = 120, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1544, .adv_w = 114, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1580, .adv_w = 120, .box_w = 7, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1612, .adv_w = 56, .box_w = 4, .box_h = 13, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 1638, .adv_w = 98, .box_w = 6, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 1671, .adv_w = 56, .box_w = 3, .box_h = 13, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 1691, .adv_w = 106, .box_w = 6, .box_h = 5, .ofs_x = 0, .ofs_y = 4}, + {.bitmap_index = 1706, .adv_w = 96, .box_w = 6, .box_h = 1, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 1709, .adv_w = 66, .box_w = 4, .box_h = 2, .ofs_x = 0, .ofs_y = 8}, + {.bitmap_index = 1713, .adv_w = 118, .box_w = 7, .box_h = 7, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1738, .adv_w = 122, .box_w = 6, .box_h = 10, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1768, .adv_w = 95, .box_w = 6, .box_h = 7, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1789, .adv_w = 122, .box_w = 7, .box_h = 10, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1824, .adv_w = 111, .box_w = 7, .box_h = 7, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1849, .adv_w = 67, .box_w = 5, .box_h = 10, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1874, .adv_w = 122, .box_w = 7, .box_h = 10, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 1909, .adv_w = 119, .box_w = 6, .box_h = 10, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1939, .adv_w = 51, .box_w = 2, .box_h = 10, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1949, .adv_w = 51, .box_w = 4, .box_h = 13, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 1975, .adv_w = 99, .box_w = 6, .box_h = 10, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2005, .adv_w = 55, .box_w = 3, .box_h = 10, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2020, .adv_w = 177, .box_w = 10, .box_h = 7, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2055, .adv_w = 119, .box_w = 6, .box_h = 7, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2076, .adv_w = 119, .box_w = 7, .box_h = 7, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 2101, .adv_w = 122, .box_w = 6, .box_h = 10, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 2131, .adv_w = 122, .box_w = 7, .box_h = 10, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 2166, .adv_w = 73, .box_w = 4, .box_h = 7, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2180, .adv_w = 92, .box_w = 6, .box_h = 7, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 2201, .adv_w = 65, .box_w = 4, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 2219, .adv_w = 118, .box_w = 6, .box_h = 7, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2240, .adv_w = 101, .box_w = 7, .box_h = 7, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 2265, .adv_w = 159, .box_w = 10, .box_h = 7, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 2300, .adv_w = 99, .box_w = 7, .box_h = 7, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 2325, .adv_w = 101, .box_w = 7, .box_h = 10, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 2360, .adv_w = 97, .box_w = 6, .box_h = 7, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 2381, .adv_w = 57, .box_w = 4, .box_h = 13, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 2407, .adv_w = 35, .box_w = 2, .box_h = 13, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 2420, .adv_w = 57, .box_w = 3, .box_h = 13, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 2440, .adv_w = 106, .box_w = 7, .box_h = 3, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 2451, .adv_w = 189, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 2517, .adv_w = 189, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 2589, .adv_w = 189, .box_w = 11, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 2661, .adv_w = 189, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 2727, .adv_w = 189, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 2793, .adv_w = 189, .box_w = 10, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 2853, .adv_w = 189, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 2925, .adv_w = 189, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 2997, .adv_w = 189, .box_w = 11, .box_h = 13, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 3069, .adv_w = 189, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 3135, .adv_w = 189, .box_w = 12, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 3195, .adv_w = 189, .box_w = 11, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 3267, .adv_w = 189, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 3333, .adv_w = 189, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 3405, .adv_w = 189, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 3477, .adv_w = 189, .box_w = 10, .box_h = 12, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 3537, .adv_w = 189, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 3598, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 3676, .adv_w = 192, .box_w = 12, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 3730, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 3796, .adv_w = 192, .box_w = 12, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 3850, .adv_w = 132, .box_w = 9, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 3891, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 3969, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 4047, .adv_w = 216, .box_w = 14, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 4124, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 4202, .adv_w = 216, .box_w = 14, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 4265, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 4343, .adv_w = 96, .box_w = 6, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 4373, .adv_w = 144, .box_w = 9, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 4418, .adv_w = 216, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 4509, .adv_w = 192, .box_w = 12, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 4563, .adv_w = 132, .box_w = 9, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 4622, .adv_w = 168, .box_w = 8, .box_h = 12, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 4670, .adv_w = 168, .box_w = 11, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 4742, .adv_w = 168, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 4803, .adv_w = 168, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 4864, .adv_w = 168, .box_w = 8, .box_h = 12, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 4912, .adv_w = 168, .box_w = 12, .box_h = 11, .ofs_x = -1, .ofs_y = -1}, + {.bitmap_index = 4978, .adv_w = 120, .box_w = 7, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 5017, .adv_w = 120, .box_w = 7, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 5056, .adv_w = 168, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 5117, .adv_w = 168, .box_w = 11, .box_h = 3, .ofs_x = 0, .ofs_y = 3}, + {.bitmap_index = 5134, .adv_w = 216, .box_w = 14, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 5197, .adv_w = 240, .box_w = 16, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 5301, .adv_w = 216, .box_w = 15, .box_h = 13, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 5399, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 5465, .adv_w = 168, .box_w = 11, .box_h = 7, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 5504, .adv_w = 168, .box_w = 11, .box_h = 7, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 5543, .adv_w = 240, .box_w = 16, .box_h = 10, .ofs_x = -1, .ofs_y = 0}, + {.bitmap_index = 5623, .adv_w = 192, .box_w = 12, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 5677, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 5755, .adv_w = 192, .box_w = 13, .box_h = 13, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 5840, .adv_w = 168, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 5901, .adv_w = 168, .box_w = 11, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 5973, .adv_w = 168, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 6034, .adv_w = 168, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 6095, .adv_w = 192, .box_w = 12, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 6149, .adv_w = 120, .box_w = 9, .box_h = 13, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 6208, .adv_w = 168, .box_w = 11, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 6280, .adv_w = 168, .box_w = 11, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 6352, .adv_w = 216, .box_w = 14, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 6415, .adv_w = 192, .box_w = 14, .box_h = 13, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 6506, .adv_w = 144, .box_w = 9, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 6565, .adv_w = 240, .box_w = 15, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 6655, .adv_w = 240, .box_w = 15, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 6723, .adv_w = 240, .box_w = 15, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 6791, .adv_w = 240, .box_w = 15, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 6859, .adv_w = 240, .box_w = 15, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 6927, .adv_w = 240, .box_w = 15, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 6995, .adv_w = 240, .box_w = 16, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 7083, .adv_w = 168, .box_w = 10, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 7148, .adv_w = 168, .box_w = 11, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 7220, .adv_w = 192, .box_w = 13, .box_h = 13, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 7305, .adv_w = 240, .box_w = 15, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 7373, .adv_w = 144, .box_w = 9, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 7432, .adv_w = 193, .box_w = 13, .box_h = 9, .ofs_x = 0, .ofs_y = 0} +}; + +/*--------------------- + * CHARACTER MAPPING + *--------------------*/ + +static const uint16_t unicode_list_2[] = { + 0x0, 0x270, 0x2cb, 0x412, 0xb7b, 0xf76, 0x10cb, 0x126e, + 0x1619, 0x172c, 0x2f91, 0x3120, 0x39a4, 0x3be1, 0x3c12, 0x4617, + 0x4723, 0xa024, 0xa02b, 0xa02e, 0xa02f, 0xa030, 0xa034, 0xa036, + 0xa038, 0xa03c, 0xa03f, 0xa044, 0xa049, 0xa04a, 0xa04b, 0xa061, + 0xa066, 0xa06b, 0xa06e, 0xa06f, 0xa070, 0xa074, 0xa075, 0xa076, + 0xa077, 0xa08a, 0xa08b, 0xa091, 0xa093, 0xa094, 0xa097, 0xa09a, + 0xa09b, 0xa09c, 0xa09e, 0xa0b6, 0xa0b8, 0xa0e7, 0xa0e8, 0xa0ea, + 0xa0ec, 0xa103, 0xa10a, 0xa10d, 0xa116, 0xa13f, 0xa147, 0xa17e, + 0xa20e, 0xa263, 0xa264, 0xa265, 0xa266, 0xa267, 0xa2aa, 0xa2b6, + 0xa310, 0xa327, 0xa57d, 0xa7e5, 0xa8c5 +}; + +/*Collect the unicode lists and glyph_id offsets*/ +static const lv_font_fmt_txt_cmap_t cmaps[] = +{ + { + .range_start = 10, .range_length = 1, .glyph_id_start = 1, + .unicode_list = NULL, .glyph_id_ofs_list = NULL, .list_length = 0, .type = LV_FONT_FMT_TXT_CMAP_FORMAT0_TINY + }, + { + .range_start = 32, .range_length = 95, .glyph_id_start = 2, + .unicode_list = NULL, .glyph_id_ofs_list = NULL, .list_length = 0, .type = LV_FONT_FMT_TXT_CMAP_FORMAT0_TINY + }, + { + .range_start = 20445, .range_length = 43206, .glyph_id_start = 97, + .unicode_list = unicode_list_2, .glyph_id_ofs_list = NULL, .list_length = 77, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY + } +}; + +/*----------------- + * KERNING + *----------------*/ + + +/*Map glyph_ids to kern left classes*/ +static const uint8_t kern_left_class_mapping[] = +{ + 0, 0, 0, 0, 1, 0, 0, 0, + 0, 1, 2, 0, 0, 0, 3, 0, + 3, 4, 0, 5, 0, 0, 0, 0, + 0, 6, 0, 0, 7, 7, 0, 0, + 0, 0, 0, 8, 9, 0, 10, 11, + 12, 13, 0, 0, 14, 15, 16, 0, + 0, 10, 17, 18, 19, 20, 21, 22, + 23, 24, 15, 25, 26, 27, 0, 0, + 0, 0, 0, 28, 29, 0, 0, 30, + 31, 0, 32, 33, 34, 35, 36, 32, + 32, 29, 29, 37, 38, 39, 40, 41, + 42, 43, 35, 42, 44, 45, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 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*/ +static const uint8_t kern_right_class_mapping[] = +{ + 0, 0, 0, 0, 1, 0, 0, 0, + 0, 2, 0, 3, 4, 0, 5, 0, + 5, 6, 0, 7, 0, 0, 0, 0, + 0, 8, 0, 9, 10, 10, 0, 0, + 0, 11, 0, 12, 0, 13, 0, 0, + 0, 13, 0, 0, 14, 0, 0, 0, + 0, 13, 0, 13, 0, 15, 16, 17, + 18, 19, 20, 21, 22, 0, 0, 23, + 0, 0, 0, 24, 0, 25, 25, 25, + 26, 27, 28, 29, 30, 28, 31, 32, + 32, 25, 33, 25, 32, 34, 35, 36, + 37, 38, 39, 37, 32, 0, 0, 40, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 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*/ +static const int8_t kern_class_values[] = +{ + -11, -11, 0, 0, -34, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 12, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + -31, -31, 0, 0, 0, 0, -27, -8, + -7, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, -23, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -19, 0, 0, 0, + 0, -19, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -31, 0, 0, 0, + 0, -19, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, -15, -11, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + -19, -19, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -4, 0, 0, -15, + -2, -13, -7, 0, -16, 0, 0, 0, + 0, -4, 0, 0, 0, 0, -2, 0, + 0, 0, -4, 0, -4, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -2, 0, 0, -8, + 0, -4, 0, -4, -4, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -11, 0, 0, 0, + 0, 0, 0, -4, 0, 0, 0, -7, + 0, -6, -4, -4, -8, -4, 0, -7, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -31, 0, 0, 0, + 0, 0, 0, -8, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, -11, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, -2, 0, 0, -4, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, -4, -4, 0, 0, -4, + -7, -7, -7, 0, -8, 0, 0, 0, + -7, 0, -7, 0, 0, 0, -7, 0, + 0, -4, -2, -8, -12, -8, 0, 0, + -19, -19, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 4, -11, 0, 0, -15, + -4, -15, -7, 0, -19, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -8, -4, 0, 0, + 0, 0, 0, 0, -38, 0, 0, 0, + 0, 0, 0, -12, 0, 0, 0, -6, + 0, -2, -2, -10, -4, -7, 0, -12, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -11, 0, 0, 0, + 0, 0, 0, -4, 0, 1, 0, -7, + 0, -6, -4, -4, -8, -4, 0, -7, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -3, 0, 0, -8, + -2, -4, -2, -6, -8, 0, 0, 0, + -4, 0, -4, 0, 0, 0, 0, 0, + 0, 0, -4, -2, -2, 0, 4, 0, + 0, 0, 0, 0, -4, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, -4, -2, 0, -4, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -4, -2, 0, 0, + 0, 0, 0, 0, -30, 0, 0, 0, + 0, 0, 0, -15, -4, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, -15, + -11, 0, -11, 0, -4, -4, 0, -11, + -11, -12, 4, -15, -7, -4, -7, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, -2, 0, 0, 0, 0, + 0, 0, 0, -4, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -27, 0, 0, 0, + 0, -8, 0, -13, -6, 0, -2, 0, + 0, 0, 0, 0, 0, 0, 0, -8, + -4, 0, -4, 0, 0, 0, 0, 0, + 0, -4, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -15, 0, 0, 0, + 0, -7, 0, -8, -4, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, -8, + -4, 0, -4, 0, 0, 0, 0, 0, + 0, -4, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -27, 0, 0, 0, + 0, -12, 0, -16, -8, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, -19, + -12, 0, -12, 0, -4, 0, 0, -8, + -8, -12, 0, -8, -8, 0, -8, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -4, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 15, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, -12, + 0, -4, 0, 0, -12, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -2, -2, 0, 0, + 0, 0, 0, 0, -8, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, -11, + 0, -4, -4, -7, -12, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -2, 0, -4, 0, + 0, 0, 0, 0, -4, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, -11, + 0, 0, 0, 0, -8, 0, 0, 0, + 0, 0, 0, 0, 0, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 1, 1, 0, 12, 0, 0, 0, 0, + 0, 0, 8, 0, 0, 0, 0, 8, + 0, 4, 4, 4, 0, 0, 4, -6, + -4, 0, -7, -4, -4, -4, -4, 0, + 0, -4, 0, 0, 0, 0, 0, 1, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, -11, + 0, 0, 0, 0, -7, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -2, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 1, 0, 0, 0, 0, -4, + 0, 0, 0, 0, 0, 0, 8, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 4, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, -4, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, -7, + 0, 0, -4, 0, 0, 0, 0, -4, + -4, 0, -4, 0, 0, 0, -4, 0, + 0, 0, 0, -2, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, -4, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -4, -2, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, -4, + 0, 0, 0, 0, -4, 0, 0, 0, + 0, 0, 0, 0, 0, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -17, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, -9, + -4, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 4, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, -11, + 0, -4, -4, -4, -12, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -4, 0, -2, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, -8, + 0, 0, 0, 0, -4, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -17, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, -7, + 0, 0, 0, -7, 0, 0, 0, -7, + -2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -10, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, -4, + 0, 0, 0, -7, 0, 0, 0, -6, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, -11, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 15, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0 +}; + + +/*Collect the kern class' data in one place*/ +static const lv_font_fmt_txt_kern_classes_t kern_classes = +{ + .class_pair_values = kern_class_values, + .left_class_mapping = kern_left_class_mapping, + .right_class_mapping = kern_right_class_mapping, + .left_class_cnt = 45, + .right_class_cnt = 40, +}; + +/*-------------------- + * ALL CUSTOM DATA + *--------------------*/ + +#if LV_VERSION_CHECK(8, 0, 0) +/*Store all the custom data of the font*/ +static lv_font_fmt_txt_glyph_cache_t cache; +static const lv_font_fmt_txt_dsc_t font_dsc = { +#else +static lv_font_fmt_txt_dsc_t font_dsc = { +#endif + .glyph_bitmap = glyph_bitmap, + .glyph_dsc = glyph_dsc, + .cmaps = cmaps, + .kern_dsc = &kern_classes, + .kern_scale = 16, + .cmap_num = 3, + .bpp = 4, + .kern_classes = 1, + .bitmap_format = 0, +#if LV_VERSION_CHECK(8, 0, 0) + .cache = &cache +#endif +}; + + +/*----------------- + * PUBLIC FONT + *----------------*/ + +/*Initialize a public general font descriptor*/ +#if LV_VERSION_CHECK(8, 0, 0) +const lv_font_t lv_font_albbhptR_12 = { +#else +lv_font_t lv_font_albbhptR_12 = { +#endif + .get_glyph_dsc = lv_font_get_glyph_dsc_fmt_txt, /*Function pointer to get glyph's data*/ + .get_glyph_bitmap = lv_font_get_bitmap_fmt_txt, /*Function pointer to get glyph's bitmap*/ + .line_height = 12, /*The maximum line height required by the font default: (f.src.ascent - f.src.descent)*/ + .base_line = 2, /*Baseline measured from the bottom of the line*/ +#if !(LVGL_VERSION_MAJOR == 6 && LVGL_VERSION_MINOR == 0) + .subpx = LV_FONT_SUBPX_NONE, +#endif +#if LV_VERSION_CHECK(7, 4, 0) || LVGL_VERSION_MAJOR >= 8 + .underline_position = -1, + .underline_thickness = 1, +#endif + .dsc = &font_dsc /*The custom font data. Will be accessed by `get_glyph_bitmap/dsc` */ +}; + + + +#endif /*#if LV_FONT_ALBBHPTR_12*/ + diff --git a/application/rt-thread/t3e-pro/components/generated/guider_fonts/lv_font_albbhptR_20.c b/application/rt-thread/t3e-pro/components/generated/guider_fonts/lv_font_albbhptR_20.c new file mode 100644 index 00000000..49d278ba --- /dev/null +++ b/application/rt-thread/t3e-pro/components/generated/guider_fonts/lv_font_albbhptR_20.c @@ -0,0 +1,3345 @@ +/* + * Copyright 2025 NXP + * NXP Confidential and Proprietary. This software is owned or controlled by NXP and may only be used strictly in + * accordance with the applicable license terms. By expressly accepting such terms or by downloading, installing, + * activating and/or otherwise using the software, you are agreeing that you have read, and that you agree to + * comply with and are bound by, such license terms. If you do not agree to be bound by the applicable license + * terms, then you may not retain, install, activate or otherwise use the software. + */ +/******************************************************************************* + * Size: 20 px + * Bpp: 4 + * Opts: --user-data-dir=C:\Users\Administrator\AppData\Roaming\gui-guider --app-path=F:\NXP\GUI-Guider-1.7.2-GA\resources\app.asar --no-sandbox --no-zygote --lang=zh-CN --device-scale-factor=1 --num-raster-threads=4 --enable-main-frame-before-activation --renderer-client-id=5 --time-ticks-at-unix-epoch=-1751849969641099 --launch-time-ticks=21590435736 --mojo-platform-channel-handle=3384 --field-trial-handle=2100,i,17908936022241249150,4582176927500139337,131072 --disable-features=SpareRendererForSitePerProcess,WinRetrieveSuggestionsOnlyOnDemand /prefetch:1 + ******************************************************************************/ + +#ifdef LV_LVGL_H_INCLUDE_SIMPLE +#include "lvgl.h" +#else +#include "lvgl.h" +#endif + +#ifndef LV_FONT_ALBBHPTR_20 +#define LV_FONT_ALBBHPTR_20 1 +#endif + +#if LV_FONT_ALBBHPTR_20 + +/*----------------- + * BITMAPS + *----------------*/ + +/*Store the image of the glyphs*/ +static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { + /* U+0020 " " */ + + /* U+0021 "!" */ + 0x6f, 0x85, 0xf8, 0x5f, 0x74, 0xf7, 0x4f, 0x63, + 0xf6, 0x3f, 0x52, 0xf5, 0x2f, 0x41, 0xd3, 0x0, + 0x3, 0x83, 0xaf, 0xc8, 0xf9, + + /* U+0022 "\"" */ + 0x6f, 0x86, 0xf8, 0x5f, 0x65, 0xf7, 0x4f, 0x53, + 0xf6, 0x3f, 0x42, 0xf4, 0x1f, 0x31, 0xf3, 0xe, + 0x10, 0xe2, + + /* U+0023 "#" */ + 0x0, 0x0, 0xdc, 0x0, 0xf, 0x90, 0x0, 0x0, + 0xf9, 0x0, 0x3f, 0x60, 0x0, 0x4, 0xf5, 0x0, + 0x6f, 0x30, 0x11, 0x17, 0xf4, 0x11, 0xaf, 0x21, + 0xaf, 0xff, 0xff, 0xff, 0xff, 0xfa, 0x34, 0x4e, + 0xc4, 0x45, 0xfb, 0x43, 0x0, 0x1f, 0x80, 0x3, + 0xf6, 0x0, 0x0, 0x4f, 0x50, 0x7, 0xf2, 0x0, + 0x1, 0x8f, 0x31, 0x1a, 0xf1, 0x10, 0xaf, 0xff, + 0xff, 0xff, 0xff, 0xfa, 0x24, 0xfc, 0x44, 0x5f, + 0xa4, 0x42, 0x2, 0xf7, 0x0, 0x4f, 0x50, 0x0, + 0x5, 0xf4, 0x0, 0x8f, 0x10, 0x0, 0x9, 0xf0, + 0x0, 0xbe, 0x0, 0x0, + + /* U+0024 "$" */ + 0x0, 0x0, 0x81, 0x0, 0x0, 0x0, 0x1f, 0x30, + 0x0, 0x3, 0xbe, 0xff, 0xec, 0x31, 0xed, 0x7f, + 0x88, 0xa4, 0x5f, 0x31, 0xf3, 0x0, 0x7, 0xf1, + 0x1f, 0x30, 0x0, 0x7f, 0x31, 0xf3, 0x0, 0x2, + 0xfe, 0x7f, 0x30, 0x0, 0x4, 0xdf, 0xfd, 0x71, + 0x0, 0x0, 0x4f, 0xef, 0xe2, 0x0, 0x1, 0xf3, + 0x4f, 0xa0, 0x0, 0x1f, 0x30, 0xbe, 0x0, 0x1, + 0xf3, 0xa, 0xe0, 0x0, 0x1f, 0x30, 0xdc, 0xab, + 0x98, 0xfa, 0xdf, 0x47, 0xde, 0xff, 0xfc, 0x50, + 0x0, 0x1, 0xf3, 0x0, 0x0, 0x0, 0x1f, 0x30, + 0x0, 0x0, 0x1, 0xf3, 0x0, 0x0, + + /* U+0025 "%" */ + 0x8, 0xef, 0xb1, 0x0, 0x0, 0xd7, 0x0, 0x4, + 0xf4, 0x2c, 0xb0, 0x0, 0x6d, 0x0, 0x0, 0x8c, + 0x0, 0x5f, 0x0, 0xe, 0x50, 0x0, 0xa, 0xb0, + 0x4, 0xf0, 0x8, 0xc0, 0x0, 0x0, 0x9c, 0x0, + 0x5f, 0x1, 0xf3, 0x0, 0x0, 0x5, 0xf2, 0xa, + 0xb0, 0xaa, 0x0, 0x0, 0x0, 0x9, 0xff, 0xd2, + 0x3f, 0x26, 0xcd, 0xa1, 0x0, 0x0, 0x10, 0xc, + 0x93, 0xf5, 0x2c, 0x90, 0x0, 0x0, 0x4, 0xe1, + 0x7d, 0x0, 0x6e, 0x0, 0x0, 0x0, 0xd7, 0x9, + 0xb0, 0x4, 0xf0, 0x0, 0x0, 0x6d, 0x0, 0x9b, + 0x0, 0x4f, 0x0, 0x0, 0xe, 0x50, 0x8, 0xc0, + 0x5, 0xf0, 0x0, 0x8, 0xc0, 0x0, 0x3f, 0x20, + 0xaa, 0x0, 0x1, 0xf3, 0x0, 0x0, 0x6d, 0xdb, + 0x10, + + /* U+0026 "&" */ + 0x0, 0x0, 0x8d, 0xfb, 0x20, 0x0, 0x0, 0x0, + 0x9f, 0xb8, 0xfe, 0x10, 0x0, 0x0, 0x1f, 0xc0, + 0x7, 0xf5, 0x0, 0x0, 0x2, 0xfa, 0x0, 0x7f, + 0x50, 0x0, 0x0, 0xf, 0xd0, 0x2e, 0xe0, 0x0, + 0x0, 0x0, 0x9f, 0xbf, 0xe2, 0x0, 0x0, 0x0, + 0x9, 0xff, 0xa0, 0x0, 0x12, 0x0, 0x1d, 0xf9, + 0xfe, 0x10, 0xb, 0xf0, 0xb, 0xf5, 0x5, 0xfc, + 0x0, 0xfb, 0x1, 0xfb, 0x0, 0x8, 0xfa, 0x6f, + 0x60, 0x3f, 0xa0, 0x0, 0xb, 0xff, 0xe0, 0x0, + 0xff, 0x20, 0x0, 0x3f, 0xf8, 0x0, 0x6, 0xff, + 0xa8, 0xbf, 0xee, 0xfb, 0x60, 0x4, 0xcf, 0xfd, + 0x81, 0x2a, 0xec, + + /* U+0027 "'" */ + 0x6f, 0x85, 0xf6, 0x4f, 0x53, 0xf4, 0x1f, 0x30, + 0xe1, + + /* U+0028 "(" */ + 0x0, 0xc, 0xd0, 0x0, 0x6f, 0x40, 0x0, 0xeb, + 0x0, 0x6, 0xf5, 0x0, 0xd, 0xe0, 0x0, 0x1f, + 0x90, 0x0, 0x5f, 0x50, 0x0, 0x8f, 0x20, 0x0, + 0x9f, 0x10, 0x0, 0xaf, 0x0, 0x0, 0xaf, 0x10, + 0x0, 0x8f, 0x20, 0x0, 0x6f, 0x50, 0x0, 0x2f, + 0x90, 0x0, 0xd, 0xd0, 0x0, 0x7, 0xf4, 0x0, + 0x1, 0xfa, 0x0, 0x0, 0x7f, 0x30, 0x0, 0xd, + 0xc0, + + /* U+0029 ")" */ + 0xae, 0x10, 0x1, 0xfa, 0x0, 0x8, 0xf3, 0x0, + 0x1f, 0xa0, 0x0, 0xbf, 0x10, 0x6, 0xf5, 0x0, + 0x3f, 0x90, 0x0, 0xfb, 0x0, 0xf, 0xc0, 0x0, + 0xed, 0x0, 0xf, 0xc0, 0x0, 0xfb, 0x0, 0x3f, + 0x80, 0x7, 0xf4, 0x0, 0xbf, 0x0, 0x2f, 0x90, + 0x9, 0xf2, 0x2, 0xf9, 0x0, 0xbe, 0x0, 0x0, + + /* U+002A "*" */ + 0x0, 0x8, 0xf1, 0x0, 0x2, 0x7, 0xf0, 0x1, + 0x2f, 0xb9, 0xf7, 0xeb, 0x28, 0xcf, 0xfe, 0xa6, + 0x0, 0x3f, 0xfc, 0x0, 0x2, 0xec, 0x3f, 0xa0, + 0x1, 0xc3, 0x9, 0x70, 0x0, 0x0, 0x0, 0x0, + + /* U+002B "+" */ + 0x0, 0x0, 0x5f, 0x50, 0x0, 0x0, 0x0, 0x5, + 0xf5, 0x0, 0x0, 0x0, 0x0, 0x5f, 0x50, 0x0, + 0x0, 0x0, 0x5, 0xf5, 0x0, 0x0, 0x4f, 0xff, + 0xff, 0xff, 0xff, 0x53, 0xbb, 0xbc, 0xfc, 0xbb, + 0xb3, 0x0, 0x0, 0x5f, 0x50, 0x0, 0x0, 0x0, + 0x5, 0xf5, 0x0, 0x0, 0x0, 0x0, 0x5f, 0x50, + 0x0, 0x0, 0x0, 0x3, 0xa3, 0x0, 0x0, + + /* U+002D "-" */ + 0x12, 0x22, 0x22, 0x9, 0xff, 0xff, 0xf5, 0x25, + 0x55, 0x55, 0x10, + + /* U+002E "." */ + 0x7, 0x70, 0x3f, 0xf4, 0x1e, 0xe2, + + /* U+002F "/" */ + 0x0, 0x0, 0x4, 0xf4, 0x0, 0x0, 0x9, 0xe0, + 0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0x5f, 0x30, + 0x0, 0x0, 0xbd, 0x0, 0x0, 0x1, 0xf7, 0x0, + 0x0, 0x6, 0xf2, 0x0, 0x0, 0xc, 0xc0, 0x0, + 0x0, 0x2f, 0x60, 0x0, 0x0, 0x7f, 0x10, 0x0, + 0x0, 0xdb, 0x0, 0x0, 0x3, 0xf5, 0x0, 0x0, + 0x8, 0xf0, 0x0, 0x0, 0xe, 0x90, 0x0, 0x0, + 0x4f, 0x40, 0x0, 0x0, + + /* U+0030 "0" */ + 0x0, 0x8d, 0xfe, 0xb3, 0x0, 0xa, 0xfc, 0x9a, + 0xff, 0x30, 0x3f, 0xb0, 0x0, 0x3f, 0xb0, 0x9f, + 0x40, 0x0, 0xb, 0xf1, 0xcf, 0x0, 0x0, 0x8, + 0xf4, 0xdf, 0x0, 0x0, 0x6, 0xf5, 0xee, 0x0, + 0x0, 0x6, 0xf6, 0xee, 0x0, 0x0, 0x6, 0xf6, + 0xdf, 0x0, 0x0, 0x6, 0xf5, 0xcf, 0x0, 0x0, + 0x8, 0xf4, 0x9f, 0x40, 0x0, 0xb, 0xf1, 0x3f, + 0xa0, 0x0, 0x3f, 0xb0, 0xa, 0xfc, 0x8a, 0xff, + 0x30, 0x0, 0x8d, 0xff, 0xb3, 0x0, + + /* U+0031 "1" */ + 0x47, 0xae, 0xf4, 0xff, 0xdd, 0xf4, 0x30, 0x8, + 0xf4, 0x0, 0x8, 0xf4, 0x0, 0x8, 0xf4, 0x0, + 0x8, 0xf4, 0x0, 0x8, 0xf4, 0x0, 0x8, 0xf4, + 0x0, 0x8, 0xf4, 0x0, 0x8, 0xf4, 0x0, 0x8, + 0xf4, 0x0, 0x8, 0xf4, 0x0, 0x8, 0xf4, 0x0, + 0x8, 0xf4, + + /* U+0032 "2" */ + 0xa, 0xef, 0xfd, 0xa1, 0x0, 0xb, 0x98, 0x8c, + 0xfe, 0x10, 0x0, 0x0, 0x0, 0x8f, 0x70, 0x0, + 0x0, 0x0, 0xf, 0xa0, 0x0, 0x0, 0x0, 0x1f, + 0xa0, 0x0, 0x0, 0x0, 0x5f, 0x70, 0x0, 0x0, + 0x0, 0xdf, 0x10, 0x0, 0x0, 0x9, 0xf6, 0x0, + 0x0, 0x0, 0x9f, 0x90, 0x0, 0x0, 0xa, 0xf8, + 0x0, 0x0, 0x1, 0xcf, 0x60, 0x0, 0x0, 0x3e, + 0xe4, 0x0, 0x0, 0x0, 0xdf, 0xa8, 0x88, 0x88, + 0x82, 0xdf, 0xff, 0xff, 0xff, 0xf4, + + /* U+0033 "3" */ + 0xa, 0xef, 0xfd, 0x91, 0x0, 0xb9, 0x88, 0xbf, + 0xe0, 0x0, 0x0, 0x0, 0x7f, 0x50, 0x0, 0x0, + 0x3, 0xf7, 0x0, 0x0, 0x0, 0x7f, 0x50, 0x1, + 0x23, 0x9f, 0xb0, 0x0, 0xff, 0xff, 0x80, 0x0, + 0x4, 0x56, 0xaf, 0xc1, 0x0, 0x0, 0x0, 0x5f, + 0x90, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0, + 0xe, 0xc0, 0x0, 0x0, 0x7, 0xf9, 0x7a, 0x88, + 0x9d, 0xfd, 0x17, 0xef, 0xff, 0xc8, 0x10, + + /* U+0034 "4" */ + 0x0, 0x0, 0x0, 0x9f, 0xf0, 0x0, 0x0, 0x0, + 0x4f, 0xff, 0x0, 0x0, 0x0, 0x1e, 0xbb, 0xf0, + 0x0, 0x0, 0xb, 0xe1, 0xbf, 0x0, 0x0, 0x6, + 0xf5, 0xb, 0xf0, 0x0, 0x2, 0xfa, 0x0, 0xbf, + 0x0, 0x0, 0xce, 0x0, 0xb, 0xf0, 0x0, 0x8f, + 0x40, 0x0, 0xbf, 0x0, 0x3f, 0x90, 0x0, 0xb, + 0xf0, 0x4, 0xff, 0xff, 0xff, 0xff, 0xf9, 0x28, + 0x88, 0x88, 0x8d, 0xf8, 0x40, 0x0, 0x0, 0x0, + 0xbf, 0x0, 0x0, 0x0, 0x0, 0xb, 0xf0, 0x0, + 0x0, 0x0, 0x0, 0xbf, 0x0, + + /* U+0035 "5" */ + 0x5, 0xff, 0xff, 0xff, 0x30, 0x8, 0xf9, 0x99, + 0x99, 0x10, 0xa, 0xe0, 0x0, 0x0, 0x0, 0xc, + 0xb0, 0x0, 0x0, 0x0, 0xf, 0x90, 0x0, 0x0, + 0x0, 0x1f, 0xff, 0xff, 0xb3, 0x0, 0x17, 0x54, + 0x58, 0xef, 0x40, 0x0, 0x0, 0x0, 0x3f, 0xd0, + 0x0, 0x0, 0x0, 0xb, 0xf1, 0x0, 0x0, 0x0, + 0x9, 0xf1, 0x0, 0x0, 0x0, 0xc, 0xf0, 0x0, + 0x0, 0x0, 0x6f, 0xa0, 0x3b, 0x88, 0x9d, 0xfe, + 0x10, 0x3d, 0xff, 0xfc, 0x81, 0x0, + + /* U+0036 "6" */ + 0x0, 0x0, 0x7c, 0xe8, 0x0, 0x0, 0x4e, 0xfd, + 0x94, 0x0, 0x3, 0xfd, 0x30, 0x0, 0x0, 0xc, + 0xe1, 0x0, 0x0, 0x0, 0x3f, 0x60, 0x0, 0x0, + 0x0, 0x8f, 0x6c, 0xff, 0xe7, 0x0, 0xbf, 0xf8, + 0x56, 0xcf, 0x80, 0xcf, 0x40, 0x0, 0xd, 0xf0, + 0xdf, 0x0, 0x0, 0x7, 0xf3, 0xce, 0x0, 0x0, + 0x6, 0xf3, 0xaf, 0x10, 0x0, 0x8, 0xf2, 0x5f, + 0x90, 0x0, 0x1e, 0xd0, 0xc, 0xfc, 0x89, 0xff, + 0x40, 0x0, 0x8d, 0xff, 0xb3, 0x0, + + /* U+0037 "7" */ + 0xef, 0xff, 0xff, 0xff, 0xf3, 0x89, 0x99, 0x99, + 0x9b, 0xf3, 0x0, 0x0, 0x0, 0xc, 0xe0, 0x0, + 0x0, 0x0, 0x3f, 0x60, 0x0, 0x0, 0x0, 0xbe, + 0x0, 0x0, 0x0, 0x3, 0xf7, 0x0, 0x0, 0x0, + 0xa, 0xf1, 0x0, 0x0, 0x0, 0x2f, 0x90, 0x0, + 0x0, 0x0, 0xaf, 0x10, 0x0, 0x0, 0x2, 0xfa, + 0x0, 0x0, 0x0, 0x9, 0xf2, 0x0, 0x0, 0x0, + 0x1f, 0xb0, 0x0, 0x0, 0x0, 0x9f, 0x30, 0x0, + 0x0, 0x1, 0xfc, 0x0, 0x0, 0x0, + + /* U+0038 "8" */ + 0x1, 0x9e, 0xff, 0xc5, 0x0, 0xe, 0xfa, 0x78, + 0xdf, 0x60, 0x5f, 0x60, 0x0, 0xe, 0xd0, 0x8f, + 0x10, 0x0, 0xa, 0xf0, 0x6f, 0x30, 0x0, 0xc, + 0xd0, 0xd, 0xd4, 0x12, 0x8f, 0x60, 0x1, 0xdf, + 0xff, 0xf7, 0x0, 0x1d, 0xd6, 0x45, 0xaf, 0x80, + 0xaf, 0x10, 0x0, 0x9, 0xf2, 0xec, 0x0, 0x0, + 0x4, 0xf6, 0xfc, 0x0, 0x0, 0x4, 0xf7, 0xcf, + 0x30, 0x0, 0xa, 0xf4, 0x4f, 0xfa, 0x88, 0xdf, + 0xb0, 0x2, 0xad, 0xff, 0xc7, 0x0, + + /* U+0039 "9" */ + 0x0, 0x8d, 0xfe, 0xa2, 0x0, 0xc, 0xfb, 0x8a, + 0xff, 0x20, 0x6f, 0x80, 0x0, 0x3f, 0xb0, 0xbf, + 0x0, 0x0, 0xa, 0xf0, 0xdd, 0x0, 0x0, 0x8, + 0xf3, 0xde, 0x0, 0x0, 0x7, 0xf3, 0xaf, 0x20, + 0x0, 0xc, 0xf3, 0x3f, 0xd4, 0x13, 0xaf, 0xf1, + 0x5, 0xef, 0xff, 0xcb, 0xe0, 0x0, 0x2, 0x31, + 0xe, 0xa0, 0x0, 0x0, 0x0, 0x7f, 0x30, 0x0, + 0x0, 0x7, 0xf9, 0x0, 0x1, 0x8a, 0xef, 0x90, + 0x0, 0x2, 0xfd, 0x93, 0x0, 0x0, + + /* U+003A ":" */ + 0x5f, 0xd0, 0x7f, 0xf0, 0x17, 0x50, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x17, 0x50, 0x7f, 0xf0, 0x5f, 0xd0, + + /* U+003B ";" */ + 0x5, 0xfd, 0x0, 0x7f, 0xf0, 0x1, 0x75, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x98, 0x0, 0xf, + 0xa0, 0x3, 0xf5, 0x0, 0x9e, 0x0, 0x2f, 0x60, + 0x4, 0x70, 0x0, + + /* U+003C "<" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x5, 0xc5, 0x0, 0x0, 0x2, 0x8e, 0xfe, + 0x30, 0x0, 0x5b, 0xff, 0xc5, 0x0, 0x18, 0xef, + 0xe9, 0x20, 0x0, 0x4, 0xfc, 0x60, 0x0, 0x0, + 0x0, 0x4f, 0xc6, 0x0, 0x0, 0x0, 0x1, 0x8e, + 0xfe, 0x92, 0x0, 0x0, 0x0, 0x5, 0xbf, 0xfc, + 0x50, 0x0, 0x0, 0x0, 0x28, 0xef, 0xe3, 0x0, + 0x0, 0x0, 0x0, 0x5c, 0x50, 0x0, 0x0, 0x0, + 0x0, 0x0, + + /* U+003D "=" */ + 0x3b, 0xbb, 0xbb, 0xbb, 0xbb, 0x34, 0xff, 0xff, + 0xff, 0xff, 0xf5, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x3, 0xbb, 0xbb, 0xbb, 0xbb, + 0xb3, 0x4f, 0xff, 0xff, 0xff, 0xff, 0x50, + + /* U+003E ">" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xc5, 0x0, + 0x0, 0x0, 0x0, 0x3e, 0xfe, 0x82, 0x0, 0x0, + 0x0, 0x5, 0xbf, 0xfb, 0x50, 0x0, 0x0, 0x0, + 0x28, 0xef, 0xe8, 0x10, 0x0, 0x0, 0x0, 0x5c, + 0xf5, 0x0, 0x0, 0x0, 0x5, 0xcf, 0x50, 0x0, + 0x2, 0x8e, 0xfe, 0x81, 0x0, 0x5b, 0xff, 0xb5, + 0x0, 0x3, 0xef, 0xe8, 0x20, 0x0, 0x0, 0x4c, + 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, + + /* U+003F "?" */ + 0x1b, 0xef, 0xfd, 0x91, 0x2, 0xeb, 0xaa, 0xef, + 0xb0, 0x0, 0x0, 0x0, 0xef, 0x10, 0x0, 0x0, + 0xb, 0xf2, 0x0, 0x0, 0x0, 0xcf, 0x10, 0x0, + 0x0, 0x6f, 0xb0, 0x0, 0x0, 0x8f, 0xd1, 0x0, + 0x0, 0x7f, 0xa0, 0x0, 0x0, 0xd, 0xd0, 0x0, + 0x0, 0x0, 0xe9, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1, 0x76, 0x0, 0x0, 0x0, 0x6f, + 0xf1, 0x0, 0x0, 0x4, 0xfd, 0x0, 0x0, + + /* U+0040 "@" */ + 0x0, 0x0, 0x6, 0xbe, 0xff, 0xd9, 0x20, 0x0, + 0x0, 0x4, 0xef, 0xb7, 0x66, 0x9e, 0xf8, 0x0, + 0x0, 0x6f, 0xb2, 0x0, 0x0, 0x0, 0x9f, 0x70, + 0x4, 0xfa, 0x0, 0x0, 0x0, 0x0, 0xb, 0xf1, + 0xd, 0xd0, 0x0, 0x9f, 0xfa, 0xad, 0x4, 0xf5, + 0x4f, 0x50, 0xc, 0xf6, 0x4c, 0xfa, 0x0, 0xf8, + 0x9f, 0x0, 0x6f, 0x50, 0x4, 0xf7, 0x0, 0xf9, + 0xcc, 0x0, 0xcd, 0x0, 0x3, 0xf4, 0x0, 0xf8, + 0xdb, 0x0, 0xea, 0x0, 0x6, 0xf1, 0x2, 0xf6, + 0xdb, 0x0, 0xf9, 0x0, 0xc, 0xf0, 0x7, 0xf1, + 0xbd, 0x0, 0xbe, 0x32, 0x9f, 0xf4, 0x3e, 0x90, + 0x7f, 0x20, 0x2e, 0xff, 0xe5, 0xcf, 0xfb, 0x0, + 0x1f, 0xa0, 0x0, 0x33, 0x0, 0x3, 0x20, 0x0, + 0x7, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x8f, 0xd7, 0x32, 0x23, 0x48, 0x60, 0x0, + 0x0, 0x3, 0xbf, 0xff, 0xff, 0xfd, 0x60, 0x0, + 0x0, 0x0, 0x0, 0x24, 0x43, 0x10, 0x0, 0x0, + + /* U+0041 "A" */ + 0x0, 0x0, 0xb, 0xff, 0x10, 0x0, 0x0, 0x0, + 0x0, 0x1f, 0xef, 0x70, 0x0, 0x0, 0x0, 0x0, + 0x7f, 0x4e, 0xd0, 0x0, 0x0, 0x0, 0x0, 0xde, + 0x9, 0xf3, 0x0, 0x0, 0x0, 0x3, 0xf9, 0x3, + 0xf9, 0x0, 0x0, 0x0, 0x9, 0xf3, 0x0, 0xde, + 0x0, 0x0, 0x0, 0xe, 0xd0, 0x0, 0x8f, 0x50, + 0x0, 0x0, 0x5f, 0x80, 0x0, 0x2f, 0xb0, 0x0, + 0x0, 0xbf, 0xb9, 0x99, 0x9f, 0xf1, 0x0, 0x1, + 0xff, 0xff, 0xff, 0xff, 0xf7, 0x0, 0x7, 0xf6, + 0x0, 0x0, 0x1, 0xfd, 0x0, 0xd, 0xf0, 0x0, + 0x0, 0x0, 0xbf, 0x30, 0x3f, 0xa0, 0x0, 0x0, + 0x0, 0x5f, 0x90, 0x9f, 0x40, 0x0, 0x0, 0x0, + 0xe, 0xe0, + + /* U+0042 "B" */ + 0x2f, 0xff, 0xff, 0xea, 0x20, 0x2f, 0xd8, 0x89, + 0xcf, 0xe1, 0x2f, 0xa0, 0x0, 0x9, 0xf5, 0x2f, + 0xa0, 0x0, 0x4, 0xf7, 0x2f, 0xa0, 0x0, 0x7, + 0xf5, 0x2f, 0xa1, 0x13, 0x6f, 0xd0, 0x2f, 0xff, + 0xff, 0xfd, 0x20, 0x2f, 0xb4, 0x45, 0x8e, 0xf3, + 0x2f, 0xa0, 0x0, 0x3, 0xfb, 0x2f, 0xa0, 0x0, + 0x0, 0xee, 0x2f, 0xa0, 0x0, 0x0, 0xee, 0x2f, + 0xa0, 0x0, 0x4, 0xfb, 0x2f, 0xd8, 0x89, 0xbf, + 0xf4, 0x2f, 0xff, 0xff, 0xeb, 0x40, + + /* U+0043 "C" */ + 0x0, 0x5, 0xae, 0xff, 0xea, 0x0, 0xa, 0xff, + 0xb9, 0x9b, 0xe0, 0x8, 0xfb, 0x10, 0x0, 0x0, + 0x0, 0xfe, 0x10, 0x0, 0x0, 0x0, 0x4f, 0x90, + 0x0, 0x0, 0x0, 0x7, 0xf6, 0x0, 0x0, 0x0, + 0x0, 0x8f, 0x50, 0x0, 0x0, 0x0, 0x8, 0xf5, + 0x0, 0x0, 0x0, 0x0, 0x7f, 0x60, 0x0, 0x0, + 0x0, 0x5, 0xf9, 0x0, 0x0, 0x0, 0x0, 0x1f, + 0xe0, 0x0, 0x0, 0x0, 0x0, 0xaf, 0xa0, 0x0, + 0x0, 0x0, 0x1, 0xdf, 0xfb, 0xaa, 0xcf, 0x20, + 0x0, 0x7c, 0xef, 0xed, 0x90, + + /* U+0044 "D" */ + 0x2f, 0xff, 0xff, 0xeb, 0x60, 0x0, 0x2f, 0xd9, + 0x9a, 0xcf, 0xfc, 0x0, 0x2f, 0xa0, 0x0, 0x1, + 0xcf, 0x90, 0x2f, 0xa0, 0x0, 0x0, 0x1f, 0xf1, + 0x2f, 0xa0, 0x0, 0x0, 0xa, 0xf4, 0x2f, 0xa0, + 0x0, 0x0, 0x6, 0xf7, 0x2f, 0xa0, 0x0, 0x0, + 0x5, 0xf8, 0x2f, 0xa0, 0x0, 0x0, 0x5, 0xf8, + 0x2f, 0xa0, 0x0, 0x0, 0x6, 0xf7, 0x2f, 0xa0, + 0x0, 0x0, 0xa, 0xf4, 0x2f, 0xa0, 0x0, 0x0, + 0x1f, 0xe0, 0x2f, 0xa0, 0x0, 0x2, 0xdf, 0x70, + 0x2f, 0xd9, 0x9a, 0xcf, 0xfa, 0x0, 0x2f, 0xff, + 0xff, 0xda, 0x40, 0x0, + + /* U+0045 "E" */ + 0x2f, 0xff, 0xff, 0xff, 0x90, 0x2f, 0xd9, 0x99, + 0x99, 0x50, 0x2f, 0xa0, 0x0, 0x0, 0x0, 0x2f, + 0xa0, 0x0, 0x0, 0x0, 0x2f, 0xa0, 0x0, 0x0, + 0x0, 0x2f, 0xa0, 0x0, 0x0, 0x0, 0x2f, 0xff, + 0xff, 0xff, 0x20, 0x2f, 0xd8, 0x88, 0x88, 0x10, + 0x2f, 0xa0, 0x0, 0x0, 0x0, 0x2f, 0xa0, 0x0, + 0x0, 0x0, 0x2f, 0xa0, 0x0, 0x0, 0x0, 0x2f, + 0xa0, 0x0, 0x0, 0x0, 0x2f, 0xda, 0xaa, 0xaa, + 0xa0, 0x2f, 0xff, 0xff, 0xff, 0xf1, + + /* U+0046 "F" */ + 0x2f, 0xff, 0xff, 0xff, 0x92, 0xfd, 0x99, 0x99, + 0x95, 0x2f, 0xa0, 0x0, 0x0, 0x2, 0xfa, 0x0, + 0x0, 0x0, 0x2f, 0xa0, 0x0, 0x0, 0x2, 0xfa, + 0x0, 0x0, 0x0, 0x2f, 0xd9, 0x99, 0x99, 0x12, + 0xff, 0xff, 0xff, 0xf2, 0x2f, 0xa0, 0x0, 0x0, + 0x2, 0xfa, 0x0, 0x0, 0x0, 0x2f, 0xa0, 0x0, + 0x0, 0x2, 0xfa, 0x0, 0x0, 0x0, 0x2f, 0xa0, + 0x0, 0x0, 0x2, 0xfa, 0x0, 0x0, 0x0, + + /* U+0047 "G" */ + 0x0, 0x4, 0xad, 0xff, 0xec, 0x60, 0x0, 0xaf, + 0xfc, 0xa9, 0xac, 0xc0, 0x8, 0xfc, 0x10, 0x0, + 0x0, 0x0, 0xf, 0xf1, 0x0, 0x0, 0x0, 0x0, + 0x4f, 0x90, 0x0, 0x0, 0x0, 0x0, 0x7f, 0x60, + 0x0, 0x0, 0x0, 0x0, 0x8f, 0x50, 0x0, 0x38, + 0x88, 0x81, 0x8f, 0x50, 0x0, 0x6f, 0xff, 0xf2, + 0x7f, 0x60, 0x0, 0x0, 0x9, 0xf2, 0x5f, 0x90, + 0x0, 0x0, 0x9, 0xf2, 0x1f, 0xe0, 0x0, 0x0, + 0x9, 0xf2, 0xa, 0xfa, 0x0, 0x0, 0x9, 0xf2, + 0x1, 0xdf, 0xeb, 0x99, 0xae, 0xf2, 0x0, 0x6, + 0xbe, 0xff, 0xec, 0x90, + + /* U+0048 "H" */ + 0x2f, 0xa0, 0x0, 0x0, 0x8, 0xf5, 0x2f, 0xa0, + 0x0, 0x0, 0x8, 0xf5, 0x2f, 0xa0, 0x0, 0x0, + 0x8, 0xf5, 0x2f, 0xa0, 0x0, 0x0, 0x8, 0xf5, + 0x2f, 0xa0, 0x0, 0x0, 0x8, 0xf5, 0x2f, 0xa0, + 0x0, 0x0, 0x8, 0xf5, 0x2f, 0xff, 0xff, 0xff, + 0xff, 0xf5, 0x2f, 0xd8, 0x88, 0x88, 0x8c, 0xf5, + 0x2f, 0xa0, 0x0, 0x0, 0x8, 0xf5, 0x2f, 0xa0, + 0x0, 0x0, 0x8, 0xf5, 0x2f, 0xa0, 0x0, 0x0, + 0x8, 0xf5, 0x2f, 0xa0, 0x0, 0x0, 0x8, 0xf5, + 0x2f, 0xa0, 0x0, 0x0, 0x8, 0xf5, 0x2f, 0xa0, + 0x0, 0x0, 0x8, 0xf5, + + /* U+0049 "I" */ + 0x2f, 0xa2, 0xfa, 0x2f, 0xa2, 0xfa, 0x2f, 0xa2, + 0xfa, 0x2f, 0xa2, 0xfa, 0x2f, 0xa2, 0xfa, 0x2f, + 0xa2, 0xfa, 0x2f, 0xa2, 0xfa, + + /* U+004A "J" */ + 0x0, 0x2, 0xfa, 0x0, 0x2, 0xfa, 0x0, 0x2, + 0xfa, 0x0, 0x2, 0xfa, 0x0, 0x2, 0xfa, 0x0, + 0x2, 0xfa, 0x0, 0x2, 0xfa, 0x0, 0x2, 0xfa, + 0x0, 0x2, 0xfa, 0x0, 0x2, 0xfa, 0x0, 0x2, + 0xfa, 0x0, 0x2, 0xfa, 0x0, 0x2, 0xfa, 0x0, + 0x2, 0xfa, 0x0, 0x3, 0xf9, 0x0, 0x8, 0xf6, + 0x59, 0xbf, 0xe0, 0x7f, 0xfb, 0x20, + + /* U+004B "K" */ + 0x2f, 0xa0, 0x0, 0x1, 0xdf, 0x42, 0xfa, 0x0, + 0x0, 0xbf, 0x70, 0x2f, 0xa0, 0x0, 0x8f, 0x90, + 0x2, 0xfa, 0x0, 0x5f, 0xb0, 0x0, 0x2f, 0xa0, + 0x3f, 0xd0, 0x0, 0x2, 0xfa, 0x1e, 0xe2, 0x0, + 0x0, 0x2f, 0xff, 0xf4, 0x0, 0x0, 0x2, 0xfd, + 0xaf, 0xb0, 0x0, 0x0, 0x2f, 0xa0, 0xaf, 0x80, + 0x0, 0x2, 0xfa, 0x0, 0xdf, 0x40, 0x0, 0x2f, + 0xa0, 0x2, 0xff, 0x20, 0x2, 0xfa, 0x0, 0x5, + 0xfd, 0x0, 0x2f, 0xa0, 0x0, 0x9, 0xfb, 0x2, + 0xfa, 0x0, 0x0, 0xc, 0xf8, + + /* U+004C "L" */ + 0x2f, 0xa0, 0x0, 0x0, 0x2, 0xfa, 0x0, 0x0, + 0x0, 0x2f, 0xa0, 0x0, 0x0, 0x2, 0xfa, 0x0, + 0x0, 0x0, 0x2f, 0xa0, 0x0, 0x0, 0x2, 0xfa, + 0x0, 0x0, 0x0, 0x2f, 0xa0, 0x0, 0x0, 0x2, + 0xfa, 0x0, 0x0, 0x0, 0x2f, 0xa0, 0x0, 0x0, + 0x2, 0xfa, 0x0, 0x0, 0x0, 0x2f, 0xa0, 0x0, + 0x0, 0x2, 0xfa, 0x0, 0x0, 0x0, 0x2f, 0xda, + 0xaa, 0xaa, 0x62, 0xff, 0xff, 0xff, 0xfa, + + /* U+004D "M" */ + 0x2f, 0xfe, 0x0, 0x0, 0x0, 0x4f, 0xfc, 0x2f, + 0xff, 0x40, 0x0, 0x0, 0xaf, 0xfc, 0x2f, 0xaf, + 0xb0, 0x0, 0x1, 0xf9, 0xfc, 0x2f, 0x99, 0xf1, + 0x0, 0x7, 0xf3, 0xfc, 0x2f, 0x93, 0xf7, 0x0, + 0xd, 0xc0, 0xfc, 0x2f, 0x90, 0xdd, 0x0, 0x3f, + 0x60, 0xfc, 0x2f, 0x90, 0x6f, 0x40, 0xaf, 0x0, + 0xfc, 0x2f, 0x90, 0xf, 0xa1, 0xf9, 0x0, 0xfc, + 0x2f, 0x90, 0x9, 0xf8, 0xf3, 0x0, 0xfc, 0x2f, + 0x90, 0x3, 0xff, 0xc0, 0x0, 0xfc, 0x2f, 0x90, + 0x0, 0xbd, 0x50, 0x0, 0xfc, 0x2f, 0x90, 0x0, + 0x0, 0x0, 0x0, 0xfc, 0x2f, 0x90, 0x0, 0x0, + 0x0, 0x0, 0xfc, 0x2f, 0x90, 0x0, 0x0, 0x0, + 0x0, 0xfc, + + /* U+004E "N" */ + 0x2f, 0xfe, 0x0, 0x0, 0x0, 0xee, 0x2f, 0xef, + 0x70, 0x0, 0x0, 0xee, 0x2f, 0x9d, 0xf1, 0x0, + 0x0, 0xee, 0x2f, 0x94, 0xf8, 0x0, 0x0, 0xee, + 0x2f, 0x90, 0xbf, 0x20, 0x0, 0xee, 0x2f, 0x90, + 0x2f, 0xa0, 0x0, 0xee, 0x2f, 0x90, 0x9, 0xf3, + 0x0, 0xee, 0x2f, 0x90, 0x1, 0xfb, 0x0, 0xee, + 0x2f, 0x90, 0x0, 0x8f, 0x40, 0xee, 0x2f, 0x90, + 0x0, 0xe, 0xd0, 0xee, 0x2f, 0x90, 0x0, 0x6, + 0xf5, 0xee, 0x2f, 0x90, 0x0, 0x0, 0xde, 0xfe, + 0x2f, 0x90, 0x0, 0x0, 0x5f, 0xfe, 0x2f, 0x90, + 0x0, 0x0, 0xc, 0xfe, + + /* U+004F "O" */ + 0x0, 0x18, 0xcf, 0xfe, 0xc7, 0x0, 0x0, 0x2e, + 0xfd, 0x98, 0x9e, 0xfd, 0x0, 0xb, 0xf7, 0x0, + 0x0, 0x9, 0xf9, 0x2, 0xfc, 0x0, 0x0, 0x0, + 0xe, 0xf0, 0x5f, 0x80, 0x0, 0x0, 0x0, 0xaf, + 0x37, 0xf6, 0x0, 0x0, 0x0, 0x8, 0xf5, 0x8f, + 0x50, 0x0, 0x0, 0x0, 0x7f, 0x68, 0xf5, 0x0, + 0x0, 0x0, 0x7, 0xf6, 0x7f, 0x60, 0x0, 0x0, + 0x0, 0x8f, 0x55, 0xf8, 0x0, 0x0, 0x0, 0xa, + 0xf2, 0x2f, 0xc0, 0x0, 0x0, 0x0, 0xef, 0x0, + 0xbf, 0x70, 0x0, 0x0, 0x9f, 0x90, 0x2, 0xef, + 0xd9, 0x9a, 0xef, 0xd0, 0x0, 0x1, 0x8d, 0xff, + 0xfc, 0x70, 0x0, + + /* U+0050 "P" */ + 0x2f, 0xff, 0xff, 0xd9, 0x20, 0x2f, 0xd9, 0x9a, + 0xdf, 0xe1, 0x2f, 0xa0, 0x0, 0xa, 0xf8, 0x2f, + 0xa0, 0x0, 0x2, 0xfb, 0x2f, 0xa0, 0x0, 0x1, + 0xfc, 0x2f, 0xa0, 0x0, 0x2, 0xfb, 0x2f, 0xa0, + 0x0, 0x9, 0xf7, 0x2f, 0xd8, 0x88, 0xcf, 0xe1, + 0x2f, 0xff, 0xff, 0xd9, 0x10, 0x2f, 0xa0, 0x0, + 0x0, 0x0, 0x2f, 0xa0, 0x0, 0x0, 0x0, 0x2f, + 0xa0, 0x0, 0x0, 0x0, 0x2f, 0xa0, 0x0, 0x0, + 0x0, 0x2f, 0xa0, 0x0, 0x0, 0x0, + + /* U+0051 "Q" */ + 0x0, 0x18, 0xcf, 0xfe, 0xc7, 0x0, 0x0, 0x2e, + 0xfd, 0x98, 0x9e, 0xfd, 0x0, 0xb, 0xf7, 0x0, + 0x0, 0x9, 0xf9, 0x2, 0xfc, 0x0, 0x0, 0x0, + 0xe, 0xf0, 0x5f, 0x80, 0x0, 0x0, 0x0, 0xaf, + 0x37, 0xf6, 0x0, 0x0, 0x0, 0x8, 0xf5, 0x8f, + 0x50, 0x0, 0x0, 0x0, 0x7f, 0x68, 0xf5, 0x0, + 0x0, 0x0, 0x7, 0xf6, 0x7f, 0x60, 0x0, 0x0, + 0x0, 0x8f, 0x55, 0xf8, 0x0, 0x0, 0x0, 0xa, + 0xf3, 0x2f, 0xc0, 0x0, 0x0, 0x0, 0xef, 0x0, + 0xbf, 0x70, 0x0, 0x0, 0x9f, 0x90, 0x2, 0xef, + 0xd9, 0x9a, 0xef, 0xd0, 0x0, 0x1, 0x8d, 0xff, + 0xfd, 0x70, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xc0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x5f, 0xb0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x58, 0x30, 0x0, + + /* U+0052 "R" */ + 0x2f, 0xff, 0xff, 0xd9, 0x10, 0x2, 0xfd, 0x99, + 0xad, 0xfe, 0x10, 0x2f, 0xa0, 0x0, 0xa, 0xf6, + 0x2, 0xfa, 0x0, 0x0, 0x3f, 0x90, 0x2f, 0xa0, + 0x0, 0x2, 0xf9, 0x2, 0xfa, 0x0, 0x0, 0x5f, + 0x80, 0x2f, 0xa0, 0x1, 0x4d, 0xf2, 0x2, 0xff, + 0xff, 0xff, 0xf6, 0x0, 0x2f, 0xd8, 0x7e, 0xf2, + 0x0, 0x2, 0xfa, 0x0, 0x4f, 0xb0, 0x0, 0x2f, + 0xa0, 0x0, 0x8f, 0x60, 0x2, 0xfa, 0x0, 0x0, + 0xdf, 0x20, 0x2f, 0xa0, 0x0, 0x3, 0xfd, 0x2, + 0xfa, 0x0, 0x0, 0x7, 0xf9, + + /* U+0053 "S" */ + 0x2, 0xae, 0xff, 0xeb, 0x30, 0x1e, 0xfc, 0x99, + 0xbd, 0x60, 0x7f, 0x60, 0x0, 0x0, 0x0, 0xaf, + 0x20, 0x0, 0x0, 0x0, 0x9f, 0x40, 0x0, 0x0, + 0x0, 0x3f, 0xe6, 0x10, 0x0, 0x0, 0x6, 0xef, + 0xfd, 0x92, 0x0, 0x0, 0x3, 0x7c, 0xff, 0x50, + 0x0, 0x0, 0x0, 0x3f, 0xe0, 0x0, 0x0, 0x0, + 0xa, 0xf2, 0x0, 0x0, 0x0, 0xa, 0xf2, 0x0, + 0x0, 0x0, 0x2e, 0xf0, 0xdd, 0xb9, 0x9b, 0xff, + 0x70, 0x7c, 0xef, 0xfe, 0xb5, 0x0, + + /* U+0054 "T" */ + 0xbf, 0xff, 0xff, 0xff, 0xff, 0x36, 0x99, 0x9d, + 0xfa, 0x99, 0x92, 0x0, 0x0, 0xaf, 0x30, 0x0, + 0x0, 0x0, 0xa, 0xf3, 0x0, 0x0, 0x0, 0x0, + 0xaf, 0x30, 0x0, 0x0, 0x0, 0xa, 0xf3, 0x0, + 0x0, 0x0, 0x0, 0xaf, 0x30, 0x0, 0x0, 0x0, + 0xa, 0xf3, 0x0, 0x0, 0x0, 0x0, 0xaf, 0x30, + 0x0, 0x0, 0x0, 0xa, 0xf3, 0x0, 0x0, 0x0, + 0x0, 0xaf, 0x30, 0x0, 0x0, 0x0, 0xa, 0xf3, + 0x0, 0x0, 0x0, 0x0, 0xaf, 0x30, 0x0, 0x0, + 0x0, 0xa, 0xf3, 0x0, 0x0, + + /* U+0055 "U" */ + 0x3f, 0x90, 0x0, 0x0, 0x8, 0xf4, 0x3f, 0x90, + 0x0, 0x0, 0x8, 0xf4, 0x3f, 0x90, 0x0, 0x0, + 0x8, 0xf4, 0x3f, 0x90, 0x0, 0x0, 0x8, 0xf4, + 0x3f, 0x90, 0x0, 0x0, 0x8, 0xf4, 0x3f, 0x90, + 0x0, 0x0, 0x8, 0xf4, 0x3f, 0x90, 0x0, 0x0, + 0x8, 0xf4, 0x3f, 0x90, 0x0, 0x0, 0x8, 0xf4, + 0x3f, 0x90, 0x0, 0x0, 0x8, 0xf4, 0x3f, 0x90, + 0x0, 0x0, 0x8, 0xf3, 0x1f, 0xb0, 0x0, 0x0, + 0xb, 0xf2, 0xd, 0xf5, 0x0, 0x0, 0x3f, 0xe0, + 0x5, 0xff, 0xc9, 0x9b, 0xff, 0x40, 0x0, 0x3a, + 0xef, 0xfe, 0xa3, 0x0, + + /* U+0056 "V" */ + 0x8f, 0x60, 0x0, 0x0, 0x0, 0xed, 0x2, 0xfb, + 0x0, 0x0, 0x0, 0x4f, 0x80, 0xd, 0xf1, 0x0, + 0x0, 0x9, 0xf3, 0x0, 0x8f, 0x50, 0x0, 0x0, + 0xed, 0x0, 0x2, 0xfb, 0x0, 0x0, 0x4f, 0x80, + 0x0, 0xd, 0xf0, 0x0, 0x9, 0xf2, 0x0, 0x0, + 0x8f, 0x50, 0x0, 0xed, 0x0, 0x0, 0x2, 0xfa, + 0x0, 0x3f, 0x70, 0x0, 0x0, 0xd, 0xf0, 0x9, + 0xf2, 0x0, 0x0, 0x0, 0x7f, 0x40, 0xec, 0x0, + 0x0, 0x0, 0x2, 0xfa, 0x3f, 0x70, 0x0, 0x0, + 0x0, 0xd, 0xe9, 0xf1, 0x0, 0x0, 0x0, 0x0, + 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x2, 0xff, + 0x60, 0x0, 0x0, + + /* U+0057 "W" */ + 0x5f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, + 0xf5, 0x2f, 0xb0, 0x0, 0x0, 0x66, 0x0, 0x0, + 0xb, 0xf1, 0xe, 0xf0, 0x0, 0x4, 0xff, 0x50, + 0x0, 0xe, 0xd0, 0xa, 0xf2, 0x0, 0x9, 0xff, + 0x90, 0x0, 0x2f, 0x90, 0x7, 0xf6, 0x0, 0xd, + 0xab, 0xe0, 0x0, 0x5f, 0x60, 0x3, 0xf9, 0x0, + 0x2f, 0x67, 0xf2, 0x0, 0x9f, 0x20, 0x0, 0xfd, + 0x0, 0x6f, 0x12, 0xf7, 0x0, 0xce, 0x0, 0x0, + 0xbf, 0x0, 0xad, 0x0, 0xeb, 0x0, 0xfa, 0x0, + 0x0, 0x8f, 0x40, 0xe9, 0x0, 0xaf, 0x3, 0xf6, + 0x0, 0x0, 0x4f, 0x73, 0xf4, 0x0, 0x5f, 0x47, + 0xf3, 0x0, 0x0, 0xf, 0xb8, 0xf0, 0x0, 0x1f, + 0x8a, 0xf0, 0x0, 0x0, 0xd, 0xec, 0xb0, 0x0, + 0xd, 0xde, 0xb0, 0x0, 0x0, 0x9, 0xff, 0x70, + 0x0, 0x8, 0xff, 0x70, 0x0, 0x0, 0x5, 0xff, + 0x20, 0x0, 0x4, 0xff, 0x40, 0x0, + + /* U+0058 "X" */ + 0xd, 0xf3, 0x0, 0x0, 0x6, 0xf8, 0x4, 0xfc, + 0x0, 0x0, 0x1f, 0xd0, 0x0, 0xaf, 0x50, 0x0, + 0xaf, 0x30, 0x0, 0x1f, 0xe0, 0x4, 0xf9, 0x0, + 0x0, 0x6, 0xf8, 0xd, 0xe0, 0x0, 0x0, 0x0, + 0xcf, 0x9f, 0x40, 0x0, 0x0, 0x0, 0x3f, 0xfb, + 0x0, 0x0, 0x0, 0x0, 0x6f, 0xfe, 0x0, 0x0, + 0x0, 0x1, 0xed, 0x6f, 0x90, 0x0, 0x0, 0xa, + 0xf4, 0xc, 0xf3, 0x0, 0x0, 0x4f, 0xa0, 0x2, + 0xfc, 0x0, 0x0, 0xef, 0x10, 0x0, 0x9f, 0x70, + 0x9, 0xf6, 0x0, 0x0, 0x1e, 0xf1, 0x3f, 0xc0, + 0x0, 0x0, 0x6, 0xfb, + + /* U+0059 "Y" */ + 0x9f, 0x70, 0x0, 0x0, 0x8, 0xf7, 0xe, 0xf1, + 0x0, 0x0, 0x2f, 0xd0, 0x5, 0xfa, 0x0, 0x0, + 0xbf, 0x30, 0x0, 0xbf, 0x40, 0x4, 0xf9, 0x0, + 0x0, 0x2f, 0xd0, 0xd, 0xe0, 0x0, 0x0, 0x8, + 0xf7, 0x7f, 0x50, 0x0, 0x0, 0x0, 0xdf, 0xfb, + 0x0, 0x0, 0x0, 0x0, 0x4f, 0xf2, 0x0, 0x0, + 0x0, 0x0, 0xf, 0xd0, 0x0, 0x0, 0x0, 0x0, + 0xf, 0xd0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xd0, + 0x0, 0x0, 0x0, 0x0, 0xf, 0xd0, 0x0, 0x0, + 0x0, 0x0, 0xf, 0xd0, 0x0, 0x0, 0x0, 0x0, + 0xf, 0xd0, 0x0, 0x0, + + /* U+005A "Z" */ + 0x7f, 0xff, 0xff, 0xff, 0xff, 0x34, 0xaa, 0xaa, + 0xaa, 0xaf, 0xf2, 0x0, 0x0, 0x0, 0x8, 0xf9, + 0x0, 0x0, 0x0, 0x4, 0xfc, 0x0, 0x0, 0x0, + 0x1, 0xee, 0x20, 0x0, 0x0, 0x0, 0xcf, 0x40, + 0x0, 0x0, 0x0, 0x8f, 0x80, 0x0, 0x0, 0x0, + 0x4f, 0xc0, 0x0, 0x0, 0x0, 0x2e, 0xe1, 0x0, + 0x0, 0x0, 0xc, 0xf4, 0x0, 0x0, 0x0, 0x9, + 0xf7, 0x0, 0x0, 0x0, 0x5, 0xfb, 0x0, 0x0, + 0x0, 0x0, 0xdf, 0xcb, 0xbb, 0xbb, 0xbb, 0x7d, + 0xff, 0xff, 0xff, 0xff, 0xfa, + + /* U+005B "[" */ + 0x9f, 0xff, 0x39, 0xf8, 0x71, 0x9f, 0x20, 0x9, + 0xf2, 0x0, 0x9f, 0x20, 0x9, 0xf2, 0x0, 0x9f, + 0x20, 0x9, 0xf2, 0x0, 0x9f, 0x20, 0x9, 0xf2, + 0x0, 0x9f, 0x20, 0x9, 0xf2, 0x0, 0x9f, 0x20, + 0x9, 0xf2, 0x0, 0x9f, 0x20, 0x9, 0xf2, 0x0, + 0x9f, 0x20, 0x9, 0xf8, 0x71, 0x9f, 0xff, 0x30, + + /* U+005C "\\" */ + 0x5f, 0x40, 0x0, 0x0, 0x0, 0xd, 0xc0, 0x0, + 0x0, 0x0, 0x6, 0xf3, 0x0, 0x0, 0x0, 0x0, + 0xea, 0x0, 0x0, 0x0, 0x0, 0x8f, 0x10, 0x0, + 0x0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0, 0xa, + 0xf0, 0x0, 0x0, 0x0, 0x2, 0xf7, 0x0, 0x0, + 0x0, 0x0, 0xbe, 0x0, 0x0, 0x0, 0x0, 0x4f, + 0x50, 0x0, 0x0, 0x0, 0xd, 0xc0, 0x0, 0x0, + 0x0, 0x6, 0xf3, 0x0, 0x0, 0x0, 0x0, 0xeb, + 0x0, 0x0, 0x0, 0x0, 0x7f, 0x20, 0x0, 0x0, + 0x0, 0x1f, 0x90, 0x0, 0x0, 0x0, 0x9, 0xf1, + 0x0, 0x0, 0x0, 0x2, 0xf7, + + /* U+005D "]" */ + 0x5f, 0xff, 0x72, 0x79, 0xf7, 0x0, 0x4f, 0x70, + 0x4, 0xf7, 0x0, 0x4f, 0x70, 0x4, 0xf7, 0x0, + 0x4f, 0x70, 0x4, 0xf7, 0x0, 0x4f, 0x70, 0x4, + 0xf7, 0x0, 0x4f, 0x70, 0x4, 0xf7, 0x0, 0x4f, + 0x70, 0x4, 0xf7, 0x0, 0x4f, 0x70, 0x4, 0xf7, + 0x0, 0x4f, 0x72, 0x79, 0xf7, 0x5f, 0xff, 0x70, + + /* U+005E "^" */ + 0x0, 0x5, 0x86, 0x0, 0x0, 0x1, 0xff, 0xf2, + 0x0, 0x0, 0x7f, 0x6f, 0x80, 0x0, 0xe, 0xc0, + 0xce, 0x0, 0x4, 0xf6, 0x5, 0xf5, 0x0, 0xbe, + 0x0, 0xe, 0xc0, 0x2f, 0x80, 0x0, 0x8f, 0x28, + 0xf2, 0x0, 0x1, 0xf9, + + /* U+005F "_" */ + 0x11, 0x11, 0x11, 0x11, 0x11, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x44, 0x44, 0x44, 0x44, 0x44, + + /* U+0060 "`" */ + 0x7f, 0x90, 0x0, 0xaf, 0x20, 0x0, 0xcb, 0x0, + + /* U+0061 "a" */ + 0x0, 0x5f, 0xff, 0xea, 0x20, 0x0, 0x38, 0x66, + 0xbf, 0xe0, 0x0, 0x0, 0x0, 0xa, 0xf4, 0x0, + 0x0, 0x0, 0x5, 0xf6, 0x0, 0x0, 0x11, 0x16, + 0xf6, 0x7, 0xdf, 0xff, 0xff, 0xf6, 0x7f, 0xb5, + 0x44, 0x48, 0xf6, 0xdf, 0x0, 0x0, 0x5, 0xf6, + 0xdf, 0x0, 0x0, 0xc, 0xf6, 0x8f, 0xa4, 0x47, + 0xdc, 0xf6, 0x8, 0xdf, 0xfc, 0x52, 0xf6, + + /* U+0062 "b" */ + 0x3f, 0x80, 0x0, 0x0, 0x0, 0x3, 0xf8, 0x0, + 0x0, 0x0, 0x0, 0x3f, 0x80, 0x0, 0x0, 0x0, + 0x3, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0x83, + 0xcf, 0xfd, 0x70, 0x3, 0xfb, 0xfa, 0x78, 0xdf, + 0x80, 0x3f, 0xf4, 0x0, 0x0, 0xef, 0x13, 0xfc, + 0x0, 0x0, 0x8, 0xf5, 0x3f, 0x80, 0x0, 0x0, + 0x5f, 0x63, 0xf7, 0x0, 0x0, 0x5, 0xf7, 0x3f, + 0x80, 0x0, 0x0, 0x5f, 0x63, 0xfc, 0x0, 0x0, + 0x8, 0xf4, 0x3f, 0xf5, 0x0, 0x1, 0xef, 0x13, + 0xfa, 0xfa, 0x78, 0xef, 0x70, 0x3f, 0x54, 0xcf, + 0xfc, 0x60, 0x0, + + /* U+0063 "c" */ + 0x0, 0x7d, 0xff, 0xeb, 0x0, 0xbf, 0xc8, 0x89, + 0xd0, 0x5f, 0xa0, 0x0, 0x0, 0x9, 0xf3, 0x0, + 0x0, 0x0, 0xcf, 0x0, 0x0, 0x0, 0xc, 0xf0, + 0x0, 0x0, 0x0, 0xcf, 0x0, 0x0, 0x0, 0x9, + 0xf3, 0x0, 0x0, 0x0, 0x5f, 0xa0, 0x0, 0x0, + 0x0, 0xbf, 0xc9, 0x89, 0xd0, 0x0, 0x7d, 0xff, + 0xeb, 0x0, + + /* U+0064 "d" */ + 0x0, 0x0, 0x0, 0x0, 0xde, 0x0, 0x0, 0x0, + 0x0, 0xde, 0x0, 0x0, 0x0, 0x0, 0xde, 0x0, + 0x0, 0x0, 0x0, 0xde, 0x0, 0x8d, 0xfe, 0xa1, + 0xde, 0xc, 0xfc, 0x77, 0xcd, 0xde, 0x5f, 0xa0, + 0x0, 0x9, 0xfe, 0x9f, 0x40, 0x0, 0x1, 0xfe, + 0xbf, 0x10, 0x0, 0x0, 0xde, 0xcf, 0x0, 0x0, + 0x0, 0xce, 0xbf, 0x10, 0x0, 0x0, 0xde, 0x9f, + 0x30, 0x0, 0x0, 0xfe, 0x6f, 0x80, 0x0, 0x6, + 0xfe, 0xd, 0xf9, 0x44, 0x8e, 0xde, 0x1, 0x9e, + 0xfe, 0xa2, 0xae, + + /* U+0065 "e" */ + 0x0, 0x8d, 0xff, 0xd6, 0x0, 0xc, 0xfb, 0x77, + 0xbf, 0x90, 0x5f, 0x90, 0x0, 0xb, 0xf1, 0x9f, + 0x20, 0x0, 0x6, 0xf4, 0xcf, 0x33, 0x45, 0x7a, + 0xf6, 0xcf, 0xee, 0xee, 0xee, 0xe5, 0xcf, 0x0, + 0x0, 0x0, 0x0, 0x9f, 0x30, 0x0, 0x0, 0x0, + 0x5f, 0xb0, 0x0, 0x0, 0x0, 0xb, 0xfe, 0x98, + 0x9c, 0xc0, 0x0, 0x7d, 0xff, 0xec, 0x60, + + /* U+0066 "f" */ + 0x0, 0x7, 0xdf, 0xf0, 0x6, 0xfc, 0x66, 0x0, + 0xbf, 0x10, 0x0, 0xd, 0xe0, 0x0, 0xaf, 0xff, + 0xff, 0x64, 0x6e, 0xe6, 0x62, 0x0, 0xde, 0x0, + 0x0, 0xd, 0xe0, 0x0, 0x0, 0xde, 0x0, 0x0, + 0xd, 0xe0, 0x0, 0x0, 0xde, 0x0, 0x0, 0xd, + 0xe0, 0x0, 0x0, 0xde, 0x0, 0x0, 0xd, 0xe0, + 0x0, 0x0, 0xde, 0x0, 0x0, + + /* U+0067 "g" */ + 0x0, 0x8d, 0xfe, 0xa1, 0xde, 0xc, 0xfc, 0x77, + 0xcc, 0xde, 0x5f, 0xa0, 0x0, 0x8, 0xfe, 0x9f, + 0x40, 0x0, 0x1, 0xfe, 0xbf, 0x10, 0x0, 0x0, + 0xde, 0xcf, 0x0, 0x0, 0x0, 0xce, 0xbf, 0x10, + 0x0, 0x0, 0xde, 0x9f, 0x40, 0x0, 0x1, 0xfe, + 0x6f, 0xa0, 0x0, 0x8, 0xfe, 0xd, 0xfb, 0x77, + 0xbd, 0xde, 0x1, 0x9e, 0xfe, 0xa2, 0xde, 0x0, + 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0, 0x8, + 0xf6, 0x0, 0xa9, 0x89, 0xdf, 0xc0, 0x0, 0xde, + 0xff, 0xc7, 0x0, + + /* U+0068 "h" */ + 0x3f, 0x80, 0x0, 0x0, 0x0, 0x3f, 0x80, 0x0, + 0x0, 0x0, 0x3f, 0x80, 0x0, 0x0, 0x0, 0x3f, + 0x80, 0x0, 0x0, 0x0, 0x3f, 0x84, 0xcf, 0xfc, + 0x40, 0x3f, 0xcf, 0xb9, 0xaf, 0xf2, 0x3f, 0xf4, + 0x0, 0x6, 0xf8, 0x3f, 0xa0, 0x0, 0x2, 0xf9, + 0x3f, 0x80, 0x0, 0x1, 0xfa, 0x3f, 0x80, 0x0, + 0x1, 0xfa, 0x3f, 0x80, 0x0, 0x1, 0xfa, 0x3f, + 0x80, 0x0, 0x1, 0xfa, 0x3f, 0x80, 0x0, 0x1, + 0xfa, 0x3f, 0x80, 0x0, 0x1, 0xfa, 0x3f, 0x80, + 0x0, 0x1, 0xfa, + + /* U+0069 "i" */ + 0x3f, 0x93, 0xf9, 0x0, 0x0, 0x0, 0x3f, 0x83, + 0xf8, 0x3f, 0x83, 0xf8, 0x3f, 0x83, 0xf8, 0x3f, + 0x83, 0xf8, 0x3f, 0x83, 0xf8, 0x3f, 0x80, + + /* U+006A "j" */ + 0x0, 0x3, 0xf9, 0x0, 0x3, 0xf9, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xf8, 0x0, + 0x3, 0xf8, 0x0, 0x3, 0xf8, 0x0, 0x3, 0xf8, + 0x0, 0x3, 0xf8, 0x0, 0x3, 0xf8, 0x0, 0x3, + 0xf8, 0x0, 0x3, 0xf8, 0x0, 0x3, 0xf8, 0x0, + 0x3, 0xf8, 0x0, 0x3, 0xf8, 0x0, 0x3, 0xf8, + 0x0, 0x6, 0xf6, 0x37, 0x8e, 0xf1, 0x6f, 0xfc, + 0x40, + + /* U+006B "k" */ + 0x3f, 0x80, 0x0, 0x0, 0x0, 0x3f, 0x80, 0x0, + 0x0, 0x0, 0x3f, 0x80, 0x0, 0x0, 0x0, 0x3f, + 0x80, 0x0, 0x0, 0x0, 0x3f, 0x80, 0x0, 0x7f, + 0xa0, 0x3f, 0x80, 0x3, 0xfc, 0x0, 0x3f, 0x80, + 0x1e, 0xe1, 0x0, 0x3f, 0x80, 0xbf, 0x30, 0x0, + 0x3f, 0x98, 0xf5, 0x0, 0x0, 0x3f, 0xff, 0xb0, + 0x0, 0x0, 0x3f, 0xaa, 0xf5, 0x0, 0x0, 0x3f, + 0x80, 0xcf, 0x30, 0x0, 0x3f, 0x80, 0x1e, 0xe2, + 0x0, 0x3f, 0x80, 0x3, 0xfd, 0x10, 0x3f, 0x80, + 0x0, 0x5f, 0xc0, + + /* U+006C "l" */ + 0x3f, 0x80, 0x3, 0xf8, 0x0, 0x3f, 0x80, 0x3, + 0xf8, 0x0, 0x3f, 0x80, 0x3, 0xf8, 0x0, 0x3f, + 0x80, 0x3, 0xf8, 0x0, 0x3f, 0x80, 0x3, 0xf8, + 0x0, 0x3f, 0x80, 0x3, 0xf8, 0x0, 0x2f, 0x90, + 0x1, 0xfe, 0x72, 0x7, 0xef, 0x50, + + /* U+006D "m" */ + 0x3f, 0x86, 0xdf, 0xe9, 0x2, 0xbf, 0xfc, 0x40, + 0x3f, 0xde, 0xa9, 0xdf, 0xbe, 0xd9, 0xaf, 0xf2, + 0x3f, 0xf2, 0x0, 0xe, 0xfa, 0x0, 0x5, 0xf8, + 0x3f, 0x90, 0x0, 0xa, 0xf2, 0x0, 0x1, 0xfa, + 0x3f, 0x80, 0x0, 0xa, 0xf1, 0x0, 0x0, 0xfb, + 0x3f, 0x80, 0x0, 0xa, 0xf1, 0x0, 0x0, 0xfb, + 0x3f, 0x80, 0x0, 0xa, 0xf1, 0x0, 0x0, 0xfb, + 0x3f, 0x80, 0x0, 0xa, 0xf1, 0x0, 0x0, 0xfb, + 0x3f, 0x80, 0x0, 0xa, 0xf1, 0x0, 0x0, 0xfb, + 0x3f, 0x80, 0x0, 0xa, 0xf1, 0x0, 0x0, 0xfb, + 0x3f, 0x80, 0x0, 0xa, 0xf1, 0x0, 0x0, 0xfb, + + /* U+006E "n" */ + 0x3f, 0x84, 0xcf, 0xfc, 0x40, 0x3f, 0xcf, 0xb9, + 0xaf, 0xf2, 0x3f, 0xf4, 0x0, 0x7, 0xf8, 0x3f, + 0xa0, 0x0, 0x2, 0xf9, 0x3f, 0x80, 0x0, 0x2, + 0xfa, 0x3f, 0x80, 0x0, 0x2, 0xfa, 0x3f, 0x80, + 0x0, 0x2, 0xfa, 0x3f, 0x80, 0x0, 0x2, 0xfa, + 0x3f, 0x80, 0x0, 0x2, 0xfa, 0x3f, 0x80, 0x0, + 0x2, 0xfa, 0x3f, 0x80, 0x0, 0x2, 0xfa, + + /* U+006F "o" */ + 0x0, 0x7d, 0xff, 0xea, 0x20, 0x0, 0xbf, 0xb7, + 0x79, 0xff, 0x20, 0x5f, 0x90, 0x0, 0x4, 0xfa, + 0x9, 0xf3, 0x0, 0x0, 0xd, 0xf0, 0xcf, 0x0, + 0x0, 0x0, 0xbf, 0x1c, 0xf0, 0x0, 0x0, 0xa, + 0xf2, 0xcf, 0x0, 0x0, 0x0, 0xbf, 0x19, 0xf3, + 0x0, 0x0, 0xd, 0xf0, 0x5f, 0xa0, 0x0, 0x3, + 0xfa, 0x0, 0xbf, 0xc8, 0x7a, 0xff, 0x20, 0x0, + 0x7d, 0xff, 0xea, 0x20, 0x0, + + /* U+0070 "p" */ + 0x3f, 0x83, 0xcf, 0xfd, 0x70, 0x3, 0xfb, 0xfa, + 0x78, 0xdf, 0x80, 0x3f, 0xf4, 0x0, 0x0, 0xef, + 0x13, 0xfc, 0x0, 0x0, 0x8, 0xf5, 0x3f, 0x80, + 0x0, 0x0, 0x5f, 0x63, 0xf7, 0x0, 0x0, 0x5, + 0xf7, 0x3f, 0x80, 0x0, 0x0, 0x5f, 0x63, 0xfc, + 0x0, 0x0, 0x8, 0xf4, 0x3f, 0xf5, 0x0, 0x1, + 0xef, 0x13, 0xfb, 0xfa, 0x78, 0xef, 0x70, 0x3f, + 0x84, 0xcf, 0xfc, 0x60, 0x3, 0xf8, 0x0, 0x0, + 0x0, 0x0, 0x3f, 0x80, 0x0, 0x0, 0x0, 0x3, + 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0x80, 0x0, + 0x0, 0x0, 0x0, + + /* U+0071 "q" */ + 0x0, 0x8d, 0xfe, 0xa1, 0xce, 0xc, 0xfc, 0x77, + 0xcd, 0xde, 0x5f, 0xa0, 0x0, 0x8, 0xfe, 0x9f, + 0x40, 0x0, 0x1, 0xfe, 0xbf, 0x10, 0x0, 0x0, + 0xde, 0xcf, 0x0, 0x0, 0x0, 0xce, 0xbf, 0x10, + 0x0, 0x0, 0xde, 0x9f, 0x40, 0x0, 0x1, 0xfe, + 0x6f, 0xa0, 0x0, 0x8, 0xfe, 0xd, 0xfc, 0x88, + 0xcd, 0xce, 0x1, 0x9e, 0xfe, 0xa1, 0xce, 0x0, + 0x0, 0x0, 0x0, 0xce, 0x0, 0x0, 0x0, 0x0, + 0xce, 0x0, 0x0, 0x0, 0x0, 0xce, 0x0, 0x0, + 0x0, 0x0, 0xce, + + /* U+0072 "r" */ + 0x3f, 0x84, 0xcf, 0x23, 0xfb, 0xf9, 0x60, 0x3f, + 0xf4, 0x0, 0x3, 0xfa, 0x0, 0x0, 0x3f, 0x80, + 0x0, 0x3, 0xf8, 0x0, 0x0, 0x3f, 0x80, 0x0, + 0x3, 0xf8, 0x0, 0x0, 0x3f, 0x80, 0x0, 0x3, + 0xf8, 0x0, 0x0, 0x3f, 0x80, 0x0, 0x0, + + /* U+0073 "s" */ + 0x4, 0xbe, 0xfe, 0xb0, 0x3f, 0xc7, 0x68, 0xa0, + 0x8f, 0x10, 0x0, 0x0, 0x9f, 0x10, 0x0, 0x0, + 0x4f, 0xd7, 0x30, 0x0, 0x4, 0xbf, 0xfe, 0x50, + 0x0, 0x0, 0x4d, 0xf2, 0x0, 0x0, 0x4, 0xf5, + 0x0, 0x0, 0x5, 0xf5, 0x87, 0x66, 0x8e, 0xe1, + 0xae, 0xff, 0xea, 0x20, + + /* U+0074 "t" */ + 0x0, 0x85, 0x0, 0x0, 0x1f, 0xa0, 0x0, 0x1, + 0xfa, 0x0, 0xb, 0xff, 0xff, 0xf4, 0x47, 0xfc, + 0x77, 0x20, 0x1f, 0xa0, 0x0, 0x1, 0xfa, 0x0, + 0x0, 0x1f, 0xa0, 0x0, 0x1, 0xfa, 0x0, 0x0, + 0x1f, 0xa0, 0x0, 0x1, 0xfa, 0x0, 0x0, 0xf, + 0xb0, 0x0, 0x0, 0xdf, 0x87, 0x30, 0x3, 0xcf, + 0xf5, + + /* U+0075 "u" */ + 0x4f, 0x70, 0x0, 0x4, 0xf7, 0x4f, 0x70, 0x0, + 0x4, 0xf7, 0x4f, 0x70, 0x0, 0x4, 0xf7, 0x4f, + 0x70, 0x0, 0x4, 0xf7, 0x4f, 0x70, 0x0, 0x4, + 0xf7, 0x4f, 0x70, 0x0, 0x4, 0xf7, 0x4f, 0x70, + 0x0, 0x4, 0xf7, 0x4f, 0x70, 0x0, 0x5, 0xf7, + 0x2f, 0xa0, 0x0, 0xc, 0xf7, 0xc, 0xf9, 0x56, + 0xcd, 0xf7, 0x2, 0xae, 0xfe, 0x92, 0xf7, + + /* U+0076 "v" */ + 0x9f, 0x10, 0x0, 0x0, 0xaf, 0x24, 0xf7, 0x0, + 0x0, 0xf, 0xc0, 0xe, 0xd0, 0x0, 0x5, 0xf6, + 0x0, 0x8f, 0x20, 0x0, 0xbf, 0x0, 0x2, 0xf8, + 0x0, 0x1f, 0xa0, 0x0, 0xc, 0xe0, 0x6, 0xf4, + 0x0, 0x0, 0x6f, 0x30, 0xbe, 0x0, 0x0, 0x1, + 0xf9, 0x1f, 0x90, 0x0, 0x0, 0xa, 0xe6, 0xf3, + 0x0, 0x0, 0x0, 0x5f, 0xfd, 0x0, 0x0, 0x0, + 0x0, 0xef, 0x70, 0x0, 0x0, + + /* U+0077 "w" */ + 0x6f, 0x40, 0x0, 0xe, 0xf6, 0x0, 0x0, 0xbf, + 0x2, 0xf8, 0x0, 0x3, 0xff, 0xb0, 0x0, 0xe, + 0xb0, 0xe, 0xc0, 0x0, 0x7f, 0x9f, 0x0, 0x2, + 0xf7, 0x0, 0xaf, 0x0, 0xc, 0xb3, 0xf5, 0x0, + 0x6f, 0x20, 0x5, 0xf4, 0x1, 0xf7, 0xe, 0xa0, + 0xa, 0xe0, 0x0, 0x1f, 0x80, 0x5f, 0x20, 0xae, + 0x0, 0xea, 0x0, 0x0, 0xdc, 0xa, 0xd0, 0x5, + 0xf3, 0x2f, 0x50, 0x0, 0x9, 0xf0, 0xe8, 0x0, + 0xf, 0x86, 0xf1, 0x0, 0x0, 0x4f, 0x7f, 0x30, + 0x0, 0xbd, 0xad, 0x0, 0x0, 0x0, 0xff, 0xe0, + 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xc, 0xfa, + 0x0, 0x0, 0x2f, 0xf4, 0x0, 0x0, + + /* U+0078 "x" */ + 0x3f, 0xb0, 0x0, 0x5, 0xf8, 0x0, 0x8f, 0x50, + 0x1, 0xed, 0x0, 0x0, 0xde, 0x10, 0x9f, 0x30, + 0x0, 0x3, 0xf9, 0x3f, 0x90, 0x0, 0x0, 0x9, + 0xfe, 0xd0, 0x0, 0x0, 0x0, 0x2f, 0xf8, 0x0, + 0x0, 0x0, 0xb, 0xfc, 0xf2, 0x0, 0x0, 0x6, + 0xf7, 0x2f, 0xc0, 0x0, 0x1, 0xfc, 0x0, 0x7f, + 0x60, 0x0, 0xbf, 0x20, 0x0, 0xdf, 0x10, 0x6f, + 0x80, 0x0, 0x3, 0xfb, 0x0, + + /* U+0079 "y" */ + 0x9f, 0x30, 0x0, 0x0, 0x9f, 0x23, 0xf9, 0x0, + 0x0, 0xe, 0xc0, 0xd, 0xe0, 0x0, 0x4, 0xf6, + 0x0, 0x6f, 0x50, 0x0, 0x9f, 0x10, 0x1, 0xfb, + 0x0, 0xe, 0xb0, 0x0, 0xa, 0xf1, 0x4, 0xf5, + 0x0, 0x0, 0x3f, 0x60, 0xae, 0x0, 0x0, 0x0, + 0xdc, 0xf, 0x90, 0x0, 0x0, 0x7, 0xf7, 0xf3, + 0x0, 0x0, 0x0, 0x1f, 0xfd, 0x0, 0x0, 0x0, + 0x0, 0xaf, 0x70, 0x0, 0x0, 0x0, 0xb, 0xf1, + 0x0, 0x0, 0x0, 0x4, 0xf9, 0x0, 0x0, 0x0, + 0x5a, 0xfd, 0x0, 0x0, 0x0, 0xa, 0xe9, 0x10, + 0x0, 0x0, 0x0, + + /* U+007A "z" */ + 0xa, 0xff, 0xff, 0xff, 0xf1, 0x4, 0x77, 0x77, + 0x9f, 0xd0, 0x0, 0x0, 0x0, 0xcf, 0x30, 0x0, + 0x0, 0x8, 0xf6, 0x0, 0x0, 0x0, 0x4f, 0xa0, + 0x0, 0x0, 0x2, 0xed, 0x0, 0x0, 0x0, 0xc, + 0xf2, 0x0, 0x0, 0x0, 0x8f, 0x60, 0x0, 0x0, + 0x4, 0xfa, 0x0, 0x0, 0x0, 0xe, 0xf9, 0x88, + 0x88, 0x83, 0x2f, 0xff, 0xff, 0xff, 0xf6, + + /* U+007B "{" */ + 0x0, 0x8, 0xe4, 0x0, 0x6f, 0xc2, 0x0, 0xaf, + 0x10, 0x0, 0xbf, 0x0, 0x0, 0xbf, 0x0, 0x0, + 0xbf, 0x0, 0x0, 0xbf, 0x0, 0x0, 0xcf, 0x0, + 0xa, 0xfa, 0x0, 0xf, 0xf5, 0x0, 0x1, 0xee, + 0x0, 0x0, 0xbf, 0x0, 0x0, 0xbf, 0x0, 0x0, + 0xbf, 0x0, 0x0, 0xbf, 0x0, 0x0, 0xbf, 0x0, + 0x0, 0xaf, 0x10, 0x0, 0x6f, 0xc2, 0x0, 0x8, + 0xe4, + + /* U+007C "|" */ + 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, + 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, + 0xfa, 0xfa, 0xfa, + + /* U+007D "}" */ + 0x4e, 0x80, 0x3, 0xcf, 0x60, 0x1, 0xfa, 0x0, + 0xf, 0xb0, 0x0, 0xfb, 0x0, 0xf, 0xb0, 0x0, + 0xfb, 0x0, 0xf, 0xc0, 0x0, 0xaf, 0xa0, 0x5, + 0xff, 0x0, 0xee, 0x10, 0xf, 0xb0, 0x0, 0xfb, + 0x0, 0xf, 0xb0, 0x0, 0xfb, 0x0, 0xf, 0xb0, + 0x1, 0xfa, 0x3, 0xcf, 0x50, 0x4e, 0x80, 0x0, + + /* U+007E "~" */ + 0x0, 0x68, 0x50, 0x0, 0x7, 0x20, 0xaf, 0xff, + 0xc1, 0x4, 0xf5, 0x2f, 0x81, 0x7f, 0xea, 0xee, + 0x4, 0xd2, 0x0, 0x2b, 0xfd, 0x30, + + /* U+5206 "分" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x9, 0x40, 0xd, + 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5f, + 0x60, 0xb, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xdd, 0x0, 0x3, 0xf6, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xa, 0xf4, 0x0, 0x0, 0xaf, 0x20, + 0x0, 0x0, 0x0, 0x0, 0x6f, 0x80, 0x0, 0x0, + 0x1e, 0xd1, 0x0, 0x0, 0x0, 0x6, 0xfb, 0x0, + 0x0, 0x0, 0x4, 0xfd, 0x10, 0x0, 0x0, 0x8f, + 0xb0, 0x0, 0x0, 0x0, 0x0, 0x5f, 0xd3, 0x0, + 0x1c, 0xfa, 0x56, 0x66, 0x66, 0x66, 0x66, 0x65, + 0xff, 0x70, 0xa, 0x70, 0xcf, 0xff, 0xff, 0xff, + 0xff, 0xf0, 0x2c, 0xa0, 0x0, 0x0, 0x1, 0x7f, + 0x21, 0x11, 0x1a, 0xf0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x8f, 0x0, 0x0, 0xa, 0xe0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xbd, 0x0, 0x0, 0xb, 0xd0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xea, 0x0, 0x0, + 0xc, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xf5, + 0x0, 0x0, 0xd, 0xb0, 0x0, 0x0, 0x0, 0x0, + 0xd, 0xe0, 0x0, 0x0, 0xf, 0xa0, 0x0, 0x0, + 0x0, 0x0, 0xbf, 0x40, 0x0, 0x0, 0x2f, 0x80, + 0x0, 0x0, 0x0, 0x3d, 0xf6, 0x0, 0x0, 0x79, + 0xdf, 0x50, 0x0, 0x0, 0x5, 0xfe, 0x40, 0x0, + 0x0, 0x8f, 0xd9, 0x0, 0x0, 0x0, 0x0, 0x81, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+533A "区" */ + 0x8f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, + 0x8, 0xf9, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, + 0x80, 0x8f, 0x10, 0x30, 0x0, 0x0, 0x0, 0x34, + 0x0, 0x8, 0xf1, 0x6f, 0x80, 0x0, 0x0, 0x1e, + 0xe0, 0x0, 0x8f, 0x10, 0x9f, 0x90, 0x0, 0xa, + 0xf4, 0x0, 0x8, 0xf1, 0x0, 0x7f, 0xb0, 0x8, + 0xf7, 0x0, 0x0, 0x8f, 0x10, 0x0, 0x6f, 0xc7, + 0xf9, 0x0, 0x0, 0x8, 0xf1, 0x0, 0x0, 0x5f, + 0xfb, 0x0, 0x0, 0x0, 0x8f, 0x10, 0x0, 0x7, + 0xff, 0xd1, 0x0, 0x0, 0x8, 0xf1, 0x0, 0x9, + 0xfa, 0x5f, 0xd1, 0x0, 0x0, 0x8f, 0x10, 0x1b, + 0xf9, 0x0, 0x5f, 0xd1, 0x0, 0x8, 0xf1, 0x4e, + 0xf7, 0x0, 0x0, 0x5f, 0xd1, 0x0, 0x8f, 0x5f, + 0xe4, 0x0, 0x0, 0x0, 0x5f, 0xa0, 0x8, 0xf1, + 0x81, 0x0, 0x0, 0x0, 0x0, 0x62, 0x0, 0x8f, + 0x76, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x28, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, + 0x1, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, + 0x0, + + /* U+53D6 "取" */ + 0x1, 0x22, 0x22, 0x22, 0x22, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xb, 0xff, 0xff, 0xff, 0xff, 0x33, + 0x33, 0x33, 0x32, 0x0, 0x3, 0x9f, 0x44, 0x4b, + 0xd4, 0x8f, 0xff, 0xff, 0xfa, 0x0, 0x0, 0x7f, + 0x0, 0xa, 0xc0, 0x2a, 0x54, 0x44, 0xe9, 0x0, + 0x0, 0x7f, 0x0, 0xa, 0xc0, 0xf, 0x40, 0x0, + 0xf6, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xc0, 0xe, + 0x70, 0x3, 0xf3, 0x0, 0x0, 0x7f, 0x66, 0x6c, + 0xc0, 0xb, 0xa0, 0x7, 0xf0, 0x0, 0x0, 0x7f, + 0x0, 0xa, 0xc0, 0x7, 0xe0, 0xb, 0xc0, 0x0, + 0x0, 0x7f, 0x0, 0xa, 0xc0, 0x3, 0xf4, 0x1f, + 0x70, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xc0, 0x0, + 0xea, 0x6f, 0x20, 0x0, 0x0, 0x7f, 0x66, 0x6c, + 0xc0, 0x0, 0x8f, 0xeb, 0x0, 0x0, 0x0, 0x7f, + 0x0, 0xa, 0xc0, 0x0, 0x1e, 0xf4, 0x0, 0x0, + 0x0, 0x7f, 0x0, 0xa, 0xd5, 0x60, 0x2e, 0xf5, + 0x0, 0x0, 0x0, 0x7f, 0x69, 0xcf, 0xff, 0xc0, + 0xce, 0xcf, 0x20, 0x0, 0x6f, 0xff, 0xfe, 0xbd, + 0xd2, 0x1c, 0xf2, 0x1e, 0xe2, 0x0, 0x38, 0x63, + 0x10, 0xa, 0xc1, 0xcf, 0x40, 0x2, 0xee, 0x30, + 0x0, 0x0, 0x0, 0xa, 0xcc, 0xf4, 0x0, 0x0, + 0x2e, 0xd0, 0x0, 0x0, 0x0, 0xa, 0xc2, 0x30, + 0x0, 0x0, 0x2, 0x30, + + /* U+5E74 "年" */ + 0x0, 0x0, 0x6, 0x40, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x2, 0xf8, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xaf, 0x86, 0x66, + 0x66, 0x66, 0x66, 0x64, 0x0, 0x0, 0x4f, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xa0, 0x0, 0xd, + 0xd0, 0x0, 0x3, 0xf4, 0x0, 0x0, 0x0, 0x0, + 0xa, 0xf3, 0x0, 0x0, 0x3f, 0x40, 0x0, 0x0, + 0x0, 0x8, 0xf7, 0x0, 0x0, 0x3, 0xf4, 0x0, + 0x0, 0x0, 0x0, 0xd9, 0x17, 0x77, 0x77, 0x8f, + 0x97, 0x77, 0x77, 0x0, 0x2, 0x2, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf1, 0x0, 0x0, 0x2f, + 0x50, 0x0, 0x3f, 0x40, 0x0, 0x0, 0x0, 0x0, + 0x2, 0xf5, 0x0, 0x3, 0xf4, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2f, 0x50, 0x0, 0x3f, 0x40, 0x0, + 0x0, 0x0, 0x3, 0x35, 0xf7, 0x33, 0x35, 0xf6, + 0x33, 0x33, 0x33, 0x11, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf7, 0x3, 0x33, 0x33, + 0x33, 0x36, 0xf7, 0x33, 0x33, 0x33, 0x10, 0x0, + 0x0, 0x0, 0x0, 0x3f, 0x40, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x3, 0xf4, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0x40, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, + 0xf4, 0x0, 0x0, 0x0, 0x0, + + /* U+6539 "改" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x20, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf8, 0x0, + 0x0, 0x0, 0x38, 0x88, 0x88, 0x50, 0x4, 0xf3, + 0x0, 0x0, 0x0, 0x6f, 0xff, 0xff, 0x90, 0x9, + 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0x90, + 0xf, 0xff, 0xff, 0xff, 0xf5, 0x0, 0x0, 0xe, + 0x90, 0x7f, 0x87, 0x77, 0xfc, 0x72, 0x0, 0x0, + 0xe, 0x90, 0xeb, 0x0, 0x0, 0xf6, 0x0, 0x0, + 0x0, 0xe, 0x97, 0xfd, 0x0, 0x2, 0xf4, 0x0, + 0x6, 0x77, 0x7f, 0xbf, 0xdf, 0x10, 0x6, 0xf0, + 0x0, 0xe, 0xff, 0xff, 0x97, 0x1f, 0x70, 0xb, + 0xc0, 0x0, 0xe, 0x80, 0x0, 0x0, 0xa, 0xd0, + 0x1f, 0x60, 0x0, 0xe, 0x80, 0x0, 0x0, 0x2, + 0xf6, 0x9f, 0x0, 0x0, 0xe, 0x80, 0x0, 0x0, + 0x0, 0x9e, 0xf7, 0x0, 0x0, 0xe, 0x80, 0x0, + 0x0, 0x0, 0x2f, 0xf1, 0x0, 0x0, 0xe, 0x80, + 0x17, 0xe4, 0x1, 0xde, 0xfc, 0x0, 0x0, 0xe, + 0x98, 0xff, 0xb2, 0x3e, 0xe3, 0x5f, 0xd1, 0x0, + 0x2f, 0xff, 0xb3, 0x8, 0xfd, 0x20, 0x5, 0xfe, + 0x40, 0x6f, 0xa2, 0x3, 0xdf, 0xa1, 0x0, 0x0, + 0x3e, 0xf8, 0x3, 0x0, 0x1, 0xc5, 0x0, 0x0, + 0x0, 0x1, 0xa4, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, + + /* U+65E5 "日" */ + 0x7, 0x77, 0x77, 0x77, 0x77, 0x77, 0x70, 0x1f, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0x1f, 0x60, + 0x0, 0x0, 0x0, 0x6, 0xf1, 0x1f, 0x60, 0x0, + 0x0, 0x0, 0x6, 0xf1, 0x1f, 0x60, 0x0, 0x0, + 0x0, 0x6, 0xf1, 0x1f, 0x60, 0x0, 0x0, 0x0, + 0x6, 0xf1, 0x1f, 0x71, 0x11, 0x11, 0x11, 0x17, + 0xf1, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, + 0x1f, 0x95, 0x55, 0x55, 0x55, 0x59, 0xf1, 0x1f, + 0x60, 0x0, 0x0, 0x0, 0x6, 0xf1, 0x1f, 0x60, + 0x0, 0x0, 0x0, 0x6, 0xf1, 0x1f, 0x60, 0x0, + 0x0, 0x0, 0x6, 0xf1, 0x1f, 0x60, 0x0, 0x0, + 0x0, 0x6, 0xf1, 0x1f, 0x60, 0x0, 0x0, 0x0, + 0x6, 0xf1, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf1, 0x1f, 0xa7, 0x77, 0x77, 0x77, 0x7a, 0xf1, + 0x1f, 0x60, 0x0, 0x0, 0x0, 0x6, 0xf1, + + /* U+65F6 "时" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xf1, + 0x0, 0x56, 0x66, 0x66, 0x0, 0x0, 0x0, 0x8f, + 0x10, 0xe, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x8, + 0xf1, 0x0, 0xe8, 0x22, 0x7f, 0x1, 0x11, 0x11, + 0x9f, 0x21, 0x1e, 0x70, 0x6, 0xf6, 0xff, 0xff, + 0xff, 0xff, 0xfa, 0xe7, 0x0, 0x6f, 0x25, 0x55, + 0x55, 0xbf, 0x65, 0x3e, 0x70, 0x6, 0xf0, 0x1, + 0x0, 0x8, 0xf1, 0x0, 0xe7, 0x0, 0x6f, 0x7, + 0xe1, 0x0, 0x8f, 0x10, 0xe, 0xff, 0xff, 0xf0, + 0x1e, 0x90, 0x8, 0xf1, 0x0, 0xeb, 0x77, 0xbf, + 0x0, 0x7f, 0x20, 0x8f, 0x10, 0xe, 0x70, 0x6, + 0xf0, 0x0, 0xe9, 0x8, 0xf1, 0x0, 0xe7, 0x0, + 0x6f, 0x0, 0x8, 0xe0, 0x8f, 0x10, 0xe, 0x70, + 0x6, 0xf0, 0x0, 0x11, 0x8, 0xf1, 0x0, 0xe7, + 0x0, 0x6f, 0x0, 0x0, 0x0, 0x8f, 0x10, 0xe, + 0xb7, 0x7b, 0xf0, 0x0, 0x0, 0x8, 0xf1, 0x0, + 0xef, 0xff, 0xff, 0x0, 0x0, 0x0, 0xaf, 0x10, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x49, 0xbf, 0xe0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, 0xc3, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, + + /* U+66F4 "更" */ + 0x0, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, + 0x11, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf1, 0x0, 0x44, 0x44, 0x44, 0x4d, + 0xc4, 0x44, 0x44, 0x44, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xcb, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0x0, + 0x0, 0xbc, 0x44, 0x44, 0xdc, 0x44, 0x44, 0xe9, + 0x0, 0x0, 0xb, 0xb0, 0x0, 0xc, 0xb0, 0x0, + 0xd, 0x90, 0x0, 0x0, 0xbf, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf9, 0x0, 0x0, 0xb, 0xc4, 0x44, + 0x4d, 0xc4, 0x44, 0x4e, 0x90, 0x0, 0x0, 0xbb, + 0x0, 0x0, 0xcb, 0x0, 0x0, 0xd9, 0x0, 0x0, + 0xb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, + 0x0, 0x0, 0x3b, 0xa5, 0x55, 0xfb, 0x55, 0x55, + 0x53, 0x0, 0x0, 0x0, 0x8f, 0x60, 0x3f, 0x60, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xab, + 0xf1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x5f, 0xfc, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2, 0x8e, 0xfa, 0xef, 0xea, 0x75, 0x42, 0x11, + 0x5, 0x9d, 0xff, 0x92, 0x0, 0x48, 0xbe, 0xff, + 0xff, 0xa0, 0xbe, 0xa5, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x24, 0x63, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+6708 "月" */ + 0x0, 0x1, 0x22, 0x22, 0x22, 0x22, 0x22, 0x20, + 0x0, 0xaf, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, + 0xa, 0xf4, 0x44, 0x44, 0x44, 0x4b, 0xe0, 0x0, + 0xae, 0x0, 0x0, 0x0, 0x0, 0xae, 0x0, 0xa, + 0xe0, 0x0, 0x0, 0x0, 0xa, 0xe0, 0x0, 0xaf, + 0x44, 0x44, 0x44, 0x44, 0xbe, 0x0, 0xa, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0xae, 0x22, + 0x22, 0x22, 0x22, 0xae, 0x0, 0xa, 0xe0, 0x0, + 0x0, 0x0, 0xa, 0xe0, 0x0, 0xae, 0x0, 0x0, + 0x0, 0x0, 0xae, 0x0, 0xb, 0xe7, 0x77, 0x77, + 0x77, 0x7c, 0xe0, 0x0, 0xcf, 0xff, 0xff, 0xff, + 0xff, 0xfe, 0x0, 0xe, 0xa0, 0x0, 0x0, 0x0, + 0xa, 0xe0, 0x2, 0xf7, 0x0, 0x0, 0x0, 0x0, + 0xae, 0x0, 0x9f, 0x10, 0x0, 0x0, 0x0, 0xa, + 0xe0, 0x3f, 0xa0, 0x0, 0x0, 0x0, 0x0, 0xbe, + 0x1e, 0xf1, 0x0, 0x0, 0x0, 0x2b, 0xdf, 0xb5, + 0xf5, 0x0, 0x0, 0x0, 0x0, 0xba, 0x81, 0x1, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+671F "期" */ + 0x0, 0xc, 0x60, 0x0, 0xe3, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xe, 0x70, 0x0, 0xf4, 0x4, 0xff, + 0xff, 0xfe, 0x4, 0xff, 0xff, 0xff, 0xff, 0xc4, + 0xf7, 0x66, 0xae, 0x1, 0x5e, 0xa5, 0x55, 0xf8, + 0x44, 0xf1, 0x0, 0x7e, 0x0, 0xe, 0x70, 0x0, + 0xf4, 0x4, 0xf1, 0x0, 0x7e, 0x0, 0xe, 0xdc, + 0xcc, 0xf4, 0x4, 0xf4, 0x33, 0x8e, 0x0, 0xe, + 0xb8, 0x88, 0xf4, 0x4, 0xff, 0xff, 0xfe, 0x0, + 0xe, 0x70, 0x0, 0xf4, 0x4, 0xf3, 0x22, 0x8e, + 0x0, 0xe, 0xa5, 0x56, 0xf4, 0x4, 0xf1, 0x0, + 0x7e, 0x0, 0xe, 0xed, 0xdd, 0xf4, 0x4, 0xf1, + 0x0, 0x7e, 0x0, 0xe, 0x70, 0x0, 0xf4, 0x5, + 0xf5, 0x55, 0x9e, 0x4, 0x4e, 0xa4, 0x45, 0xf7, + 0x36, 0xfe, 0xee, 0xfe, 0x1f, 0xff, 0xff, 0xff, + 0xff, 0xc7, 0xe0, 0x0, 0x7e, 0x0, 0x0, 0x60, + 0x7, 0x10, 0xa, 0xc0, 0x0, 0x7e, 0x0, 0x6, + 0xf3, 0x1d, 0xd1, 0x1f, 0x70, 0x0, 0x7e, 0x0, + 0x5f, 0x70, 0x1, 0xdb, 0x9f, 0x10, 0x0, 0x7e, + 0x5, 0xfa, 0x0, 0x0, 0x16, 0xf8, 0x0, 0x4c, + 0xfc, 0x2, 0x80, 0x0, 0x0, 0x8, 0xc0, 0x0, + 0x19, 0x61, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, + + /* U+6D88 "消" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x20, 0x0, 0x2, 0x0, 0x8, 0xe0, + 0x0, 0x0, 0x0, 0xec, 0x20, 0x4f, 0x40, 0x8, + 0xe0, 0x0, 0xaa, 0x0, 0x4e, 0xf5, 0xa, 0xf2, + 0x8, 0xe0, 0x8, 0xf4, 0x0, 0x1, 0xde, 0x0, + 0xce, 0x18, 0xe0, 0x6f, 0x60, 0x0, 0x0, 0x3, + 0x0, 0x19, 0x8, 0xe0, 0x78, 0x0, 0xb, 0x80, + 0x0, 0x6, 0x77, 0x7b, 0xf7, 0x77, 0x72, 0x9, + 0xfc, 0x10, 0xe, 0xff, 0xff, 0xff, 0xff, 0xf5, + 0x0, 0x5f, 0xe1, 0xe, 0x80, 0x0, 0x0, 0x1, + 0xf5, 0x0, 0x3, 0xb0, 0xe, 0x81, 0x11, 0x11, + 0x13, 0xf5, 0x0, 0x0, 0x0, 0xe, 0xff, 0xff, + 0xff, 0xff, 0xf5, 0x0, 0x1, 0x50, 0xe, 0xa3, + 0x33, 0x33, 0x35, 0xf5, 0x0, 0x6, 0xf2, 0xe, + 0x80, 0x0, 0x0, 0x1, 0xf5, 0x0, 0xa, 0xe0, + 0xe, 0xb6, 0x66, 0x66, 0x67, 0xf5, 0x0, 0xf, + 0x90, 0xe, 0xfe, 0xee, 0xee, 0xee, 0xf5, 0x0, + 0x4f, 0x40, 0xe, 0x80, 0x0, 0x0, 0x1, 0xf5, + 0x0, 0xaf, 0x0, 0xe, 0x80, 0x0, 0x0, 0x2, + 0xf5, 0x0, 0xfa, 0x0, 0xe, 0x80, 0x0, 0x6, + 0x8c, 0xf3, 0x3, 0xd4, 0x0, 0xe, 0x80, 0x0, + 0x9, 0xfd, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, + + /* U+786E "确" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e, 0x80, + 0x0, 0x0, 0x3, 0x77, 0x77, 0x76, 0x0, 0x9f, + 0x75, 0x55, 0x20, 0x7, 0xff, 0xff, 0xfe, 0x3, + 0xff, 0xff, 0xff, 0x80, 0x0, 0x4, 0xf1, 0x0, + 0xd, 0xd1, 0x0, 0x9e, 0x10, 0x0, 0x9, 0xc0, + 0x0, 0xaf, 0x31, 0x18, 0xf5, 0x10, 0x0, 0xe, + 0x70, 0x9, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, + 0x5f, 0x10, 0x4, 0xaf, 0x55, 0x9f, 0x55, 0x9e, + 0x0, 0xdf, 0xff, 0xf0, 0x5f, 0x0, 0x6e, 0x0, + 0x6e, 0x6, 0xff, 0x79, 0xf0, 0x5f, 0x66, 0xaf, + 0x66, 0xae, 0x2f, 0xdf, 0x4, 0xf0, 0x5f, 0xff, + 0xff, 0xff, 0xfe, 0x4d, 0x5f, 0x4, 0xf0, 0x5f, + 0x0, 0x6e, 0x0, 0x6e, 0x0, 0x4f, 0x4, 0xf0, + 0x5f, 0x0, 0x6e, 0x0, 0x6e, 0x0, 0x4f, 0x4, + 0xf0, 0x6f, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x4f, + 0x4, 0xf0, 0x8e, 0x66, 0xaf, 0x66, 0xae, 0x0, + 0x4f, 0x36, 0xf0, 0xab, 0x0, 0x6e, 0x0, 0x6e, + 0x0, 0x4f, 0xff, 0xf1, 0xf7, 0x0, 0x6e, 0x0, + 0x7e, 0x0, 0x3, 0x33, 0x37, 0xf1, 0x0, 0x6e, + 0x29, 0xed, 0x0, 0x0, 0x0, 0x1e, 0xa0, 0x0, + 0x6e, 0x2f, 0xf8, 0x0, 0x0, 0x0, 0x5, 0x20, + 0x0, 0x0, 0x4, 0x10, + + /* U+79D2 "秒" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0x0, 0x0, + 0xf7, 0x0, 0x0, 0x0, 0x1, 0x36, 0x9c, 0xff, + 0x30, 0x0, 0xf7, 0x0, 0x0, 0x0, 0xd, 0xff, + 0xfb, 0x63, 0x1, 0x30, 0xf7, 0x28, 0x0, 0x0, + 0x3, 0x31, 0xf5, 0x0, 0x6, 0xf1, 0xf7, 0x4f, + 0x50, 0x0, 0x0, 0x0, 0xf5, 0x0, 0xb, 0xd0, + 0xf7, 0xb, 0xe0, 0x0, 0x6, 0x77, 0xfa, 0x77, + 0x1f, 0x80, 0xf7, 0x3, 0xf7, 0x0, 0xd, 0xff, + 0xff, 0xff, 0x6f, 0x30, 0xf7, 0x0, 0xbe, 0x0, + 0x0, 0x6, 0xf5, 0x0, 0xbd, 0x0, 0xf7, 0x0, + 0x3f, 0x70, 0x0, 0xd, 0xf5, 0x2, 0xf7, 0x0, + 0xf7, 0x0, 0xc, 0xe0, 0x0, 0x5f, 0xfe, 0xa8, + 0xf1, 0x0, 0xf7, 0x4, 0xb4, 0x30, 0x0, 0xe9, + 0xf9, 0xfa, 0x20, 0x0, 0xf7, 0x1e, 0xb0, 0x0, + 0x8, 0xe1, 0xf5, 0x4f, 0x30, 0x0, 0x95, 0xbe, + 0x10, 0x0, 0x3f, 0x60, 0xf5, 0x3, 0x0, 0x0, + 0xb, 0xf4, 0x0, 0x0, 0x5a, 0x0, 0xf5, 0x0, + 0x0, 0x2, 0xcf, 0x40, 0x0, 0x0, 0x0, 0x0, + 0xf5, 0x0, 0x0, 0x6f, 0xe4, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xf5, 0x0, 0x5d, 0xfb, 0x10, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xf5, 0x7e, 0xfd, 0x50, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf5, 0x6c, + 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+8BA4 "认" */ + 0x0, 0x25, 0x0, 0x0, 0x0, 0x8, 0xc0, 0x0, + 0x0, 0x0, 0x8, 0xf5, 0x0, 0x0, 0x0, 0x9d, + 0x0, 0x0, 0x0, 0x0, 0xa, 0xf3, 0x0, 0x0, + 0x9, 0xd0, 0x0, 0x0, 0x0, 0x0, 0xd, 0xe1, + 0x0, 0x0, 0x9e, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2d, 0x10, 0x0, 0xa, 0xf0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xbf, 0x10, 0x0, + 0x0, 0x18, 0x88, 0x80, 0x0, 0x0, 0xd, 0xf4, + 0x0, 0x0, 0x3, 0xff, 0xff, 0x10, 0x0, 0x0, + 0xff, 0x70, 0x0, 0x0, 0x0, 0x6, 0xf1, 0x0, + 0x0, 0x3f, 0xdc, 0x0, 0x0, 0x0, 0x0, 0x6f, + 0x10, 0x0, 0x7, 0xf5, 0xf1, 0x0, 0x0, 0x0, + 0x6, 0xf1, 0x0, 0x0, 0xcb, 0xf, 0x70, 0x0, + 0x0, 0x0, 0x6f, 0x10, 0x0, 0x3f, 0x40, 0xae, + 0x0, 0x0, 0x0, 0x6, 0xf1, 0x68, 0xc, 0xd0, + 0x2, 0xf7, 0x0, 0x0, 0x0, 0x6f, 0x8f, 0x87, + 0xf4, 0x0, 0xa, 0xf2, 0x0, 0x0, 0x7, 0xff, + 0x84, 0xfa, 0x0, 0x0, 0x1e, 0xc0, 0x0, 0x0, + 0xbf, 0x73, 0xfd, 0x0, 0x0, 0x0, 0x4f, 0xb0, + 0x0, 0x6, 0x74, 0xfe, 0x20, 0x0, 0x0, 0x0, + 0x7f, 0xa0, 0x0, 0x0, 0x2c, 0x20, 0x0, 0x0, + 0x0, 0x0, 0x84, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+95F4 "间" */ + 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x4e, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1d, 0xf3, 0xe, 0xff, 0xff, 0xff, 0xff, 0xf6, + 0x1, 0xee, 0x27, 0x88, 0x88, 0x88, 0x89, 0xf7, + 0x21, 0x3d, 0x0, 0x0, 0x0, 0x0, 0x1, 0xf7, + 0xe9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xf7, + 0xe9, 0x0, 0xff, 0xff, 0xff, 0xf5, 0x1, 0xf7, + 0xe9, 0x0, 0xfb, 0x77, 0x77, 0xf6, 0x1, 0xf7, + 0xe9, 0x0, 0xf7, 0x0, 0x0, 0xf6, 0x1, 0xf7, + 0xe9, 0x0, 0xf7, 0x0, 0x0, 0xf6, 0x1, 0xf7, + 0xe9, 0x0, 0xfb, 0x77, 0x77, 0xf6, 0x1, 0xf7, + 0xe9, 0x0, 0xff, 0xff, 0xff, 0xf6, 0x1, 0xf7, + 0xe9, 0x0, 0xf7, 0x0, 0x0, 0xf6, 0x1, 0xf7, + 0xe9, 0x0, 0xf7, 0x0, 0x0, 0xf6, 0x1, 0xf7, + 0xe9, 0x0, 0xfb, 0x77, 0x77, 0xf6, 0x1, 0xf7, + 0xe9, 0x0, 0xff, 0xff, 0xff, 0xf5, 0x1, 0xf7, + 0xe9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xf7, + 0xe9, 0x0, 0x0, 0x0, 0x0, 0x7, 0x8d, 0xf4, + 0xe9, 0x0, 0x0, 0x0, 0x0, 0xc, 0xfd, 0x70, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+F001 "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x31, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x15, 0xae, 0xfd, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x2, 0x7c, 0xff, 0xff, 0xff, 0x0, 0x0, + 0x0, 0x0, 0x49, 0xef, 0xff, 0xff, 0xff, 0xff, + 0x0, 0x0, 0x4, 0xbf, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0xf, 0xff, + 0xff, 0xff, 0xff, 0xfb, 0x69, 0xff, 0x0, 0x0, + 0xf, 0xff, 0xff, 0xfe, 0x95, 0x0, 0x8, 0xff, + 0x0, 0x0, 0xf, 0xff, 0xc7, 0x30, 0x0, 0x0, + 0x8, 0xff, 0x0, 0x0, 0xf, 0xf8, 0x0, 0x0, + 0x0, 0x0, 0x8, 0xff, 0x0, 0x0, 0xf, 0xf8, + 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0x0, 0x0, + 0xf, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, + 0x0, 0x0, 0xf, 0xf8, 0x0, 0x0, 0x0, 0x0, + 0x8, 0xff, 0x0, 0x0, 0xf, 0xf8, 0x0, 0x0, + 0x1, 0x7b, 0xbd, 0xff, 0x0, 0x0, 0xf, 0xf8, + 0x0, 0x0, 0x1e, 0xff, 0xff, 0xff, 0x0, 0x13, + 0x3f, 0xf8, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, + 0x2b, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x4f, 0xff, + 0xff, 0xfc, 0xdf, 0xff, 0xff, 0xf8, 0x0, 0x0, + 0x6, 0xef, 0xff, 0xa1, 0xff, 0xff, 0xff, 0xf7, + 0x0, 0x0, 0x0, 0x2, 0x20, 0x0, 0x7f, 0xff, + 0xff, 0xd1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2, 0x8a, 0xa6, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, + + /* U+F008 "" */ + 0xc4, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x40, 0x4c, 0xfd, 0xcd, 0xff, 0xee, 0xee, 0xee, + 0xee, 0xff, 0xdc, 0xdf, 0xfa, 0x8a, 0xfa, 0x0, + 0x0, 0x0, 0x0, 0xaf, 0xb8, 0xaf, 0xf4, 0x3, + 0xfa, 0x0, 0x0, 0x0, 0x0, 0x9f, 0x40, 0x4f, + 0xf4, 0x4, 0xfa, 0x0, 0x0, 0x0, 0x0, 0x9f, + 0x50, 0x4f, 0xff, 0xff, 0xfa, 0x0, 0x0, 0x0, + 0x0, 0x9f, 0xff, 0xff, 0xf7, 0x47, 0xfd, 0x77, + 0x77, 0x77, 0x77, 0xdf, 0x84, 0x7f, 0xf4, 0x3, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x40, 0x4f, + 0xf7, 0x47, 0xfd, 0x77, 0x77, 0x77, 0x77, 0xdf, + 0x84, 0x7f, 0xff, 0xff, 0xfa, 0x0, 0x0, 0x0, + 0x0, 0x9f, 0xff, 0xff, 0xf4, 0x4, 0xfa, 0x0, + 0x0, 0x0, 0x0, 0x9f, 0x50, 0x4f, 0xf4, 0x3, + 0xfa, 0x0, 0x0, 0x0, 0x0, 0x9f, 0x40, 0x4f, + 0xfa, 0x8a, 0xfa, 0x0, 0x0, 0x0, 0x0, 0xaf, + 0xb8, 0xaf, 0xfd, 0xcd, 0xff, 0xee, 0xee, 0xee, + 0xee, 0xff, 0xdc, 0xdf, 0xc4, 0x3, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x40, 0x4c, + + /* U+F00B "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xdf, 0xff, 0xfa, 0xc, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfd, 0xff, 0xff, 0xfd, 0xe, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfd, 0xe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfd, 0xe, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xcf, 0xff, 0xf9, 0xa, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, + 0xf9, 0xb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, + 0xff, 0xff, 0xfd, 0xe, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfd, 0xe, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xe, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcf, 0xff, + 0xfa, 0xb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xcf, 0xff, 0xf9, 0xa, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfb, 0xff, 0xff, 0xfd, 0xe, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfd, 0xe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfd, 0xe, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xdf, 0xff, 0xfa, 0xc, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfd, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+F00C "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x4e, 0x60, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x4, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x4f, 0xff, 0xff, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, 0xff, 0xf6, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4f, 0xff, + 0xff, 0x60, 0x6, 0xe4, 0x0, 0x0, 0x0, 0x4, + 0xff, 0xff, 0xf6, 0x0, 0x7f, 0xff, 0x40, 0x0, + 0x0, 0x4f, 0xff, 0xff, 0x60, 0x0, 0xff, 0xff, + 0xf4, 0x0, 0x4, 0xff, 0xff, 0xf6, 0x0, 0x0, + 0x6f, 0xff, 0xff, 0x40, 0x4f, 0xff, 0xff, 0x60, + 0x0, 0x0, 0x6, 0xff, 0xff, 0xf8, 0xff, 0xff, + 0xf5, 0x0, 0x0, 0x0, 0x0, 0x6f, 0xff, 0xff, + 0xff, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0x5, + 0xff, 0xff, 0xff, 0xf5, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x5f, 0xff, 0xff, 0x50, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x5, 0xff, 0xf5, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5e, + 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+F00D "" */ + 0x6, 0x70, 0x0, 0x0, 0x0, 0x18, 0x40, 0x8f, + 0xfb, 0x0, 0x0, 0x1, 0xdf, 0xf4, 0xff, 0xff, + 0xb0, 0x0, 0x1d, 0xff, 0xfb, 0x7f, 0xff, 0xfb, + 0x1, 0xdf, 0xff, 0xf4, 0x8, 0xff, 0xff, 0xbd, + 0xff, 0xff, 0x40, 0x0, 0x8f, 0xff, 0xff, 0xff, + 0xf4, 0x0, 0x0, 0x8, 0xff, 0xff, 0xff, 0x40, + 0x0, 0x0, 0x1, 0xef, 0xff, 0xfc, 0x0, 0x0, + 0x0, 0x1d, 0xff, 0xff, 0xff, 0xb0, 0x0, 0x1, + 0xdf, 0xff, 0xff, 0xff, 0xfb, 0x0, 0x1d, 0xff, + 0xff, 0x48, 0xff, 0xff, 0xb0, 0xcf, 0xff, 0xf4, + 0x0, 0x8f, 0xff, 0xf9, 0xdf, 0xff, 0x40, 0x0, + 0x8, 0xff, 0xf9, 0x2e, 0xf4, 0x0, 0x0, 0x0, + 0x8f, 0xc0, 0x0, 0x10, 0x0, 0x0, 0x0, 0x1, + 0x0, + + /* U+F011 "" */ + 0x0, 0x0, 0x0, 0x0, 0x26, 0x50, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xf3, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x64, 0x0, + 0xdf, 0xf4, 0x0, 0x72, 0x0, 0x0, 0x0, 0xb, + 0xfe, 0x10, 0xdf, 0xf4, 0x9, 0xfe, 0x30, 0x0, + 0x0, 0xaf, 0xff, 0x50, 0xdf, 0xf4, 0xe, 0xff, + 0xe1, 0x0, 0x5, 0xff, 0xfb, 0x0, 0xdf, 0xf4, + 0x5, 0xff, 0xfb, 0x0, 0xd, 0xff, 0xb0, 0x0, + 0xdf, 0xf4, 0x0, 0x5f, 0xff, 0x40, 0x4f, 0xff, + 0x20, 0x0, 0xdf, 0xf4, 0x0, 0xb, 0xff, 0xa0, + 0x8f, 0xfb, 0x0, 0x0, 0xdf, 0xf4, 0x0, 0x4, + 0xff, 0xf0, 0xbf, 0xf7, 0x0, 0x0, 0xdf, 0xf4, + 0x0, 0x1, 0xff, 0xf1, 0xbf, 0xf6, 0x0, 0x0, + 0xdf, 0xf4, 0x0, 0x0, 0xff, 0xf2, 0xbf, 0xf7, + 0x0, 0x0, 0x8d, 0xc1, 0x0, 0x0, 0xff, 0xf1, + 0x8f, 0xfa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, + 0xff, 0xf0, 0x4f, 0xff, 0x10, 0x0, 0x0, 0x0, + 0x0, 0xa, 0xff, 0xb0, 0xe, 0xff, 0xb0, 0x0, + 0x0, 0x0, 0x0, 0x4f, 0xff, 0x50, 0x6, 0xff, + 0xf9, 0x0, 0x0, 0x0, 0x4, 0xff, 0xfc, 0x0, + 0x0, 0xaf, 0xff, 0xd5, 0x10, 0x3, 0x9f, 0xff, + 0xf2, 0x0, 0x0, 0xb, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x40, 0x0, 0x0, 0x0, 0x8f, 0xff, + 0xff, 0xff, 0xff, 0xd2, 0x0, 0x0, 0x0, 0x0, + 0x2, 0x9e, 0xff, 0xff, 0xb6, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x12, 0x10, 0x0, 0x0, + 0x0, 0x0, + + /* U+F013 "" */ + 0x0, 0x0, 0x0, 0x0, 0x2, 0x20, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0xff, 0xff, + 0x60, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, + 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1, + 0x0, 0x2b, 0xff, 0xff, 0xb2, 0x0, 0x10, 0x0, + 0x0, 0x8f, 0x87, 0xff, 0xff, 0xff, 0xff, 0x79, + 0xf8, 0x0, 0x4, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x40, 0xc, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x2f, 0xff, + 0xff, 0xff, 0xc7, 0x7c, 0xff, 0xff, 0xff, 0xf2, + 0x7, 0xff, 0xff, 0xfa, 0x0, 0x0, 0xaf, 0xff, + 0xff, 0x70, 0x0, 0x6f, 0xff, 0xf1, 0x0, 0x0, + 0x1f, 0xff, 0xf6, 0x0, 0x0, 0x7f, 0xff, 0xe0, + 0x0, 0x0, 0xe, 0xff, 0xf7, 0x0, 0x0, 0x6f, + 0xff, 0xf1, 0x0, 0x0, 0x1f, 0xff, 0xf6, 0x0, + 0x7, 0xff, 0xff, 0xfa, 0x0, 0x0, 0xaf, 0xff, + 0xff, 0x70, 0x2f, 0xff, 0xff, 0xff, 0xc7, 0x7c, + 0xff, 0xff, 0xff, 0xf2, 0xc, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x4, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x40, + 0x0, 0x8f, 0x97, 0xff, 0xff, 0xff, 0xff, 0x78, + 0xf8, 0x0, 0x0, 0x1, 0x0, 0x1b, 0xff, 0xff, + 0xb1, 0x0, 0x10, 0x0, 0x0, 0x0, 0x0, 0x8, + 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x6, 0xff, 0xff, 0x60, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2, 0x20, 0x0, 0x0, + 0x0, 0x0, + + /* U+F015 "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x46, 0x10, 0x0, + 0x67, 0x60, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x9f, 0xfe, 0x20, 0xf, 0xff, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1, 0xbf, 0xff, 0xff, 0x51, 0xff, + 0xf1, 0x0, 0x0, 0x0, 0x0, 0x2, 0xdf, 0xfc, + 0x8f, 0xff, 0x8f, 0xff, 0x10, 0x0, 0x0, 0x0, + 0x4, 0xff, 0xfa, 0x0, 0x4e, 0xff, 0xff, 0xf1, + 0x0, 0x0, 0x0, 0x7, 0xff, 0xf7, 0x8, 0xd3, + 0x2d, 0xff, 0xff, 0x10, 0x0, 0x0, 0xa, 0xff, + 0xf5, 0x1b, 0xff, 0xf5, 0xb, 0xff, 0xf4, 0x0, + 0x0, 0x1c, 0xff, 0xe2, 0x2d, 0xff, 0xff, 0xf7, + 0x8, 0xff, 0xf6, 0x0, 0x3e, 0xff, 0xc1, 0x4e, + 0xff, 0xff, 0xff, 0xfa, 0x5, 0xff, 0xf9, 0xe, + 0xff, 0x90, 0x6f, 0xff, 0xff, 0xff, 0xff, 0xfc, + 0x13, 0xef, 0xf6, 0x4f, 0x70, 0x9f, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfe, 0x31, 0xcc, 0x0, 0x0, + 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, + 0x0, 0x0, 0x0, 0x4, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x4f, + 0xff, 0xff, 0x80, 0x1, 0xef, 0xff, 0xfc, 0x0, + 0x0, 0x0, 0x4, 0xff, 0xff, 0xf6, 0x0, 0xe, + 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x4f, 0xff, + 0xff, 0x60, 0x0, 0xef, 0xff, 0xfc, 0x0, 0x0, + 0x0, 0x4, 0xff, 0xff, 0xf6, 0x0, 0xe, 0xff, + 0xff, 0xc0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xff, + 0x40, 0x0, 0xcf, 0xff, 0xfa, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, + + /* U+F019 "" */ + 0x0, 0x0, 0x0, 0x0, 0x56, 0x65, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, + 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, + 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x8, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x8, 0xff, 0xff, 0x80, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0xff, + 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, + 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x8, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, + 0x0, 0x7, 0xee, 0xef, 0xff, 0xff, 0xfe, 0xee, + 0x70, 0x0, 0x0, 0x5, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x50, 0x0, 0x0, 0x0, 0x6f, 0xff, + 0xff, 0xff, 0xff, 0xf5, 0x0, 0x0, 0x0, 0x0, + 0x5, 0xff, 0xff, 0xff, 0xff, 0x50, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x5f, 0xff, 0xff, 0xf5, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x5, 0xff, 0xff, + 0x50, 0x0, 0x0, 0x0, 0x7a, 0xaa, 0xaa, 0x91, + 0x4f, 0xf4, 0x19, 0xaa, 0xaa, 0xa7, 0xff, 0xff, + 0xff, 0xfd, 0x23, 0x32, 0xdf, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf9, 0x9f, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfb, 0xf, 0x48, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xef, 0xef, 0xff, + 0x14, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, + 0x44, 0x41, + + /* U+F01C "" */ + 0x0, 0x0, 0x3d, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf9, 0x0, 0x0, 0x0, 0x0, 0x1e, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, + 0xa, 0xff, 0x98, 0x88, 0x88, 0x88, 0x88, 0xdf, + 0xf3, 0x0, 0x0, 0x5, 0xff, 0xa0, 0x0, 0x0, + 0x0, 0x0, 0x2, 0xff, 0xd0, 0x0, 0x1, 0xef, + 0xe1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, + 0x80, 0x0, 0xaf, 0xf5, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xd, 0xff, 0x20, 0x5f, 0xfa, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, + 0xd, 0xff, 0x98, 0x88, 0x70, 0x0, 0x0, 0x3, + 0x88, 0x88, 0xdf, 0xf5, 0xff, 0xff, 0xff, 0xff, + 0x50, 0x0, 0x0, 0xcf, 0xff, 0xff, 0xff, 0x7f, + 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x5f, 0xff, + 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8f, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x8e, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf6, 0x5e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfb, 0x0, + + /* U+F021 "" */ + 0x0, 0x0, 0x0, 0x0, 0x1, 0x10, 0x0, 0x0, + 0x7, 0xba, 0x0, 0x0, 0x1, 0x7c, 0xff, 0xff, + 0xb5, 0x0, 0xb, 0xff, 0x0, 0x0, 0x7f, 0xff, + 0xff, 0xff, 0xff, 0xe5, 0xb, 0xff, 0x0, 0xa, + 0xff, 0xff, 0xdb, 0xbe, 0xff, 0xff, 0x9a, 0xff, + 0x0, 0xaf, 0xff, 0xa2, 0x0, 0x0, 0x3b, 0xff, + 0xff, 0xff, 0x5, 0xff, 0xf6, 0x0, 0x0, 0x0, + 0x0, 0x5f, 0xff, 0xff, 0xd, 0xff, 0x60, 0x0, + 0x0, 0x7, 0xba, 0x9c, 0xff, 0xff, 0x3f, 0xfc, + 0x0, 0x0, 0x0, 0xc, 0xff, 0xff, 0xff, 0xff, + 0x7f, 0xf6, 0x0, 0x0, 0x0, 0xb, 0xff, 0xff, + 0xff, 0xff, 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, 0x0, + 0xff, 0xff, 0xff, 0xff, 0xb0, 0x0, 0x0, 0x0, + 0x6f, 0xf6, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, + 0x0, 0x0, 0xcf, 0xf3, 0xff, 0xff, 0xc9, 0xaa, + 0x70, 0x0, 0x0, 0x7, 0xff, 0xd0, 0xff, 0xff, + 0xf5, 0x0, 0x0, 0x0, 0x0, 0x6f, 0xff, 0x50, + 0xff, 0xff, 0xff, 0xb3, 0x0, 0x0, 0x3b, 0xff, + 0xf9, 0x0, 0xff, 0xa9, 0xff, 0xff, 0xeb, 0xbd, + 0xff, 0xff, 0xa0, 0x0, 0xff, 0xb0, 0x5d, 0xff, + 0xff, 0xff, 0xff, 0xf7, 0x0, 0x0, 0xff, 0xb0, + 0x0, 0x5b, 0xff, 0xff, 0xc8, 0x10, 0x0, 0x0, + 0xab, 0x70, 0x0, 0x0, 0x1, 0x10, 0x0, 0x0, + 0x0, 0x0, + + /* U+F026 "" */ + 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, + 0x2, 0xee, 0x0, 0x0, 0x0, 0x2e, 0xff, 0x0, + 0x0, 0x2, 0xef, 0xff, 0x47, 0x77, 0x7e, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, + 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x9, 0xff, + 0xff, 0x0, 0x0, 0x0, 0x9f, 0xff, 0x0, 0x0, + 0x0, 0x9, 0xff, 0x0, 0x0, 0x0, 0x0, 0x89, + + /* U+F027 "" */ + 0x0, 0x0, 0x0, 0x0, 0x89, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x9f, 0xf0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x9f, 0xff, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x9f, 0xff, 0xf0, 0x0, 0x0, 0xdf, 0xff, + 0xff, 0xff, 0xff, 0x0, 0x73, 0xf, 0xff, 0xff, + 0xff, 0xff, 0xf0, 0x1f, 0xf4, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x0, 0x5f, 0xcf, 0xff, 0xff, 0xff, + 0xff, 0xf0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x0, 0x4f, 0xdf, 0xff, 0xff, 0xff, 0xff, + 0xf0, 0x1f, 0xf5, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x0, 0x85, 0x4, 0x77, 0x77, 0xef, 0xff, 0xf0, + 0x0, 0x0, 0x0, 0x0, 0x2, 0xef, 0xff, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2, 0xef, 0xf0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2, 0xee, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1, 0x10, 0x0, 0x0, + + /* U+F028 "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x7b, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x10, 0x0, 0x0, 0x9, 0xfe, 0x30, 0x0, 0x0, + 0x0, 0x0, 0x2, 0xee, 0x0, 0x0, 0x0, 0x9, + 0xff, 0x20, 0x0, 0x0, 0x0, 0x2, 0xef, 0xf0, + 0x0, 0x8, 0x70, 0x8, 0xfd, 0x0, 0x0, 0x0, + 0x2, 0xef, 0xff, 0x0, 0x0, 0xef, 0xb0, 0xc, + 0xf6, 0x4, 0x77, 0x77, 0xef, 0xff, 0xf0, 0x0, + 0x2, 0xdf, 0x80, 0x3f, 0xd0, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x0, 0x74, 0x1, 0xff, 0x10, 0xcf, + 0x3f, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x1f, 0xf4, + 0x8, 0xf7, 0x7, 0xf6, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x0, 0x5f, 0xc0, 0x3f, 0xa0, 0x4f, 0x9f, + 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0xff, 0x2, + 0xfb, 0x4, 0xf9, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x0, 0x5f, 0xc0, 0x3f, 0xa0, 0x5f, 0x9f, 0xff, + 0xff, 0xff, 0xff, 0xf0, 0x1f, 0xf4, 0x8, 0xf7, + 0x7, 0xf6, 0xdf, 0xff, 0xff, 0xff, 0xff, 0x0, + 0x74, 0x2, 0xff, 0x10, 0xcf, 0x30, 0x0, 0x0, + 0x9f, 0xff, 0xf0, 0x0, 0x2, 0xef, 0x80, 0x3f, + 0xd0, 0x0, 0x0, 0x0, 0x9f, 0xff, 0x0, 0x0, + 0xef, 0xb0, 0xc, 0xf6, 0x0, 0x0, 0x0, 0x0, + 0x9f, 0xf0, 0x0, 0x8, 0x70, 0x8, 0xfd, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x89, 0x0, 0x0, 0x0, + 0x8, 0xff, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x9, 0xff, 0x30, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7b, + 0x20, 0x0, 0x0, + + /* U+F03E "" */ + 0x5e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xe5, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfe, 0xff, 0xf6, 0x38, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x60, + 0x0, 0xaf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x30, 0x0, 0x7f, 0xff, 0xff, 0xfb, 0xef, + 0xff, 0xff, 0xff, 0x80, 0x0, 0xcf, 0xff, 0xff, + 0x90, 0x3e, 0xff, 0xff, 0xff, 0xfa, 0x7c, 0xff, + 0xff, 0xf9, 0x0, 0x3, 0xef, 0xff, 0xff, 0xff, + 0xfc, 0xff, 0xff, 0x90, 0x0, 0x0, 0x3e, 0xff, + 0xff, 0xff, 0x90, 0x6f, 0xf9, 0x0, 0x0, 0x0, + 0x8, 0xff, 0xff, 0xf9, 0x0, 0x6, 0x90, 0x0, + 0x0, 0x0, 0x8, 0xff, 0xff, 0xb0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0xff, 0x80, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, + 0xff, 0xc8, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, + 0x8c, 0xff, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfe, 0x5e, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xe5, + + /* U+F043 "" */ + 0x0, 0x0, 0x0, 0x42, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x3, 0xff, 0x10, 0x0, 0x0, 0x0, 0x0, + 0xa, 0xff, 0x60, 0x0, 0x0, 0x0, 0x0, 0x1f, + 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xff, + 0xf4, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfc, + 0x0, 0x0, 0x0, 0xa, 0xff, 0xff, 0xff, 0x60, + 0x0, 0x0, 0x4f, 0xff, 0xff, 0xff, 0xf2, 0x0, + 0x1, 0xef, 0xff, 0xff, 0xff, 0xfc, 0x0, 0xb, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x70, 0x3f, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf1, 0xaf, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf6, 0xef, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfa, 0xff, 0xa6, 0xff, 0xff, 0xff, + 0xff, 0xfb, 0xef, 0x91, 0xff, 0xff, 0xff, 0xff, + 0xfa, 0xbf, 0xe0, 0x9f, 0xff, 0xff, 0xff, 0xf7, + 0x5f, 0xf9, 0x7, 0xcf, 0xff, 0xff, 0xf2, 0xc, + 0xff, 0xb3, 0x9, 0xff, 0xff, 0x80, 0x1, 0xdf, + 0xff, 0xff, 0xff, 0xfa, 0x0, 0x0, 0x9, 0xff, + 0xff, 0xff, 0x70, 0x0, 0x0, 0x0, 0x15, 0x77, + 0x40, 0x0, 0x0, + + /* U+F048 "" */ + 0x47, 0x60, 0x0, 0x0, 0x0, 0x16, 0x1b, 0xff, + 0x10, 0x0, 0x0, 0x2d, 0xfb, 0xbf, 0xf1, 0x0, + 0x0, 0x2e, 0xff, 0xcb, 0xff, 0x10, 0x0, 0x3e, + 0xff, 0xfc, 0xbf, 0xf1, 0x0, 0x4f, 0xff, 0xff, + 0xcb, 0xff, 0x10, 0x5f, 0xff, 0xff, 0xfc, 0xbf, + 0xf1, 0x6f, 0xff, 0xff, 0xff, 0xcb, 0xff, 0x9f, + 0xff, 0xff, 0xff, 0xfc, 0xbf, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xcb, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfc, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcb, + 0xff, 0x4e, 0xff, 0xff, 0xff, 0xfc, 0xbf, 0xf1, + 0x2d, 0xff, 0xff, 0xff, 0xcb, 0xff, 0x10, 0x1c, + 0xff, 0xff, 0xfc, 0xbf, 0xf1, 0x0, 0xc, 0xff, + 0xff, 0xcb, 0xff, 0x10, 0x0, 0xb, 0xff, 0xfc, + 0xbf, 0xf1, 0x0, 0x0, 0xa, 0xff, 0xca, 0xff, + 0x10, 0x0, 0x0, 0x8, 0xf7, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, + + /* U+F04B "" */ + 0x6, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xbf, 0xfd, 0x30, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xff, 0xff, 0xfa, 0x10, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xf7, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, + 0xd4, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xb2, 0x0, 0x0, 0x0, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x50, 0x0, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, + 0x20, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf2, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf6, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf2, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfb, 0x20, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfd, 0x50, 0x0, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xa2, 0x0, 0x0, 0x0, + 0xff, 0xff, 0xff, 0xff, 0xd4, 0x0, 0x0, 0x0, + 0x0, 0xff, 0xff, 0xff, 0xf7, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xff, 0xff, 0xfa, 0x10, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xbf, 0xfd, 0x30, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x6, 0x50, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+F04C "" */ + 0x6, 0x77, 0x77, 0x30, 0x0, 0x6, 0x77, 0x77, + 0x30, 0xbf, 0xff, 0xff, 0xf3, 0x0, 0xbf, 0xff, + 0xff, 0xf3, 0xff, 0xff, 0xff, 0xf7, 0x0, 0xff, + 0xff, 0xff, 0xf7, 0xff, 0xff, 0xff, 0xf8, 0x0, + 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xf8, + 0x0, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, + 0xf8, 0x0, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, + 0xff, 0xf8, 0x0, 0xff, 0xff, 0xff, 0xf8, 0xff, + 0xff, 0xff, 0xf8, 0x0, 0xff, 0xff, 0xff, 0xf8, + 0xff, 0xff, 0xff, 0xf8, 0x0, 0xff, 0xff, 0xff, + 0xf8, 0xff, 0xff, 0xff, 0xf8, 0x0, 0xff, 0xff, + 0xff, 0xf8, 0xff, 0xff, 0xff, 0xf8, 0x0, 0xff, + 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xf8, 0x0, + 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xf8, + 0x0, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, + 0xf8, 0x0, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, + 0xff, 0xf8, 0x0, 0xff, 0xff, 0xff, 0xf8, 0xff, + 0xff, 0xff, 0xf8, 0x0, 0xff, 0xff, 0xff, 0xf8, + 0xef, 0xff, 0xff, 0xf6, 0x0, 0xef, 0xff, 0xff, + 0xf6, 0x6f, 0xff, 0xff, 0xc1, 0x0, 0x6f, 0xff, + 0xff, 0xc1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, + + /* U+F04D "" */ + 0x5, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, + 0x30, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf7, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, + 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf6, 0x6f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, + + /* U+F051 "" */ + 0x5, 0x20, 0x0, 0x0, 0x0, 0x57, 0x66, 0xff, + 0x40, 0x0, 0x0, 0xc, 0xff, 0x8f, 0xff, 0x60, + 0x0, 0x0, 0xdf, 0xf8, 0xff, 0xff, 0x70, 0x0, + 0xd, 0xff, 0x8f, 0xff, 0xff, 0x80, 0x0, 0xdf, + 0xf8, 0xff, 0xff, 0xff, 0x90, 0xd, 0xff, 0x8f, + 0xff, 0xff, 0xff, 0xb0, 0xdf, 0xf8, 0xff, 0xff, + 0xff, 0xff, 0xcd, 0xff, 0x8f, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, + 0xff, 0xff, 0xff, 0xff, 0x5d, 0xff, 0x8f, 0xff, + 0xff, 0xff, 0x40, 0xdf, 0xf8, 0xff, 0xff, 0xfe, + 0x30, 0xd, 0xff, 0x8f, 0xff, 0xfe, 0x20, 0x0, + 0xdf, 0xf8, 0xff, 0xfd, 0x20, 0x0, 0xd, 0xff, + 0x7f, 0xfd, 0x10, 0x0, 0x0, 0xdf, 0xf3, 0xfb, + 0x10, 0x0, 0x0, 0xc, 0xff, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, + + /* U+F052 "" */ + 0x0, 0x0, 0x0, 0x0, 0x2, 0x10, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0xff, 0x40, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0xff, + 0xff, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, + 0xff, 0xff, 0xfe, 0x20, 0x0, 0x0, 0x0, 0x0, + 0x7, 0xff, 0xff, 0xff, 0xfe, 0x10, 0x0, 0x0, + 0x0, 0x6, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x10, + 0x0, 0x0, 0x5, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfc, 0x0, 0x0, 0x4, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfb, 0x0, 0x3, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfa, 0x0, 0xdf, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, 0xe, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x60, 0x5f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x9f, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xe2, 0xf, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x70, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, + 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x70, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf3, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+F053 "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x5f, 0x80, 0x0, 0x0, 0x0, 0x5f, 0xff, + 0x40, 0x0, 0x0, 0x5f, 0xff, 0xe2, 0x0, 0x0, + 0x5f, 0xff, 0xe2, 0x0, 0x0, 0x5f, 0xff, 0xe3, + 0x0, 0x0, 0x5f, 0xff, 0xe3, 0x0, 0x0, 0x5f, + 0xff, 0xe3, 0x0, 0x0, 0x5f, 0xff, 0xe3, 0x0, + 0x0, 0xd, 0xff, 0xf5, 0x0, 0x0, 0x0, 0x4f, + 0xff, 0xe3, 0x0, 0x0, 0x0, 0x4f, 0xff, 0xe3, + 0x0, 0x0, 0x0, 0x4f, 0xff, 0xe3, 0x0, 0x0, + 0x0, 0x5f, 0xff, 0xe3, 0x0, 0x0, 0x0, 0x5f, + 0xff, 0xe3, 0x0, 0x0, 0x0, 0x5f, 0xff, 0xe2, + 0x0, 0x0, 0x0, 0x5f, 0xff, 0x40, 0x0, 0x0, + 0x0, 0x5f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, + + /* U+F054 "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xdb, 0x0, + 0x0, 0x0, 0x0, 0xcf, 0xfc, 0x0, 0x0, 0x0, + 0x9, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x9, 0xff, + 0xfc, 0x0, 0x0, 0x0, 0x9, 0xff, 0xfc, 0x0, + 0x0, 0x0, 0x9, 0xff, 0xfc, 0x0, 0x0, 0x0, + 0x9, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x9, 0xff, + 0xfc, 0x0, 0x0, 0x0, 0xd, 0xff, 0xf6, 0x0, + 0x0, 0x9, 0xff, 0xfc, 0x0, 0x0, 0x9, 0xff, + 0xfc, 0x0, 0x0, 0x9, 0xff, 0xfc, 0x0, 0x0, + 0x9, 0xff, 0xfc, 0x0, 0x0, 0x9, 0xff, 0xfc, + 0x0, 0x0, 0x9, 0xff, 0xfc, 0x0, 0x0, 0x0, + 0xcf, 0xfc, 0x0, 0x0, 0x0, 0x2, 0xdb, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, + + /* U+F067 "" */ + 0x0, 0x0, 0x0, 0x2, 0x55, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xa0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, + 0xa0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, + 0xff, 0xa0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2f, 0xff, 0xa0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x2f, 0xff, 0xa0, 0x0, 0x0, 0x0, 0x37, + 0x77, 0x77, 0x8f, 0xff, 0xc7, 0x77, 0x77, 0x60, + 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf8, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf5, 0x14, 0x44, 0x44, 0x5f, 0xff, + 0xb4, 0x44, 0x44, 0x30, 0x0, 0x0, 0x0, 0x2f, + 0xff, 0xa0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2f, 0xff, 0xa0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x2f, 0xff, 0xa0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2f, 0xff, 0xa0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1f, 0xff, 0x90, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xd, 0xff, 0x60, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x21, 0x0, + 0x0, 0x0, 0x0, + + /* U+F068 "" */ + 0x49, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf7, 0xcf, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf4, 0x2, 0x22, 0x22, 0x22, + 0x22, 0x22, 0x22, 0x22, 0x10, + + /* U+F06E "" */ + 0x0, 0x0, 0x0, 0x6, 0xad, 0xff, 0xec, 0x83, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xff, + 0xff, 0xef, 0xff, 0xfc, 0x40, 0x0, 0x0, 0x0, + 0x3, 0xef, 0xff, 0x92, 0x0, 0x5, 0xdf, 0xff, + 0x90, 0x0, 0x0, 0x4, 0xff, 0xff, 0x50, 0x2, + 0x52, 0x1, 0xcf, 0xff, 0xb0, 0x0, 0x4, 0xff, + 0xff, 0x80, 0x0, 0x7f, 0xf9, 0x1, 0xef, 0xff, + 0xb0, 0x1, 0xef, 0xff, 0xf0, 0x0, 0x8, 0xff, + 0xf7, 0x8, 0xff, 0xff, 0x80, 0xaf, 0xff, 0xfb, + 0x2, 0x25, 0xff, 0xff, 0xe0, 0x3f, 0xff, 0xff, + 0x2f, 0xff, 0xff, 0xa0, 0x7f, 0xff, 0xff, 0xff, + 0x2, 0xff, 0xff, 0xf7, 0x9f, 0xff, 0xfb, 0x5, + 0xff, 0xff, 0xff, 0xc0, 0x3f, 0xff, 0xff, 0x21, + 0xef, 0xff, 0xf0, 0xc, 0xff, 0xff, 0xf5, 0x7, + 0xff, 0xff, 0x80, 0x3, 0xff, 0xff, 0x80, 0x1a, + 0xff, 0xe5, 0x1, 0xef, 0xff, 0xb0, 0x0, 0x4, + 0xff, 0xff, 0x50, 0x0, 0x10, 0x1, 0xcf, 0xff, + 0xb0, 0x0, 0x0, 0x3, 0xdf, 0xff, 0x92, 0x0, + 0x5, 0xdf, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, + 0x7f, 0xff, 0xff, 0xef, 0xff, 0xfc, 0x40, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x5, 0xad, 0xef, 0xec, + 0x83, 0x0, 0x0, 0x0, 0x0, + + /* U+F070 "" */ + 0x0, 0x60, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, 0xfc, 0x10, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xc, 0xff, 0xe4, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x9f, 0xff, 0x70, 0x4, 0x8c, 0xef, 0xed, 0x94, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x5, 0xff, 0xfb, + 0xef, 0xff, 0xfe, 0xff, 0xff, 0xe6, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x2d, 0xff, 0xff, 0xc4, 0x0, + 0x4, 0xcf, 0xff, 0xb1, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xbf, 0xff, 0x60, 0x3, 0x10, 0x9, 0xff, + 0xfe, 0x20, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, + 0xf9, 0x4f, 0xfa, 0x0, 0xcf, 0xff, 0xe1, 0x0, + 0x0, 0xb, 0xb0, 0x0, 0x4e, 0xff, 0xef, 0xff, + 0xa0, 0x4f, 0xff, 0xfb, 0x0, 0x0, 0x6f, 0xfd, + 0x30, 0x1, 0xcf, 0xff, 0xff, 0xf1, 0xf, 0xff, + 0xff, 0x50, 0x0, 0xbf, 0xff, 0xf6, 0x0, 0x8, + 0xff, 0xff, 0xf3, 0xe, 0xff, 0xff, 0xa0, 0x0, + 0x6f, 0xff, 0xff, 0x0, 0x0, 0x5f, 0xff, 0xf2, + 0xf, 0xff, 0xff, 0x50, 0x0, 0xc, 0xff, 0xff, + 0x40, 0x0, 0x2, 0xdf, 0xfe, 0x8f, 0xff, 0xfa, + 0x0, 0x0, 0x1, 0xef, 0xff, 0xc0, 0x0, 0x0, + 0xa, 0xff, 0xff, 0xff, 0xd1, 0x0, 0x0, 0x0, + 0x2e, 0xff, 0xf9, 0x0, 0x0, 0x0, 0x6f, 0xff, + 0xfd, 0x10, 0x0, 0x0, 0x0, 0x1, 0xcf, 0xff, + 0xc4, 0x0, 0x0, 0x3, 0xef, 0xfd, 0x20, 0x0, + 0x0, 0x0, 0x0, 0x6, 0xef, 0xff, 0xfe, 0xe3, + 0x0, 0x1b, 0xff, 0xf5, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x5, 0x9d, 0xef, 0xec, 0x20, 0x0, 0x8f, + 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4, 0xef, 0xfb, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2c, 0xfa, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x60, + + /* U+F071 "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xa3, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x8f, 0xfe, 0x10, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2, 0xff, 0xff, 0x90, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xa, 0xff, 0xff, 0xf3, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4f, 0xff, 0xff, 0xfb, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xdf, 0xff, 0xff, 0xff, 0x50, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x6, 0xff, 0xff, 0xff, 0xff, + 0xd0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, + 0xff, 0xa2, 0x24, 0xff, 0xf7, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x8f, 0xff, 0x90, 0x1, 0xff, + 0xff, 0x10, 0x0, 0x0, 0x0, 0x0, 0x2, 0xff, + 0xff, 0xa0, 0x2, 0xff, 0xff, 0x90, 0x0, 0x0, + 0x0, 0x0, 0xa, 0xff, 0xff, 0xb0, 0x3, 0xff, + 0xff, 0xf2, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, + 0xff, 0xc0, 0x4, 0xff, 0xff, 0xfb, 0x0, 0x0, + 0x0, 0x0, 0xcf, 0xff, 0xff, 0xd0, 0x5, 0xff, + 0xff, 0xff, 0x40, 0x0, 0x0, 0x6, 0xff, 0xff, + 0xff, 0xf9, 0x9c, 0xff, 0xff, 0xff, 0xd0, 0x0, + 0x0, 0xe, 0xff, 0xff, 0xff, 0xf5, 0x2b, 0xff, + 0xff, 0xff, 0xf7, 0x0, 0x0, 0x8f, 0xff, 0xff, + 0xff, 0x90, 0x1, 0xff, 0xff, 0xff, 0xfe, 0x10, + 0x1, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0xff, + 0xff, 0xff, 0xff, 0x90, 0xa, 0xff, 0xff, 0xff, + 0xff, 0xf4, 0x1a, 0xff, 0xff, 0xff, 0xff, 0xf2, + 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf7, 0xb, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, + 0x1, 0x68, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, + 0x88, 0x88, 0x88, 0x40, + + /* U+F074 "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, + 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xf, 0xf5, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xf, 0xff, 0x50, 0xef, 0xff, + 0xf6, 0x0, 0x0, 0x1, 0xcf, 0xff, 0xff, 0xf5, + 0xff, 0xff, 0xff, 0x50, 0x0, 0xc, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, 0x0, 0xbf, + 0xff, 0xff, 0xff, 0xf7, 0x22, 0x23, 0xdf, 0xf8, + 0x9, 0xff, 0xf7, 0x2f, 0xff, 0x80, 0x0, 0x0, + 0x2e, 0xb0, 0x7f, 0xff, 0x90, 0xf, 0xf8, 0x0, + 0x0, 0x0, 0x3, 0x6, 0xff, 0xfa, 0x0, 0x7, + 0x60, 0x0, 0x0, 0x0, 0x0, 0x4f, 0xff, 0xb0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, + 0xfd, 0x3, 0x0, 0x7, 0x60, 0x0, 0x0, 0x0, + 0x2e, 0xff, 0xe1, 0x3f, 0x90, 0xf, 0xf8, 0x0, + 0x22, 0x23, 0xdf, 0xfe, 0x22, 0xef, 0xf7, 0x2f, + 0xff, 0x80, 0xff, 0xff, 0xff, 0xf3, 0x0, 0xcf, + 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0x50, + 0x0, 0xc, 0xff, 0xff, 0xff, 0xfe, 0xef, 0xff, + 0xf6, 0x0, 0x0, 0x1, 0xcf, 0xff, 0xff, 0xf4, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, + 0xff, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xf, 0xf5, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x4, 0x30, 0x0, + + /* U+F077 "" */ + 0x0, 0x0, 0x0, 0x0, 0x94, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0x50, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, 0xf5, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0xff, + 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, + 0xae, 0xff, 0xf5, 0x0, 0x0, 0x0, 0xc, 0xff, + 0xf9, 0x2, 0xef, 0xff, 0x50, 0x0, 0x0, 0xcf, + 0xff, 0x90, 0x0, 0x2e, 0xff, 0xf5, 0x0, 0xc, + 0xff, 0xf9, 0x0, 0x0, 0x2, 0xef, 0xff, 0x50, + 0xaf, 0xff, 0x90, 0x0, 0x0, 0x0, 0x2e, 0xff, + 0xf2, 0x7f, 0xf9, 0x0, 0x0, 0x0, 0x0, 0x2, + 0xef, 0xe1, 0x6, 0x70, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x29, 0x20, + + /* U+F078 "" */ + 0x6, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x29, + 0x20, 0x7f, 0xf9, 0x0, 0x0, 0x0, 0x0, 0x3, + 0xef, 0xe1, 0x9f, 0xff, 0x90, 0x0, 0x0, 0x0, + 0x3e, 0xff, 0xf2, 0xb, 0xff, 0xf9, 0x0, 0x0, + 0x3, 0xef, 0xff, 0x50, 0x0, 0xbf, 0xff, 0x90, + 0x0, 0x3e, 0xff, 0xf5, 0x0, 0x0, 0xb, 0xff, + 0xf9, 0x3, 0xef, 0xff, 0x50, 0x0, 0x0, 0x0, + 0xbf, 0xff, 0xae, 0xff, 0xf5, 0x0, 0x0, 0x0, + 0x0, 0xb, 0xff, 0xff, 0xff, 0x50, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xbf, 0xff, 0xf5, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xb, 0xff, 0x50, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x94, 0x0, + 0x0, 0x0, 0x0, + + /* U+F079 "" */ + 0x0, 0x0, 0x9c, 0x10, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0xff, + 0xd1, 0x0, 0x58, 0x88, 0x88, 0x88, 0x88, 0x81, + 0x0, 0x0, 0x0, 0xaf, 0xff, 0xfd, 0x20, 0xef, + 0xff, 0xff, 0xff, 0xff, 0xf6, 0x0, 0x0, 0xa, + 0xff, 0xff, 0xff, 0xe2, 0x4e, 0xff, 0xff, 0xff, + 0xff, 0xf6, 0x0, 0x0, 0x8f, 0xfc, 0xff, 0xcf, + 0xfd, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf6, 0x0, + 0x0, 0x7f, 0xc2, 0xff, 0x67, 0xfc, 0x0, 0x0, + 0x0, 0x0, 0x1f, 0xf6, 0x0, 0x0, 0x3, 0x1, + 0xff, 0x60, 0x30, 0x0, 0x0, 0x0, 0x0, 0x1f, + 0xf6, 0x0, 0x0, 0x0, 0x1, 0xff, 0x60, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf6, 0x0, 0x0, + 0x0, 0x1, 0xff, 0x60, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1f, 0xf6, 0x0, 0x0, 0x0, 0x1, 0xff, + 0x60, 0x0, 0x0, 0x0, 0x3, 0xd7, 0x1f, 0xf6, + 0x3d, 0x70, 0x0, 0x1, 0xff, 0x60, 0x0, 0x0, + 0x0, 0xa, 0xff, 0x7f, 0xf9, 0xef, 0xf0, 0x0, + 0x1, 0xff, 0xb8, 0x88, 0x88, 0x88, 0x32, 0xef, + 0xff, 0xff, 0xff, 0x60, 0x0, 0x1, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf2, 0x2e, 0xff, 0xff, 0xf6, + 0x0, 0x0, 0x0, 0xdf, 0xff, 0xff, 0xff, 0xff, + 0xe2, 0x2, 0xef, 0xff, 0x60, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2e, + 0xf6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1, 0x30, 0x0, 0x0, + + /* U+F07B "" */ + 0x5e, 0xff, 0xff, 0xff, 0x90, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xef, 0xff, 0xff, 0xff, 0xf9, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xb8, 0x88, 0x88, 0x88, 0x60, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfe, 0x5e, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xe5, + + /* U+F093 "" */ + 0x0, 0x0, 0x0, 0x0, 0x3, 0x10, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6f, 0xd1, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, + 0xff, 0xfd, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x6f, 0xff, 0xff, 0xd1, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x6, 0xff, 0xff, 0xff, 0xfd, 0x10, + 0x0, 0x0, 0x0, 0x0, 0x6f, 0xff, 0xff, 0xff, + 0xff, 0xd1, 0x0, 0x0, 0x0, 0x6, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfd, 0x10, 0x0, 0x0, 0xd, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x60, 0x0, + 0x0, 0x0, 0x11, 0x1b, 0xff, 0xff, 0x51, 0x11, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, 0xff, 0xff, + 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, + 0xff, 0xff, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xb, 0xff, 0xff, 0x40, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xb, 0xff, 0xff, 0x40, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, 0xff, 0xff, + 0x40, 0x0, 0x0, 0x0, 0x7a, 0xaa, 0xaa, 0x2b, + 0xff, 0xff, 0x42, 0xaa, 0xaa, 0xa7, 0xff, 0xff, + 0xff, 0x82, 0x67, 0x76, 0x8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfb, 0x77, 0x77, 0xbf, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfb, 0xf, 0x48, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xef, 0xef, 0xff, + 0x14, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, + 0x44, 0x41, + + /* U+F095 "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, + 0x62, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1, 0xff, 0xfe, 0xb5, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xf0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xff, + 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x5, 0xff, 0xff, 0xff, 0xd0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xbf, 0xff, 0xff, 0xfb, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0xff, 0xff, + 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x5, 0xff, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x5, 0xff, 0xfe, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xbf, 0xff, + 0x90, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x4f, 0xff, 0xf2, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2e, 0xff, 0xf8, 0x0, 0x0, 0x0, + 0x1, 0x30, 0x0, 0x0, 0x1d, 0xff, 0xfd, 0x0, + 0x0, 0x0, 0x29, 0xff, 0x70, 0x0, 0x3e, 0xff, + 0xff, 0x30, 0x0, 0x4, 0xbf, 0xff, 0xff, 0x40, + 0x7f, 0xff, 0xff, 0x50, 0x0, 0x0, 0xef, 0xff, + 0xff, 0xfe, 0xef, 0xff, 0xff, 0x50, 0x0, 0x0, + 0xc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x40, + 0x0, 0x0, 0x0, 0x8f, 0xff, 0xff, 0xff, 0xff, + 0xfb, 0x10, 0x0, 0x0, 0x0, 0x4, 0xff, 0xff, + 0xff, 0xff, 0xd5, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1f, 0xff, 0xff, 0xea, 0x40, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x57, 0x64, 0x20, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+F0C4 "" */ + 0x0, 0x25, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x9, 0xff, 0xfe, 0x30, 0x0, 0x0, 0x4, + 0xaa, 0x50, 0x7f, 0xff, 0xff, 0xe0, 0x0, 0x0, + 0x8f, 0xff, 0xf5, 0xef, 0xd3, 0x7f, 0xf6, 0x0, + 0x8, 0xff, 0xff, 0xb0, 0xff, 0x80, 0xf, 0xf7, + 0x0, 0x8f, 0xff, 0xfb, 0x0, 0xdf, 0xe7, 0xaf, + 0xf5, 0x8, 0xff, 0xff, 0xb0, 0x0, 0x5f, 0xff, + 0xff, 0xfd, 0x9f, 0xff, 0xfb, 0x0, 0x0, 0x5, + 0xef, 0xff, 0xff, 0xff, 0xff, 0xb0, 0x0, 0x0, + 0x0, 0x1, 0x5f, 0xff, 0xff, 0xfb, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xb, 0xff, 0xff, 0xf2, 0x0, + 0x0, 0x0, 0x0, 0x25, 0x9f, 0xff, 0xff, 0xfd, + 0x10, 0x0, 0x0, 0x9, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xd1, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xfb, + 0x6f, 0xff, 0xfd, 0x10, 0x0, 0xef, 0xd3, 0x7f, + 0xf5, 0x5, 0xff, 0xff, 0xd1, 0x0, 0xff, 0x80, + 0xf, 0xf7, 0x0, 0x5f, 0xff, 0xfd, 0x10, 0xdf, + 0xe7, 0xaf, 0xf5, 0x0, 0x5, 0xff, 0xff, 0xd1, + 0x5f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x4f, 0xff, + 0xf4, 0x5, 0xef, 0xfb, 0x10, 0x0, 0x0, 0x1, + 0x66, 0x20, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, + + /* U+F0C5 "" */ + 0x0, 0x0, 0x8, 0xbb, 0xbb, 0xbb, 0x50, 0x90, + 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0x81, + 0xfb, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, + 0x81, 0xff, 0xb0, 0x0, 0x0, 0xf, 0xff, 0xff, + 0xff, 0x81, 0xff, 0xf8, 0x8c, 0xc9, 0xf, 0xff, + 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xfc, 0xf, + 0xff, 0xff, 0xff, 0xd5, 0x44, 0x43, 0xff, 0xfc, + 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, 0xff, + 0xfc, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, + 0xff, 0xfc, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfa, 0xff, 0xfc, 0xf, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfa, 0xff, 0xfc, 0xf, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfa, 0xff, 0xfc, 0xf, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfa, 0xff, 0xfc, 0xf, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfa, 0xff, 0xfc, 0xf, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, 0xff, 0xfc, + 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, 0xff, + 0xfc, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, + 0xff, 0xfe, 0xb, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf7, 0xff, 0xff, 0x91, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x70, 0x0, 0x0, 0x58, 0x88, 0x88, 0x88, + 0x88, 0x87, 0x10, 0x0, 0x0, + + /* U+F0C7 "" */ + 0x6, 0x77, 0x77, 0x77, 0x77, 0x77, 0x60, 0x0, + 0x0, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, + 0x10, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc1, 0x0, 0xff, 0x90, 0x0, 0x0, 0x0, + 0x1, 0xdf, 0xfc, 0x10, 0xff, 0x80, 0x0, 0x0, + 0x0, 0x0, 0xbf, 0xff, 0xc0, 0xff, 0x80, 0x0, + 0x0, 0x0, 0x0, 0xbf, 0xff, 0xf3, 0xff, 0x80, + 0x0, 0x0, 0x0, 0x0, 0xbf, 0xff, 0xf4, 0xff, + 0x80, 0x0, 0x0, 0x0, 0x0, 0xbf, 0xff, 0xf4, + 0xff, 0xd8, 0x88, 0x88, 0x88, 0x88, 0xef, 0xff, + 0xf4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf4, 0xff, 0xff, 0xff, 0xe4, 0x2, + 0xcf, 0xff, 0xff, 0xf4, 0xff, 0xff, 0xff, 0x60, + 0x0, 0x2f, 0xff, 0xff, 0xf4, 0xff, 0xff, 0xff, + 0x40, 0x0, 0xf, 0xff, 0xff, 0xf4, 0xff, 0xff, + 0xff, 0xa0, 0x0, 0x6f, 0xff, 0xff, 0xf4, 0xff, + 0xff, 0xff, 0xfc, 0x8a, 0xff, 0xff, 0xff, 0xf4, + 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf3, 0x6f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xa0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, + + /* U+F0C9 "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf8, 0xac, 0xcc, 0xcc, 0xcc, 0xcc, + 0xcc, 0xcc, 0xcc, 0xc4, 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, 0xcd, + 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xd5, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf8, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf5, 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, 0xac, 0xcc, 0xcc, + 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xc4, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xef, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, + + /* U+F0E0 "" */ + 0x5e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xe5, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, + 0x3, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfe, 0x30, 0xe3, 0x1b, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xb1, 0x3e, 0xff, 0x70, 0x7f, 0xff, + 0xff, 0xff, 0xff, 0xf7, 0x7, 0xff, 0xff, 0xfb, + 0x13, 0xdf, 0xff, 0xff, 0xfd, 0x31, 0xbf, 0xff, + 0xff, 0xff, 0xe4, 0xa, 0xff, 0xff, 0xa0, 0x4e, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x5d, 0xd5, + 0x8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, + 0x20, 0x2, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfd, 0xdf, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfe, 0x5e, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xe5, + + /* U+F0E7 "" */ + 0x0, 0x14, 0x44, 0x44, 0x41, 0x0, 0x0, 0x0, + 0xbf, 0xff, 0xff, 0xfa, 0x0, 0x0, 0x0, 0xef, + 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xff, + 0xff, 0xf3, 0x0, 0x0, 0x2, 0xff, 0xff, 0xff, + 0xd0, 0x0, 0x0, 0x4, 0xff, 0xff, 0xff, 0x80, + 0x0, 0x0, 0x6, 0xff, 0xff, 0xff, 0x40, 0x0, + 0x0, 0x8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, + 0xa, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, 0xd, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0, 0xf, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x20, 0xb, 0xff, 0xff, + 0xff, 0xff, 0xf9, 0x0, 0x0, 0x0, 0x0, 0x8f, + 0xff, 0xe1, 0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, + 0x60, 0x0, 0x0, 0x0, 0x0, 0xff, 0xfd, 0x0, + 0x0, 0x0, 0x0, 0x3, 0xff, 0xf4, 0x0, 0x0, + 0x0, 0x0, 0x7, 0xff, 0xa0, 0x0, 0x0, 0x0, + 0x0, 0xb, 0xff, 0x20, 0x0, 0x0, 0x0, 0x0, + 0xf, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, + 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9, 0x40, + 0x0, 0x0, 0x0, + + /* U+F0EA "" */ + 0x0, 0x0, 0x6, 0x71, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x14, 0x44, 0xbf, 0xfe, 0x44, 0x43, 0x0, + 0x0, 0x0, 0xef, 0xff, 0xf9, 0x4f, 0xff, 0xff, + 0x40, 0x0, 0x0, 0xff, 0xff, 0xf8, 0x3f, 0xff, + 0xff, 0x50, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x50, 0x0, 0x0, 0xff, 0xff, 0xff, + 0xa8, 0x88, 0x88, 0x20, 0x0, 0x0, 0xff, 0xff, + 0xf6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, + 0xff, 0xf0, 0xcf, 0xff, 0xff, 0x51, 0xe2, 0x0, + 0xff, 0xff, 0xf0, 0xef, 0xff, 0xff, 0x51, 0xfe, + 0x20, 0xff, 0xff, 0xf0, 0xef, 0xff, 0xff, 0x51, + 0xff, 0xe2, 0xff, 0xff, 0xf0, 0xef, 0xff, 0xff, + 0x50, 0xbb, 0xb7, 0xff, 0xff, 0xf0, 0xef, 0xff, + 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xf0, 0xef, + 0xff, 0xff, 0xff, 0xff, 0xfa, 0xff, 0xff, 0xf0, + 0xef, 0xff, 0xff, 0xff, 0xff, 0xfa, 0xff, 0xff, + 0xf0, 0xef, 0xff, 0xff, 0xff, 0xff, 0xfa, 0xff, + 0xff, 0xf0, 0xef, 0xff, 0xff, 0xff, 0xff, 0xfa, + 0xcf, 0xff, 0xf0, 0xef, 0xff, 0xff, 0xff, 0xff, + 0xfa, 0x0, 0x0, 0x0, 0xef, 0xff, 0xff, 0xff, + 0xff, 0xfa, 0x0, 0x0, 0x0, 0xef, 0xff, 0xff, + 0xff, 0xff, 0xfa, 0x0, 0x0, 0x0, 0xef, 0xff, + 0xff, 0xff, 0xff, 0xfa, 0x0, 0x0, 0x0, 0x7b, + 0xbb, 0xbb, 0xbb, 0xbb, 0xb4, + + /* U+F0F3 "" */ + 0x0, 0x0, 0x0, 0x0, 0x31, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x5, 0xfd, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x9, 0xff, 0x10, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xef, 0xff, + 0xfb, 0x20, 0x0, 0x0, 0x0, 0x0, 0xaf, 0xff, + 0xff, 0xff, 0xf3, 0x0, 0x0, 0x0, 0x8, 0xff, + 0xff, 0xff, 0xff, 0xfe, 0x10, 0x0, 0x0, 0x1f, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, + 0x5f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd0, 0x0, + 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, + 0x0, 0x0, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf0, 0x0, 0x0, 0x9f, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf1, 0x0, 0x0, 0xdf, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf5, 0x0, 0x1, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf9, 0x0, 0x9, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x10, 0x5f, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd0, 0xef, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, + 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xe3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xaf, 0xff, 0xf2, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, + 0xa0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, + 0x75, 0x0, 0x0, 0x0, 0x0, + + /* U+F11C "" */ + 0x5e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfb, 0xe, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, 0xff, + 0xc8, 0x8f, 0xa8, 0xaf, 0x88, 0xbf, 0x88, 0xfb, + 0x88, 0xff, 0x8f, 0xf8, 0x0, 0xf4, 0x4, 0xf0, + 0x5, 0xe0, 0xe, 0x50, 0xf, 0xf8, 0xff, 0x80, + 0xf, 0x40, 0x4f, 0x0, 0x6f, 0x0, 0xf6, 0x0, + 0xff, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0x94, + 0x6f, 0x64, 0x8f, 0x44, 0xbb, 0x44, 0xff, 0xff, + 0x8f, 0xff, 0xf6, 0x2, 0xf2, 0x5, 0xf0, 0x8, + 0x80, 0xe, 0xff, 0xf8, 0xff, 0xff, 0x94, 0x6f, + 0x64, 0x8f, 0x44, 0xbb, 0x44, 0xff, 0xff, 0x8f, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf8, 0xff, 0x80, 0xf, 0x40, 0x0, + 0x0, 0x0, 0x0, 0xf6, 0x0, 0xff, 0x8f, 0xf8, + 0x0, 0xf4, 0x0, 0x0, 0x0, 0x0, 0xe, 0x50, + 0xf, 0xf8, 0xff, 0xc8, 0x8f, 0xa8, 0x88, 0x88, + 0x88, 0x88, 0xfb, 0x88, 0xff, 0x8e, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf6, 0x5e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfb, 0x0, + + /* U+F124 "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x56, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1, 0x7e, 0xff, 0xa0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1, 0x8f, 0xff, 0xff, + 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xaf, + 0xff, 0xff, 0xff, 0xa0, 0x0, 0x0, 0x0, 0x0, + 0x4, 0xbf, 0xff, 0xff, 0xff, 0xff, 0x30, 0x0, + 0x0, 0x0, 0x5, 0xcf, 0xff, 0xff, 0xff, 0xff, + 0xfb, 0x0, 0x0, 0x0, 0x6, 0xdf, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf4, 0x0, 0x0, 0x18, 0xef, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd0, 0x0, + 0x5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x50, 0x0, 0xe, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0xd, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, 0x0, + 0x0, 0x2, 0xac, 0xcc, 0xcc, 0xcd, 0xff, 0xff, + 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x4, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x4, 0xff, 0xff, 0xff, 0x10, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, + 0xff, 0xf9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x4, 0xff, 0xff, 0xf2, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, 0xff, 0xb0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, + 0xff, 0xff, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x3, 0xff, 0xfc, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xef, 0xf4, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x27, 0x30, 0x0, 0x0, 0x0, 0x0, + + /* U+F15B "" */ + 0x24, 0x44, 0x44, 0x44, 0x30, 0x30, 0x0, 0xf, + 0xff, 0xff, 0xff, 0xfc, 0xf, 0x60, 0x0, 0xff, + 0xff, 0xff, 0xff, 0xc0, 0xff, 0x60, 0xf, 0xff, + 0xff, 0xff, 0xfc, 0xf, 0xff, 0x60, 0xff, 0xff, + 0xff, 0xff, 0xc0, 0xff, 0xff, 0x6f, 0xff, 0xff, + 0xff, 0xfc, 0xb, 0xbb, 0xbb, 0xff, 0xff, 0xff, + 0xff, 0xe1, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8b, 0xbb, + 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0x80, + + /* U+F1EB "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x23, 0x43, 0x20, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, + 0x8c, 0xff, 0xff, 0xff, 0xfc, 0x83, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x6d, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfd, 0x60, 0x0, 0x0, 0x3, 0xdf, + 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, + 0xd3, 0x0, 0x8, 0xff, 0xff, 0xfb, 0x72, 0x0, + 0x0, 0x2, 0x7b, 0xff, 0xff, 0xf8, 0xa, 0xff, + 0xff, 0xa2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, + 0xaf, 0xff, 0xfa, 0xbf, 0xfd, 0x30, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x3d, 0xff, 0xb0, + 0xba, 0x10, 0x0, 0x5, 0x9d, 0xef, 0xed, 0x95, + 0x0, 0x0, 0x1a, 0xb0, 0x0, 0x0, 0x0, 0x6d, + 0xff, 0xff, 0xff, 0xff, 0xfd, 0x60, 0x0, 0x0, + 0x0, 0x0, 0x1, 0xbf, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xb1, 0x0, 0x0, 0x0, 0x0, 0x8f, + 0xff, 0xfa, 0x53, 0x23, 0x5a, 0xff, 0xff, 0x80, + 0x0, 0x0, 0x0, 0x0, 0xcf, 0xb1, 0x0, 0x0, + 0x0, 0x1, 0xbf, 0xc0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x40, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, + 0x9d, 0x91, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xaf, 0xff, 0xa0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xf, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, 0xc0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x3, 0xef, 0xe3, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+F240 "" */ + 0x17, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, + 0x88, 0x88, 0x88, 0x60, 0xc, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfc, 0xf, 0xf8, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xcf, 0xfd, 0xff, 0x84, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xc, 0xff, 0xff, 0xf8, + 0x4f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf0, 0x5b, 0xff, 0xff, 0x84, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x8f, 0xff, + 0xf8, 0x4f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf0, 0x8, 0xff, 0xff, 0x84, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, 0xff, + 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xcf, 0xff, 0xff, 0xc8, 0x88, + 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x8e, + 0xfd, 0x4e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xa0, 0x4e, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc2, 0x0, + + /* U+F241 "" */ + 0x17, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, + 0x88, 0x88, 0x88, 0x60, 0xc, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfc, 0xf, 0xf8, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xcf, 0xfd, 0xff, 0x81, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x60, 0x0, 0xc, 0xff, 0xff, 0xf8, + 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, 0x0, + 0x0, 0x5b, 0xff, 0xff, 0x81, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x60, 0x0, 0x0, 0x8f, 0xff, + 0xf8, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, + 0x0, 0x0, 0x8, 0xff, 0xff, 0x81, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x60, 0x0, 0xc, 0xff, + 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xcf, 0xff, 0xff, 0xc8, 0x88, + 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x8e, + 0xfd, 0x4e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xa0, 0x4e, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc2, 0x0, + + /* U+F242 "" */ + 0x17, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, + 0x88, 0x88, 0x88, 0x60, 0xc, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfc, 0xf, 0xf8, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xcf, 0xfd, 0xff, 0x81, 0xff, 0xff, 0xff, 0xff, + 0xa0, 0x0, 0x0, 0x0, 0xc, 0xff, 0xff, 0xf8, + 0x1f, 0xff, 0xff, 0xff, 0xfa, 0x0, 0x0, 0x0, + 0x0, 0x5b, 0xff, 0xff, 0x81, 0xff, 0xff, 0xff, + 0xff, 0xa0, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xff, + 0xf8, 0x1f, 0xff, 0xff, 0xff, 0xfa, 0x0, 0x0, + 0x0, 0x0, 0x8, 0xff, 0xff, 0x81, 0xff, 0xff, + 0xff, 0xff, 0xa0, 0x0, 0x0, 0x0, 0xc, 0xff, + 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xcf, 0xff, 0xff, 0xc8, 0x88, + 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x8e, + 0xfd, 0x4e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xa0, 0x4e, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc2, 0x0, + + /* U+F243 "" */ + 0x17, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, + 0x88, 0x88, 0x88, 0x60, 0xc, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfc, 0xf, 0xf8, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xcf, 0xfd, 0xff, 0x81, 0xff, 0xff, 0xe0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0xff, 0xf8, + 0x1f, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x5b, 0xff, 0xff, 0x81, 0xff, 0xff, 0xe0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xff, + 0xf8, 0x1f, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x8, 0xff, 0xff, 0x81, 0xff, 0xff, + 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, + 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xcf, 0xff, 0xff, 0xc8, 0x88, + 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x8e, + 0xfd, 0x4e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xa0, 0x4e, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc2, 0x0, + + /* U+F244 "" */ + 0x17, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, + 0x88, 0x88, 0x88, 0x60, 0xc, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfc, 0xf, 0xf8, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xcf, 0xfd, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0xff, 0xf8, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x5b, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xff, + 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x8, 0xff, 0xff, 0x80, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, + 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xcf, 0xff, 0xff, 0xc8, 0x88, + 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x8e, + 0xfd, 0x4e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xa0, 0x4e, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc2, 0x0, + + /* U+F287 "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xc, 0xfe, 0x20, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c, + 0xdf, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x9, 0xfb, 0xbf, 0xff, 0x90, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2f, 0x70, 0xa, 0xfc, 0x10, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x32, 0x0, 0x0, 0x9e, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2d, 0xff, + 0x90, 0x1, 0xf6, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1c, 0x30, 0x0, 0xcf, 0xff, 0xf6, 0x3c, 0xf3, + 0x33, 0x33, 0x33, 0x33, 0x33, 0x5f, 0xf9, 0x10, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xd0, 0xcf, 0xff, 0xf6, + 0x33, 0x34, 0xed, 0x33, 0x33, 0x33, 0x33, 0x5f, + 0xfa, 0x10, 0x2d, 0xff, 0x90, 0x0, 0x0, 0x5f, + 0x30, 0x0, 0x0, 0x0, 0x1c, 0x30, 0x0, 0x0, + 0x32, 0x0, 0x0, 0x0, 0xd, 0xa0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x6, 0xf3, 0xa, 0xff, 0xf7, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xce, + 0xae, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x8, 0xbe, 0xff, 0xf8, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xa, 0xff, 0xf7, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, + 0x22, 0x20, 0x0, 0x0, 0x0, + + /* U+F293 "" */ + 0x0, 0x0, 0x0, 0x34, 0x31, 0x0, 0x0, 0x0, + 0x0, 0x3, 0xbf, 0xff, 0xff, 0xe7, 0x0, 0x0, + 0x0, 0x6f, 0xff, 0xfa, 0xff, 0xff, 0xb0, 0x0, + 0x4, 0xff, 0xff, 0xf1, 0x9f, 0xff, 0xf8, 0x0, + 0xd, 0xff, 0xff, 0xf1, 0xa, 0xff, 0xff, 0x10, + 0x3f, 0xff, 0xff, 0xf1, 0x0, 0xbf, 0xff, 0x60, + 0x7f, 0xfd, 0x8f, 0xf1, 0x66, 0xc, 0xff, 0xa0, + 0xaf, 0xf8, 0x7, 0xf1, 0x6f, 0x13, 0xff, 0xd0, + 0xcf, 0xff, 0x70, 0x71, 0x53, 0x1e, 0xff, 0xf0, + 0xdf, 0xff, 0xf7, 0x0, 0x1, 0xdf, 0xff, 0xf0, + 0xef, 0xff, 0xff, 0x60, 0xc, 0xff, 0xff, 0xf0, + 0xef, 0xff, 0xff, 0x30, 0x7, 0xff, 0xff, 0xf0, + 0xdf, 0xff, 0xf3, 0x0, 0x10, 0x8f, 0xff, 0xf0, + 0xcf, 0xff, 0x30, 0xb1, 0x67, 0x9, 0xff, 0xf0, + 0x9f, 0xf6, 0xb, 0xf2, 0x6e, 0x2, 0xff, 0xd0, + 0x6f, 0xff, 0xcf, 0xf2, 0x52, 0x2e, 0xff, 0xa0, + 0x1f, 0xff, 0xff, 0xf2, 0x2, 0xef, 0xff, 0x50, + 0x9, 0xff, 0xff, 0xf2, 0x2e, 0xff, 0xfe, 0x0, + 0x0, 0xdf, 0xff, 0xf4, 0xef, 0xff, 0xf5, 0x0, + 0x0, 0x1a, 0xff, 0xff, 0xff, 0xff, 0x60, 0x0, + 0x0, 0x0, 0x27, 0xab, 0xb9, 0x50, 0x0, 0x0, + + /* U+F2ED "" */ + 0x0, 0x0, 0x2, 0xab, 0xbb, 0xb7, 0x0, 0x0, + 0x0, 0x57, 0x77, 0x7c, 0xff, 0xff, 0xff, 0x77, + 0x77, 0x72, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf7, 0xef, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf6, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0x88, 0x88, + 0x88, 0x88, 0x88, 0x88, 0x88, 0x20, 0xc, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x40, 0xc, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x40, + 0xc, 0xff, 0x77, 0xff, 0x3b, 0xfe, 0x1e, 0xff, + 0x40, 0xc, 0xff, 0x66, 0xff, 0x2a, 0xfe, 0xe, + 0xff, 0x40, 0xc, 0xff, 0x66, 0xff, 0x2a, 0xfe, + 0xe, 0xff, 0x40, 0xc, 0xff, 0x66, 0xff, 0x2a, + 0xfe, 0xe, 0xff, 0x40, 0xc, 0xff, 0x66, 0xff, + 0x2a, 0xfe, 0xe, 0xff, 0x40, 0xc, 0xff, 0x66, + 0xff, 0x2a, 0xfe, 0xe, 0xff, 0x40, 0xc, 0xff, + 0x66, 0xff, 0x2a, 0xfe, 0xe, 0xff, 0x40, 0xc, + 0xff, 0x66, 0xff, 0x2a, 0xfe, 0xe, 0xff, 0x40, + 0xc, 0xff, 0x66, 0xff, 0x2a, 0xfe, 0xe, 0xff, + 0x40, 0xc, 0xff, 0x77, 0xff, 0x3b, 0xfe, 0x1e, + 0xff, 0x40, 0xb, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x30, 0x7, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfe, 0x0, 0x0, 0x57, 0x88, 0x88, + 0x88, 0x88, 0x88, 0x72, 0x0, + + /* U+F304 "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, + 0x64, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x2, 0xdf, 0xf8, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x2, 0xef, 0xff, 0xf8, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, + 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, + 0x90, 0x8f, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, + 0x0, 0x2, 0xef, 0xb0, 0x8f, 0xff, 0xfc, 0x0, + 0x0, 0x0, 0x0, 0x2, 0xef, 0xff, 0xb0, 0x8f, + 0xfe, 0x10, 0x0, 0x0, 0x0, 0x2, 0xef, 0xff, + 0xff, 0xb0, 0x8e, 0x20, 0x0, 0x0, 0x0, 0x2, + 0xef, 0xff, 0xff, 0xff, 0xb0, 0x10, 0x0, 0x0, + 0x0, 0x2, 0xef, 0xff, 0xff, 0xff, 0xfe, 0x10, + 0x0, 0x0, 0x0, 0x2, 0xef, 0xff, 0xff, 0xff, + 0xfe, 0x20, 0x0, 0x0, 0x0, 0x2, 0xef, 0xff, + 0xff, 0xff, 0xfe, 0x20, 0x0, 0x0, 0x0, 0x2, + 0xef, 0xff, 0xff, 0xff, 0xfe, 0x20, 0x0, 0x0, + 0x0, 0x2, 0xef, 0xff, 0xff, 0xff, 0xfe, 0x20, + 0x0, 0x0, 0x0, 0x1, 0xef, 0xff, 0xff, 0xff, + 0xfe, 0x20, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xff, + 0xff, 0xff, 0xfe, 0x20, 0x0, 0x0, 0x0, 0x0, + 0xa, 0xff, 0xff, 0xff, 0xfe, 0x20, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xcf, 0xff, 0xff, 0xfe, 0x20, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xff, 0xff, + 0xfe, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xff, 0xff, 0xfe, 0x20, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x5, 0x75, 0x31, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+F55A "" */ + 0x0, 0x0, 0x0, 0x6e, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfb, 0x20, 0x0, 0x0, 0x8f, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfb, 0x0, 0x0, 0x8f, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x8f, + 0xff, 0xff, 0xff, 0x85, 0xff, 0xff, 0x58, 0xff, + 0xff, 0xff, 0x0, 0x8f, 0xff, 0xff, 0xff, 0xb0, + 0x4, 0xff, 0x40, 0xb, 0xff, 0xff, 0xf0, 0x8f, + 0xff, 0xff, 0xff, 0xff, 0x40, 0x4, 0x40, 0x4, + 0xff, 0xff, 0xff, 0x8f, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x40, 0x0, 0x4, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x10, 0x0, + 0xef, 0xff, 0xff, 0xff, 0x8f, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x40, 0x0, 0x4, 0xff, 0xff, 0xff, + 0xf0, 0x8f, 0xff, 0xff, 0xff, 0xff, 0x40, 0x4, + 0x40, 0x4, 0xff, 0xff, 0xff, 0x0, 0x8f, 0xff, + 0xff, 0xff, 0xb0, 0x4, 0xff, 0x40, 0xb, 0xff, + 0xff, 0xf0, 0x0, 0x8f, 0xff, 0xff, 0xff, 0x85, + 0xff, 0xff, 0x58, 0xff, 0xff, 0xff, 0x0, 0x0, + 0x8f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf0, 0x0, 0x0, 0x8f, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0x0, + 0x0, 0x0, 0x6e, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfc, 0x20, + + /* U+F7C2 "" */ + 0x0, 0x0, 0x28, 0x88, 0x88, 0x88, 0x73, 0x0, + 0x0, 0x2e, 0xff, 0xff, 0xff, 0xff, 0xf6, 0x0, + 0x1d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x1d, + 0xf6, 0xe, 0x50, 0xd6, 0x8, 0xff, 0x1d, 0xff, + 0x60, 0xe5, 0xd, 0x60, 0x8f, 0xfc, 0xff, 0xf6, + 0xe, 0x50, 0xd6, 0x8, 0xff, 0xff, 0xff, 0x60, + 0xe5, 0xd, 0x60, 0x8f, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe9, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x7, 0xab, + 0xbb, 0xbb, 0xbb, 0xbb, 0xa6, 0x0, + + /* U+F8A2 "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa, 0xf1, 0x0, 0x0, 0x1, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0xff, 0x10, + 0x0, 0xa, 0xf3, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xff, 0xf1, 0x0, 0xb, 0xff, 0x50, 0x0, 0x0, + 0x0, 0x0, 0xf, 0xff, 0x10, 0xc, 0xff, 0xf5, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf1, 0x1d, + 0xff, 0xff, 0xcb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbf, + 0xff, 0x1c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf1, 0x9f, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x9f, + 0xff, 0xf9, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, + 0x40, 0x0, 0x8f, 0xff, 0x50, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf5, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x5c, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0 +}; + + +/*--------------------- + * GLYPH DESCRIPTION + *--------------------*/ + +static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = { + {.bitmap_index = 0, .adv_w = 0, .box_w = 0, .box_h = 0, .ofs_x = 0, .ofs_y = 0} /* id = 0 reserved */, + {.bitmap_index = 0, .adv_w = 82, .box_w = 0, .box_h = 0, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 0, .adv_w = 116, .box_w = 3, .box_h = 14, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 21, .adv_w = 130, .box_w = 6, .box_h = 6, .ofs_x = 1, .ofs_y = 9}, + {.bitmap_index = 39, .adv_w = 192, .box_w = 12, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 123, .adv_w = 184, .box_w = 9, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 209, .adv_w = 263, .box_w = 15, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 314, .adv_w = 205, .box_w = 13, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 405, .adv_w = 81, .box_w = 3, .box_h = 6, .ofs_x = 1, .ofs_y = 9}, + {.bitmap_index = 414, .adv_w = 115, .box_w = 6, .box_h = 19, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 471, .adv_w = 115, .box_w = 5, .box_h = 19, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 519, .adv_w = 138, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = 7}, + {.bitmap_index = 551, .adv_w = 177, .box_w = 11, .box_h = 10, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 606, .adv_w = 141, .box_w = 7, .box_h = 3, .ofs_x = 1, .ofs_y = 5}, + {.bitmap_index = 617, .adv_w = 97, .box_w = 4, .box_h = 3, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 623, .adv_w = 160, .box_w = 8, .box_h = 15, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 683, .adv_w = 184, .box_w = 10, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 753, .adv_w = 184, .box_w = 6, .box_h = 14, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 795, .adv_w = 184, .box_w = 10, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 865, .adv_w = 184, .box_w = 9, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 928, .adv_w = 184, .box_w = 11, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1005, .adv_w = 184, .box_w = 10, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1075, .adv_w = 184, .box_w = 10, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1145, .adv_w = 184, .box_w = 10, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1215, .adv_w = 184, .box_w = 10, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1285, .adv_w = 184, .box_w = 10, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1355, .adv_w = 121, .box_w = 4, .box_h = 11, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 1377, .adv_w = 121, .box_w = 5, .box_h = 14, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 1412, .adv_w = 177, .box_w = 11, .box_h = 12, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1478, .adv_w = 177, .box_w = 11, .box_h = 7, .ofs_x = 0, .ofs_y = 3}, + {.bitmap_index = 1517, .adv_w = 177, .box_w = 11, .box_h = 12, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1583, .adv_w = 138, .box_w = 9, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1646, .adv_w = 275, .box_w = 16, .box_h = 17, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 1782, .adv_w = 213, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1880, .adv_w = 198, .box_w = 10, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1950, .adv_w = 192, .box_w = 11, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2027, .adv_w = 224, .box_w = 12, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2111, .adv_w = 178, .box_w = 10, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2181, .adv_w = 169, .box_w = 9, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2244, .adv_w = 219, .box_w = 12, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2328, .adv_w = 227, .box_w = 12, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2412, .adv_w = 88, .box_w = 3, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2433, .adv_w = 87, .box_w = 6, .box_h = 18, .ofs_x = -2, .ofs_y = -4}, + {.bitmap_index = 2487, .adv_w = 196, .box_w = 11, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2564, .adv_w = 162, .box_w = 9, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2627, .adv_w = 266, .box_w = 14, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2725, .adv_w = 236, .box_w = 12, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2809, .adv_w = 238, .box_w = 13, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2900, .adv_w = 191, .box_w = 10, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2970, .adv_w = 238, .box_w = 13, .box_h = 17, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 3081, .adv_w = 196, .box_w = 11, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 3158, .adv_w = 181, .box_w = 10, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 3228, .adv_w = 169, .box_w = 11, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 3305, .adv_w = 224, .box_w = 12, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 3389, .adv_w = 197, .box_w = 13, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 3480, .adv_w = 287, .box_w = 18, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 3606, .adv_w = 200, .box_w = 12, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 3690, .adv_w = 190, .box_w = 12, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 3774, .adv_w = 200, .box_w = 11, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 3851, .adv_w = 94, .box_w = 5, .box_h = 19, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 3899, .adv_w = 163, .box_w = 10, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 3984, .adv_w = 94, .box_w = 5, .box_h = 19, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 4032, .adv_w = 177, .box_w = 9, .box_h = 8, .ofs_x = 1, .ofs_y = 6}, + {.bitmap_index = 4068, .adv_w = 160, .box_w = 10, .box_h = 3, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 4083, .adv_w = 111, .box_w = 5, .box_h = 3, .ofs_x = 1, .ofs_y = 12}, + {.bitmap_index = 4091, .adv_w = 196, .box_w = 10, .box_h = 11, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 4146, .adv_w = 203, .box_w = 11, .box_h = 15, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 4229, .adv_w = 159, .box_w = 9, .box_h = 11, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 4279, .adv_w = 203, .box_w = 10, .box_h = 15, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 4354, .adv_w = 185, .box_w = 10, .box_h = 11, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 4409, .adv_w = 112, .box_w = 7, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 4462, .adv_w = 204, .box_w = 10, .box_h = 15, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 4537, .adv_w = 198, .box_w = 10, .box_h = 15, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 4612, .adv_w = 86, .box_w = 3, .box_h = 15, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 4635, .adv_w = 86, .box_w = 6, .box_h = 19, .ofs_x = -2, .ofs_y = -4}, + {.bitmap_index = 4692, .adv_w = 166, .box_w = 10, .box_h = 15, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 4767, .adv_w = 92, .box_w = 5, .box_h = 15, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 4805, .adv_w = 295, .box_w = 16, .box_h = 11, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 4893, .adv_w = 198, .box_w = 10, .box_h = 11, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 4948, .adv_w = 198, .box_w = 11, .box_h = 11, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 5009, .adv_w = 203, .box_w = 11, .box_h = 15, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 5092, .adv_w = 204, .box_w = 10, .box_h = 15, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 5167, .adv_w = 121, .box_w = 7, .box_h = 11, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 5206, .adv_w = 153, .box_w = 8, .box_h = 11, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 5250, .adv_w = 108, .box_w = 7, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 5299, .adv_w = 196, .box_w = 10, .box_h = 11, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 5354, .adv_w = 168, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 5415, .adv_w = 265, .box_w = 17, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 5509, .adv_w = 165, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 5570, .adv_w = 169, .box_w = 11, .box_h = 15, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 5653, .adv_w = 162, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 5708, .adv_w = 96, .box_w = 6, .box_h = 19, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 5765, .adv_w = 59, .box_w = 2, .box_h = 19, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 5784, .adv_w = 96, .box_w = 5, .box_h = 19, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 5832, .adv_w = 177, .box_w = 11, .box_h = 4, .ofs_x = 0, .ofs_y = 4}, + {.bitmap_index = 5854, .adv_w = 315, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 6054, .adv_w = 315, .box_w = 17, .box_h = 17, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 6199, .adv_w = 315, .box_w = 20, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 6379, .adv_w = 315, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 6560, .adv_w = 315, .box_w = 18, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 6740, .adv_w = 315, .box_w = 14, .box_h = 17, .ofs_x = 3, .ofs_y = -2}, + {.bitmap_index = 6859, .adv_w = 315, .box_w = 17, .box_h = 20, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 7029, .adv_w = 315, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 7210, .adv_w = 315, .box_w = 15, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 7353, .adv_w = 315, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 7524, .adv_w = 315, .box_w = 18, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 7704, .adv_w = 315, .box_w = 18, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 7884, .adv_w = 315, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 8084, .adv_w = 315, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 8265, .adv_w = 315, .box_w = 16, .box_h = 20, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 8425, .adv_w = 320, .box_w = 20, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 8635, .adv_w = 320, .box_w = 20, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 8785, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 8975, .adv_w = 320, .box_w = 20, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 9125, .adv_w = 220, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 9230, .adv_w = 320, .box_w = 20, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 9440, .adv_w = 320, .box_w = 20, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 9650, .adv_w = 360, .box_w = 23, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 9869, .adv_w = 320, .box_w = 20, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 10079, .adv_w = 360, .box_w = 23, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 10252, .adv_w = 320, .box_w = 20, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 10462, .adv_w = 160, .box_w = 10, .box_h = 16, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 10542, .adv_w = 240, .box_w = 15, .box_h = 16, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 10662, .adv_w = 360, .box_w = 23, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 10881, .adv_w = 320, .box_w = 20, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 11031, .adv_w = 220, .box_w = 14, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 11178, .adv_w = 280, .box_w = 13, .box_h = 19, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 11302, .adv_w = 280, .box_w = 18, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 11491, .adv_w = 280, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 11662, .adv_w = 280, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 11833, .adv_w = 280, .box_w = 13, .box_h = 19, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 11957, .adv_w = 280, .box_w = 19, .box_h = 19, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 12138, .adv_w = 200, .box_w = 11, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 12243, .adv_w = 200, .box_w = 11, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 12348, .adv_w = 280, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 12519, .adv_w = 280, .box_w = 18, .box_h = 5, .ofs_x = 0, .ofs_y = 5}, + {.bitmap_index = 12564, .adv_w = 360, .box_w = 23, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 12737, .adv_w = 400, .box_w = 26, .box_h = 21, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 13010, .adv_w = 360, .box_w = 24, .box_h = 21, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 13262, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 13452, .adv_w = 280, .box_w = 18, .box_h = 11, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 13551, .adv_w = 280, .box_w = 18, .box_h = 11, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 13650, .adv_w = 400, .box_w = 26, .box_h = 16, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 13858, .adv_w = 320, .box_w = 20, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 14008, .adv_w = 320, .box_w = 20, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 14218, .adv_w = 320, .box_w = 21, .box_h = 21, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 14439, .adv_w = 280, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 14610, .adv_w = 280, .box_w = 18, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 14799, .adv_w = 280, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 14970, .adv_w = 280, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 15123, .adv_w = 320, .box_w = 20, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 15273, .adv_w = 200, .box_w = 14, .box_h = 21, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 15420, .adv_w = 280, .box_w = 18, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 15609, .adv_w = 280, .box_w = 18, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 15798, .adv_w = 360, .box_w = 23, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 15971, .adv_w = 320, .box_w = 22, .box_h = 21, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 16202, .adv_w = 240, .box_w = 15, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 16360, .adv_w = 400, .box_w = 25, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 16598, .adv_w = 400, .box_w = 25, .box_h = 13, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 16761, .adv_w = 400, .box_w = 25, .box_h = 13, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 16924, .adv_w = 400, .box_w = 25, .box_h = 13, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 17087, .adv_w = 400, .box_w = 25, .box_h = 13, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 17250, .adv_w = 400, .box_w = 25, .box_h = 13, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 17413, .adv_w = 400, .box_w = 26, .box_h = 17, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 17634, .adv_w = 280, .box_w = 16, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 17802, .adv_w = 280, .box_w = 18, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 17991, .adv_w = 320, .box_w = 21, .box_h = 21, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 18212, .adv_w = 400, .box_w = 25, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 18400, .adv_w = 240, .box_w = 15, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 18558, .adv_w = 322, .box_w = 21, .box_h = 13, .ofs_x = 0, .ofs_y = 1} +}; + +/*--------------------- + * CHARACTER MAPPING + *--------------------*/ + +static const uint16_t unicode_list_2[] = { + 0x0, 0x134, 0x1d0, 0xc6e, 0x1333, 0x13df, 0x13f0, 0x14ee, + 0x1502, 0x1519, 0x1b82, 0x2668, 0x27cc, 0x399e, 0x43ee, 0x9dfb, + 0x9e02, 0x9e05, 0x9e06, 0x9e07, 0x9e0b, 0x9e0d, 0x9e0f, 0x9e13, + 0x9e16, 0x9e1b, 0x9e20, 0x9e21, 0x9e22, 0x9e38, 0x9e3d, 0x9e42, + 0x9e45, 0x9e46, 0x9e47, 0x9e4b, 0x9e4c, 0x9e4d, 0x9e4e, 0x9e61, + 0x9e62, 0x9e68, 0x9e6a, 0x9e6b, 0x9e6e, 0x9e71, 0x9e72, 0x9e73, + 0x9e75, 0x9e8d, 0x9e8f, 0x9ebe, 0x9ebf, 0x9ec1, 0x9ec3, 0x9eda, + 0x9ee1, 0x9ee4, 0x9eed, 0x9f16, 0x9f1e, 0x9f55, 0x9fe5, 0xa03a, + 0xa03b, 0xa03c, 0xa03d, 0xa03e, 0xa081, 0xa08d, 0xa0e7, 0xa0fe, + 0xa354, 0xa5bc, 0xa69c +}; + +/*Collect the unicode lists and glyph_id offsets*/ +static const lv_font_fmt_txt_cmap_t cmaps[] = +{ + { + .range_start = 32, .range_length = 12, .glyph_id_start = 1, + .unicode_list = NULL, .glyph_id_ofs_list = NULL, .list_length = 0, .type = LV_FONT_FMT_TXT_CMAP_FORMAT0_TINY + }, + { + .range_start = 45, .range_length = 82, .glyph_id_start = 13, + .unicode_list = NULL, .glyph_id_ofs_list = NULL, .list_length = 0, .type = LV_FONT_FMT_TXT_CMAP_FORMAT0_TINY + }, + { + .range_start = 20998, .range_length = 42653, .glyph_id_start = 95, + .unicode_list = unicode_list_2, .glyph_id_ofs_list = NULL, .list_length = 75, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY + } +}; + +/*----------------- + * KERNING + *----------------*/ + + +/*Map glyph_ids to kern left classes*/ +static const uint8_t kern_left_class_mapping[] = +{ + 0, 0, 0, 1, 0, 0, 0, 0, + 1, 2, 0, 0, 0, 0, 3, 4, + 0, 5, 0, 0, 0, 0, 0, 6, + 0, 0, 7, 7, 0, 0, 0, 0, + 0, 8, 9, 0, 10, 11, 12, 13, + 0, 0, 14, 15, 16, 0, 0, 10, + 17, 18, 19, 20, 21, 22, 23, 24, + 15, 25, 26, 27, 0, 0, 0, 0, + 0, 28, 29, 0, 0, 30, 31, 0, + 32, 33, 34, 35, 36, 32, 32, 29, + 29, 37, 38, 39, 40, 41, 42, 43, + 35, 42, 44, 45, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 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*/ +static const uint8_t kern_right_class_mapping[] = +{ + 0, 0, 0, 1, 0, 0, 0, 0, + 2, 0, 3, 4, 0, 0, 5, 6, + 0, 7, 0, 0, 0, 0, 0, 8, + 0, 9, 10, 10, 0, 0, 0, 11, + 0, 12, 0, 13, 0, 0, 0, 13, + 0, 0, 14, 0, 0, 0, 0, 13, + 0, 13, 0, 15, 16, 17, 18, 19, + 20, 21, 22, 0, 0, 23, 0, 0, + 0, 24, 0, 25, 25, 25, 26, 27, + 28, 29, 30, 28, 31, 32, 32, 25, + 33, 25, 32, 34, 35, 36, 37, 38, + 39, 37, 32, 0, 0, 40, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 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*/ +static const int8_t kern_class_values[] = +{ + -18, -18, 0, 0, -57, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 19, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + -51, -51, 0, 0, 0, 0, -45, -13, + -12, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, -38, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -32, 0, 0, 0, + 0, -32, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -51, 0, 0, 0, + 0, -32, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, -25, -19, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + -32, -32, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -6, 0, 0, -26, + -3, -22, -12, 0, -26, 0, 0, 0, + 0, -6, 0, 0, 0, 0, -3, 0, + 0, 0, -6, 0, -6, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -3, 0, 0, -13, + 0, -6, 0, -6, -7, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -19, 0, 0, 0, + 0, 0, 0, -6, 0, 0, 0, -12, + 0, -10, -6, -6, -13, -6, 0, -12, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 6, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -51, 0, 0, 0, + 0, 0, 0, -13, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, -19, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, -4, 0, 0, -7, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 2, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, -6, -6, 0, 0, -6, + -12, -12, -12, 0, -13, 0, 0, 0, + -12, 0, -12, 0, 0, 0, -12, 0, + 0, -6, -3, -13, -19, -13, 0, 0, + -32, -32, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 6, -19, 0, 0, -25, + -6, -25, -12, 0, -32, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -13, -7, 0, 0, + 0, 0, 0, 0, -64, 0, 0, 0, + 0, 0, 0, -19, 0, 0, 0, -9, + 0, -3, -3, -16, -6, -12, 0, -19, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -19, 0, 0, 0, + 0, 0, 0, -6, 0, 2, 0, -12, + 0, -10, -6, -6, -13, -6, 0, -12, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -5, 0, 0, -13, + -3, -7, -3, -9, -13, 0, 0, 0, + -6, 0, -6, 0, 0, 0, 0, 0, + 0, 0, -6, -3, -3, 0, 6, 0, + 0, 0, 0, 0, -6, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, -7, -3, 0, -7, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -6, -3, 0, 0, + 1, 1, 0, 0, -49, 0, 0, 0, + 0, 0, 0, -26, -6, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, -26, + -19, 0, -19, 0, -6, -6, 0, -19, + -19, -19, 6, -25, -12, -6, -12, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, -3, 0, 0, 0, 0, + 0, 0, 0, -6, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -45, 0, 0, 0, + 0, -13, 0, -22, -10, 0, -3, 0, + 0, 0, 0, 0, 0, 0, 0, -13, + -7, 0, -7, 0, 0, 0, 0, 0, + 0, -7, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -25, 0, 0, 0, + 0, -12, 0, -13, -6, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, -13, + -6, 0, -6, 0, 0, 0, 0, 0, + 0, -6, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -45, 0, 0, 0, + 0, -19, 0, -26, -13, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, -32, + -19, 0, -19, 0, -6, 0, 0, -13, + -13, -20, 0, -13, -13, 0, -13, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -6, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 26, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, -19, + 0, -7, 0, 0, -20, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -3, -3, 0, 0, + 0, 0, 0, 0, -13, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, -19, + 0, -7, -6, -12, -19, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -3, 0, -6, 0, + 0, 0, 0, 0, -6, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, -19, + 0, 0, 0, 0, -13, 0, 0, 0, + 0, 0, 0, 0, 0, 6, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 1, 1, 0, 20, 0, 0, 0, 0, + 0, 0, 13, 0, 0, 0, 0, 13, + 0, 7, 7, 7, 0, 0, 7, -9, + -6, 0, -12, -6, -6, -6, -6, 0, + 0, -6, 0, 0, 0, 0, 0, 1, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, -19, + 0, 0, 0, 0, -12, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -3, 0, 0, 0, + 1, 1, 1, 0, 0, 0, 0, 0, + 0, 0, 1, 0, 0, 0, 0, -6, + 0, 0, 0, 0, 0, 0, 13, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 7, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, -6, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, -12, + 0, 0, -6, 0, 0, 0, 0, -6, + -6, 0, -6, 0, 0, 0, -6, 0, + 0, 0, 0, -3, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, -6, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -6, -3, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, -6, + 0, 0, 0, 0, -6, 0, 0, 0, + 0, 0, 0, 0, 0, 6, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 1, 1, 0, 0, -29, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, -16, + -6, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 6, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, -19, + 0, -7, -6, -6, -19, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -6, 0, -3, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, -13, + 0, 0, 0, 0, -6, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -29, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, -12, + 0, 0, 0, -12, 0, 0, 0, -11, + -3, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -16, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, -6, + 0, 0, 0, -12, 0, 0, 0, -10, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, -19, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 1, 0, 25, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0 +}; + + +/*Collect the kern class' data in one place*/ +static const lv_font_fmt_txt_kern_classes_t kern_classes = +{ + .class_pair_values = kern_class_values, + .left_class_mapping = kern_left_class_mapping, + .right_class_mapping = kern_right_class_mapping, + .left_class_cnt = 45, + .right_class_cnt = 40, +}; + +/*-------------------- + * ALL CUSTOM DATA + *--------------------*/ + +#if LV_VERSION_CHECK(8, 0, 0) +/*Store all the custom data of the font*/ +static lv_font_fmt_txt_glyph_cache_t cache; +static const lv_font_fmt_txt_dsc_t font_dsc = { +#else +static lv_font_fmt_txt_dsc_t font_dsc = { +#endif + .glyph_bitmap = glyph_bitmap, + .glyph_dsc = glyph_dsc, + .cmaps = cmaps, + .kern_dsc = &kern_classes, + .kern_scale = 16, + .cmap_num = 3, + .bpp = 4, + .kern_classes = 1, + .bitmap_format = 0, +#if LV_VERSION_CHECK(8, 0, 0) + .cache = &cache +#endif +}; + + +/*----------------- + * PUBLIC FONT + *----------------*/ + +/*Initialize a public general font descriptor*/ +#if LV_VERSION_CHECK(8, 0, 0) +const lv_font_t lv_font_albbhptR_20 = { +#else +lv_font_t lv_font_albbhptR_20 = { +#endif + .get_glyph_dsc = lv_font_get_glyph_dsc_fmt_txt, /*Function pointer to get glyph's data*/ + .get_glyph_bitmap = lv_font_get_bitmap_fmt_txt, /*Function pointer to get glyph's bitmap*/ + .line_height = 20, /*The maximum line height required by the font default: (f.src.ascent - f.src.descent)*/ + .base_line = 4, /*Baseline measured from the bottom of the line*/ +#if !(LVGL_VERSION_MAJOR == 6 && LVGL_VERSION_MINOR == 0) + .subpx = LV_FONT_SUBPX_NONE, +#endif +#if LV_VERSION_CHECK(7, 4, 0) || LVGL_VERSION_MAJOR >= 8 + .underline_position = -1, + .underline_thickness = 1, +#endif + .dsc = &font_dsc /*The custom font data. Will be accessed by `get_glyph_bitmap/dsc` */ +}; + + + +#endif /*#if LV_FONT_ALBBHPTR_20*/ + diff --git a/application/rt-thread/t3e-pro/components/generated/guider_fonts/lv_font_arial_12.c b/application/rt-thread/t3e-pro/components/generated/guider_fonts/lv_font_arial_12.c new file mode 100644 index 00000000..c79129f0 --- /dev/null +++ b/application/rt-thread/t3e-pro/components/generated/guider_fonts/lv_font_arial_12.c @@ -0,0 +1,1404 @@ +/* + * Copyright 2025 NXP + * NXP Confidential and Proprietary. This software is owned or controlled by NXP and may only be used strictly in + * accordance with the applicable license terms. By expressly accepting such terms or by downloading, installing, + * activating and/or otherwise using the software, you are agreeing that you have read, and that you agree to + * comply with and are bound by, such license terms. If you do not agree to be bound by the applicable license + * terms, then you may not retain, install, activate or otherwise use the software. + */ +/******************************************************************************* + * Size: 12 px + * Bpp: 4 + * Opts: --user-data-dir=C:\Users\Administrator\AppData\Roaming\gui-guider --app-path=F:\NXP\GUI-Guider-1.7.2-GA\resources\app.asar --no-sandbox --no-zygote --lang=zh-CN --device-scale-factor=1 --num-raster-threads=4 --enable-main-frame-before-activation --renderer-client-id=5 --time-ticks-at-unix-epoch=-1751849969641099 --launch-time-ticks=21590435736 --mojo-platform-channel-handle=3384 --field-trial-handle=2100,i,17908936022241249150,4582176927500139337,131072 --disable-features=SpareRendererForSitePerProcess,WinRetrieveSuggestionsOnlyOnDemand /prefetch:1 + ******************************************************************************/ + +#ifdef LV_LVGL_H_INCLUDE_SIMPLE +#include "lvgl.h" +#else +#include "lvgl.h" +#endif + +#ifndef LV_FONT_ARIAL_12 +#define LV_FONT_ARIAL_12 1 +#endif + +#if LV_FONT_ARIAL_12 + +/*----------------- + * BITMAPS + *----------------*/ + +/*Store the image of the glyphs*/ +static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { + /* U+0020 " " */ + + /* U+0021 "!" */ + 0xf5, 0xf5, 0xe4, 0xd3, 0xc2, 0xb1, 0x30, 0xe4, + + /* U+0022 "\"" */ + 0x7c, 0x8b, 0x6b, 0x7a, 0x37, 0x47, + + /* U+0023 "#" */ + 0x0, 0xb2, 0xd, 0x0, 0xd, 0x3, 0xa0, 0xbe, + 0xed, 0xee, 0x60, 0x67, 0xa, 0x30, 0x9, 0x40, + 0xd0, 0xb, 0xfd, 0xdf, 0xd6, 0xd, 0x5, 0x90, + 0x4, 0x90, 0x85, 0x0, + + /* U+0024 "$" */ + 0x1, 0x7c, 0x40, 0x1, 0xe8, 0xcc, 0x70, 0x5b, + 0x9, 0x27, 0x3, 0xe2, 0x90, 0x0, 0x5, 0xde, + 0x81, 0x0, 0x0, 0xb9, 0xc0, 0x34, 0x9, 0xf, + 0x5, 0xd1, 0x94, 0xe0, 0x8, 0xee, 0xc3, 0x0, + 0x0, 0x90, 0x0, + + /* U+0025 "%" */ + 0xa, 0xba, 0x0, 0x1b, 0x0, 0x3b, 0x9, 0x40, + 0xa3, 0x0, 0x3b, 0xa, 0x43, 0xa0, 0x0, 0x8, + 0xb8, 0xc, 0x10, 0x0, 0x0, 0x0, 0x67, 0x2b, + 0xb3, 0x0, 0x1, 0xc0, 0xa4, 0x1d, 0x0, 0x9, + 0x40, 0xa3, 0xd, 0x0, 0x2a, 0x0, 0x3c, 0xb5, + + /* U+0026 "&" */ + 0x0, 0xad, 0xd2, 0x0, 0x5, 0xc0, 0x7a, 0x0, + 0x2, 0xe2, 0xb6, 0x0, 0x1, 0xcf, 0x70, 0x0, + 0x1d, 0x77, 0xd2, 0xa0, 0x6b, 0x0, 0x9f, 0xb0, + 0x4e, 0x10, 0x6f, 0xc1, 0x6, 0xde, 0xb2, 0xa7, + 0x0, 0x0, 0x0, 0x0, + + /* U+0027 "'" */ + 0x7b, 0x6b, 0x37, + + /* U+0028 "(" */ + 0x0, 0x84, 0x3, 0xa0, 0xb, 0x40, 0x1f, 0x0, + 0x3e, 0x0, 0x3d, 0x0, 0x1f, 0x0, 0xb, 0x40, + 0x3, 0xb0, 0x0, 0x94, + + /* U+0029 ")" */ + 0xb, 0x0, 0x6, 0x80, 0x0, 0xe1, 0x0, 0xb5, + 0x0, 0x98, 0x0, 0x88, 0x0, 0xb5, 0x0, 0xe0, + 0x6, 0x80, 0xb, 0x0, + + /* U+002A "*" */ + 0x1, 0xa0, 0x5, 0xbd, 0xb1, 0xb, 0xa5, 0x0, + 0x30, 0x30, + + /* U+002B "+" */ + 0x0, 0x5, 0x0, 0x0, 0x0, 0xf0, 0x0, 0x0, + 0xf, 0x0, 0x4, 0xff, 0xff, 0xf5, 0x0, 0xf, + 0x0, 0x0, 0x0, 0xf0, 0x0, + + /* U+002C "," */ + 0x20, 0xf4, 0x72, 0x50, + + /* U+002D "-" */ + 0xaf, 0xfa, + + /* U+002E "." */ + 0x20, 0xe4, + + /* U+002F "/" */ + 0x0, 0xa2, 0x0, 0xd0, 0x4, 0x80, 0x9, 0x30, + 0xd, 0x0, 0x39, 0x0, 0x84, 0x0, 0xc0, 0x0, + + /* U+0030 "0" */ + 0x4, 0xdd, 0xa0, 0x1, 0xe2, 0x8, 0x90, 0x5b, + 0x0, 0x1f, 0x7, 0x90, 0x0, 0xf1, 0x79, 0x0, + 0xf, 0x5, 0xb0, 0x1, 0xf0, 0x1e, 0x20, 0x8a, + 0x0, 0x4d, 0xdb, 0x10, + + /* U+0031 "1" */ + 0x0, 0x97, 0x2b, 0xf7, 0x85, 0x97, 0x0, 0x97, + 0x0, 0x97, 0x0, 0x97, 0x0, 0x97, 0x0, 0x97, + + /* U+0032 "2" */ + 0x6, 0xdd, 0xc3, 0x3, 0xe1, 0x5, 0xd0, 0x24, + 0x0, 0x2f, 0x0, 0x0, 0xa, 0x90, 0x0, 0xb, + 0xa0, 0x0, 0x2d, 0x80, 0x0, 0x1e, 0x50, 0x0, + 0x8, 0xff, 0xff, 0xf0, + + /* U+0033 "3" */ + 0x6, 0xdd, 0xb1, 0x3, 0xe1, 0x8, 0x90, 0x0, + 0x0, 0xa8, 0x0, 0x4, 0xde, 0x20, 0x0, 0x0, + 0x6d, 0x2, 0x40, 0x0, 0xf1, 0x3e, 0x10, 0x6d, + 0x0, 0x6d, 0xdb, 0x20, + + /* U+0034 "4" */ + 0x0, 0x5, 0xe0, 0x0, 0x2, 0xdf, 0x0, 0x0, + 0xc4, 0xf0, 0x0, 0xa5, 0x2f, 0x0, 0x69, 0x2, + 0xf0, 0xc, 0xee, 0xef, 0xe1, 0x0, 0x2, 0xf0, + 0x0, 0x0, 0x2f, 0x0, + + /* U+0035 "5" */ + 0x9, 0xff, 0xfc, 0x0, 0xd3, 0x0, 0x0, 0xf, + 0xbe, 0xb1, 0x2, 0xb2, 0x8, 0xc0, 0x0, 0x0, + 0xf, 0x13, 0x50, 0x0, 0xf1, 0x3e, 0x10, 0x7b, + 0x0, 0x6d, 0xdb, 0x10, + + /* U+0036 "6" */ + 0x3, 0xcd, 0xc2, 0x1, 0xe3, 0x6, 0xc0, 0x5b, + 0x0, 0x2, 0x8, 0xaa, 0xdb, 0x20, 0x8e, 0x30, + 0x6d, 0x6, 0xb0, 0x0, 0xf1, 0x2e, 0x20, 0x5d, + 0x0, 0x4c, 0xdc, 0x20, + + /* U+0037 "7" */ + 0x6f, 0xff, 0xff, 0x10, 0x0, 0xa, 0x80, 0x0, + 0x6, 0xc0, 0x0, 0x0, 0xe3, 0x0, 0x0, 0x6b, + 0x0, 0x0, 0xc, 0x50, 0x0, 0x0, 0xf2, 0x0, + 0x0, 0x2f, 0x0, 0x0, + + /* U+0038 "8" */ + 0x5, 0xdd, 0xb1, 0x1, 0xf1, 0x7, 0xa0, 0x1f, + 0x20, 0x8a, 0x0, 0x6f, 0xee, 0x20, 0x3d, 0x20, + 0x6d, 0x7, 0xa0, 0x0, 0xf1, 0x4e, 0x10, 0x5d, + 0x0, 0x6d, 0xdc, 0x20, + + /* U+0039 "9" */ + 0x6, 0xdd, 0xa1, 0x4, 0xe1, 0x6, 0xb0, 0x7a, + 0x0, 0x1f, 0x4, 0xe2, 0x7, 0xf1, 0x6, 0xdd, + 0x6f, 0x10, 0x20, 0x2, 0xf0, 0x2e, 0x0, 0x99, + 0x0, 0x6d, 0xd9, 0x0, + + /* U+003A ":" */ + 0xe4, 0x20, 0x0, 0x0, 0x20, 0xe4, + + /* U+003B ";" */ + 0xf4, 0x20, 0x0, 0x0, 0x20, 0xf4, 0x72, 0x50, + + /* U+003C "<" */ + 0x0, 0x0, 0x6, 0x30, 0x3, 0x9e, 0x91, 0x2c, + 0xb5, 0x0, 0x2, 0xcb, 0x50, 0x0, 0x0, 0x39, + 0xe9, 0x10, 0x0, 0x0, 0x63, + + /* U+003D "=" */ + 0x4e, 0xee, 0xee, 0x50, 0x0, 0x0, 0x0, 0x4e, + 0xee, 0xee, 0x40, + + /* U+003E ">" */ + 0x36, 0x0, 0x0, 0x1, 0x9e, 0x93, 0x0, 0x0, + 0x5, 0xbc, 0x20, 0x0, 0x5b, 0xc2, 0x19, 0xe9, + 0x30, 0x3, 0x60, 0x0, 0x0, + + /* U+003F "?" */ + 0x6, 0xdd, 0xc3, 0x3, 0xe1, 0x5, 0xe0, 0x24, + 0x0, 0x1f, 0x0, 0x0, 0x1c, 0x70, 0x0, 0xd, + 0x60, 0x0, 0x2, 0xd0, 0x0, 0x0, 0x2, 0x0, + 0x0, 0x4, 0xe0, 0x0, + + /* U+0040 "@" */ + 0x0, 0x5, 0xbc, 0xcd, 0xa2, 0x0, 0x0, 0xaa, + 0x20, 0x0, 0x4c, 0x50, 0x7, 0x80, 0x7d, 0xc6, + 0xd1, 0xd1, 0xd, 0x7, 0xb0, 0xd, 0x90, 0x85, + 0x39, 0xe, 0x30, 0xb, 0x60, 0x76, 0x58, 0x1f, + 0x0, 0xe, 0x20, 0xc3, 0x2b, 0xe, 0x40, 0x9f, + 0x8, 0x90, 0xc, 0x44, 0xed, 0x6e, 0xe8, 0x1, + 0x2, 0xd7, 0x10, 0x0, 0x5, 0xd3, 0x0, 0x7, + 0xcd, 0xdd, 0xc8, 0x10, + + /* U+0041 "A" */ + 0x0, 0x0, 0xeb, 0x0, 0x0, 0x0, 0x5, 0xbe, + 0x20, 0x0, 0x0, 0xc, 0x69, 0x90, 0x0, 0x0, + 0x2f, 0x13, 0xf1, 0x0, 0x0, 0x9a, 0x0, 0xd7, + 0x0, 0x0, 0xfe, 0xee, 0xee, 0x0, 0x6, 0xd0, + 0x0, 0x1f, 0x50, 0xc, 0x60, 0x0, 0x8, 0xc0, + + /* U+0042 "B" */ + 0x2f, 0xff, 0xfc, 0x30, 0x2f, 0x0, 0x7, 0xd0, + 0x2f, 0x0, 0x7, 0xc0, 0x2f, 0xff, 0xff, 0x40, + 0x2f, 0x0, 0x5, 0xf1, 0x2f, 0x0, 0x0, 0xe5, + 0x2f, 0x0, 0x4, 0xf1, 0x2f, 0xff, 0xed, 0x50, + + /* U+0043 "C" */ + 0x0, 0x7d, 0xee, 0x80, 0x0, 0x9c, 0x20, 0x1b, + 0x90, 0x2f, 0x10, 0x0, 0x16, 0x5, 0xc0, 0x0, + 0x0, 0x0, 0x5d, 0x0, 0x0, 0x0, 0x2, 0xf1, + 0x0, 0x1, 0xc0, 0xa, 0xb2, 0x1, 0xba, 0x0, + 0x8, 0xde, 0xe8, 0x0, + + /* U+0044 "D" */ + 0x1f, 0xff, 0xfc, 0x50, 0x1, 0xf1, 0x0, 0x3e, + 0x50, 0x1f, 0x10, 0x0, 0x6d, 0x1, 0xf1, 0x0, + 0x2, 0xf0, 0x1f, 0x10, 0x0, 0x2f, 0x1, 0xf1, + 0x0, 0x6, 0xc0, 0x1f, 0x10, 0x4, 0xe5, 0x1, + 0xff, 0xfe, 0xc5, 0x0, + + /* U+0045 "E" */ + 0xf, 0xff, 0xff, 0xf2, 0xf, 0x10, 0x0, 0x0, + 0xf, 0x10, 0x0, 0x0, 0xf, 0xff, 0xff, 0xc0, + 0xf, 0x10, 0x0, 0x0, 0xf, 0x10, 0x0, 0x0, + 0xf, 0x10, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf5, + + /* U+0046 "F" */ + 0xf, 0xff, 0xff, 0xc0, 0xf2, 0x0, 0x0, 0xf, + 0x20, 0x0, 0x0, 0xff, 0xff, 0xf2, 0xf, 0x20, + 0x0, 0x0, 0xf2, 0x0, 0x0, 0xf, 0x20, 0x0, + 0x0, 0xf2, 0x0, 0x0, + + /* U+0047 "G" */ + 0x0, 0x6c, 0xee, 0xb3, 0x0, 0x8d, 0x30, 0x6, + 0xf1, 0x1f, 0x20, 0x0, 0x6, 0x24, 0xd0, 0x0, + 0x0, 0x0, 0x4d, 0x0, 0xf, 0xff, 0x81, 0xf2, + 0x0, 0x0, 0x89, 0x8, 0xd4, 0x0, 0x4c, 0x80, + 0x5, 0xcf, 0xfc, 0x60, + + /* U+0048 "H" */ + 0xf, 0x10, 0x0, 0x7b, 0xf, 0x10, 0x0, 0x7b, + 0xf, 0x10, 0x0, 0x7b, 0xf, 0xff, 0xff, 0xfb, + 0xf, 0x10, 0x0, 0x7b, 0xf, 0x10, 0x0, 0x7b, + 0xf, 0x10, 0x0, 0x7b, 0xf, 0x10, 0x0, 0x7b, + + /* U+0049 "I" */ + 0xe4, 0xe4, 0xe4, 0xe4, 0xe4, 0xe4, 0xe4, 0xe4, + + /* U+004A "J" */ + 0x0, 0x1, 0xf1, 0x0, 0x1, 0xf1, 0x0, 0x1, + 0xf1, 0x0, 0x1, 0xf1, 0x0, 0x1, 0xf1, 0x43, + 0x1, 0xf0, 0x8a, 0x5, 0xe0, 0x1b, 0xfd, 0x40, + + /* U+004B "K" */ + 0x2f, 0x0, 0x4, 0xe4, 0x2f, 0x0, 0x5e, 0x30, + 0x2f, 0x6, 0xd2, 0x0, 0x2f, 0x7f, 0x70, 0x0, + 0x2f, 0xc4, 0xf3, 0x0, 0x2f, 0x0, 0x6e, 0x10, + 0x2f, 0x0, 0xa, 0xc0, 0x2f, 0x0, 0x0, 0xd9, + + /* U+004C "L" */ + 0x2f, 0x0, 0x0, 0x2, 0xf0, 0x0, 0x0, 0x2f, + 0x0, 0x0, 0x2, 0xf0, 0x0, 0x0, 0x2f, 0x0, + 0x0, 0x2, 0xf0, 0x0, 0x0, 0x2f, 0x0, 0x0, + 0x2, 0xff, 0xff, 0xf3, + + /* U+004D "M" */ + 0x1f, 0xc0, 0x0, 0x9, 0xf1, 0x1f, 0xe2, 0x0, + 0xd, 0xf1, 0x1f, 0x88, 0x0, 0x58, 0xf1, 0x1f, + 0x2d, 0x0, 0xb2, 0xf1, 0x1f, 0xc, 0x31, 0xc0, + 0xf1, 0x1f, 0x7, 0x97, 0x60, 0xf1, 0x1f, 0x1, + 0xed, 0x10, 0xf1, 0x1f, 0x0, 0xba, 0x0, 0xf1, + + /* U+004E "N" */ + 0x1f, 0x70, 0x0, 0x6b, 0x1f, 0xf2, 0x0, 0x6b, + 0x1f, 0x7d, 0x0, 0x6b, 0x1f, 0xb, 0x90, 0x6b, + 0x1f, 0x1, 0xe5, 0x6b, 0x1f, 0x0, 0x4e, 0x8b, + 0x1f, 0x0, 0x9, 0xfb, 0x1f, 0x0, 0x0, 0xdb, + + /* U+004F "O" */ + 0x0, 0x7d, 0xfe, 0x91, 0x0, 0x9c, 0x30, 0x8, + 0xe1, 0x2f, 0x10, 0x0, 0xb, 0x85, 0xd0, 0x0, + 0x0, 0x6b, 0x5d, 0x0, 0x0, 0x7, 0xb2, 0xf1, + 0x0, 0x0, 0xb8, 0x9, 0xc3, 0x1, 0x8e, 0x10, + 0x6, 0xde, 0xe9, 0x10, + + /* U+0050 "P" */ + 0x1f, 0xff, 0xfe, 0x70, 0x1f, 0x10, 0x3, 0xe4, + 0x1f, 0x10, 0x0, 0xb7, 0x1f, 0x10, 0x3, 0xf3, + 0x1f, 0xff, 0xfd, 0x60, 0x1f, 0x10, 0x0, 0x0, + 0x1f, 0x10, 0x0, 0x0, 0x1f, 0x10, 0x0, 0x0, + + /* U+0051 "Q" */ + 0x0, 0x7d, 0xee, 0x91, 0x0, 0xac, 0x20, 0x19, + 0xd0, 0x3f, 0x10, 0x0, 0xc, 0x76, 0xc0, 0x0, + 0x0, 0x7a, 0x6c, 0x0, 0x0, 0x8, 0xa3, 0xf1, + 0x0, 0x20, 0xc7, 0xa, 0xc2, 0x2d, 0xcd, 0x0, + 0x7, 0xde, 0xe9, 0xd6, 0x0, 0x0, 0x0, 0x1, + 0x40, + + /* U+0052 "R" */ + 0x1f, 0xee, 0xee, 0xc2, 0x1, 0xf1, 0x0, 0x9, + 0xb0, 0x1f, 0x10, 0x0, 0xaa, 0x1, 0xff, 0xff, + 0xe9, 0x10, 0x1f, 0x10, 0x4e, 0x40, 0x1, 0xf1, + 0x0, 0x6e, 0x10, 0x1f, 0x10, 0x0, 0xc9, 0x1, + 0xf1, 0x0, 0x3, 0xf3, + + /* U+0053 "S" */ + 0x3, 0xcf, 0xeb, 0x20, 0xe, 0x50, 0x7, 0xd0, + 0xf, 0x20, 0x0, 0x60, 0x6, 0xec, 0x84, 0x0, + 0x0, 0x3, 0x7c, 0xc0, 0x48, 0x0, 0x0, 0xd5, + 0x2f, 0x61, 0x4, 0xf2, 0x4, 0xcf, 0xfc, 0x40, + + /* U+0054 "T" */ + 0xbf, 0xff, 0xff, 0xf1, 0x0, 0xe, 0x40, 0x0, + 0x0, 0xe, 0x40, 0x0, 0x0, 0xe, 0x40, 0x0, + 0x0, 0xe, 0x40, 0x0, 0x0, 0xe, 0x40, 0x0, + 0x0, 0xe, 0x40, 0x0, 0x0, 0xe, 0x40, 0x0, + + /* U+0055 "U" */ + 0x1f, 0x10, 0x0, 0x7b, 0x1f, 0x10, 0x0, 0x7b, + 0x1f, 0x10, 0x0, 0x7b, 0x1f, 0x10, 0x0, 0x7b, + 0xf, 0x10, 0x0, 0x7b, 0xf, 0x20, 0x0, 0x89, + 0xb, 0xa1, 0x3, 0xe5, 0x1, 0xae, 0xfd, 0x60, + + /* U+0056 "V" */ + 0xb7, 0x0, 0x0, 0x7b, 0x5d, 0x0, 0x0, 0xd4, + 0xe, 0x30, 0x3, 0xd0, 0x7, 0xa0, 0xa, 0x60, + 0x1, 0xe0, 0x1e, 0x0, 0x0, 0xa6, 0x79, 0x0, + 0x0, 0x4c, 0xc2, 0x0, 0x0, 0xd, 0xc0, 0x0, + + /* U+0057 "W" */ + 0xb7, 0x0, 0x2f, 0x80, 0x1, 0xf0, 0x6b, 0x0, + 0x7b, 0xd0, 0x5, 0xb0, 0x2e, 0x0, 0xc3, 0xe2, + 0x9, 0x70, 0xd, 0x31, 0xe0, 0x97, 0xd, 0x20, + 0x9, 0x75, 0xa0, 0x4b, 0x2d, 0x0, 0x4, 0xaa, + 0x50, 0xe, 0x69, 0x0, 0x0, 0xde, 0x0, 0xb, + 0xd4, 0x0, 0x0, 0xbb, 0x0, 0x6, 0xf0, 0x0, + + /* U+0058 "X" */ + 0x3f, 0x30, 0x1, 0xd4, 0x6, 0xd1, 0xb, 0x70, + 0x0, 0xaa, 0x8a, 0x0, 0x0, 0xd, 0xe0, 0x0, + 0x0, 0x3e, 0xf3, 0x0, 0x1, 0xe5, 0x6e, 0x10, + 0xb, 0x90, 0xa, 0xc0, 0x8c, 0x0, 0x0, 0xd8, + + /* U+0059 "Y" */ + 0x9c, 0x0, 0x0, 0xc8, 0xd, 0x70, 0x7, 0xc0, + 0x3, 0xf2, 0x3e, 0x10, 0x0, 0x7c, 0xd4, 0x0, + 0x0, 0xc, 0x90, 0x0, 0x0, 0xa, 0x70, 0x0, + 0x0, 0xa, 0x70, 0x0, 0x0, 0xa, 0x70, 0x0, + + /* U+005A "Z" */ + 0x4f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x1d, 0x60, + 0x0, 0x0, 0xd8, 0x0, 0x0, 0xb, 0xa0, 0x0, + 0x0, 0x9c, 0x0, 0x0, 0x7, 0xd1, 0x0, 0x0, + 0x5e, 0x20, 0x0, 0x0, 0xcf, 0xff, 0xff, 0xf0, + + /* U+005B "[" */ + 0x3f, 0xd1, 0x3e, 0x0, 0x3e, 0x0, 0x3e, 0x0, + 0x3e, 0x0, 0x3e, 0x0, 0x3e, 0x0, 0x3e, 0x0, + 0x3e, 0x0, 0x3f, 0xd1, + + /* U+005C "\\" */ + 0xc0, 0x0, 0x84, 0x0, 0x39, 0x0, 0xd, 0x0, + 0x9, 0x30, 0x4, 0x80, 0x0, 0xd0, 0x0, 0xa2, + + /* U+005D "]" */ + 0xae, 0x90, 0x89, 0x8, 0x90, 0x89, 0x8, 0x90, + 0x89, 0x8, 0x90, 0x89, 0x8, 0x9a, 0xe9, + + /* U+005E "^" */ + 0x0, 0x52, 0x0, 0x1, 0xeb, 0x0, 0x8, 0x7d, + 0x20, 0xe, 0x16, 0x90, 0x79, 0x0, 0xe1, + + /* U+005F "_" */ + 0x2b, 0xbb, 0xbb, 0xb9, + + /* U+0060 "`" */ + 0x28, 0x0, 0x87, + + /* U+0061 "a" */ + 0x8, 0xcd, 0xd4, 0x2, 0xb0, 0x6, 0xc0, 0x1, + 0x68, 0xcd, 0x3, 0xe7, 0x45, 0xd0, 0x8a, 0x0, + 0x9d, 0x1, 0xcc, 0xc8, 0xf0, + + /* U+0062 "b" */ + 0x3d, 0x0, 0x0, 0x3, 0xd0, 0x0, 0x0, 0x3e, + 0xad, 0xc2, 0x3, 0xf4, 0x5, 0xd0, 0x3d, 0x0, + 0xf, 0x13, 0xc0, 0x0, 0xf1, 0x3f, 0x20, 0x4c, + 0x3, 0xda, 0xbb, 0x20, + + /* U+0063 "c" */ + 0x6, 0xdd, 0xb1, 0x3e, 0x10, 0x79, 0x79, 0x0, + 0x0, 0x79, 0x0, 0x2, 0x3e, 0x10, 0x7a, 0x6, + 0xdd, 0xb1, + + /* U+0064 "d" */ + 0x0, 0x0, 0x3d, 0x0, 0x0, 0x3d, 0x7, 0xdc, + 0x9d, 0x4d, 0x10, 0xad, 0x88, 0x0, 0x3d, 0x89, + 0x0, 0x3d, 0x3e, 0x10, 0x9d, 0x6, 0xdc, 0x9d, + + /* U+0065 "e" */ + 0x5, 0xcc, 0xb2, 0x3, 0xd0, 0x3, 0xe0, 0x7e, + 0xdd, 0xde, 0x17, 0xa0, 0x0, 0x10, 0x3f, 0x20, + 0x5e, 0x0, 0x6d, 0xdc, 0x30, + + /* U+0066 "f" */ + 0x8, 0xf9, 0xf, 0x20, 0xbf, 0xc3, 0xf, 0x10, + 0xf, 0x10, 0xf, 0x10, 0xf, 0x10, 0xf, 0x10, + + /* U+0067 "g" */ + 0x7, 0xdc, 0x8e, 0x4d, 0x10, 0x9e, 0x88, 0x0, + 0x2e, 0x88, 0x0, 0x2e, 0x3d, 0x10, 0x9d, 0x6, + 0xdd, 0xad, 0x37, 0x0, 0x7a, 0xa, 0xdd, 0xb1, + + /* U+0068 "h" */ + 0x3d, 0x0, 0x0, 0x3d, 0x0, 0x0, 0x3e, 0xad, + 0xd4, 0x3f, 0x40, 0x6c, 0x3d, 0x0, 0x3d, 0x3d, + 0x0, 0x3d, 0x3d, 0x0, 0x3d, 0x3d, 0x0, 0x3d, + + /* U+0069 "i" */ + 0x3d, 0x2, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, + + /* U+006A "j" */ + 0x3, 0xd0, 0x2, 0x3, 0xd0, 0x3d, 0x3, 0xd0, + 0x3d, 0x3, 0xd0, 0x3d, 0x4, 0xc6, 0xe6, + + /* U+006B "k" */ + 0x3d, 0x0, 0x0, 0x3d, 0x0, 0x0, 0x3d, 0x3, + 0xe3, 0x3d, 0x3d, 0x30, 0x3f, 0xf9, 0x0, 0x3f, + 0x3e, 0x30, 0x3d, 0x5, 0xd0, 0x3d, 0x0, 0xa9, + + /* U+006C "l" */ + 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, + + /* U+006D "m" */ + 0x3c, 0xab, 0xc5, 0xac, 0x90, 0x3f, 0x20, 0xac, + 0x0, 0xe2, 0x3d, 0x0, 0x89, 0x0, 0xd3, 0x3d, + 0x0, 0x88, 0x0, 0xd3, 0x3d, 0x0, 0x88, 0x0, + 0xd3, 0x3d, 0x0, 0x88, 0x0, 0xd3, + + /* U+006E "n" */ + 0x3c, 0xab, 0xd3, 0x3f, 0x20, 0x5c, 0x3e, 0x0, + 0x3d, 0x3d, 0x0, 0x3d, 0x3d, 0x0, 0x3d, 0x3d, + 0x0, 0x3d, + + /* U+006F "o" */ + 0x6, 0xdd, 0xb2, 0x3, 0xe1, 0x5, 0xd0, 0x88, + 0x0, 0xe, 0x28, 0x80, 0x0, 0xe2, 0x3e, 0x10, + 0x5e, 0x0, 0x6d, 0xdc, 0x20, + + /* U+0070 "p" */ + 0x3d, 0xaa, 0xc3, 0x3, 0xf2, 0x3, 0xd0, 0x3c, + 0x0, 0xf, 0x23, 0xd0, 0x0, 0xf2, 0x3f, 0x30, + 0x6d, 0x3, 0xeb, 0xdc, 0x20, 0x3d, 0x0, 0x0, + 0x3, 0xd0, 0x0, 0x0, + + /* U+0071 "q" */ + 0x7, 0xdc, 0x8d, 0x4d, 0x0, 0x9d, 0x88, 0x0, + 0x3d, 0x79, 0x0, 0x3d, 0x3e, 0x10, 0x9d, 0x5, + 0xdc, 0xad, 0x0, 0x0, 0x3d, 0x0, 0x0, 0x3d, + + /* U+0072 "r" */ + 0x3c, 0xcd, 0x3, 0xf2, 0x0, 0x3e, 0x0, 0x3, + 0xd0, 0x0, 0x3d, 0x0, 0x3, 0xd0, 0x0, + + /* U+0073 "s" */ + 0xa, 0xcc, 0x90, 0x6a, 0x0, 0xa1, 0x2e, 0xb7, + 0x20, 0x0, 0x48, 0xe4, 0x69, 0x0, 0xa7, 0xa, + 0xdc, 0xa0, + + /* U+0074 "t" */ + 0x0, 0x0, 0xb, 0x0, 0xf, 0x0, 0x9f, 0xc1, + 0xf, 0x0, 0xf, 0x0, 0xf, 0x0, 0xf, 0x10, + 0xa, 0xf2, + + /* U+0075 "u" */ + 0x3d, 0x0, 0x3d, 0x3d, 0x0, 0x3d, 0x3d, 0x0, + 0x3d, 0x3d, 0x0, 0x4d, 0x2f, 0x10, 0xad, 0x8, + 0xec, 0x7d, + + /* U+0076 "v" */ + 0xa7, 0x0, 0x6a, 0x4d, 0x0, 0xc4, 0xd, 0x32, + 0xd0, 0x7, 0x98, 0x70, 0x1, 0xee, 0x10, 0x0, + 0xab, 0x0, + + /* U+0077 "w" */ + 0xc4, 0x5, 0xf0, 0x9, 0x67, 0x80, 0xae, 0x40, + 0xe1, 0x2d, 0xd, 0x78, 0x3c, 0x0, 0xd4, 0xb2, + 0xd8, 0x70, 0x8, 0xd7, 0xe, 0xe1, 0x0, 0x3f, + 0x20, 0x9c, 0x0, + + /* U+0078 "x" */ + 0x5d, 0x0, 0xd5, 0xa, 0x99, 0x90, 0x0, 0xdd, + 0x0, 0x2, 0xee, 0x20, 0xc, 0x66, 0xc0, 0x8b, + 0x0, 0xb8, + + /* U+0079 "y" */ + 0x98, 0x0, 0x5a, 0x3e, 0x0, 0xc4, 0xc, 0x42, + 0xd0, 0x5, 0xb8, 0x70, 0x0, 0xed, 0x10, 0x0, + 0x8a, 0x0, 0x0, 0xc3, 0x0, 0x4e, 0x80, 0x0, + + /* U+007A "z" */ + 0x6c, 0xcc, 0xf8, 0x0, 0x6, 0xc0, 0x0, 0x5d, + 0x10, 0x4, 0xe2, 0x0, 0x3e, 0x30, 0x0, 0xbe, + 0xdd, 0xda, + + /* U+007B "{" */ + 0x2, 0xda, 0x6, 0x90, 0x7, 0x80, 0xb, 0x50, + 0xab, 0x0, 0xc, 0x40, 0x7, 0x70, 0x7, 0x80, + 0x6, 0xa0, 0x1, 0xda, + + /* U+007C "|" */ + 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, + 0xe0, 0xe0, + + /* U+007D "}" */ + 0xad, 0x10, 0x9, 0x60, 0x8, 0x70, 0x5, 0xb0, + 0x0, 0xba, 0x3, 0xc0, 0x8, 0x70, 0x8, 0x70, + 0x9, 0x60, 0xad, 0x10, + + /* U+007E "~" */ + 0x2c, 0xd8, 0x11, 0x56, 0x43, 0xaf, 0xe3, 0x0, + 0x0, 0x0, 0x0, + + /* U+F001 "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x12, 0x0, 0x0, + 0x0, 0x3, 0x7c, 0xff, 0x0, 0x0, 0x59, 0xef, + 0xff, 0xff, 0x0, 0xe, 0xff, 0xff, 0xff, 0xff, + 0x0, 0xf, 0xff, 0xfd, 0x84, 0x8f, 0x0, 0xf, + 0xd7, 0x20, 0x0, 0x8f, 0x0, 0xf, 0x80, 0x0, + 0x0, 0x8f, 0x0, 0xf, 0x80, 0x0, 0x0, 0x8f, + 0x0, 0xf, 0x80, 0x0, 0x7b, 0xdf, 0x2, 0x3f, + 0x80, 0x6, 0xff, 0xff, 0xaf, 0xff, 0x80, 0x2, + 0xef, 0xf9, 0xef, 0xff, 0x60, 0x0, 0x2, 0x10, + 0x29, 0xa7, 0x0, 0x0, 0x0, 0x0, + + /* U+F008 "" */ + 0xb4, 0xdf, 0xff, 0xff, 0xfd, 0x4b, 0xe8, 0xe7, + 0x22, 0x22, 0x7e, 0x8e, 0xc0, 0xc5, 0x0, 0x0, + 0x6c, 0xc, 0xfc, 0xf6, 0x11, 0x11, 0x7f, 0xcf, + 0xc0, 0xcf, 0xff, 0xff, 0xfb, 0xc, 0xfc, 0xf6, + 0x11, 0x11, 0x7f, 0xcf, 0xc0, 0xc5, 0x0, 0x0, + 0x6c, 0xc, 0xe8, 0xe7, 0x22, 0x22, 0x7e, 0x8e, + 0xb4, 0xdf, 0xff, 0xff, 0xfd, 0x4b, + + /* U+F00B "" */ + 0xdf, 0xf6, 0x9f, 0xff, 0xff, 0xfd, 0xff, 0xf8, + 0xcf, 0xff, 0xff, 0xff, 0xef, 0xf6, 0xaf, 0xff, + 0xff, 0xfe, 0x13, 0x20, 0x3, 0x33, 0x33, 0x31, + 0xff, 0xf7, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xf8, + 0xcf, 0xff, 0xff, 0xff, 0xff, 0xf7, 0xbf, 0xff, + 0xff, 0xff, 0x13, 0x20, 0x3, 0x33, 0x33, 0x31, + 0xef, 0xf6, 0xaf, 0xff, 0xff, 0xfe, 0xff, 0xf8, + 0xcf, 0xff, 0xff, 0xff, 0xdf, 0xf6, 0xaf, 0xff, + 0xff, 0xfd, + + /* U+F00C "" */ + 0x0, 0x0, 0x0, 0x0, 0x3, 0xd4, 0x0, 0x0, + 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x3, + 0xff, 0xf4, 0x4d, 0x30, 0x0, 0x3f, 0xff, 0x40, + 0xef, 0xf3, 0x3, 0xff, 0xf4, 0x0, 0x4f, 0xff, + 0x6f, 0xff, 0x40, 0x0, 0x4, 0xff, 0xff, 0xf4, + 0x0, 0x0, 0x0, 0x4f, 0xff, 0x40, 0x0, 0x0, + 0x0, 0x3, 0xd3, 0x0, 0x0, 0x0, + + /* U+F00D "" */ + 0x14, 0x0, 0x0, 0x22, 0xd, 0xf7, 0x0, 0x4f, + 0xf1, 0x9f, 0xf7, 0x4f, 0xfd, 0x0, 0xaf, 0xff, + 0xfd, 0x10, 0x0, 0xbf, 0xfe, 0x10, 0x0, 0x4f, + 0xff, 0xf7, 0x0, 0x4f, 0xfd, 0xaf, 0xf7, 0xe, + 0xfd, 0x10, 0xaf, 0xf2, 0x5b, 0x10, 0x0, 0x99, + 0x0, + + /* U+F011 "" */ + 0x0, 0x0, 0x7, 0x70, 0x0, 0x0, 0x0, 0x32, + 0xf, 0xf0, 0x24, 0x0, 0x5, 0xfc, 0xf, 0xf0, + 0xcf, 0x50, 0x1f, 0xf4, 0xf, 0xf0, 0x5f, 0xf1, + 0x7f, 0x80, 0xf, 0xf0, 0x8, 0xf7, 0xbf, 0x20, + 0xf, 0xf0, 0x2, 0xfb, 0xcf, 0x10, 0xe, 0xe0, + 0x1, 0xfc, 0xaf, 0x40, 0x1, 0x10, 0x4, 0xfa, + 0x5f, 0xb0, 0x0, 0x0, 0xb, 0xf6, 0xd, 0xfa, + 0x10, 0x1, 0xaf, 0xd0, 0x2, 0xdf, 0xfc, 0xcf, + 0xfd, 0x20, 0x0, 0x8, 0xef, 0xfe, 0x91, 0x0, + 0x0, 0x0, 0x1, 0x10, 0x0, 0x0, + + /* U+F013 "" */ + 0x0, 0x0, 0x14, 0x41, 0x0, 0x0, 0x0, 0x0, + 0x7f, 0xf7, 0x0, 0x0, 0x3, 0x43, 0xdf, 0xfd, + 0x34, 0x30, 0xe, 0xff, 0xff, 0xff, 0xff, 0xe0, + 0x6f, 0xff, 0xfb, 0xbf, 0xff, 0xf6, 0x1b, 0xff, + 0x70, 0x7, 0xff, 0xb1, 0x7, 0xff, 0x20, 0x2, + 0xff, 0x70, 0x1b, 0xff, 0x70, 0x7, 0xff, 0xb1, + 0x6f, 0xff, 0xfb, 0xbf, 0xff, 0xf6, 0xe, 0xff, + 0xff, 0xff, 0xff, 0xe0, 0x3, 0x42, 0xcf, 0xfc, + 0x23, 0x30, 0x0, 0x0, 0x7f, 0xf7, 0x0, 0x0, + 0x0, 0x0, 0x4, 0x41, 0x0, 0x0, + + /* U+F015 "" */ + 0x0, 0x0, 0x0, 0x73, 0x3, 0x83, 0x0, 0x0, + 0x0, 0x1d, 0xff, 0x67, 0xf7, 0x0, 0x0, 0x3, + 0xee, 0x5a, 0xfe, 0xf7, 0x0, 0x0, 0x6f, 0xd3, + 0xb5, 0x7f, 0xf7, 0x0, 0x9, 0xfb, 0x3d, 0xff, + 0x85, 0xfe, 0x30, 0xbf, 0x95, 0xff, 0xff, 0xfb, + 0x3e, 0xf4, 0x76, 0x6f, 0xff, 0xff, 0xff, 0xd2, + 0xa1, 0x0, 0xcf, 0xff, 0xff, 0xff, 0xf4, 0x0, + 0x0, 0xcf, 0xfa, 0x2, 0xff, 0xf4, 0x0, 0x0, + 0xcf, 0xfa, 0x2, 0xff, 0xf4, 0x0, 0x0, 0xaf, + 0xf8, 0x1, 0xff, 0xf3, 0x0, + + /* U+F019 "" */ + 0x0, 0x0, 0x27, 0x72, 0x0, 0x0, 0x0, 0x0, + 0x7f, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xf8, + 0x0, 0x0, 0x0, 0x0, 0x8f, 0xf8, 0x0, 0x0, + 0x0, 0x0, 0x8f, 0xf8, 0x0, 0x0, 0x0, 0xdf, + 0xff, 0xff, 0xfd, 0x0, 0x0, 0x4f, 0xff, 0xff, + 0xf4, 0x0, 0x0, 0x4, 0xff, 0xff, 0x40, 0x0, + 0x23, 0x33, 0x5f, 0xf5, 0x33, 0x32, 0xff, 0xff, + 0xa4, 0x4a, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xcf, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x5c, 0x8f, + 0x9a, 0xaa, 0xaa, 0xaa, 0xaa, 0xa8, + + /* U+F01C "" */ + 0x0, 0x4f, 0xff, 0xff, 0xff, 0xb0, 0x0, 0x1, + 0xed, 0x88, 0x88, 0x89, 0xf8, 0x0, 0xa, 0xf2, + 0x0, 0x0, 0x0, 0xaf, 0x30, 0x5f, 0x70, 0x0, + 0x0, 0x0, 0x1e, 0xc0, 0xef, 0x88, 0x60, 0x0, + 0x28, 0x8b, 0xf6, 0xff, 0xff, 0xf3, 0x0, 0xbf, + 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, + 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, + + /* U+F021 "" */ + 0x0, 0x0, 0x1, 0x10, 0x0, 0x59, 0x0, 0x19, + 0xef, 0xfd, 0x70, 0x9f, 0x3, 0xef, 0xda, 0x9d, + 0xfe, 0xbf, 0xe, 0xf6, 0x0, 0x0, 0x5f, 0xff, + 0x7f, 0x70, 0x0, 0x3f, 0xff, 0xff, 0x69, 0x0, + 0x0, 0x2a, 0xaa, 0xa9, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xaa, 0xaa, 0xa2, 0x0, 0x0, 0xa6, + 0xff, 0xfe, 0xf3, 0x0, 0x7, 0xf7, 0xff, 0xf5, + 0x0, 0x0, 0x7f, 0xe0, 0xfb, 0xef, 0xd9, 0xad, + 0xfe, 0x30, 0xfa, 0x8, 0xef, 0xfe, 0x91, 0x0, + 0x95, 0x0, 0x1, 0x10, 0x0, 0x0, + + /* U+F026 "" */ + 0x0, 0x0, 0x2a, 0x0, 0x2, 0xef, 0x78, 0x8e, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xdf, 0xff, 0xff, 0x0, 0x7, 0xff, + 0x0, 0x0, 0x7f, 0x0, 0x0, 0x1, + + /* U+F027 "" */ + 0x0, 0x0, 0x2a, 0x0, 0x0, 0x0, 0x2e, 0xf0, + 0x0, 0x78, 0x8e, 0xff, 0x3, 0xf, 0xff, 0xff, + 0xf0, 0xba, 0xff, 0xff, 0xff, 0x3, 0xff, 0xff, + 0xff, 0xf0, 0xaa, 0xdf, 0xff, 0xff, 0x4, 0x0, + 0x0, 0x8f, 0xf0, 0x0, 0x0, 0x0, 0x8f, 0x0, + 0x0, 0x0, 0x0, 0x10, 0x0, + + /* U+F028 "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x6, 0xd2, 0x0, 0x0, 0x0, + 0x2a, 0x0, 0x11, 0x8e, 0x10, 0x0, 0x2, 0xef, + 0x0, 0x7d, 0x2b, 0x90, 0x78, 0x8e, 0xff, 0x3, + 0xa, 0xb3, 0xf0, 0xff, 0xff, 0xff, 0xb, 0xa1, + 0xf1, 0xe3, 0xff, 0xff, 0xff, 0x3, 0xf0, 0xe3, + 0xc5, 0xff, 0xff, 0xff, 0xb, 0xa1, 0xf1, 0xe3, + 0xdf, 0xff, 0xff, 0x3, 0xa, 0xb3, 0xf0, 0x0, + 0x7, 0xff, 0x0, 0x7d, 0x2b, 0x90, 0x0, 0x0, + 0x7f, 0x0, 0x11, 0x9e, 0x10, 0x0, 0x0, 0x1, + 0x0, 0x6, 0xd2, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, + + /* U+F03E "" */ + 0xbf, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xfd, 0x5b, + 0xff, 0xff, 0xff, 0xff, 0xf5, 0x1, 0xff, 0xff, + 0xef, 0xff, 0xfb, 0x18, 0xff, 0xf6, 0x1c, 0xff, + 0xff, 0xfc, 0xff, 0x60, 0x1, 0xdf, 0xff, 0x60, + 0x96, 0x0, 0x0, 0x8f, 0xf9, 0x0, 0x0, 0x0, + 0x0, 0x8f, 0xfc, 0x88, 0x88, 0x88, 0x88, 0xcf, + 0xbf, 0xff, 0xff, 0xff, 0xff, 0xfb, + + /* U+F043 "" */ + 0x0, 0x2, 0x40, 0x0, 0x0, 0x0, 0xcf, 0x10, + 0x0, 0x0, 0x3f, 0xf7, 0x0, 0x0, 0xa, 0xff, + 0xe0, 0x0, 0x4, 0xff, 0xff, 0x80, 0x0, 0xef, + 0xff, 0xff, 0x30, 0x8f, 0xff, 0xff, 0xfc, 0xe, + 0xff, 0xff, 0xff, 0xf2, 0xf9, 0xcf, 0xff, 0xff, + 0x3d, 0xc5, 0xff, 0xff, 0xf1, 0x6f, 0xa3, 0xbf, + 0xfa, 0x0, 0x8f, 0xff, 0xfb, 0x0, 0x0, 0x26, + 0x74, 0x0, 0x0, + + /* U+F048 "" */ + 0x58, 0x0, 0x0, 0x35, 0x9f, 0x10, 0x5, 0xfe, + 0x9f, 0x10, 0x6f, 0xfe, 0x9f, 0x17, 0xff, 0xfe, + 0x9f, 0x9f, 0xff, 0xfe, 0x9f, 0xff, 0xff, 0xfe, + 0x9f, 0xef, 0xff, 0xfe, 0x9f, 0x2d, 0xff, 0xfe, + 0x9f, 0x10, 0xcf, 0xfe, 0x9f, 0x10, 0xb, 0xfe, + 0x8f, 0x0, 0x0, 0x9b, 0x0, 0x0, 0x0, 0x0, + + /* U+F04B "" */ + 0x46, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfd, 0x40, + 0x0, 0x0, 0x0, 0xff, 0xff, 0xa1, 0x0, 0x0, + 0xf, 0xff, 0xff, 0xf7, 0x0, 0x0, 0xff, 0xff, + 0xff, 0xfd, 0x50, 0xf, 0xff, 0xff, 0xff, 0xff, + 0xb1, 0xff, 0xff, 0xff, 0xff, 0xff, 0x6f, 0xff, + 0xff, 0xff, 0xff, 0xb1, 0xff, 0xff, 0xff, 0xfd, + 0x40, 0xf, 0xff, 0xff, 0xf7, 0x0, 0x0, 0xff, + 0xff, 0xa1, 0x0, 0x0, 0xf, 0xfd, 0x40, 0x0, + 0x0, 0x0, 0x36, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+F04C "" */ + 0xaf, 0xfe, 0x30, 0xaf, 0xfe, 0x3f, 0xff, 0xf7, + 0xf, 0xff, 0xf7, 0xff, 0xff, 0x80, 0xff, 0xff, + 0x8f, 0xff, 0xf8, 0xf, 0xff, 0xf8, 0xff, 0xff, + 0x80, 0xff, 0xff, 0x8f, 0xff, 0xf8, 0xf, 0xff, + 0xf8, 0xff, 0xff, 0x80, 0xff, 0xff, 0x8f, 0xff, + 0xf8, 0xf, 0xff, 0xf8, 0xff, 0xff, 0x80, 0xff, + 0xff, 0x8f, 0xff, 0xf7, 0xf, 0xff, 0xf7, 0x48, + 0x98, 0x10, 0x48, 0x98, 0x10, + + /* U+F04D "" */ + 0x48, 0x88, 0x88, 0x88, 0x88, 0x1f, 0xff, 0xff, + 0xff, 0xff, 0xf7, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x8f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x8f, 0xff, 0xff, 0xff, 0xff, + 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8f, 0xff, + 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xf7, 0xaf, + 0xff, 0xff, 0xff, 0xfe, 0x30, + + /* U+F051 "" */ + 0x26, 0x0, 0x0, 0x58, 0x7f, 0xa0, 0x0, 0xbf, + 0x8f, 0xfb, 0x0, 0xbf, 0x8f, 0xff, 0xc1, 0xbf, + 0x8f, 0xff, 0xfd, 0xcf, 0x8f, 0xff, 0xff, 0xff, + 0x8f, 0xff, 0xff, 0xef, 0x8f, 0xff, 0xf4, 0xbf, + 0x8f, 0xff, 0x40, 0xbf, 0x8f, 0xe3, 0x0, 0xbf, + 0x5d, 0x20, 0x0, 0xae, 0x0, 0x0, 0x0, 0x0, + + /* U+F052 "" */ + 0x0, 0x0, 0x3, 0x70, 0x0, 0x0, 0x0, 0x0, + 0x3f, 0xfa, 0x0, 0x0, 0x0, 0x2, 0xef, 0xff, + 0x90, 0x0, 0x0, 0x1e, 0xff, 0xff, 0xf8, 0x0, + 0x1, 0xdf, 0xff, 0xff, 0xff, 0x70, 0xc, 0xff, + 0xff, 0xff, 0xff, 0xf4, 0xd, 0xff, 0xff, 0xff, + 0xff, 0xf5, 0x1, 0x34, 0x44, 0x44, 0x44, 0x30, + 0xd, 0xff, 0xff, 0xff, 0xff, 0xf5, 0xf, 0xff, + 0xff, 0xff, 0xff, 0xf8, 0xc, 0xff, 0xff, 0xff, + 0xff, 0xf5, + + /* U+F053 "" */ + 0x0, 0x0, 0x3, 0x10, 0x0, 0x5, 0xfb, 0x0, + 0x5, 0xff, 0x40, 0x5, 0xff, 0x40, 0x5, 0xff, + 0x50, 0x3, 0xff, 0x50, 0x0, 0xb, 0xfc, 0x10, + 0x0, 0xb, 0xfc, 0x10, 0x0, 0xc, 0xfc, 0x10, + 0x0, 0xc, 0xfb, 0x0, 0x0, 0xa, 0x50, + + /* U+F054 "" */ + 0x3, 0x10, 0x0, 0x3, 0xfc, 0x10, 0x0, 0xb, + 0xfc, 0x10, 0x0, 0xb, 0xfc, 0x10, 0x0, 0xb, + 0xfc, 0x10, 0x0, 0xd, 0xfb, 0x0, 0x5, 0xff, + 0x50, 0x5, 0xff, 0x50, 0x5, 0xff, 0x50, 0x3, + 0xff, 0x50, 0x0, 0xa, 0x50, 0x0, 0x0, + + /* U+F067 "" */ + 0x0, 0x0, 0x69, 0x10, 0x0, 0x0, 0x0, 0xd, + 0xf5, 0x0, 0x0, 0x0, 0x0, 0xef, 0x60, 0x0, + 0x0, 0x0, 0xe, 0xf6, 0x0, 0x0, 0x58, 0x88, + 0xff, 0xb8, 0x88, 0x1f, 0xff, 0xff, 0xff, 0xff, + 0xf7, 0x9b, 0xbb, 0xff, 0xdb, 0xbb, 0x30, 0x0, + 0xe, 0xf6, 0x0, 0x0, 0x0, 0x0, 0xef, 0x60, + 0x0, 0x0, 0x0, 0xe, 0xf6, 0x0, 0x0, 0x0, + 0x0, 0x9d, 0x20, 0x0, 0x0, + + /* U+F068 "" */ + 0x46, 0x66, 0x66, 0x66, 0x66, 0x1f, 0xff, 0xff, + 0xff, 0xff, 0xf7, 0xad, 0xdd, 0xdd, 0xdd, 0xdd, + 0x40, + + /* U+F06E "" */ + 0x0, 0x3, 0xad, 0xff, 0xc7, 0x0, 0x0, 0x0, + 0x9f, 0xe6, 0x24, 0xaf, 0xe3, 0x0, 0xb, 0xff, + 0x20, 0x77, 0x9, 0xff, 0x40, 0x7f, 0xf9, 0x0, + 0xcf, 0xa1, 0xff, 0xe1, 0xef, 0xf6, 0x7f, 0xff, + 0xf0, 0xef, 0xf7, 0x8f, 0xf9, 0x3f, 0xff, 0xc1, + 0xff, 0xe1, 0xb, 0xff, 0x26, 0xca, 0x19, 0xff, + 0x40, 0x0, 0x9f, 0xe6, 0x24, 0xaf, 0xe3, 0x0, + 0x0, 0x3, 0x9d, 0xff, 0xc7, 0x0, 0x0, + + /* U+F070 "" */ + 0x32, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xdf, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1c, 0xf8, 0x4a, 0xef, 0xeb, 0x50, 0x0, 0x0, + 0x0, 0x9f, 0xfd, 0x52, 0x5d, 0xfc, 0x10, 0x0, + 0x0, 0x5, 0xfe, 0x4a, 0x70, 0xcf, 0xe1, 0x0, + 0xb, 0x80, 0x2d, 0xff, 0xf7, 0x4f, 0xfb, 0x0, + 0x2f, 0xfb, 0x0, 0xaf, 0xfb, 0x2f, 0xff, 0x30, + 0xb, 0xff, 0x50, 0x7, 0xfe, 0x7f, 0xfb, 0x0, + 0x1, 0xdf, 0xc0, 0x0, 0x3e, 0xff, 0xe1, 0x0, + 0x0, 0x1b, 0xfc, 0x42, 0x1, 0xbf, 0xa0, 0x0, + 0x0, 0x0, 0x5b, 0xef, 0xb0, 0x8, 0xfc, 0x10, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4f, 0xe0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0x40, + + /* U+F071 "" */ + 0x0, 0x0, 0x0, 0x3, 0x10, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x5, 0xfd, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xef, 0xf7, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x8f, 0xff, 0xf1, 0x0, 0x0, 0x0, 0x0, + 0x2f, 0xfd, 0xef, 0xa0, 0x0, 0x0, 0x0, 0xb, + 0xfb, 0x3, 0xff, 0x30, 0x0, 0x0, 0x4, 0xff, + 0xc0, 0x4f, 0xfc, 0x0, 0x0, 0x0, 0xdf, 0xfd, + 0x5, 0xff, 0xf6, 0x0, 0x0, 0x7f, 0xff, 0xf8, + 0xcf, 0xff, 0xe1, 0x0, 0x1f, 0xff, 0xfc, 0x4, + 0xff, 0xff, 0x90, 0xa, 0xff, 0xff, 0xd2, 0x7f, + 0xff, 0xff, 0x20, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf6, 0x4, 0x78, 0x88, 0x88, 0x88, 0x88, + 0x87, 0x0, + + /* U+F074 "" */ + 0x0, 0x0, 0x0, 0x0, 0x6, 0x10, 0x0, 0x0, + 0x0, 0x0, 0xf, 0xc1, 0xff, 0xf8, 0x0, 0x2e, + 0xff, 0xfc, 0xcd, 0xff, 0x62, 0xef, 0xdf, 0xf9, + 0x0, 0x2c, 0x4e, 0xf9, 0xf, 0x90, 0x0, 0x2, + 0xef, 0x90, 0x7, 0x0, 0x0, 0x2e, 0xf8, 0x88, + 0xf, 0xa0, 0xcd, 0xff, 0x80, 0xdf, 0xdf, 0xf9, + 0xff, 0xf8, 0x0, 0x1e, 0xff, 0xfc, 0x0, 0x0, + 0x0, 0x0, 0xf, 0xc0, 0x0, 0x0, 0x0, 0x0, + 0x6, 0x10, + + /* U+F077 "" */ + 0x0, 0x0, 0x27, 0x0, 0x0, 0x0, 0x0, 0x2e, + 0xf9, 0x0, 0x0, 0x0, 0x2e, 0xff, 0xf9, 0x0, + 0x0, 0x2e, 0xf9, 0x2e, 0xf9, 0x0, 0x2e, 0xf9, + 0x0, 0x2e, 0xf9, 0xb, 0xf9, 0x0, 0x0, 0x2e, + 0xf4, 0x27, 0x0, 0x0, 0x0, 0x27, 0x0, + + /* U+F078 "" */ + 0x27, 0x0, 0x0, 0x0, 0x27, 0xb, 0xf9, 0x0, + 0x0, 0x2e, 0xf4, 0x2e, 0xf9, 0x0, 0x2e, 0xf9, + 0x0, 0x2e, 0xf9, 0x2e, 0xf9, 0x0, 0x0, 0x2e, + 0xff, 0xf9, 0x0, 0x0, 0x0, 0x2e, 0xf9, 0x0, + 0x0, 0x0, 0x0, 0x26, 0x0, 0x0, 0x0, + + /* U+F079 "" */ + 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x3f, 0xc0, 0x7, 0x77, 0x77, 0x72, 0x0, + 0x3, 0xff, 0xfc, 0x2e, 0xff, 0xff, 0xf9, 0x0, + 0xf, 0xcf, 0xcf, 0xa0, 0x0, 0x0, 0xe9, 0x0, + 0x4, 0x1e, 0x93, 0x20, 0x0, 0x0, 0xe9, 0x0, + 0x0, 0xe, 0x90, 0x0, 0x0, 0x0, 0xe9, 0x0, + 0x0, 0xe, 0x90, 0x0, 0x0, 0xb5, 0xe9, 0x97, + 0x0, 0xe, 0xc7, 0x77, 0x73, 0xbf, 0xff, 0xf6, + 0x0, 0xd, 0xff, 0xff, 0xfd, 0xb, 0xff, 0x70, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa6, 0x0, + + /* U+F07B "" */ + 0xbf, 0xff, 0xf6, 0x0, 0x0, 0x0, 0xff, 0xff, + 0xff, 0x98, 0x88, 0x74, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xbf, 0xff, 0xff, 0xff, 0xff, 0xfb, + + /* U+F093 "" */ + 0x0, 0x0, 0x2, 0x20, 0x0, 0x0, 0x0, 0x0, + 0x3e, 0xe3, 0x0, 0x0, 0x0, 0x3, 0xef, 0xfe, + 0x30, 0x0, 0x0, 0x3e, 0xff, 0xff, 0xe3, 0x0, + 0x0, 0xef, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, + 0x8f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xf8, + 0x0, 0x0, 0x0, 0x0, 0x8f, 0xf8, 0x0, 0x0, + 0x23, 0x32, 0x8f, 0xf8, 0x23, 0x32, 0xff, 0xfe, + 0x39, 0x93, 0xef, 0xff, 0xff, 0xff, 0xc9, 0x9c, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x5c, 0x8f, + 0x9a, 0xaa, 0xaa, 0xaa, 0xaa, 0xa8, + + /* U+F095 "" */ + 0x0, 0x0, 0x0, 0x0, 0x3, 0x62, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xcf, 0xfe, 0x0, 0x0, 0x0, + 0x0, 0x3f, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x9, + 0xff, 0xfd, 0x0, 0x0, 0x0, 0x0, 0x2d, 0xff, + 0x90, 0x0, 0x0, 0x0, 0x0, 0x4f, 0xf4, 0x0, + 0x0, 0x0, 0x0, 0xc, 0xfd, 0x0, 0x0, 0x1, + 0x0, 0x9, 0xff, 0x40, 0x1, 0x8e, 0xe1, 0x1a, + 0xff, 0x70, 0x0, 0xef, 0xff, 0xde, 0xff, 0x90, + 0x0, 0xc, 0xff, 0xff, 0xff, 0x60, 0x0, 0x0, + 0x8f, 0xff, 0xe9, 0x10, 0x0, 0x0, 0x2, 0x76, + 0x30, 0x0, 0x0, 0x0, 0x0, + + /* U+F0C4 "" */ + 0x7, 0x93, 0x0, 0x0, 0x22, 0xa, 0xff, 0xf2, + 0x0, 0x8f, 0xf5, 0xf9, 0x1f, 0x70, 0x8f, 0xf9, + 0xc, 0xfc, 0xf8, 0x8f, 0xf9, 0x0, 0x1a, 0xef, + 0xff, 0xf9, 0x0, 0x0, 0x0, 0xef, 0xfc, 0x0, + 0x0, 0x7, 0xbf, 0xff, 0xf6, 0x0, 0xa, 0xff, + 0xfa, 0xbf, 0xf6, 0x0, 0xf9, 0x1f, 0x70, 0xbf, + 0xf6, 0xc, 0xfc, 0xf4, 0x0, 0xbf, 0xf4, 0x1a, + 0xc6, 0x0, 0x0, 0x56, 0x0, + + /* U+F0C5 "" */ + 0x0, 0x3, 0x44, 0x41, 0x20, 0x0, 0x0, 0xff, + 0xff, 0x5e, 0x40, 0x24, 0x1f, 0xff, 0xf5, 0xee, + 0x2f, 0xf4, 0xff, 0xff, 0xc8, 0x82, 0xff, 0x4f, + 0xff, 0xff, 0xff, 0x5f, 0xf4, 0xff, 0xff, 0xff, + 0xf5, 0xff, 0x4f, 0xff, 0xff, 0xff, 0x5f, 0xf4, + 0xff, 0xff, 0xff, 0xf5, 0xff, 0x4f, 0xff, 0xff, + 0xff, 0x5f, 0xf4, 0xff, 0xff, 0xff, 0xf4, 0xff, + 0x93, 0x44, 0x44, 0x43, 0xf, 0xff, 0xff, 0xff, + 0x50, 0x0, 0x68, 0x88, 0x88, 0x71, 0x0, 0x0, + + /* U+F0C7 "" */ + 0x48, 0x88, 0x88, 0x87, 0x0, 0xf, 0xff, 0xff, + 0xff, 0xfb, 0x0, 0xf8, 0x0, 0x0, 0xb, 0xfb, + 0xf, 0x80, 0x0, 0x0, 0xbf, 0xf3, 0xfb, 0x77, + 0x77, 0x7d, 0xff, 0x4f, 0xff, 0xff, 0xff, 0xff, + 0xf4, 0xff, 0xff, 0x42, 0xdf, 0xff, 0x4f, 0xff, + 0xc0, 0x8, 0xff, 0xf4, 0xff, 0xfe, 0x0, 0xaf, + 0xff, 0x4f, 0xff, 0xfc, 0xaf, 0xff, 0xf4, 0xaf, + 0xff, 0xff, 0xff, 0xfd, 0x10, + + /* U+F0C9 "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, + 0xff, 0xff, 0xf7, 0x9a, 0xaa, 0xaa, 0xaa, 0xaa, + 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x89, 0x99, + 0x99, 0x99, 0x99, 0x3f, 0xff, 0xff, 0xff, 0xff, + 0xf7, 0x12, 0x22, 0x22, 0x22, 0x22, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x9a, 0xaa, 0xaa, 0xaa, + 0xaa, 0x4f, 0xff, 0xff, 0xff, 0xff, 0xf7, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+F0E0 "" */ + 0xbf, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x4e, 0xff, 0xff, 0xff, + 0xff, 0xe4, 0xc3, 0xbf, 0xff, 0xff, 0xfb, 0x3c, + 0xff, 0x57, 0xff, 0xff, 0x75, 0xff, 0xff, 0xf9, + 0x3d, 0xd3, 0x9f, 0xff, 0xff, 0xff, 0xd5, 0x5d, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xbf, 0xff, 0xff, 0xff, 0xff, 0xfb, + + /* U+F0E7 "" */ + 0x1, 0xbb, 0xba, 0x10, 0x0, 0x5f, 0xff, 0xf1, + 0x0, 0x7, 0xff, 0xfb, 0x0, 0x0, 0x9f, 0xff, + 0x60, 0x0, 0xb, 0xff, 0xff, 0xff, 0x60, 0xef, + 0xff, 0xff, 0xf1, 0xe, 0xff, 0xff, 0xf8, 0x0, + 0x0, 0xc, 0xfe, 0x0, 0x0, 0x0, 0xff, 0x50, + 0x0, 0x0, 0x3f, 0xc0, 0x0, 0x0, 0x7, 0xf3, + 0x0, 0x0, 0x0, 0xa9, 0x0, 0x0, 0x0, 0x2, + 0x0, 0x0, 0x0, + + /* U+F0EA "" */ + 0x0, 0x2a, 0x50, 0x0, 0x0, 0xe, 0xff, 0x8f, + 0xff, 0x20, 0x0, 0xff, 0xf8, 0xff, 0xf4, 0x0, + 0xf, 0xff, 0xeb, 0xbb, 0x30, 0x0, 0xff, 0xf4, + 0x99, 0x92, 0x60, 0xf, 0xff, 0x5f, 0xff, 0x4f, + 0xa0, 0xff, 0xf5, 0xff, 0xf5, 0x56, 0x1f, 0xff, + 0x5f, 0xff, 0xff, 0xf4, 0xff, 0xf5, 0xff, 0xff, + 0xff, 0x4e, 0xff, 0x5f, 0xff, 0xff, 0xf4, 0x0, + 0x5, 0xff, 0xff, 0xff, 0x40, 0x0, 0x5f, 0xff, + 0xff, 0xf4, 0x0, 0x0, 0x44, 0x44, 0x44, 0x0, + + /* U+F0F3 "" */ + 0x0, 0x0, 0x15, 0x0, 0x0, 0x0, 0x0, 0x9, + 0xf1, 0x0, 0x0, 0x0, 0x2d, 0xff, 0xf9, 0x0, + 0x0, 0xe, 0xff, 0xff, 0xf7, 0x0, 0x5, 0xff, + 0xff, 0xff, 0xd0, 0x0, 0x8f, 0xff, 0xff, 0xff, + 0x0, 0xa, 0xff, 0xff, 0xff, 0xf2, 0x0, 0xdf, + 0xff, 0xff, 0xff, 0x50, 0x6f, 0xff, 0xff, 0xff, + 0xfd, 0xe, 0xff, 0xff, 0xff, 0xff, 0xf6, 0x24, + 0x44, 0x44, 0x44, 0x43, 0x0, 0x0, 0x2f, 0xf9, + 0x0, 0x0, 0x0, 0x0, 0x46, 0x0, 0x0, 0x0, + + /* U+F11C "" */ + 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, 0xfc, + 0x8e, 0x8e, 0x8e, 0x88, 0xe8, 0xf7, 0xf8, 0xc, + 0xc, 0xb, 0x0, 0xb0, 0xf8, 0xff, 0xec, 0xfc, + 0xec, 0xee, 0xcf, 0xf8, 0xff, 0xa0, 0xc0, 0xa0, + 0x77, 0x2f, 0xf8, 0xff, 0xec, 0xfc, 0xec, 0xee, + 0xcf, 0xf8, 0xf8, 0xc, 0x0, 0x0, 0x0, 0xb0, + 0xf8, 0xfc, 0x8e, 0x88, 0x88, 0x88, 0xe8, 0xf7, + 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, + + /* U+F124 "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0x30, 0x0, + 0x0, 0x0, 0x0, 0x18, 0xef, 0xe0, 0x0, 0x0, + 0x0, 0x29, 0xff, 0xff, 0xb0, 0x0, 0x0, 0x3a, + 0xff, 0xff, 0xff, 0x30, 0x0, 0x4c, 0xff, 0xff, + 0xff, 0xfc, 0x0, 0xb, 0xff, 0xff, 0xff, 0xff, + 0xf5, 0x0, 0xe, 0xff, 0xff, 0xff, 0xff, 0xd0, + 0x0, 0x1, 0x34, 0x44, 0xdf, 0xff, 0x60, 0x0, + 0x0, 0x0, 0x0, 0xcf, 0xfe, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xcf, 0xf8, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xcf, 0xf1, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xbf, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0, 0x26, + 0x0, 0x0, 0x0, + + /* U+F15B "" */ + 0x9b, 0xbb, 0xb2, 0x70, 0xf, 0xff, 0xff, 0x4f, + 0x90, 0xff, 0xff, 0xf4, 0xff, 0x9f, 0xff, 0xff, + 0x54, 0x44, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, 0x44, + 0x44, 0x44, 0x30, + + /* U+F1EB "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x5, 0x9b, 0xcb, 0x95, 0x0, 0x0, 0x0, + 0x8f, 0xff, 0xff, 0xff, 0xff, 0x80, 0x3, 0xef, + 0xfa, 0x53, 0x23, 0x5a, 0xff, 0xe3, 0xdf, 0xa1, + 0x0, 0x0, 0x0, 0x1, 0xaf, 0xd2, 0x60, 0x5, + 0xbe, 0xfe, 0xb5, 0x0, 0x52, 0x0, 0x1c, 0xff, + 0xfe, 0xff, 0xfc, 0x10, 0x0, 0x2, 0xec, 0x40, + 0x0, 0x4c, 0xe2, 0x0, 0x0, 0x1, 0x0, 0x1, + 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0xa, 0xfa, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0xd6, 0x0, + 0x0, 0x0, + + /* U+F240 "" */ + 0x37, 0x77, 0x77, 0x77, 0x77, 0x77, 0x75, 0xf, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 0xf8, + 0x34, 0x44, 0x44, 0x44, 0x44, 0x4f, 0xdf, 0x8c, + 0xff, 0xff, 0xff, 0xff, 0xf2, 0xcf, 0xf8, 0xcf, + 0xff, 0xff, 0xff, 0xff, 0x8, 0xff, 0x89, 0xcc, + 0xcc, 0xcc, 0xcc, 0xc3, 0xff, 0xfb, 0x77, 0x77, + 0x77, 0x77, 0x77, 0x9f, 0x9c, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xe1, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, + + /* U+F241 "" */ + 0x37, 0x77, 0x77, 0x77, 0x77, 0x77, 0x75, 0xf, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 0xf8, + 0x34, 0x44, 0x44, 0x43, 0x0, 0x4f, 0xdf, 0x8c, + 0xff, 0xff, 0xff, 0xc0, 0x2, 0xcf, 0xf8, 0xcf, + 0xff, 0xff, 0xfc, 0x0, 0x8, 0xff, 0x89, 0xcc, + 0xcc, 0xcc, 0x90, 0x3, 0xff, 0xfb, 0x77, 0x77, + 0x77, 0x77, 0x77, 0x9f, 0x9c, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xe1, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, + + /* U+F242 "" */ + 0x37, 0x77, 0x77, 0x77, 0x77, 0x77, 0x75, 0xf, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 0xf8, + 0x34, 0x44, 0x42, 0x0, 0x0, 0x4f, 0xdf, 0x8c, + 0xff, 0xff, 0x80, 0x0, 0x2, 0xcf, 0xf8, 0xcf, + 0xff, 0xf8, 0x0, 0x0, 0x8, 0xff, 0x89, 0xcc, + 0xcc, 0x60, 0x0, 0x3, 0xff, 0xfb, 0x77, 0x77, + 0x77, 0x77, 0x77, 0x9f, 0x9c, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xe1, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, + + /* U+F243 "" */ + 0x37, 0x77, 0x77, 0x77, 0x77, 0x77, 0x75, 0xf, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 0xf8, + 0x34, 0x41, 0x0, 0x0, 0x0, 0x4f, 0xdf, 0x8c, + 0xff, 0x40, 0x0, 0x0, 0x2, 0xcf, 0xf8, 0xcf, + 0xf4, 0x0, 0x0, 0x0, 0x8, 0xff, 0x89, 0xcc, + 0x30, 0x0, 0x0, 0x3, 0xff, 0xfb, 0x77, 0x77, + 0x77, 0x77, 0x77, 0x9f, 0x9c, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xe1, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, + + /* U+F244 "" */ + 0x37, 0x77, 0x77, 0x77, 0x77, 0x77, 0x75, 0xf, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 0xf8, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x4f, 0xdf, 0x80, + 0x0, 0x0, 0x0, 0x0, 0x2, 0xcf, 0xf8, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0x80, 0x0, + 0x0, 0x0, 0x0, 0x3, 0xff, 0xfb, 0x77, 0x77, + 0x77, 0x77, 0x77, 0x9f, 0x9c, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xe1, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, + + /* U+F287 "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x25, 0xfb, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x5, 0xcb, 0xfe, 0x0, 0x0, 0x0, + 0x1, 0x0, 0xd, 0x10, 0x42, 0x0, 0x0, 0x0, + 0x9f, 0xd1, 0x68, 0x0, 0x0, 0x0, 0x68, 0x0, + 0xff, 0xfe, 0xee, 0xed, 0xdd, 0xdd, 0xef, 0xc0, + 0x9f, 0xd1, 0x0, 0xb3, 0x0, 0x0, 0x68, 0x0, + 0x1, 0x0, 0x0, 0x3b, 0x5, 0x74, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x9, 0xbe, 0xfb, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2d, 0xfb, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+F293 "" */ + 0x0, 0x0, 0x34, 0x20, 0x0, 0x0, 0x6e, 0xfe, + 0xfd, 0x20, 0x4, 0xff, 0xf3, 0xff, 0xd0, 0xc, + 0xff, 0xf0, 0x4f, 0xf5, 0xf, 0xd5, 0xf2, 0x95, + 0xf8, 0x2f, 0xf7, 0x41, 0x3c, 0xfa, 0x3f, 0xff, + 0x60, 0xaf, 0xfb, 0x3f, 0xfe, 0x20, 0x4f, 0xfb, + 0x2f, 0xe2, 0x92, 0x75, 0xfa, 0xf, 0xeb, 0xf1, + 0x49, 0xf8, 0x9, 0xff, 0xf0, 0x9f, 0xf2, 0x1, + 0xdf, 0xf9, 0xff, 0x90, 0x0, 0x6, 0xab, 0x95, + 0x0, + + /* U+F2ED "" */ + 0x0, 0x4, 0x88, 0x70, 0x0, 0xb, 0xcc, 0xff, + 0xff, 0xdc, 0xc5, 0xbc, 0xcc, 0xcc, 0xcc, 0xcc, + 0x52, 0x88, 0x88, 0x88, 0x88, 0x60, 0x4f, 0xff, + 0xff, 0xff, 0xfc, 0x4, 0xfa, 0xae, 0x6f, 0x5f, + 0xc0, 0x4f, 0xaa, 0xe6, 0xf4, 0xfc, 0x4, 0xfa, + 0xae, 0x6f, 0x4f, 0xc0, 0x4f, 0xaa, 0xe6, 0xf4, + 0xfc, 0x4, 0xfa, 0xae, 0x6f, 0x4f, 0xc0, 0x4f, + 0xaa, 0xe6, 0xf5, 0xfc, 0x3, 0xff, 0xff, 0xff, + 0xff, 0xb0, 0x6, 0x88, 0x88, 0x88, 0x72, 0x0, + + /* U+F304 "" */ + 0x0, 0x0, 0x0, 0x0, 0x1, 0x71, 0x0, 0x0, + 0x0, 0x0, 0x2, 0xef, 0xd1, 0x0, 0x0, 0x0, + 0x1, 0x5f, 0xff, 0xc0, 0x0, 0x0, 0x2, 0xea, + 0x5f, 0xfd, 0x0, 0x0, 0x2, 0xef, 0xfa, 0x5d, + 0x20, 0x0, 0x2, 0xef, 0xff, 0xf8, 0x0, 0x0, + 0x2, 0xef, 0xff, 0xfe, 0x20, 0x0, 0x2, 0xef, + 0xff, 0xfe, 0x20, 0x0, 0x2, 0xef, 0xff, 0xfe, + 0x20, 0x0, 0x0, 0xbf, 0xff, 0xfe, 0x20, 0x0, + 0x0, 0xd, 0xff, 0xfe, 0x20, 0x0, 0x0, 0x0, + 0xff, 0xfe, 0x20, 0x0, 0x0, 0x0, 0x6, 0x64, + 0x10, 0x0, 0x0, 0x0, 0x0, + + /* U+F55A "" */ + 0x0, 0x5, 0xef, 0xff, 0xff, 0xff, 0xff, 0x80, + 0x5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x5, + 0xff, 0xff, 0x91, 0xdd, 0x19, 0xff, 0xf5, 0xff, + 0xff, 0xfd, 0x11, 0x11, 0xdf, 0xff, 0xef, 0xff, + 0xff, 0xfb, 0x0, 0xbf, 0xff, 0xf5, 0xff, 0xff, + 0xfd, 0x11, 0x11, 0xdf, 0xff, 0x5, 0xff, 0xff, + 0x91, 0xdd, 0x19, 0xff, 0xf0, 0x5, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x0, 0x4, 0xef, 0xff, + 0xff, 0xff, 0xff, 0x80, + + /* U+F7C2 "" */ + 0x0, 0x17, 0x88, 0x87, 0x20, 0x2d, 0xff, 0xff, + 0xfd, 0x2e, 0xa0, 0xb3, 0x78, 0xfe, 0xfa, 0xb, + 0x37, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0x4, 0x44, + 0x44, 0x44, 0x0, + + /* U+F8A2 "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x4, 0xf0, 0x0, 0x69, 0x0, + 0x0, 0x0, 0xdf, 0x0, 0x7f, 0xc0, 0x0, 0x0, + 0xd, 0xf0, 0x8f, 0xff, 0xdd, 0xdd, 0xdd, 0xff, + 0xb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xb, + 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0xc0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0 +}; + + +/*--------------------- + * GLYPH DESCRIPTION + *--------------------*/ + +static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = { + {.bitmap_index = 0, .adv_w = 0, .box_w = 0, .box_h = 0, .ofs_x = 0, .ofs_y = 0} /* id = 0 reserved */, + {.bitmap_index = 0, .adv_w = 53, .box_w = 0, .box_h = 0, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 0, .adv_w = 53, .box_w = 2, .box_h = 8, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 8, .adv_w = 68, .box_w = 4, .box_h = 3, .ofs_x = 0, .ofs_y = 5}, + {.bitmap_index = 14, .adv_w = 107, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 42, .adv_w = 107, .box_w = 7, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 77, .adv_w = 171, .box_w = 10, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 117, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 153, .adv_w = 37, .box_w = 2, .box_h = 3, .ofs_x = 0, .ofs_y = 5}, + {.bitmap_index = 156, .adv_w = 64, .box_w = 4, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 176, .adv_w = 64, .box_w = 4, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 196, .adv_w = 75, .box_w = 5, .box_h = 4, .ofs_x = 0, .ofs_y = 4}, + {.bitmap_index = 206, .adv_w = 112, .box_w = 7, .box_h = 6, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 227, .adv_w = 53, .box_w = 2, .box_h = 4, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 231, .adv_w = 64, .box_w = 4, .box_h = 1, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 233, .adv_w = 53, .box_w = 2, .box_h = 2, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 235, .adv_w = 53, .box_w = 4, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 251, .adv_w = 107, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 279, .adv_w = 107, .box_w = 4, .box_h = 8, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 295, .adv_w = 107, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 323, .adv_w = 107, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 351, .adv_w = 107, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 379, .adv_w = 107, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 407, .adv_w = 107, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 435, .adv_w = 107, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 463, .adv_w = 107, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 491, .adv_w = 107, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 519, .adv_w = 53, .box_w = 2, .box_h = 6, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 525, .adv_w = 53, .box_w = 2, .box_h = 8, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 533, .adv_w = 112, .box_w = 7, .box_h = 6, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 554, .adv_w = 112, .box_w = 7, .box_h = 3, .ofs_x = 0, .ofs_y = 3}, + {.bitmap_index = 565, .adv_w = 112, .box_w = 7, .box_h = 6, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 586, .adv_w = 107, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 614, .adv_w = 195, .box_w = 12, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 674, .adv_w = 128, .box_w = 10, .box_h = 8, .ofs_x = -1, .ofs_y = 0}, + {.bitmap_index = 714, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 746, .adv_w = 139, .box_w = 9, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 782, .adv_w = 139, .box_w = 9, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 818, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 850, .adv_w = 117, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 878, .adv_w = 149, .box_w = 9, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 914, .adv_w = 139, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 946, .adv_w = 53, .box_w = 2, .box_h = 8, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 954, .adv_w = 96, .box_w = 6, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 978, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1010, .adv_w = 107, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1038, .adv_w = 160, .box_w = 10, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1078, .adv_w = 139, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1110, .adv_w = 149, .box_w = 9, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1146, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1178, .adv_w = 149, .box_w = 9, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 1219, .adv_w = 139, .box_w = 9, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1255, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1287, .adv_w = 117, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1319, .adv_w = 139, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1351, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1383, .adv_w = 181, .box_w = 12, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1431, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1463, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1495, .adv_w = 117, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1527, .adv_w = 53, .box_w = 4, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 1547, .adv_w = 53, .box_w = 4, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1563, .adv_w = 53, .box_w = 3, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 1578, .adv_w = 90, .box_w = 6, .box_h = 5, .ofs_x = 0, .ofs_y = 4}, + {.bitmap_index = 1593, .adv_w = 107, .box_w = 8, .box_h = 1, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 1597, .adv_w = 64, .box_w = 3, .box_h = 2, .ofs_x = 0, .ofs_y = 7}, + {.bitmap_index = 1600, .adv_w = 107, .box_w = 7, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1621, .adv_w = 107, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1649, .adv_w = 96, .box_w = 6, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1667, .adv_w = 107, .box_w = 6, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1691, .adv_w = 107, .box_w = 7, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1712, .adv_w = 53, .box_w = 4, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1728, .adv_w = 107, .box_w = 6, .box_h = 8, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 1752, .adv_w = 107, .box_w = 6, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1776, .adv_w = 43, .box_w = 2, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1784, .adv_w = 43, .box_w = 3, .box_h = 10, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 1799, .adv_w = 96, .box_w = 6, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1823, .adv_w = 43, .box_w = 2, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1831, .adv_w = 160, .box_w = 10, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1861, .adv_w = 107, .box_w = 6, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1879, .adv_w = 107, .box_w = 7, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1900, .adv_w = 107, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 1928, .adv_w = 107, .box_w = 6, .box_h = 8, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 1952, .adv_w = 64, .box_w = 5, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1967, .adv_w = 96, .box_w = 6, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1985, .adv_w = 53, .box_w = 4, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 2003, .adv_w = 107, .box_w = 6, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 2021, .adv_w = 96, .box_w = 6, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 2039, .adv_w = 139, .box_w = 9, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 2066, .adv_w = 96, .box_w = 6, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 2084, .adv_w = 96, .box_w = 6, .box_h = 8, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 2108, .adv_w = 96, .box_w = 6, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 2126, .adv_w = 64, .box_w = 4, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 2146, .adv_w = 50, .box_w = 2, .box_h = 10, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 2156, .adv_w = 64, .box_w = 4, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 2176, .adv_w = 112, .box_w = 7, .box_h = 3, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 2187, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 2265, .adv_w = 192, .box_w = 12, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 2319, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 2385, .adv_w = 192, .box_w = 12, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 2439, .adv_w = 132, .box_w = 9, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 2480, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 2558, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 2636, .adv_w = 216, .box_w = 14, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 2713, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 2791, .adv_w = 216, .box_w = 14, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 2854, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 2932, .adv_w = 96, .box_w = 6, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 2962, .adv_w = 144, .box_w = 9, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 3007, .adv_w = 216, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 3098, .adv_w = 192, .box_w = 12, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 3152, .adv_w = 132, .box_w = 9, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 3211, .adv_w = 168, .box_w = 8, .box_h = 12, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 3259, .adv_w = 168, .box_w = 11, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 3331, .adv_w = 168, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 3392, .adv_w = 168, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 3453, .adv_w = 168, .box_w = 8, .box_h = 12, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 3501, .adv_w = 168, .box_w = 12, .box_h = 11, .ofs_x = -1, .ofs_y = -1}, + {.bitmap_index = 3567, .adv_w = 120, .box_w = 7, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 3606, .adv_w = 120, .box_w = 7, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 3645, .adv_w = 168, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 3706, .adv_w = 168, .box_w = 11, .box_h = 3, .ofs_x = 0, .ofs_y = 3}, + {.bitmap_index = 3723, .adv_w = 216, .box_w = 14, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 3786, .adv_w = 240, .box_w = 16, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 3890, .adv_w = 216, .box_w = 15, .box_h = 13, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 3988, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 4054, .adv_w = 168, .box_w = 11, .box_h = 7, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 4093, .adv_w = 168, .box_w = 11, .box_h = 7, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 4132, .adv_w = 240, .box_w = 16, .box_h = 10, .ofs_x = -1, .ofs_y = 0}, + {.bitmap_index = 4212, .adv_w = 192, .box_w = 12, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 4266, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 4344, .adv_w = 192, .box_w = 13, .box_h = 13, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 4429, .adv_w = 168, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 4490, .adv_w = 168, .box_w = 11, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 4562, .adv_w = 168, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 4623, .adv_w = 168, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 4684, .adv_w = 192, .box_w = 12, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 4738, .adv_w = 120, .box_w = 9, .box_h = 13, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 4797, .adv_w = 168, .box_w = 11, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 4869, .adv_w = 168, .box_w = 11, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 4941, .adv_w = 216, .box_w = 14, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 5004, .adv_w = 192, .box_w = 14, .box_h = 13, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 5095, .adv_w = 144, .box_w = 9, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 5154, .adv_w = 240, .box_w = 15, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 5244, .adv_w = 240, .box_w = 15, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 5312, .adv_w = 240, .box_w = 15, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 5380, .adv_w = 240, .box_w = 15, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 5448, .adv_w = 240, .box_w = 15, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 5516, .adv_w = 240, .box_w = 15, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 5584, .adv_w = 240, .box_w = 16, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 5672, .adv_w = 168, .box_w = 10, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 5737, .adv_w = 168, .box_w = 11, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 5809, .adv_w = 192, .box_w = 13, .box_h = 13, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 5894, .adv_w = 240, .box_w = 15, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 5962, .adv_w = 144, .box_w = 9, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 6021, .adv_w = 193, .box_w = 13, .box_h = 9, .ofs_x = 0, .ofs_y = 0} +}; + +/*--------------------- + * CHARACTER MAPPING + *--------------------*/ + +static const uint16_t unicode_list_1[] = { + 0x0, 0x7, 0xa, 0xb, 0xc, 0x10, 0x12, 0x14, + 0x18, 0x1b, 0x20, 0x25, 0x26, 0x27, 0x3d, 0x42, + 0x47, 0x4a, 0x4b, 0x4c, 0x50, 0x51, 0x52, 0x53, + 0x66, 0x67, 0x6d, 0x6f, 0x70, 0x73, 0x76, 0x77, + 0x78, 0x7a, 0x92, 0x94, 0xc3, 0xc4, 0xc6, 0xc8, + 0xdf, 0xe6, 0xe9, 0xf2, 0x11b, 0x123, 0x15a, 0x1ea, + 0x23f, 0x240, 0x241, 0x242, 0x243, 0x286, 0x292, 0x2ec, + 0x303, 0x559, 0x7c1, 0x8a1 +}; + +/*Collect the unicode lists and glyph_id offsets*/ +static const lv_font_fmt_txt_cmap_t cmaps[] = +{ + { + .range_start = 32, .range_length = 95, .glyph_id_start = 1, + .unicode_list = NULL, .glyph_id_ofs_list = NULL, .list_length = 0, .type = LV_FONT_FMT_TXT_CMAP_FORMAT0_TINY + }, + { + .range_start = 61441, .range_length = 2210, .glyph_id_start = 96, + .unicode_list = unicode_list_1, .glyph_id_ofs_list = NULL, .list_length = 60, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY + } +}; + + + +/*-------------------- + * ALL CUSTOM DATA + *--------------------*/ + +#if LV_VERSION_CHECK(8, 0, 0) +/*Store all the custom data of the font*/ +static lv_font_fmt_txt_glyph_cache_t cache; +static const lv_font_fmt_txt_dsc_t font_dsc = { +#else +static lv_font_fmt_txt_dsc_t font_dsc = { +#endif + .glyph_bitmap = glyph_bitmap, + .glyph_dsc = glyph_dsc, + .cmaps = cmaps, + .kern_dsc = NULL, + .kern_scale = 0, + .cmap_num = 2, + .bpp = 4, + .kern_classes = 0, + .bitmap_format = 0, +#if LV_VERSION_CHECK(8, 0, 0) + .cache = &cache +#endif +}; + + +/*----------------- + * PUBLIC FONT + *----------------*/ + +/*Initialize a public general font descriptor*/ +#if LV_VERSION_CHECK(8, 0, 0) +const lv_font_t lv_font_arial_12 = { +#else +lv_font_t lv_font_arial_12 = { +#endif + .get_glyph_dsc = lv_font_get_glyph_dsc_fmt_txt, /*Function pointer to get glyph's data*/ + .get_glyph_bitmap = lv_font_get_bitmap_fmt_txt, /*Function pointer to get glyph's bitmap*/ + .line_height = 12, /*The maximum line height required by the font default: (f.src.ascent - f.src.descent)*/ + .base_line = 2, /*Baseline measured from the bottom of the line*/ +#if !(LVGL_VERSION_MAJOR == 6 && LVGL_VERSION_MINOR == 0) + .subpx = LV_FONT_SUBPX_NONE, +#endif +#if LV_VERSION_CHECK(7, 4, 0) || LVGL_VERSION_MAJOR >= 8 + .underline_position = -1, + .underline_thickness = 1, +#endif + .dsc = &font_dsc /*The custom font data. Will be accessed by `get_glyph_bitmap/dsc` */ +}; + + + +#endif /*#if LV_FONT_ARIAL_12*/ + diff --git a/application/rt-thread/t3e-pro/components/generated/guider_fonts/lv_font_arial_18.c b/application/rt-thread/t3e-pro/components/generated/guider_fonts/lv_font_arial_18.c new file mode 100644 index 00000000..7c26ca08 --- /dev/null +++ b/application/rt-thread/t3e-pro/components/generated/guider_fonts/lv_font_arial_18.c @@ -0,0 +1,2379 @@ +/* + * Copyright 2025 NXP + * NXP Confidential and Proprietary. This software is owned or controlled by NXP and may only be used strictly in + * accordance with the applicable license terms. By expressly accepting such terms or by downloading, installing, + * activating and/or otherwise using the software, you are agreeing that you have read, and that you agree to + * comply with and are bound by, such license terms. If you do not agree to be bound by the applicable license + * terms, then you may not retain, install, activate or otherwise use the software. + */ +/******************************************************************************* + * Size: 18 px + * Bpp: 4 + * Opts: --user-data-dir=C:\Users\Administrator\AppData\Roaming\gui-guider --app-path=F:\NXP\GUI-Guider-1.7.2-GA\resources\app.asar --no-sandbox --no-zygote --lang=zh-CN --device-scale-factor=1 --num-raster-threads=4 --enable-main-frame-before-activation --renderer-client-id=5 --time-ticks-at-unix-epoch=-1751849969641099 --launch-time-ticks=21590435736 --mojo-platform-channel-handle=3384 --field-trial-handle=2100,i,17908936022241249150,4582176927500139337,131072 --disable-features=SpareRendererForSitePerProcess,WinRetrieveSuggestionsOnlyOnDemand /prefetch:1 + ******************************************************************************/ + +#ifdef LV_LVGL_H_INCLUDE_SIMPLE +#include "lvgl.h" +#else +#include "lvgl.h" +#endif + +#ifndef LV_FONT_ARIAL_18 +#define LV_FONT_ARIAL_18 1 +#endif + +#if LV_FONT_ARIAL_18 + +/*----------------- + * BITMAPS + *----------------*/ + +/*Store the image of the glyphs*/ +static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { + /* U+0020 " " */ + + /* U+0021 "!" */ + 0x7f, 0x87, 0xf8, 0x7f, 0x86, 0xf7, 0x5f, 0x64, + 0xf5, 0x3f, 0x42, 0xf3, 0x1f, 0x20, 0xf1, 0x2, + 0x0, 0x0, 0x5e, 0x66, 0xf7, + + /* U+0022 "\"" */ + 0x2f, 0xa4, 0xf8, 0x2f, 0xa4, 0xf8, 0x1f, 0x93, + 0xf7, 0xf, 0x60, 0xf5, 0xa, 0x30, 0xb2, + + /* U+0023 "#" */ + 0x0, 0x7, 0xd0, 0x6, 0xe0, 0x0, 0xa, 0xa0, + 0x9, 0xb0, 0x0, 0xd, 0x70, 0xc, 0x80, 0x0, + 0x1f, 0x40, 0xf, 0x50, 0xdf, 0xff, 0xff, 0xff, + 0xfc, 0x46, 0xae, 0x66, 0x9f, 0x64, 0x0, 0xab, + 0x0, 0x8c, 0x0, 0x0, 0xc8, 0x0, 0xb9, 0x0, + 0x11, 0xf6, 0x11, 0xe7, 0x11, 0xdf, 0xff, 0xff, + 0xff, 0xfc, 0x39, 0xe4, 0x48, 0xf4, 0x43, 0x9, + 0xb0, 0x7, 0xd0, 0x0, 0xc, 0x80, 0xb, 0x90, + 0x0, 0xf, 0x50, 0xe, 0x60, 0x0, + + /* U+0024 "$" */ + 0x0, 0x0, 0x97, 0x0, 0x0, 0x0, 0x8f, 0xff, + 0xe5, 0x0, 0x8, 0xf9, 0xa9, 0xcf, 0x40, 0xe, + 0xb0, 0x86, 0x1f, 0xa0, 0xf, 0x80, 0x86, 0x4, + 0x20, 0xf, 0xc0, 0x86, 0x0, 0x0, 0x8, 0xfb, + 0xa6, 0x0, 0x0, 0x0, 0x8f, 0xff, 0xb3, 0x0, + 0x0, 0x1, 0xad, 0xff, 0x40, 0x0, 0x0, 0x86, + 0x2e, 0xd0, 0x2, 0x10, 0x86, 0x8, 0xf1, 0x4f, + 0x60, 0x86, 0x8, 0xf1, 0x1f, 0xc0, 0x86, 0xd, + 0xe0, 0x7, 0xfc, 0xba, 0xcf, 0x50, 0x0, 0x6d, + 0xff, 0xd5, 0x0, 0x0, 0x0, 0x86, 0x0, 0x0, + 0x0, 0x0, 0x43, 0x0, 0x0, + + /* U+0025 "%" */ + 0xa, 0xfd, 0x40, 0x0, 0x6, 0xd0, 0x0, 0x7e, + 0x47, 0xf1, 0x0, 0xd, 0x60, 0x0, 0xd8, 0x0, + 0xe6, 0x0, 0x6d, 0x0, 0x0, 0xe7, 0x0, 0xd8, + 0x0, 0xe6, 0x0, 0x0, 0xd8, 0x0, 0xe7, 0x6, + 0xd0, 0x0, 0x0, 0x8d, 0x15, 0xf2, 0xe, 0x60, + 0x0, 0x0, 0x1b, 0xff, 0x60, 0x6d, 0x0, 0x0, + 0x0, 0x0, 0x10, 0x0, 0xe5, 0x5, 0xde, 0x80, + 0x0, 0x0, 0x6, 0xd0, 0x2f, 0x74, 0xe6, 0x0, + 0x0, 0xe, 0x50, 0x8e, 0x0, 0x9c, 0x0, 0x0, + 0x6d, 0x0, 0x9c, 0x0, 0x8d, 0x0, 0x0, 0xe5, + 0x0, 0x7d, 0x0, 0x9c, 0x0, 0x6, 0xd0, 0x0, + 0x2f, 0x64, 0xe6, 0x0, 0xe, 0x50, 0x0, 0x5, + 0xde, 0x80, + + /* U+0026 "&" */ + 0x0, 0x3, 0xcf, 0xd4, 0x0, 0x0, 0x0, 0x2f, + 0xc6, 0xcf, 0x30, 0x0, 0x0, 0x8f, 0x10, 0x2f, + 0x80, 0x0, 0x0, 0x8f, 0x30, 0x2f, 0x70, 0x0, + 0x0, 0x3f, 0xc2, 0xcf, 0x10, 0x0, 0x0, 0x8, + 0xff, 0xe3, 0x0, 0x0, 0x0, 0x2c, 0xff, 0x60, + 0x0, 0x0, 0x3, 0xfe, 0x5e, 0xf2, 0x7, 0x30, + 0xd, 0xe1, 0x4, 0xfd, 0x5f, 0x70, 0x2f, 0x90, + 0x0, 0x7f, 0xff, 0x20, 0x2f, 0x90, 0x0, 0xb, + 0xfb, 0x0, 0xe, 0xf1, 0x0, 0x1d, 0xff, 0x40, + 0x4, 0xfe, 0x89, 0xff, 0x6f, 0xf4, 0x0, 0x4c, + 0xfe, 0xa2, 0x3, 0xd1, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, + + /* U+0027 "'" */ + 0x3f, 0x93, 0xf9, 0x2f, 0x80, 0xf6, 0xa, 0x20, + + /* U+0028 "(" */ + 0x0, 0x2e, 0x10, 0xb, 0x80, 0x4, 0xf1, 0x0, + 0xbb, 0x0, 0x2f, 0x60, 0x6, 0xf1, 0x0, 0xae, + 0x0, 0xc, 0xc0, 0x0, 0xdb, 0x0, 0xd, 0xc0, + 0x0, 0xcd, 0x0, 0xa, 0xe0, 0x0, 0x6f, 0x20, + 0x1, 0xf6, 0x0, 0xb, 0xb0, 0x0, 0x4f, 0x10, + 0x0, 0xb9, 0x0, 0x2, 0xf1, + + /* U+0029 ")" */ + 0xa8, 0x0, 0x2, 0xf2, 0x0, 0xa, 0xb0, 0x0, + 0x4f, 0x20, 0x0, 0xf9, 0x0, 0xa, 0xd0, 0x0, + 0x7f, 0x10, 0x5, 0xf3, 0x0, 0x4f, 0x40, 0x5, + 0xf4, 0x0, 0x6f, 0x30, 0x8, 0xf1, 0x0, 0xbd, + 0x0, 0xe, 0x80, 0x4, 0xf2, 0x0, 0xab, 0x0, + 0x2f, 0x20, 0xa, 0x80, 0x0, + + /* U+002A "*" */ + 0x0, 0x2f, 0x0, 0x1, 0x61, 0xf0, 0x60, 0x4e, + 0xef, 0xee, 0x30, 0xa, 0xf9, 0x0, 0x5, 0xf4, + 0xf5, 0x0, 0x35, 0x6, 0x20, + + /* U+002B "+" */ + 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x7f, 0x0, + 0x0, 0x0, 0x7, 0xf0, 0x0, 0x0, 0x0, 0x7f, + 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0x88, 0x88, + 0xcf, 0x88, 0x84, 0x0, 0x7, 0xf0, 0x0, 0x0, + 0x0, 0x7f, 0x0, 0x0, 0x0, 0x7, 0xf0, 0x0, + 0x0, + + /* U+002D "-" */ + 0x4a, 0xaa, 0xa4, 0x6f, 0xff, 0xf7, + + /* U+002E "." */ + 0x5e, 0x65, 0xf7, + + /* U+002F "/" */ + 0x0, 0x6, 0xd0, 0x0, 0xa9, 0x0, 0xe, 0x50, + 0x3, 0xf1, 0x0, 0x7c, 0x0, 0xb, 0x80, 0x0, + 0xf4, 0x0, 0x4f, 0x0, 0x8, 0xb0, 0x0, 0xc7, + 0x0, 0x1f, 0x30, 0x5, 0xe0, 0x0, 0x9a, 0x0, + 0xd, 0x60, 0x0, + + /* U+0030 "0" */ + 0x0, 0x2a, 0xee, 0xa1, 0x0, 0x1, 0xee, 0x77, + 0xfd, 0x0, 0x8, 0xf2, 0x0, 0x4f, 0x60, 0xd, + 0xb0, 0x0, 0xd, 0xc0, 0x1f, 0x80, 0x0, 0x9, + 0xf0, 0x2f, 0x60, 0x0, 0x8, 0xf1, 0x3f, 0x60, + 0x0, 0x7, 0xf2, 0x3f, 0x60, 0x0, 0x7, 0xf2, + 0x2f, 0x60, 0x0, 0x8, 0xf1, 0x1f, 0x80, 0x0, + 0x9, 0xf0, 0xd, 0xb0, 0x0, 0xd, 0xc0, 0x8, + 0xf2, 0x0, 0x4f, 0x60, 0x1, 0xee, 0x77, 0xec, + 0x0, 0x0, 0x2b, 0xfe, 0xa1, 0x0, + + /* U+0031 "1" */ + 0x0, 0x0, 0x9b, 0x0, 0x6, 0xfb, 0x0, 0x7f, + 0xfb, 0xd, 0xfa, 0xeb, 0xe, 0x50, 0xeb, 0x0, + 0x0, 0xeb, 0x0, 0x0, 0xeb, 0x0, 0x0, 0xeb, + 0x0, 0x0, 0xeb, 0x0, 0x0, 0xeb, 0x0, 0x0, + 0xeb, 0x0, 0x0, 0xeb, 0x0, 0x0, 0xeb, 0x0, + 0x0, 0xeb, + + /* U+0032 "2" */ + 0x0, 0x4c, 0xff, 0xc3, 0x0, 0x3, 0xfd, 0x77, + 0xdf, 0x40, 0xc, 0xe0, 0x0, 0x1e, 0xc0, 0xf, + 0x90, 0x0, 0xa, 0xf0, 0x1, 0x10, 0x0, 0xb, + 0xf0, 0x0, 0x0, 0x0, 0x2f, 0xb0, 0x0, 0x0, + 0x0, 0xcf, 0x30, 0x0, 0x0, 0xb, 0xf6, 0x0, + 0x0, 0x0, 0xbf, 0x70, 0x0, 0x0, 0x1c, 0xf7, + 0x0, 0x0, 0x0, 0xcf, 0x60, 0x0, 0x0, 0x9, + 0xf6, 0x0, 0x0, 0x0, 0x2f, 0xf9, 0x99, 0x99, + 0x90, 0x6f, 0xff, 0xff, 0xff, 0xf1, + + /* U+0033 "3" */ + 0x0, 0x3b, 0xfe, 0x91, 0x0, 0x3, 0xfd, 0x68, + 0xfd, 0x0, 0xb, 0xe1, 0x0, 0x5f, 0x50, 0xb, + 0x80, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0, 0x4f, + 0x60, 0x0, 0x0, 0x14, 0xed, 0x0, 0x0, 0x0, + 0xff, 0xf4, 0x0, 0x0, 0x0, 0x44, 0xbf, 0x60, + 0x0, 0x0, 0x0, 0xd, 0xe0, 0x0, 0x0, 0x0, + 0x8, 0xf2, 0x1e, 0x70, 0x0, 0x9, 0xf1, 0xe, + 0xd0, 0x0, 0x1e, 0xd0, 0x4, 0xfd, 0x67, 0xef, + 0x30, 0x0, 0x4c, 0xff, 0xb2, 0x0, + + /* U+0034 "4" */ + 0x0, 0x0, 0x3, 0xf6, 0x0, 0x0, 0x0, 0xc, + 0xf6, 0x0, 0x0, 0x0, 0x7f, 0xf6, 0x0, 0x0, + 0x1, 0xfa, 0xf6, 0x0, 0x0, 0xa, 0xc3, 0xf6, + 0x0, 0x0, 0x4f, 0x33, 0xf6, 0x0, 0x0, 0xe9, + 0x3, 0xf6, 0x0, 0x8, 0xe1, 0x3, 0xf6, 0x0, + 0x2f, 0x60, 0x3, 0xf6, 0x0, 0xbf, 0x88, 0x89, + 0xfb, 0x81, 0xcf, 0xff, 0xff, 0xff, 0xf2, 0x0, + 0x0, 0x3, 0xf6, 0x0, 0x0, 0x0, 0x3, 0xf6, + 0x0, 0x0, 0x0, 0x3, 0xf6, 0x0, + + /* U+0035 "5" */ + 0x0, 0xcf, 0xff, 0xff, 0xb0, 0x0, 0xfc, 0x99, + 0x99, 0x60, 0x2, 0xf6, 0x0, 0x0, 0x0, 0x4, + 0xf3, 0x0, 0x0, 0x0, 0x7, 0xf0, 0x1, 0x0, + 0x0, 0xa, 0xfa, 0xff, 0xe6, 0x0, 0xd, 0xfb, + 0x67, 0xdf, 0x70, 0x7, 0x70, 0x0, 0xe, 0xf0, + 0x0, 0x0, 0x0, 0x8, 0xf3, 0x0, 0x0, 0x0, + 0x6, 0xf4, 0x1c, 0x70, 0x0, 0x9, 0xf2, 0xe, + 0xd0, 0x0, 0x1f, 0xc0, 0x5, 0xfd, 0x67, 0xef, + 0x20, 0x0, 0x5c, 0xff, 0xb2, 0x0, + + /* U+0036 "6" */ + 0x0, 0x19, 0xef, 0xc4, 0x0, 0x0, 0xcf, 0x86, + 0xdf, 0x30, 0x7, 0xf4, 0x0, 0x1e, 0xb0, 0xd, + 0xb0, 0x0, 0x5, 0x60, 0x1f, 0x70, 0x1, 0x0, + 0x0, 0x3f, 0x58, 0xff, 0xe6, 0x0, 0x4f, 0xde, + 0x66, 0xdf, 0x50, 0x5f, 0xf1, 0x0, 0xe, 0xd0, + 0x4f, 0x90, 0x0, 0x9, 0xf1, 0x2f, 0x80, 0x0, + 0x7, 0xf2, 0xf, 0xb0, 0x0, 0x9, 0xf0, 0x9, + 0xf2, 0x0, 0x1f, 0xb0, 0x1, 0xee, 0x77, 0xdf, + 0x20, 0x0, 0x1a, 0xef, 0xb3, 0x0, + + /* U+0037 "7" */ + 0x2f, 0xff, 0xff, 0xff, 0xf3, 0x19, 0x99, 0x99, + 0x9f, 0xe1, 0x0, 0x0, 0x0, 0x7f, 0x50, 0x0, + 0x0, 0x2, 0xfa, 0x0, 0x0, 0x0, 0xa, 0xf2, + 0x0, 0x0, 0x0, 0x2f, 0x90, 0x0, 0x0, 0x0, + 0x9f, 0x20, 0x0, 0x0, 0x0, 0xfb, 0x0, 0x0, + 0x0, 0x5, 0xf6, 0x0, 0x0, 0x0, 0x9, 0xf1, + 0x0, 0x0, 0x0, 0xd, 0xc0, 0x0, 0x0, 0x0, + 0xf, 0x90, 0x0, 0x0, 0x0, 0x3f, 0x60, 0x0, + 0x0, 0x0, 0x4f, 0x50, 0x0, 0x0, + + /* U+0038 "8" */ + 0x0, 0x3b, 0xff, 0xa2, 0x0, 0x1, 0xfe, 0x77, + 0xee, 0x10, 0x8, 0xf2, 0x0, 0x4f, 0x70, 0xb, + 0xe0, 0x0, 0xf, 0xa0, 0x9, 0xf1, 0x0, 0x1f, + 0x80, 0x1, 0xeb, 0x22, 0xcf, 0x20, 0x0, 0x6f, + 0xff, 0xf4, 0x0, 0x8, 0xfb, 0x55, 0xcf, 0x40, + 0x1f, 0xc0, 0x0, 0xd, 0xe0, 0x3f, 0x60, 0x0, + 0x7, 0xf2, 0x3f, 0x70, 0x0, 0x7, 0xf2, 0xe, + 0xd0, 0x0, 0xd, 0xe0, 0x5, 0xfd, 0x67, 0xdf, + 0x50, 0x0, 0x4c, 0xff, 0xc4, 0x0, + + /* U+0039 "9" */ + 0x0, 0x3c, 0xfe, 0x91, 0x0, 0x3, 0xfe, 0x77, + 0xed, 0x0, 0xd, 0xf2, 0x0, 0x2f, 0x80, 0x1f, + 0x90, 0x0, 0xb, 0xe0, 0x3f, 0x60, 0x0, 0x9, + 0xf1, 0x3f, 0x70, 0x0, 0xa, 0xf2, 0xf, 0xc0, + 0x0, 0xe, 0xf3, 0x8, 0xfa, 0x34, 0xce, 0xf3, + 0x0, 0xaf, 0xff, 0xa7, 0xf1, 0x0, 0x2, 0x42, + 0x8, 0xf0, 0x5, 0x30, 0x0, 0xc, 0xc0, 0xc, + 0xd0, 0x0, 0x5f, 0x50, 0x5, 0xfb, 0x68, 0xfb, + 0x0, 0x0, 0x5d, 0xfd, 0x70, 0x0, + + /* U+003A ":" */ + 0x6f, 0x65, 0xe6, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x5e, 0x66, 0xf6, + + /* U+003B ";" */ + 0x6f, 0x65, 0xe5, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x5e, 0x56, 0xf6, 0x8, + 0x51, 0xd1, 0x24, 0x0, + + /* U+003C "<" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x5, 0xc8, 0x0, 0x0, 0x7, 0xdf, 0xd4, 0x0, + 0x28, 0xff, 0xb4, 0x0, 0xa, 0xff, 0x92, 0x0, + 0x0, 0xf, 0xf6, 0x0, 0x0, 0x0, 0x5, 0xcf, + 0xe7, 0x10, 0x0, 0x0, 0x3, 0xaf, 0xf9, 0x20, + 0x0, 0x0, 0x2, 0x9f, 0xf6, 0x0, 0x0, 0x0, + 0x1, 0x76, + + /* U+003D "=" */ + 0xff, 0xff, 0xff, 0xff, 0x88, 0x88, 0x88, 0x88, + 0x84, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0x88, 0x88, + 0x88, 0x88, 0x84, + + /* U+003E ">" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0x81, 0x0, + 0x0, 0x0, 0xa, 0xff, 0xa3, 0x0, 0x0, 0x0, + 0x18, 0xef, 0xc5, 0x0, 0x0, 0x0, 0x5, 0xcf, + 0xe4, 0x0, 0x0, 0x0, 0x2c, 0xf8, 0x0, 0x0, + 0x4b, 0xff, 0x81, 0x0, 0x6d, 0xfe, 0x70, 0x0, + 0xe, 0xfc, 0x50, 0x0, 0x0, 0xb, 0x30, 0x0, + 0x0, 0x0, + + /* U+003F "?" */ + 0x0, 0x4c, 0xff, 0xc4, 0x0, 0x3, 0xfe, 0x77, + 0xef, 0x40, 0xc, 0xe1, 0x0, 0x1e, 0xd0, 0x1f, + 0x90, 0x0, 0x9, 0xf1, 0x0, 0x10, 0x0, 0xa, + 0xf0, 0x0, 0x0, 0x0, 0x4f, 0xa0, 0x0, 0x0, + 0x4, 0xfd, 0x10, 0x0, 0x0, 0x1f, 0xd1, 0x0, + 0x0, 0x0, 0x9f, 0x20, 0x0, 0x0, 0x0, 0xcc, + 0x0, 0x0, 0x0, 0x0, 0x87, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xdc, 0x0, + 0x0, 0x0, 0x0, 0xfd, 0x0, 0x0, + + /* U+0040 "@" */ + 0x0, 0x0, 0x1, 0x7b, 0xef, 0xec, 0x71, 0x0, + 0x0, 0x0, 0x0, 0x5e, 0xfa, 0x75, 0x7a, 0xff, + 0x50, 0x0, 0x0, 0x6, 0xfa, 0x10, 0x0, 0x0, + 0x9, 0xf6, 0x0, 0x0, 0x3f, 0x80, 0x0, 0x0, + 0x0, 0x0, 0x8f, 0x20, 0x0, 0xcc, 0x0, 0x19, + 0xee, 0x63, 0xf4, 0xc, 0x90, 0x3, 0xf2, 0x1, + 0xde, 0x77, 0xfc, 0xf1, 0x6, 0xf0, 0x8, 0xc0, + 0xa, 0xf2, 0x0, 0x4f, 0xe0, 0x3, 0xf1, 0xc, + 0x80, 0x2f, 0x80, 0x0, 0xf, 0xb0, 0x2, 0xf2, + 0xe, 0x60, 0x7f, 0x20, 0x0, 0xf, 0x80, 0x4, + 0xf1, 0xf, 0x40, 0xaf, 0x0, 0x0, 0x3f, 0x50, + 0x9, 0xd0, 0xf, 0x60, 0x9f, 0x0, 0x0, 0x9f, + 0x10, 0x1f, 0x60, 0xd, 0x80, 0x6f, 0x60, 0x5, + 0xff, 0x1, 0xcd, 0x0, 0x8, 0xd0, 0xe, 0xf9, + 0xbf, 0xef, 0x9e, 0xe2, 0x0, 0x3, 0xf5, 0x2, + 0xcf, 0xc3, 0x5e, 0xe9, 0x10, 0x31, 0x0, 0xaf, + 0x20, 0x0, 0x0, 0x0, 0x0, 0x9, 0xf3, 0x0, + 0xd, 0xf6, 0x0, 0x0, 0x0, 0x2, 0xbf, 0x50, + 0x0, 0x0, 0x9f, 0xfa, 0x76, 0x68, 0xcf, 0xe4, + 0x0, 0x0, 0x0, 0x2, 0x8c, 0xef, 0xfe, 0xa5, + 0x0, 0x0, + + /* U+0041 "A" */ + 0x0, 0x0, 0x4, 0xfe, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x9, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, + 0xe, 0x9f, 0xb0, 0x0, 0x0, 0x0, 0x0, 0x5f, + 0x5a, 0xf1, 0x0, 0x0, 0x0, 0x0, 0xaf, 0x15, + 0xf7, 0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0xfd, + 0x0, 0x0, 0x0, 0x6, 0xf7, 0x0, 0xbf, 0x30, + 0x0, 0x0, 0xb, 0xf2, 0x0, 0x6f, 0x90, 0x0, + 0x0, 0x1f, 0xd2, 0x22, 0x3f, 0xe0, 0x0, 0x0, + 0x7f, 0xff, 0xff, 0xff, 0xf5, 0x0, 0x0, 0xcf, + 0x55, 0x55, 0x57, 0xfb, 0x0, 0x2, 0xfb, 0x0, + 0x0, 0x0, 0xef, 0x10, 0x8, 0xf5, 0x0, 0x0, + 0x0, 0x8f, 0x70, 0xd, 0xf0, 0x0, 0x0, 0x0, + 0x1f, 0xd0, + + /* U+0042 "B" */ + 0xbf, 0xff, 0xff, 0xd8, 0x0, 0xb, 0xf9, 0x99, + 0xad, 0xfb, 0x0, 0xbf, 0x0, 0x0, 0xa, 0xf3, + 0xb, 0xf0, 0x0, 0x0, 0x4f, 0x60, 0xbf, 0x0, + 0x0, 0x5, 0xf4, 0xb, 0xf0, 0x0, 0x3, 0xdd, + 0x0, 0xbf, 0xff, 0xff, 0xfe, 0x10, 0xb, 0xf9, + 0x99, 0x9b, 0xfd, 0x20, 0xbf, 0x0, 0x0, 0x4, + 0xfb, 0xb, 0xf0, 0x0, 0x0, 0xc, 0xf0, 0xbf, + 0x0, 0x0, 0x0, 0xcf, 0xb, 0xf0, 0x0, 0x0, + 0x4f, 0xc0, 0xbf, 0x99, 0x99, 0xbf, 0xf3, 0xb, + 0xff, 0xff, 0xfe, 0xb3, 0x0, + + /* U+0043 "C" */ + 0x0, 0x0, 0x6c, 0xff, 0xc6, 0x0, 0x0, 0x2, + 0xdf, 0xc9, 0x9e, 0xfa, 0x0, 0x0, 0xdf, 0x50, + 0x0, 0xa, 0xf6, 0x0, 0x6f, 0x70, 0x0, 0x0, + 0xe, 0xd0, 0xc, 0xf0, 0x0, 0x0, 0x0, 0x31, + 0x0, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, + 0xa0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfb, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xf, 0xc0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xbf, 0x0, 0x0, 0x0, 0x8, + 0xb1, 0x6, 0xf7, 0x0, 0x0, 0x0, 0xee, 0x0, + 0xd, 0xf4, 0x0, 0x0, 0xbf, 0x70, 0x0, 0x2e, + 0xfc, 0x9a, 0xef, 0xa0, 0x0, 0x0, 0x18, 0xdf, + 0xfc, 0x60, 0x0, + + /* U+0044 "D" */ + 0x9f, 0xff, 0xff, 0xea, 0x20, 0x0, 0x9f, 0xa9, + 0x9a, 0xcf, 0xf4, 0x0, 0x9f, 0x10, 0x0, 0x3, + 0xfe, 0x0, 0x9f, 0x10, 0x0, 0x0, 0x6f, 0x70, + 0x9f, 0x10, 0x0, 0x0, 0xf, 0xc0, 0x9f, 0x10, + 0x0, 0x0, 0xc, 0xf0, 0x9f, 0x10, 0x0, 0x0, + 0xb, 0xf0, 0x9f, 0x10, 0x0, 0x0, 0xc, 0xf0, + 0x9f, 0x10, 0x0, 0x0, 0xd, 0xe0, 0x9f, 0x10, + 0x0, 0x0, 0xf, 0xb0, 0x9f, 0x10, 0x0, 0x0, + 0x6f, 0x70, 0x9f, 0x10, 0x0, 0x3, 0xfe, 0x0, + 0x9f, 0xa9, 0x9a, 0xcf, 0xf4, 0x0, 0x9f, 0xff, + 0xff, 0xea, 0x20, 0x0, + + /* U+0045 "E" */ + 0x9f, 0xff, 0xff, 0xff, 0xfb, 0x9, 0xfa, 0x99, + 0x99, 0x99, 0x60, 0x9f, 0x20, 0x0, 0x0, 0x0, + 0x9, 0xf2, 0x0, 0x0, 0x0, 0x0, 0x9f, 0x20, + 0x0, 0x0, 0x0, 0x9, 0xf2, 0x0, 0x0, 0x0, + 0x0, 0x9f, 0xa9, 0x99, 0x99, 0x92, 0x9, 0xff, + 0xff, 0xff, 0xff, 0x40, 0x9f, 0x20, 0x0, 0x0, + 0x0, 0x9, 0xf2, 0x0, 0x0, 0x0, 0x0, 0x9f, + 0x20, 0x0, 0x0, 0x0, 0x9, 0xf2, 0x0, 0x0, + 0x0, 0x0, 0x9f, 0xa9, 0x99, 0x99, 0x99, 0x9, + 0xff, 0xff, 0xff, 0xff, 0xf0, + + /* U+0046 "F" */ + 0x8f, 0xff, 0xff, 0xff, 0xf2, 0x8f, 0xa9, 0x99, + 0x99, 0x91, 0x8f, 0x30, 0x0, 0x0, 0x0, 0x8f, + 0x30, 0x0, 0x0, 0x0, 0x8f, 0x30, 0x0, 0x0, + 0x0, 0x8f, 0x30, 0x0, 0x0, 0x0, 0x8f, 0xa9, + 0x99, 0x99, 0x20, 0x8f, 0xff, 0xff, 0xff, 0x30, + 0x8f, 0x30, 0x0, 0x0, 0x0, 0x8f, 0x30, 0x0, + 0x0, 0x0, 0x8f, 0x30, 0x0, 0x0, 0x0, 0x8f, + 0x30, 0x0, 0x0, 0x0, 0x8f, 0x30, 0x0, 0x0, + 0x0, 0x8f, 0x30, 0x0, 0x0, 0x0, + + /* U+0047 "G" */ + 0x0, 0x0, 0x5b, 0xef, 0xea, 0x30, 0x0, 0x1, + 0xbf, 0xe9, 0x8b, 0xff, 0x50, 0x0, 0xbf, 0x70, + 0x0, 0x2, 0xdf, 0x10, 0x4f, 0xa0, 0x0, 0x0, + 0x3, 0xf7, 0xa, 0xf2, 0x0, 0x0, 0x0, 0x6, + 0x10, 0xed, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, + 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, + 0x0, 0x9f, 0xff, 0xfe, 0xe, 0xd0, 0x0, 0x5, + 0x99, 0x9e, 0xe0, 0xaf, 0x20, 0x0, 0x0, 0x0, + 0xce, 0x4, 0xfa, 0x0, 0x0, 0x0, 0xc, 0xe0, + 0xb, 0xf9, 0x0, 0x0, 0x8, 0xfd, 0x0, 0xb, + 0xff, 0xba, 0xbf, 0xfd, 0x30, 0x0, 0x4, 0xbe, + 0xfe, 0xb5, 0x0, + + /* U+0048 "H" */ + 0x9f, 0x20, 0x0, 0x0, 0x2f, 0x89, 0xf2, 0x0, + 0x0, 0x2, 0xf8, 0x9f, 0x20, 0x0, 0x0, 0x2f, + 0x89, 0xf2, 0x0, 0x0, 0x2, 0xf8, 0x9f, 0x20, + 0x0, 0x0, 0x2f, 0x89, 0xf2, 0x0, 0x0, 0x2, + 0xf8, 0x9f, 0xff, 0xff, 0xff, 0xff, 0x89, 0xfa, + 0x99, 0x99, 0x9a, 0xf8, 0x9f, 0x20, 0x0, 0x0, + 0x2f, 0x89, 0xf2, 0x0, 0x0, 0x2, 0xf8, 0x9f, + 0x20, 0x0, 0x0, 0x2f, 0x89, 0xf2, 0x0, 0x0, + 0x2, 0xf8, 0x9f, 0x20, 0x0, 0x0, 0x2f, 0x89, + 0xf2, 0x0, 0x0, 0x2, 0xf8, + + /* U+0049 "I" */ + 0x5f, 0x65, 0xf6, 0x5f, 0x65, 0xf6, 0x5f, 0x65, + 0xf6, 0x5f, 0x65, 0xf6, 0x5f, 0x65, 0xf6, 0x5f, + 0x65, 0xf6, 0x5f, 0x65, 0xf6, + + /* U+004A "J" */ + 0x0, 0x0, 0x1, 0xf9, 0x0, 0x0, 0x1, 0xf9, + 0x0, 0x0, 0x1, 0xf9, 0x0, 0x0, 0x1, 0xf9, + 0x0, 0x0, 0x1, 0xf9, 0x0, 0x0, 0x1, 0xf9, + 0x0, 0x0, 0x1, 0xf9, 0x0, 0x0, 0x1, 0xf9, + 0x0, 0x0, 0x1, 0xf9, 0x14, 0x0, 0x1, 0xf9, + 0x6f, 0x20, 0x2, 0xf8, 0x4f, 0x70, 0x7, 0xf5, + 0xd, 0xfb, 0xbf, 0xe0, 0x2, 0xbf, 0xfb, 0x20, + + /* U+004B "K" */ + 0xbf, 0x0, 0x0, 0x2, 0xef, 0x4b, 0xf0, 0x0, + 0x1, 0xdf, 0x50, 0xbf, 0x0, 0x1, 0xdf, 0x50, + 0xb, 0xf0, 0x0, 0xcf, 0x60, 0x0, 0xbf, 0x0, + 0xbf, 0x70, 0x0, 0xb, 0xf0, 0xaf, 0x90, 0x0, + 0x0, 0xbf, 0x9f, 0xfd, 0x0, 0x0, 0xb, 0xff, + 0x97, 0xf9, 0x0, 0x0, 0xbf, 0xa0, 0xd, 0xf3, + 0x0, 0xb, 0xf0, 0x0, 0x3f, 0xd0, 0x0, 0xbf, + 0x0, 0x0, 0x8f, 0x90, 0xb, 0xf0, 0x0, 0x0, + 0xdf, 0x40, 0xbf, 0x0, 0x0, 0x4, 0xfe, 0xb, + 0xf0, 0x0, 0x0, 0x9, 0xfa, + + /* U+004C "L" */ + 0xbf, 0x0, 0x0, 0x0, 0xb, 0xf0, 0x0, 0x0, + 0x0, 0xbf, 0x0, 0x0, 0x0, 0xb, 0xf0, 0x0, + 0x0, 0x0, 0xbf, 0x0, 0x0, 0x0, 0xb, 0xf0, + 0x0, 0x0, 0x0, 0xbf, 0x0, 0x0, 0x0, 0xb, + 0xf0, 0x0, 0x0, 0x0, 0xbf, 0x0, 0x0, 0x0, + 0xb, 0xf0, 0x0, 0x0, 0x0, 0xbf, 0x0, 0x0, + 0x0, 0xb, 0xf0, 0x0, 0x0, 0x0, 0xbf, 0x99, + 0x99, 0x99, 0x3b, 0xff, 0xff, 0xff, 0xf6, + + /* U+004D "M" */ + 0xaf, 0xf1, 0x0, 0x0, 0x0, 0xdf, 0xaa, 0xff, + 0x50, 0x0, 0x0, 0x2f, 0xfa, 0xaf, 0xea, 0x0, + 0x0, 0x7, 0xef, 0xaa, 0xf9, 0xf0, 0x0, 0x0, + 0xc9, 0xfa, 0xaf, 0x4f, 0x40, 0x0, 0x1f, 0x4f, + 0xaa, 0xf0, 0xe9, 0x0, 0x6, 0xe0, 0xfa, 0xaf, + 0xa, 0xe0, 0x0, 0xba, 0xf, 0xaa, 0xf0, 0x5f, + 0x30, 0x1f, 0x50, 0xfa, 0xaf, 0x0, 0xf8, 0x5, + 0xf0, 0xf, 0xaa, 0xf0, 0xb, 0xd0, 0xaa, 0x0, + 0xfa, 0xaf, 0x0, 0x6f, 0x2f, 0x50, 0xf, 0xaa, + 0xf0, 0x1, 0xfb, 0xf1, 0x0, 0xfa, 0xaf, 0x0, + 0xc, 0xfb, 0x0, 0xf, 0xaa, 0xf0, 0x0, 0x7f, + 0x60, 0x0, 0xfa, + + /* U+004E "N" */ + 0xaf, 0x60, 0x0, 0x0, 0x1f, 0x8a, 0xff, 0x10, + 0x0, 0x1, 0xf8, 0xaf, 0xfa, 0x0, 0x0, 0x1f, + 0x8a, 0xfb, 0xf4, 0x0, 0x1, 0xf8, 0xaf, 0x1f, + 0xd0, 0x0, 0x1f, 0x8a, 0xf0, 0x7f, 0x80, 0x1, + 0xf8, 0xaf, 0x0, 0xdf, 0x20, 0x1f, 0x8a, 0xf0, + 0x3, 0xfb, 0x1, 0xf8, 0xaf, 0x0, 0x9, 0xf5, + 0x1f, 0x8a, 0xf0, 0x0, 0x1e, 0xe2, 0xf8, 0xaf, + 0x0, 0x0, 0x6f, 0xbf, 0x8a, 0xf0, 0x0, 0x0, + 0xcf, 0xf8, 0xaf, 0x0, 0x0, 0x2, 0xff, 0x8a, + 0xf0, 0x0, 0x0, 0x8, 0xf8, + + /* U+004F "O" */ + 0x0, 0x0, 0x7c, 0xff, 0xc7, 0x0, 0x0, 0x0, + 0x1d, 0xfd, 0x99, 0xdf, 0xd2, 0x0, 0x0, 0xcf, + 0x60, 0x0, 0x6, 0xfd, 0x0, 0x6, 0xf7, 0x0, + 0x0, 0x0, 0x7f, 0x70, 0xc, 0xf0, 0x0, 0x0, + 0x0, 0xf, 0xc0, 0xf, 0xc0, 0x0, 0x0, 0x0, + 0xb, 0xf0, 0x1f, 0xa0, 0x0, 0x0, 0x0, 0x9, + 0xf2, 0x1f, 0xa0, 0x0, 0x0, 0x0, 0x9, 0xf2, + 0xf, 0xb0, 0x0, 0x0, 0x0, 0xb, 0xf0, 0xb, + 0xf0, 0x0, 0x0, 0x0, 0xe, 0xc0, 0x6, 0xf7, + 0x0, 0x0, 0x0, 0x7f, 0x70, 0x0, 0xcf, 0x60, + 0x0, 0x5, 0xfd, 0x0, 0x0, 0x1c, 0xfd, 0x99, + 0xcf, 0xd2, 0x0, 0x0, 0x0, 0x6c, 0xef, 0xc7, + 0x0, 0x0, + + /* U+0050 "P" */ + 0x9f, 0xff, 0xff, 0xfc, 0x50, 0x9, 0xfa, 0x99, + 0x9a, 0xff, 0x60, 0x9f, 0x10, 0x0, 0x2, 0xfe, + 0x9, 0xf1, 0x0, 0x0, 0xa, 0xf2, 0x9f, 0x10, + 0x0, 0x0, 0x9f, 0x39, 0xf1, 0x0, 0x0, 0xc, + 0xf0, 0x9f, 0x10, 0x0, 0x29, 0xfa, 0x9, 0xff, + 0xff, 0xff, 0xfd, 0x10, 0x9f, 0xa9, 0x99, 0x84, + 0x0, 0x9, 0xf1, 0x0, 0x0, 0x0, 0x0, 0x9f, + 0x10, 0x0, 0x0, 0x0, 0x9, 0xf1, 0x0, 0x0, + 0x0, 0x0, 0x9f, 0x10, 0x0, 0x0, 0x0, 0x9, + 0xf1, 0x0, 0x0, 0x0, 0x0, + + /* U+0051 "Q" */ + 0x0, 0x0, 0x7c, 0xfe, 0xc6, 0x0, 0x0, 0x0, + 0x2d, 0xfc, 0x99, 0xdf, 0xc1, 0x0, 0x0, 0xdf, + 0x40, 0x0, 0x7, 0xfc, 0x0, 0x7, 0xf5, 0x0, + 0x0, 0x0, 0x9f, 0x50, 0xd, 0xe0, 0x0, 0x0, + 0x0, 0x1f, 0xb0, 0x1f, 0xa0, 0x0, 0x0, 0x0, + 0xc, 0xf0, 0x2f, 0x80, 0x0, 0x0, 0x0, 0xb, + 0xf0, 0x2f, 0x80, 0x0, 0x0, 0x0, 0xb, 0xf0, + 0x1f, 0xa0, 0x0, 0x0, 0x0, 0xc, 0xf0, 0xd, + 0xe0, 0x0, 0x0, 0x0, 0x1f, 0xb0, 0x7, 0xf6, + 0x0, 0xa, 0x80, 0x8f, 0x50, 0x0, 0xdf, 0x50, + 0x8, 0xee, 0xfc, 0x0, 0x0, 0x2d, 0xfc, 0x99, + 0xdf, 0xf8, 0x0, 0x0, 0x0, 0x7c, 0xfe, 0xc6, + 0x7f, 0xd2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, + 0x90, + + /* U+0052 "R" */ + 0x9f, 0xff, 0xff, 0xfe, 0xa2, 0x0, 0x9f, 0x98, + 0x88, 0x8c, 0xfe, 0x10, 0x9f, 0x20, 0x0, 0x0, + 0x8f, 0x70, 0x9f, 0x20, 0x0, 0x0, 0x1f, 0xa0, + 0x9f, 0x20, 0x0, 0x0, 0x2f, 0xa0, 0x9f, 0x20, + 0x0, 0x0, 0x9f, 0x60, 0x9f, 0x98, 0x88, 0x9d, + 0xfb, 0x0, 0x9f, 0xff, 0xff, 0xfc, 0x60, 0x0, + 0x9f, 0x20, 0x4, 0xed, 0x20, 0x0, 0x9f, 0x20, + 0x0, 0x3f, 0xd1, 0x0, 0x9f, 0x20, 0x0, 0x8, + 0xfa, 0x0, 0x9f, 0x20, 0x0, 0x0, 0xdf, 0x30, + 0x9f, 0x20, 0x0, 0x0, 0x4f, 0xd0, 0x9f, 0x20, + 0x0, 0x0, 0xa, 0xf7, + + /* U+0053 "S" */ + 0x0, 0x8, 0xdf, 0xfc, 0x60, 0x0, 0x0, 0xdf, + 0xc9, 0xae, 0xfa, 0x0, 0x7, 0xf6, 0x0, 0x0, + 0xaf, 0x40, 0xa, 0xf0, 0x0, 0x0, 0x2f, 0x90, + 0x9, 0xf4, 0x0, 0x0, 0x2, 0x0, 0x2, 0xff, + 0xa5, 0x10, 0x0, 0x0, 0x0, 0x3d, 0xff, 0xfd, + 0x70, 0x0, 0x0, 0x0, 0x38, 0xcf, 0xfe, 0x20, + 0x0, 0x0, 0x0, 0x1, 0x8f, 0xb0, 0x1a, 0x50, + 0x0, 0x0, 0xb, 0xf0, 0xf, 0xb0, 0x0, 0x0, + 0xa, 0xf0, 0xa, 0xf8, 0x0, 0x0, 0x4f, 0xa0, + 0x1, 0xdf, 0xea, 0xac, 0xfe, 0x10, 0x0, 0x7, + 0xce, 0xfd, 0x81, 0x0, + + /* U+0054 "T" */ + 0x9f, 0xff, 0xff, 0xff, 0xff, 0xa5, 0x99, 0x9b, + 0xfb, 0x99, 0x96, 0x0, 0x0, 0x5f, 0x60, 0x0, + 0x0, 0x0, 0x5, 0xf6, 0x0, 0x0, 0x0, 0x0, + 0x5f, 0x60, 0x0, 0x0, 0x0, 0x5, 0xf6, 0x0, + 0x0, 0x0, 0x0, 0x5f, 0x60, 0x0, 0x0, 0x0, + 0x5, 0xf6, 0x0, 0x0, 0x0, 0x0, 0x5f, 0x60, + 0x0, 0x0, 0x0, 0x5, 0xf6, 0x0, 0x0, 0x0, + 0x0, 0x5f, 0x60, 0x0, 0x0, 0x0, 0x5, 0xf6, + 0x0, 0x0, 0x0, 0x0, 0x5f, 0x60, 0x0, 0x0, + 0x0, 0x5, 0xf6, 0x0, 0x0, + + /* U+0055 "U" */ + 0x9f, 0x20, 0x0, 0x0, 0x2f, 0x89, 0xf2, 0x0, + 0x0, 0x2, 0xf8, 0x9f, 0x20, 0x0, 0x0, 0x2f, + 0x89, 0xf2, 0x0, 0x0, 0x2, 0xf8, 0x9f, 0x20, + 0x0, 0x0, 0x2f, 0x89, 0xf2, 0x0, 0x0, 0x2, + 0xf8, 0x9f, 0x20, 0x0, 0x0, 0x2f, 0x89, 0xf2, + 0x0, 0x0, 0x2, 0xf8, 0x8f, 0x20, 0x0, 0x0, + 0x2f, 0x87, 0xf3, 0x0, 0x0, 0x4, 0xf7, 0x5f, + 0x70, 0x0, 0x0, 0x7f, 0x41, 0xfe, 0x20, 0x0, + 0x2e, 0xe0, 0x6, 0xff, 0xba, 0xbf, 0xf5, 0x0, + 0x4, 0xbe, 0xfe, 0xa3, 0x0, + + /* U+0056 "V" */ + 0xbf, 0x10, 0x0, 0x0, 0x1, 0xfa, 0x6f, 0x60, + 0x0, 0x0, 0x6, 0xf5, 0xf, 0xb0, 0x0, 0x0, + 0xb, 0xe0, 0xa, 0xf1, 0x0, 0x0, 0x1f, 0x90, + 0x5, 0xf6, 0x0, 0x0, 0x6f, 0x30, 0x0, 0xeb, + 0x0, 0x0, 0xce, 0x0, 0x0, 0x9f, 0x10, 0x1, + 0xf8, 0x0, 0x0, 0x3f, 0x60, 0x7, 0xf2, 0x0, + 0x0, 0xe, 0xb0, 0xc, 0xc0, 0x0, 0x0, 0x8, + 0xf1, 0x2f, 0x70, 0x0, 0x0, 0x2, 0xf5, 0x7f, + 0x10, 0x0, 0x0, 0x0, 0xda, 0xcb, 0x0, 0x0, + 0x0, 0x0, 0x7f, 0xf5, 0x0, 0x0, 0x0, 0x0, + 0x1f, 0xf0, 0x0, 0x0, + + /* U+0057 "W" */ + 0xaf, 0x10, 0x0, 0xa, 0xfb, 0x0, 0x0, 0xf, + 0xa6, 0xf4, 0x0, 0x0, 0xef, 0xf0, 0x0, 0x4, + 0xf6, 0x2f, 0x80, 0x0, 0x2f, 0x9f, 0x30, 0x0, + 0x7f, 0x20, 0xeb, 0x0, 0x6, 0xf2, 0xf7, 0x0, + 0xb, 0xe0, 0xa, 0xe0, 0x0, 0xac, 0xd, 0xb0, + 0x0, 0xea, 0x0, 0x7f, 0x20, 0xe, 0x80, 0x8f, + 0x0, 0x2f, 0x60, 0x3, 0xf5, 0x2, 0xf4, 0x4, + 0xf4, 0x6, 0xf2, 0x0, 0xf, 0x90, 0x7f, 0x0, + 0xf, 0x80, 0x9e, 0x0, 0x0, 0xbc, 0xb, 0xc0, + 0x0, 0xcb, 0xd, 0xa0, 0x0, 0x7, 0xf0, 0xf8, + 0x0, 0x8, 0xf1, 0xf6, 0x0, 0x0, 0x3f, 0x5f, + 0x40, 0x0, 0x4f, 0x6f, 0x20, 0x0, 0x0, 0xfc, + 0xf0, 0x0, 0x0, 0xfc, 0xe0, 0x0, 0x0, 0xb, + 0xfc, 0x0, 0x0, 0xc, 0xfa, 0x0, 0x0, 0x0, + 0x7f, 0x80, 0x0, 0x0, 0x8f, 0x60, 0x0, + + /* U+0058 "X" */ + 0x1e, 0xe1, 0x0, 0x0, 0xa, 0xf3, 0x5, 0xfa, + 0x0, 0x0, 0x5f, 0x80, 0x0, 0xbf, 0x50, 0x1, + 0xfc, 0x0, 0x0, 0x1e, 0xe1, 0xc, 0xf2, 0x0, + 0x0, 0x6, 0xf9, 0x6f, 0x70, 0x0, 0x0, 0x0, + 0xbf, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xf3, + 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf9, 0x0, 0x0, + 0x0, 0x3, 0xfb, 0xcf, 0x40, 0x0, 0x0, 0xd, + 0xf2, 0x2f, 0xe0, 0x0, 0x0, 0x8f, 0x70, 0x7, + 0xf9, 0x0, 0x3, 0xfc, 0x0, 0x0, 0xdf, 0x30, + 0xd, 0xf2, 0x0, 0x0, 0x3f, 0xd0, 0x9f, 0x70, + 0x0, 0x0, 0x8, 0xf8, + + /* U+0059 "Y" */ + 0xaf, 0x60, 0x0, 0x0, 0x6, 0xf8, 0x1f, 0xe1, + 0x0, 0x0, 0x1f, 0xd0, 0x6, 0xfa, 0x0, 0x0, + 0xaf, 0x40, 0x0, 0xcf, 0x30, 0x3, 0xfa, 0x0, + 0x0, 0x3f, 0xc0, 0xd, 0xe1, 0x0, 0x0, 0x9, + 0xf6, 0x6f, 0x50, 0x0, 0x0, 0x0, 0xee, 0xeb, + 0x0, 0x0, 0x0, 0x0, 0x5f, 0xf1, 0x0, 0x0, + 0x0, 0x0, 0xf, 0xb0, 0x0, 0x0, 0x0, 0x0, + 0xf, 0xb0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xb0, + 0x0, 0x0, 0x0, 0x0, 0xf, 0xb0, 0x0, 0x0, + 0x0, 0x0, 0xf, 0xb0, 0x0, 0x0, 0x0, 0x0, + 0xf, 0xb0, 0x0, 0x0, + + /* U+005A "Z" */ + 0xe, 0xff, 0xff, 0xff, 0xff, 0x50, 0x89, 0x99, + 0x99, 0x9f, 0xf4, 0x0, 0x0, 0x0, 0x6, 0xfa, + 0x0, 0x0, 0x0, 0x3, 0xfd, 0x10, 0x0, 0x0, + 0x0, 0xdf, 0x30, 0x0, 0x0, 0x0, 0xaf, 0x70, + 0x0, 0x0, 0x0, 0x6f, 0xb0, 0x0, 0x0, 0x0, + 0x2f, 0xe1, 0x0, 0x0, 0x0, 0xc, 0xf4, 0x0, + 0x0, 0x0, 0x9, 0xf8, 0x0, 0x0, 0x0, 0x4, + 0xfc, 0x0, 0x0, 0x0, 0x1, 0xee, 0x10, 0x0, + 0x0, 0x0, 0x9f, 0xc9, 0x99, 0x99, 0x99, 0x5a, + 0xff, 0xff, 0xff, 0xff, 0xf8, + + /* U+005B "[" */ + 0xcf, 0xfb, 0xcd, 0x64, 0xcc, 0x0, 0xcc, 0x0, + 0xcc, 0x0, 0xcc, 0x0, 0xcc, 0x0, 0xcc, 0x0, + 0xcc, 0x0, 0xcc, 0x0, 0xcc, 0x0, 0xcc, 0x0, + 0xcc, 0x0, 0xcc, 0x0, 0xcc, 0x0, 0xcc, 0x0, + 0xcd, 0x64, 0xcf, 0xfb, + + /* U+005C "\\" */ + 0xd6, 0x0, 0x9, 0xa0, 0x0, 0x5e, 0x0, 0x1, + 0xf3, 0x0, 0xc, 0x70, 0x0, 0x8b, 0x0, 0x4, + 0xf0, 0x0, 0xf, 0x40, 0x0, 0xb8, 0x0, 0x7, + 0xc0, 0x0, 0x3f, 0x10, 0x0, 0xe5, 0x0, 0xa, + 0x90, 0x0, 0x6d, + + /* U+005D "]" */ + 0xaf, 0xfd, 0x36, 0xdd, 0x0, 0xcd, 0x0, 0xcd, + 0x0, 0xcd, 0x0, 0xcd, 0x0, 0xcd, 0x0, 0xcd, + 0x0, 0xcd, 0x0, 0xcd, 0x0, 0xcd, 0x0, 0xcd, + 0x0, 0xcd, 0x0, 0xcd, 0x0, 0xcd, 0x0, 0xcd, + 0x36, 0xdd, 0xaf, 0xfd, + + /* U+005E "^" */ + 0x0, 0x4, 0x70, 0x0, 0x0, 0xd, 0xf4, 0x0, + 0x0, 0x4f, 0xdb, 0x0, 0x0, 0xac, 0x5f, 0x10, + 0x1, 0xf6, 0xf, 0x80, 0x7, 0xf1, 0x9, 0xe0, + 0xe, 0xa0, 0x3, 0xf5, 0x5f, 0x40, 0x0, 0xdc, + + /* U+005F "_" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4f, 0xff, + 0xff, 0xff, 0xff, 0xf3, 0x3, 0x33, 0x33, 0x33, + 0x33, 0x30, + + /* U+0060 "`" */ + 0x8, 0x80, 0x0, 0x6f, 0x60, 0x0, 0x9d, 0x0, + + /* U+0061 "a" */ + 0x0, 0x6c, 0xff, 0xd7, 0x0, 0x7, 0xfb, 0x67, + 0xcf, 0x50, 0xe, 0xb0, 0x0, 0xf, 0xb0, 0x0, + 0x10, 0x0, 0x1e, 0xb0, 0x0, 0x49, 0xce, 0xff, + 0xc0, 0x9, 0xfd, 0x96, 0x2d, 0xc0, 0x3f, 0xa0, + 0x0, 0xf, 0xc0, 0x4f, 0x60, 0x0, 0x5f, 0xc0, + 0x1e, 0xe6, 0x59, 0xff, 0xd0, 0x3, 0xcf, 0xec, + 0x58, 0xf1, + + /* U+0062 "b" */ + 0xdc, 0x0, 0x0, 0x0, 0xd, 0xc0, 0x0, 0x0, + 0x0, 0xdc, 0x0, 0x0, 0x0, 0xd, 0xc0, 0x0, + 0x0, 0x0, 0xdc, 0x6d, 0xfc, 0x40, 0xd, 0xff, + 0x87, 0xdf, 0x40, 0xdf, 0x50, 0x1, 0xed, 0xd, + 0xd0, 0x0, 0x8, 0xf1, 0xda, 0x0, 0x0, 0x6f, + 0x3d, 0xa0, 0x0, 0x6, 0xf3, 0xdc, 0x0, 0x0, + 0x8f, 0x1d, 0xf1, 0x0, 0xe, 0xc0, 0xdf, 0xc4, + 0x3b, 0xf3, 0xd, 0xa8, 0xef, 0xc3, 0x0, + + /* U+0063 "c" */ + 0x0, 0x3b, 0xfe, 0xb2, 0x0, 0x4f, 0xd7, 0x7e, + 0xe1, 0xd, 0xd0, 0x0, 0x3f, 0x72, 0xf8, 0x0, + 0x0, 0x31, 0x4f, 0x50, 0x0, 0x0, 0x4, 0xf5, + 0x0, 0x0, 0x0, 0x2f, 0x70, 0x0, 0x9, 0x70, + 0xdd, 0x0, 0x2, 0xf8, 0x4, 0xfd, 0x77, 0xee, + 0x10, 0x4, 0xcf, 0xea, 0x10, + + /* U+0064 "d" */ + 0x0, 0x0, 0x0, 0xd, 0xb0, 0x0, 0x0, 0x0, + 0xdb, 0x0, 0x0, 0x0, 0xd, 0xb0, 0x0, 0x0, + 0x0, 0xdb, 0x0, 0x5d, 0xfd, 0x4d, 0xb0, 0x6f, + 0xc7, 0x9f, 0xfb, 0xe, 0xc0, 0x0, 0x5f, 0xb3, + 0xf6, 0x0, 0x0, 0xeb, 0x5f, 0x40, 0x0, 0xc, + 0xb5, 0xf4, 0x0, 0x0, 0xcb, 0x3f, 0x70, 0x0, + 0xe, 0xb0, 0xed, 0x0, 0x5, 0xfb, 0x4, 0xfd, + 0x68, 0xfe, 0xb0, 0x4, 0xcf, 0xd5, 0xcb, + + /* U+0065 "e" */ + 0x0, 0x3b, 0xff, 0xb3, 0x0, 0x4, 0xfd, 0x77, + 0xdf, 0x40, 0xd, 0xd0, 0x0, 0xd, 0xd0, 0x2f, + 0x81, 0x11, 0x18, 0xf1, 0x4f, 0xff, 0xff, 0xff, + 0xf3, 0x5f, 0x84, 0x44, 0x44, 0x41, 0x3f, 0x80, + 0x0, 0x3, 0x40, 0xe, 0xe1, 0x0, 0xd, 0xe0, + 0x4, 0xfe, 0x76, 0xcf, 0x50, 0x0, 0x3b, 0xff, + 0xc4, 0x0, + + /* U+0066 "f" */ + 0x0, 0x7e, 0xf7, 0x3, 0xfd, 0x84, 0x6, 0xf3, + 0x0, 0x7, 0xf2, 0x0, 0xdf, 0xff, 0xf0, 0x39, + 0xf6, 0x40, 0x7, 0xf2, 0x0, 0x7, 0xf2, 0x0, + 0x7, 0xf2, 0x0, 0x7, 0xf2, 0x0, 0x7, 0xf2, + 0x0, 0x7, 0xf2, 0x0, 0x7, 0xf2, 0x0, 0x7, + 0xf2, 0x0, + + /* U+0067 "g" */ + 0x0, 0x5c, 0xfd, 0x6a, 0xd0, 0x5f, 0xc7, 0x9f, + 0xed, 0xe, 0xd0, 0x0, 0x5f, 0xd3, 0xf6, 0x0, + 0x0, 0xed, 0x5f, 0x40, 0x0, 0xb, 0xd6, 0xf3, + 0x0, 0x0, 0xbd, 0x4f, 0x60, 0x0, 0xd, 0xd0, + 0xec, 0x0, 0x4, 0xfd, 0x5, 0xfc, 0x78, 0xff, + 0xc0, 0x5, 0xdf, 0xd5, 0xcc, 0x1, 0x0, 0x0, + 0xe, 0xb0, 0xf9, 0x0, 0x3, 0xf7, 0xb, 0xf9, + 0x68, 0xee, 0x10, 0x8, 0xdf, 0xe9, 0x10, + + /* U+0068 "h" */ + 0xdc, 0x0, 0x0, 0x0, 0xdc, 0x0, 0x0, 0x0, + 0xdc, 0x0, 0x0, 0x0, 0xdc, 0x0, 0x0, 0x0, + 0xdc, 0x5d, 0xfd, 0x60, 0xdf, 0xf9, 0x7d, 0xf5, + 0xdf, 0x40, 0x1, 0xfa, 0xde, 0x0, 0x0, 0xdc, + 0xdc, 0x0, 0x0, 0xcc, 0xdc, 0x0, 0x0, 0xcc, + 0xdc, 0x0, 0x0, 0xcc, 0xdc, 0x0, 0x0, 0xcc, + 0xdc, 0x0, 0x0, 0xcc, 0xdc, 0x0, 0x0, 0xcc, + + /* U+0069 "i" */ + 0xcc, 0xbb, 0x0, 0x0, 0xcc, 0xcc, 0xcc, 0xcc, + 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, + + /* U+006A "j" */ + 0x0, 0xdc, 0x0, 0xcb, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xdc, 0x0, 0xdc, 0x0, 0xdc, 0x0, 0xdc, + 0x0, 0xdc, 0x0, 0xdc, 0x0, 0xdc, 0x0, 0xdc, + 0x0, 0xdc, 0x0, 0xdc, 0x0, 0xdc, 0x0, 0xeb, + 0x59, 0xf8, 0xaf, 0xb1, + + /* U+006B "k" */ + 0xcc, 0x0, 0x0, 0x0, 0xcc, 0x0, 0x0, 0x0, + 0xcc, 0x0, 0x0, 0x0, 0xcc, 0x0, 0x0, 0x0, + 0xcc, 0x0, 0x1d, 0xe2, 0xcc, 0x0, 0xce, 0x20, + 0xcc, 0xc, 0xf3, 0x0, 0xcc, 0xbf, 0x40, 0x0, + 0xcf, 0xff, 0x70, 0x0, 0xcf, 0x5b, 0xf2, 0x0, + 0xcc, 0x2, 0xfb, 0x0, 0xcc, 0x0, 0x8f, 0x50, + 0xcc, 0x0, 0xe, 0xe1, 0xcc, 0x0, 0x5, 0xf9, + + /* U+006C "l" */ + 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, + 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, + + /* U+006D "m" */ + 0xd9, 0x6d, 0xfd, 0x41, 0xaf, 0xe9, 0xd, 0xed, + 0x54, 0xdf, 0xd8, 0x48, 0xf7, 0xdf, 0x20, 0x6, + 0xfa, 0x0, 0xd, 0xbd, 0xd0, 0x0, 0x4f, 0x60, + 0x0, 0xbd, 0xdc, 0x0, 0x4, 0xf5, 0x0, 0xb, + 0xdd, 0xc0, 0x0, 0x4f, 0x50, 0x0, 0xbd, 0xdc, + 0x0, 0x4, 0xf5, 0x0, 0xb, 0xdd, 0xc0, 0x0, + 0x4f, 0x50, 0x0, 0xbd, 0xdc, 0x0, 0x4, 0xf5, + 0x0, 0xb, 0xdd, 0xc0, 0x0, 0x4f, 0x50, 0x0, + 0xbd, + + /* U+006E "n" */ + 0xd9, 0x6d, 0xfd, 0x60, 0xde, 0xd6, 0x4b, 0xf5, + 0xdf, 0x20, 0x0, 0xfa, 0xdd, 0x0, 0x0, 0xdc, + 0xdc, 0x0, 0x0, 0xdc, 0xdc, 0x0, 0x0, 0xdc, + 0xdc, 0x0, 0x0, 0xdc, 0xdc, 0x0, 0x0, 0xdc, + 0xdc, 0x0, 0x0, 0xdc, 0xdc, 0x0, 0x0, 0xdc, + + /* U+006F "o" */ + 0x0, 0x4b, 0xff, 0xb3, 0x0, 0x5, 0xfd, 0x77, + 0xef, 0x40, 0xe, 0xd0, 0x0, 0x1e, 0xd0, 0x3f, + 0x60, 0x0, 0x8, 0xf3, 0x5f, 0x40, 0x0, 0x5, + 0xf5, 0x6f, 0x40, 0x0, 0x5, 0xf4, 0x4f, 0x60, + 0x0, 0x8, 0xf2, 0xe, 0xd0, 0x0, 0x1e, 0xe0, + 0x5, 0xfd, 0x77, 0xdf, 0x40, 0x0, 0x4c, 0xff, + 0xb3, 0x0, + + /* U+0070 "p" */ + 0xda, 0x7e, 0xfc, 0x40, 0xd, 0xfe, 0x42, 0xaf, + 0x40, 0xdf, 0x30, 0x0, 0xdd, 0xd, 0xc0, 0x0, + 0x7, 0xf2, 0xda, 0x0, 0x0, 0x5f, 0x4d, 0xa0, + 0x0, 0x5, 0xf3, 0xdd, 0x0, 0x0, 0x8f, 0x1d, + 0xf4, 0x0, 0x1e, 0xc0, 0xdf, 0xf8, 0x7d, 0xf3, + 0xd, 0xc6, 0xef, 0xb3, 0x0, 0xdc, 0x0, 0x0, + 0x0, 0xd, 0xc0, 0x0, 0x0, 0x0, 0xdc, 0x0, + 0x0, 0x0, 0xd, 0xc0, 0x0, 0x0, 0x0, + + /* U+0071 "q" */ + 0x0, 0x5c, 0xfd, 0x5b, 0xb0, 0x5f, 0xc6, 0x8f, + 0xeb, 0xe, 0xd0, 0x0, 0x6f, 0xb3, 0xf7, 0x0, + 0x0, 0xeb, 0x5f, 0x50, 0x0, 0xc, 0xb5, 0xf5, + 0x0, 0x0, 0xcb, 0x2f, 0x70, 0x0, 0xe, 0xb0, + 0xde, 0x0, 0x5, 0xfb, 0x4, 0xfd, 0x78, 0xff, + 0xb0, 0x4, 0xcf, 0xd5, 0xdb, 0x0, 0x0, 0x0, + 0xd, 0xb0, 0x0, 0x0, 0x0, 0xdb, 0x0, 0x0, + 0x0, 0xd, 0xb0, 0x0, 0x0, 0x0, 0xdb, + + /* U+0072 "r" */ + 0xd9, 0x9f, 0xe1, 0xde, 0xe8, 0xa0, 0xdf, 0x20, + 0x0, 0xdd, 0x0, 0x0, 0xdc, 0x0, 0x0, 0xdc, + 0x0, 0x0, 0xdc, 0x0, 0x0, 0xdc, 0x0, 0x0, + 0xdc, 0x0, 0x0, 0xdc, 0x0, 0x0, + + /* U+0073 "s" */ + 0x1, 0xae, 0xfd, 0x70, 0x0, 0xce, 0x76, 0xaf, + 0x80, 0x2f, 0x60, 0x0, 0xaa, 0x1, 0xfd, 0x40, + 0x0, 0x0, 0x6, 0xff, 0xfb, 0x60, 0x0, 0x1, + 0x6b, 0xff, 0xc0, 0x3, 0x0, 0x0, 0x9f, 0x34, + 0xf6, 0x0, 0x6, 0xf3, 0xc, 0xf8, 0x68, 0xfc, + 0x0, 0x19, 0xef, 0xe9, 0x10, + + /* U+0074 "t" */ + 0x0, 0x10, 0x0, 0x4f, 0x0, 0x8, 0xf0, 0x0, + 0x8f, 0x0, 0xbf, 0xff, 0xa3, 0xaf, 0x53, 0x8, + 0xf0, 0x0, 0x8f, 0x0, 0x8, 0xf0, 0x0, 0x8f, + 0x0, 0x8, 0xf0, 0x0, 0x8f, 0x10, 0x6, 0xfb, + 0x60, 0x1c, 0xfb, + + /* U+0075 "u" */ + 0xdb, 0x0, 0x0, 0xdb, 0xdb, 0x0, 0x0, 0xdb, + 0xdb, 0x0, 0x0, 0xdb, 0xdb, 0x0, 0x0, 0xdb, + 0xdb, 0x0, 0x0, 0xdb, 0xdb, 0x0, 0x0, 0xeb, + 0xdc, 0x0, 0x0, 0xfb, 0xbe, 0x0, 0x5, 0xfb, + 0x6f, 0xc7, 0x9f, 0xdb, 0x7, 0xef, 0xc3, 0xbb, + + /* U+0076 "v" */ + 0x9f, 0x10, 0x0, 0xf, 0x93, 0xf6, 0x0, 0x5, + 0xf4, 0xe, 0xb0, 0x0, 0xbe, 0x0, 0x8f, 0x10, + 0xf, 0x80, 0x2, 0xf6, 0x5, 0xf3, 0x0, 0xd, + 0xb0, 0xbd, 0x0, 0x0, 0x7f, 0x2f, 0x70, 0x0, + 0x1, 0xfb, 0xf2, 0x0, 0x0, 0xc, 0xfc, 0x0, + 0x0, 0x0, 0x6f, 0x60, 0x0, + + /* U+0077 "w" */ + 0xcd, 0x0, 0x6, 0xf7, 0x0, 0xd, 0xb8, 0xf1, + 0x0, 0xaf, 0xa0, 0x1, 0xf6, 0x3f, 0x50, 0xe, + 0xee, 0x0, 0x5f, 0x20, 0xf9, 0x3, 0xf7, 0xf2, + 0xa, 0xd0, 0xa, 0xd0, 0x7e, 0x1f, 0x60, 0xe8, + 0x0, 0x6f, 0x1b, 0xa0, 0xda, 0x3f, 0x40, 0x1, + 0xf5, 0xf6, 0x9, 0xe7, 0xf0, 0x0, 0xc, 0xcf, + 0x20, 0x5f, 0xda, 0x0, 0x0, 0x8f, 0xe0, 0x1, + 0xff, 0x50, 0x0, 0x3, 0xfa, 0x0, 0xd, 0xf1, + 0x0, + + /* U+0078 "x" */ + 0x4f, 0xa0, 0x0, 0x9f, 0x40, 0xaf, 0x40, 0x4f, + 0x90, 0x1, 0xed, 0x1e, 0xd0, 0x0, 0x4, 0xfd, + 0xf3, 0x0, 0x0, 0xa, 0xf9, 0x0, 0x0, 0x0, + 0xdf, 0xd0, 0x0, 0x0, 0x9f, 0x7f, 0x90, 0x0, + 0x3f, 0x90, 0x9f, 0x30, 0xd, 0xe1, 0x1, 0xed, + 0x8, 0xf5, 0x0, 0x6, 0xf8, + + /* U+0079 "y" */ + 0x8f, 0x20, 0x0, 0xe, 0xa2, 0xf8, 0x0, 0x4, + 0xf5, 0xd, 0xd0, 0x0, 0x9f, 0x0, 0x7f, 0x20, + 0xe, 0x90, 0x1, 0xf8, 0x4, 0xf4, 0x0, 0xc, + 0xd0, 0xae, 0x0, 0x0, 0x6f, 0x2e, 0x90, 0x0, + 0x1, 0xfa, 0xf3, 0x0, 0x0, 0xb, 0xfd, 0x0, + 0x0, 0x0, 0x5f, 0x80, 0x0, 0x0, 0x5, 0xf2, + 0x0, 0x0, 0x0, 0xbc, 0x0, 0x0, 0xa, 0xcf, + 0x50, 0x0, 0x0, 0xdf, 0x80, 0x0, 0x0, + + /* U+007A "z" */ + 0x4f, 0xff, 0xff, 0xff, 0x51, 0x55, 0x55, 0x5f, + 0xe1, 0x0, 0x0, 0xa, 0xf3, 0x0, 0x0, 0x7, + 0xf7, 0x0, 0x0, 0x4, 0xfa, 0x0, 0x0, 0x2, + 0xed, 0x0, 0x0, 0x0, 0xde, 0x20, 0x0, 0x0, + 0xbf, 0x40, 0x0, 0x0, 0x7f, 0xb6, 0x66, 0x66, + 0x4a, 0xff, 0xff, 0xff, 0xf9, + + /* U+007B "{" */ + 0x0, 0x9, 0xf9, 0x0, 0x5f, 0xa4, 0x0, 0x9e, + 0x0, 0x0, 0xad, 0x0, 0x0, 0xac, 0x0, 0x0, + 0xbc, 0x0, 0x0, 0xcb, 0x0, 0x1, 0xf7, 0x0, + 0x4d, 0xd1, 0x0, 0x8f, 0x70, 0x0, 0x5, 0xf4, + 0x0, 0x0, 0xda, 0x0, 0x0, 0xbc, 0x0, 0x0, + 0xbc, 0x0, 0x0, 0xad, 0x0, 0x0, 0x9d, 0x0, + 0x0, 0x5f, 0x94, 0x0, 0x9, 0xf9, + + /* U+007C "|" */ + 0x5f, 0x5, 0xf0, 0x5f, 0x5, 0xf0, 0x5f, 0x5, + 0xf0, 0x5f, 0x5, 0xf0, 0x5f, 0x5, 0xf0, 0x5f, + 0x5, 0xf0, 0x5f, 0x5, 0xf0, 0x5f, 0x5, 0xf0, + 0x5f, 0x5, 0xf0, + + /* U+007D "}" */ + 0x9f, 0x90, 0x0, 0x4a, 0xf5, 0x0, 0x0, 0xe9, + 0x0, 0x0, 0xca, 0x0, 0x0, 0xca, 0x0, 0x0, + 0xcb, 0x0, 0x0, 0xbc, 0x0, 0x0, 0x7f, 0x0, + 0x0, 0xd, 0xd4, 0x0, 0x6, 0xf8, 0x0, 0x4f, + 0x50, 0x0, 0xad, 0x0, 0x0, 0xcb, 0x0, 0x0, + 0xca, 0x0, 0x0, 0xca, 0x0, 0x0, 0xe9, 0x0, + 0x49, 0xf6, 0x0, 0x9f, 0x90, 0x0, + + /* U+007E "~" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xef, 0xc6, + 0x0, 0x18, 0x3f, 0xed, 0xff, 0xec, 0xfb, 0x35, + 0x0, 0x28, 0xef, 0xb3, 0x0, 0x0, 0x0, 0x0, + 0x0, + + /* U+F001 "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x27, + 0xba, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x48, + 0xdf, 0xff, 0xf2, 0x0, 0x0, 0x0, 0x1, 0x6a, + 0xff, 0xff, 0xff, 0xff, 0x20, 0x0, 0x0, 0x7c, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf2, 0x0, 0x0, + 0x4f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x20, + 0x0, 0x5, 0xff, 0xff, 0xff, 0xff, 0xb7, 0x3f, + 0xf2, 0x0, 0x0, 0x5f, 0xff, 0xfe, 0x95, 0x0, + 0x1, 0xff, 0x20, 0x0, 0x5, 0xff, 0x73, 0x0, + 0x0, 0x0, 0x1f, 0xf2, 0x0, 0x0, 0x5f, 0xe0, + 0x0, 0x0, 0x0, 0x1, 0xff, 0x20, 0x0, 0x5, + 0xfe, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf2, 0x0, + 0x0, 0x5f, 0xe0, 0x0, 0x0, 0x0, 0x1, 0xff, + 0x20, 0x0, 0x5, 0xfe, 0x0, 0x0, 0x0, 0x69, + 0x8f, 0xf2, 0x0, 0x0, 0x5f, 0xe0, 0x0, 0x2, + 0xef, 0xff, 0xff, 0x20, 0x3, 0x58, 0xfe, 0x0, + 0x0, 0x8f, 0xff, 0xff, 0xf2, 0x2d, 0xff, 0xff, + 0xe0, 0x0, 0x4, 0xff, 0xff, 0xfd, 0xb, 0xff, + 0xff, 0xfe, 0x0, 0x0, 0x4, 0xbd, 0xc8, 0x10, + 0xaf, 0xff, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xaf, 0xff, 0xb1, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+F008 "" */ + 0x51, 0x6, 0x88, 0x88, 0x88, 0x88, 0x88, 0x30, + 0x15, 0xf7, 0x6e, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xb6, 0x8f, 0xfd, 0xcf, 0xf3, 0x33, 0x33, 0x33, + 0x6f, 0xec, 0xdf, 0xf2, 0xc, 0xe0, 0x0, 0x0, + 0x0, 0x3f, 0x70, 0x2f, 0xf2, 0xc, 0xe0, 0x0, + 0x0, 0x0, 0x3f, 0x80, 0x2f, 0xff, 0xff, 0xe0, + 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xf4, 0x2d, + 0xf9, 0x99, 0x99, 0x99, 0xbf, 0x92, 0x4f, 0xf2, + 0xc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x70, 0x2f, + 0xfb, 0xaf, 0xf1, 0x11, 0x11, 0x11, 0x5f, 0xda, + 0xbf, 0xf9, 0x8e, 0xe0, 0x0, 0x0, 0x0, 0x3f, + 0xc8, 0x9f, 0xf2, 0xc, 0xe0, 0x0, 0x0, 0x0, + 0x3f, 0x70, 0x2f, 0xf6, 0x4d, 0xe0, 0x0, 0x0, + 0x0, 0x3f, 0xa4, 0x6f, 0xfe, 0xef, 0xfb, 0xbb, + 0xbb, 0xbb, 0xcf, 0xfe, 0xef, 0xc2, 0xc, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x80, 0x2c, + + /* U+F00B "" */ + 0x58, 0x88, 0x70, 0x28, 0x88, 0x88, 0x88, 0x88, + 0x85, 0xff, 0xff, 0xf3, 0x9f, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf3, 0xaf, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 0xaf, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xbf, 0xff, 0xd1, 0x6f, + 0xff, 0xff, 0xff, 0xff, 0xfb, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, + 0xe1, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, + 0xff, 0xf3, 0xaf, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf3, 0xaf, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf3, 0x9f, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x58, 0x88, 0x60, 0x27, 0x88, 0x88, + 0x88, 0x88, 0x85, 0x47, 0x77, 0x50, 0x17, 0x77, + 0x77, 0x77, 0x77, 0x74, 0xff, 0xff, 0xf3, 0x9f, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, + 0xaf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf3, 0xaf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, + 0xff, 0xf1, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xfd, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, + + /* U+F00C "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5, + 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x8f, 0xf3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x8, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x8f, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x8, 0xff, 0xff, 0x90, 0x9, 0xd2, 0x0, + 0x0, 0x0, 0x8f, 0xff, 0xf9, 0x0, 0x9f, 0xfe, + 0x20, 0x0, 0x8, 0xff, 0xff, 0x90, 0x0, 0xdf, + 0xff, 0xe2, 0x0, 0x8f, 0xff, 0xf9, 0x0, 0x0, + 0x2e, 0xff, 0xfe, 0x28, 0xff, 0xff, 0x90, 0x0, + 0x0, 0x2, 0xef, 0xff, 0xff, 0xff, 0xf9, 0x0, + 0x0, 0x0, 0x0, 0x2e, 0xff, 0xff, 0xff, 0x90, + 0x0, 0x0, 0x0, 0x0, 0x2, 0xef, 0xff, 0xf9, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2e, 0xff, + 0x90, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, + 0xd8, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+F00D "" */ + 0x2d, 0xb0, 0x0, 0x0, 0x6, 0xe6, 0xd, 0xff, + 0xc0, 0x0, 0x6, 0xff, 0xf3, 0xcf, 0xff, 0xc0, + 0x6, 0xff, 0xff, 0x31, 0xdf, 0xff, 0xc7, 0xff, + 0xff, 0x50, 0x1, 0xdf, 0xff, 0xff, 0xff, 0x50, + 0x0, 0x1, 0xdf, 0xff, 0xff, 0x50, 0x0, 0x0, + 0x7, 0xff, 0xff, 0xd0, 0x0, 0x0, 0x6, 0xff, + 0xff, 0xff, 0xc0, 0x0, 0x6, 0xff, 0xff, 0xdf, + 0xff, 0xc0, 0x6, 0xff, 0xff, 0x51, 0xdf, 0xff, + 0xc0, 0xff, 0xff, 0x50, 0x1, 0xdf, 0xff, 0x58, + 0xff, 0x50, 0x0, 0x1, 0xdf, 0xd0, 0x5, 0x30, + 0x0, 0x0, 0x1, 0x61, 0x0, + + /* U+F011 "" */ + 0x0, 0x0, 0x0, 0x0, 0xcd, 0x50, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfa, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x7, 0xe3, 0x3, 0xff, + 0xa0, 0xb, 0xc1, 0x0, 0x0, 0x8, 0xff, 0xb0, + 0x3f, 0xfa, 0x4, 0xff, 0xd1, 0x0, 0x4, 0xff, + 0xf6, 0x3, 0xff, 0xa0, 0x1e, 0xff, 0xa0, 0x0, + 0xdf, 0xf7, 0x0, 0x3f, 0xfa, 0x0, 0x2e, 0xff, + 0x40, 0x3f, 0xfc, 0x0, 0x3, 0xff, 0xa0, 0x0, + 0x6f, 0xfa, 0x8, 0xff, 0x60, 0x0, 0x3f, 0xfa, + 0x0, 0x0, 0xef, 0xf0, 0xaf, 0xf2, 0x0, 0x3, + 0xff, 0xa0, 0x0, 0xb, 0xff, 0x1b, 0xff, 0x10, + 0x0, 0x1f, 0xf8, 0x0, 0x0, 0xbf, 0xf1, 0x9f, + 0xf3, 0x0, 0x0, 0x24, 0x0, 0x0, 0xd, 0xff, + 0x6, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x2, + 0xff, 0xd0, 0x1f, 0xff, 0x20, 0x0, 0x0, 0x0, + 0x0, 0xbf, 0xf8, 0x0, 0x9f, 0xfd, 0x20, 0x0, + 0x0, 0x0, 0x9f, 0xfe, 0x10, 0x0, 0xcf, 0xfe, + 0x71, 0x0, 0x4, 0xcf, 0xff, 0x50, 0x0, 0x1, + 0xdf, 0xff, 0xfe, 0xdf, 0xff, 0xff, 0x60, 0x0, + 0x0, 0x0, 0x9f, 0xff, 0xff, 0xff, 0xfd, 0x40, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xce, 0xfd, 0xa5, + 0x0, 0x0, 0x0, + + /* U+F013 "" */ + 0x0, 0x0, 0x0, 0x4, 0x66, 0x40, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xf3, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x4f, 0xff, 0xf4, + 0x0, 0x0, 0x0, 0x0, 0x78, 0x17, 0xff, 0xff, + 0xff, 0x71, 0x87, 0x0, 0x4, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x40, 0xd, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xd0, 0x3f, 0xff, + 0xff, 0xfe, 0x88, 0xef, 0xff, 0xff, 0xf3, 0x8, + 0xff, 0xff, 0xd0, 0x0, 0xd, 0xff, 0xff, 0x80, + 0x0, 0xaf, 0xff, 0x50, 0x0, 0x5, 0xff, 0xfa, + 0x0, 0x0, 0xbf, 0xff, 0x30, 0x0, 0x3, 0xff, + 0xfb, 0x0, 0x1, 0xcf, 0xff, 0x80, 0x0, 0x8, + 0xff, 0xfc, 0x10, 0x3e, 0xff, 0xff, 0xf6, 0x0, + 0x6f, 0xff, 0xff, 0xe3, 0x1f, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf1, 0x9, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0x0, 0xdf, + 0x8e, 0xff, 0xff, 0xff, 0xe8, 0xfd, 0x0, 0x0, + 0x11, 0x1, 0x9f, 0xff, 0xf9, 0x10, 0x11, 0x0, + 0x0, 0x0, 0x0, 0x4f, 0xff, 0xf4, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2c, 0xee, 0xd2, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, + + /* U+F015 "" */ + 0x0, 0x0, 0x0, 0x0, 0x8, 0x92, 0x0, 0x6b, + 0xb1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2d, 0xff, + 0xe4, 0xa, 0xff, 0x20, 0x0, 0x0, 0x0, 0x0, + 0x4e, 0xff, 0xff, 0xf6, 0xaf, 0xf2, 0x0, 0x0, + 0x0, 0x0, 0x6f, 0xfe, 0x31, 0xcf, 0xff, 0xff, + 0x20, 0x0, 0x0, 0x0, 0x9f, 0xfd, 0x25, 0x70, + 0xaf, 0xff, 0xf2, 0x0, 0x0, 0x1, 0xbf, 0xfa, + 0x8, 0xff, 0xb0, 0x7f, 0xff, 0x40, 0x0, 0x2, + 0xdf, 0xf8, 0xa, 0xff, 0xff, 0xd2, 0x5f, 0xff, + 0x50, 0x4, 0xff, 0xf5, 0x1d, 0xff, 0xff, 0xff, + 0xe4, 0x2e, 0xff, 0x70, 0xdf, 0xe3, 0x3e, 0xff, + 0xff, 0xff, 0xff, 0xf6, 0x1c, 0xff, 0x13, 0xb1, + 0x5f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x9, + 0x60, 0x0, 0xa, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xe0, 0x0, 0x0, 0x0, 0xaf, 0xff, 0xfd, + 0x88, 0xbf, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xa, + 0xff, 0xff, 0x70, 0x3, 0xff, 0xff, 0xe0, 0x0, + 0x0, 0x0, 0xaf, 0xff, 0xf7, 0x0, 0x3f, 0xff, + 0xfe, 0x0, 0x0, 0x0, 0xa, 0xff, 0xff, 0x70, + 0x3, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x8f, + 0xff, 0xf5, 0x0, 0x2f, 0xff, 0xfc, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, + + /* U+F019 "" */ + 0x0, 0x0, 0x0, 0x9, 0xaa, 0x90, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xf3, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x4f, 0xff, 0xf4, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4f, 0xff, + 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4f, + 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x4f, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x4f, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, + 0xc, 0xee, 0xef, 0xff, 0xfe, 0xee, 0xc0, 0x0, + 0x0, 0x8, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, + 0x0, 0x0, 0x0, 0x8f, 0xff, 0xff, 0xff, 0xf8, + 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0xff, 0xff, + 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xff, + 0xf8, 0x0, 0x0, 0x0, 0x24, 0x44, 0x44, 0x7, + 0xff, 0x70, 0x44, 0x44, 0x42, 0xff, 0xff, 0xff, + 0xc1, 0x66, 0x1d, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfe, 0x66, 0xef, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x66, 0xc4, + 0xff, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, + + /* U+F01C "" */ + 0x0, 0x0, 0x4, 0x44, 0x44, 0x44, 0x44, 0x41, + 0x0, 0x0, 0x0, 0x0, 0x1e, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf4, 0x0, 0x0, 0x0, 0xb, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xe1, 0x0, 0x0, + 0x6, 0xff, 0x50, 0x0, 0x0, 0x0, 0x1, 0xff, + 0xa0, 0x0, 0x1, 0xff, 0x90, 0x0, 0x0, 0x0, + 0x0, 0x5, 0xff, 0x50, 0x0, 0xbf, 0xd0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xa, 0xfe, 0x10, 0x6f, + 0xf3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e, + 0xfa, 0xe, 0xff, 0xcc, 0xcc, 0x20, 0x0, 0x0, + 0xbc, 0xcc, 0xef, 0xf2, 0xff, 0xff, 0xff, 0xfa, + 0x0, 0x0, 0x6f, 0xff, 0xff, 0xff, 0x4f, 0xff, + 0xff, 0xff, 0xf8, 0x88, 0x8e, 0xff, 0xff, 0xff, + 0xf4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x4f, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x37, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xa0, + + /* U+F021 "" */ + 0x0, 0x0, 0x0, 0x15, 0x66, 0x40, 0x0, 0x5, + 0xcb, 0x0, 0x0, 0x3b, 0xff, 0xff, 0xff, 0x92, + 0x7, 0xff, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x66, 0xff, 0x0, 0x8f, 0xff, 0xa4, 0x12, + 0x5b, 0xff, 0xfd, 0xff, 0x4, 0xff, 0xe4, 0x0, + 0x0, 0x0, 0x4e, 0xff, 0xff, 0xd, 0xff, 0x30, + 0x0, 0x0, 0x45, 0x46, 0xff, 0xff, 0x4f, 0xf7, + 0x0, 0x0, 0x0, 0xdf, 0xff, 0xff, 0xff, 0x8f, + 0xf1, 0x0, 0x0, 0x0, 0xdf, 0xff, 0xff, 0xff, + 0x2, 0x10, 0x0, 0x0, 0x0, 0x12, 0x22, 0x22, + 0x21, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x67, 0x77, 0x77, 0x75, 0x0, 0x0, + 0x0, 0x6, 0x73, 0xff, 0xff, 0xff, 0xfe, 0x0, + 0x0, 0x0, 0x3f, 0xf6, 0xff, 0xff, 0xee, 0xfd, + 0x0, 0x0, 0x0, 0xcf, 0xf1, 0xff, 0xff, 0x70, + 0x0, 0x0, 0x0, 0x9, 0xff, 0xa0, 0xff, 0xff, + 0xfb, 0x20, 0x0, 0x2, 0xbf, 0xfe, 0x10, 0xff, + 0x8d, 0xff, 0xfc, 0xa9, 0xcf, 0xff, 0xe2, 0x0, + 0xff, 0x61, 0x9f, 0xff, 0xff, 0xff, 0xfb, 0x10, + 0x0, 0xff, 0x70, 0x1, 0x7c, 0xee, 0xd9, 0x30, + 0x0, 0x0, 0x56, 0x20, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, + + /* U+F026 "" */ + 0x0, 0x0, 0x0, 0x2, 0x40, 0x0, 0x0, 0x2, + 0xef, 0x0, 0x0, 0x2, 0xef, 0xf0, 0x0, 0x3, + 0xef, 0xff, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x7b, 0xbb, 0xdf, + 0xff, 0xf0, 0x0, 0x0, 0xbf, 0xff, 0x0, 0x0, + 0x0, 0xbf, 0xf0, 0x0, 0x0, 0x0, 0xbe, 0x0, + 0x0, 0x0, 0x0, 0x0, + + /* U+F027 "" */ + 0x0, 0x0, 0x0, 0x2, 0x40, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2e, 0xf0, 0x0, 0x0, 0x0, 0x0, + 0x2, 0xef, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3e, + 0xff, 0xf0, 0x0, 0x0, 0xdf, 0xff, 0xff, 0xff, + 0xf0, 0x7, 0x10, 0xff, 0xff, 0xff, 0xff, 0xf0, + 0x3f, 0xd0, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x8, + 0xf5, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x4, 0xf7, + 0xff, 0xff, 0xff, 0xff, 0xf0, 0xd, 0xf3, 0xff, + 0xff, 0xff, 0xff, 0xf0, 0x3f, 0x70, 0x8b, 0xbb, + 0xdf, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xb, + 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xbf, + 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, 0xe0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, + + /* U+F028 "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x7, 0xf6, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2, 0x40, 0x0, 0x0, 0x2d, 0xf8, 0x0, 0x0, + 0x0, 0x0, 0x2, 0xef, 0x0, 0x0, 0x40, 0x1c, + 0xf4, 0x0, 0x0, 0x0, 0x2, 0xef, 0xf0, 0x0, + 0x5f, 0xb0, 0x1e, 0xe1, 0x0, 0x0, 0x3, 0xef, + 0xff, 0x0, 0x0, 0xaf, 0xa0, 0x6f, 0x70, 0xdf, + 0xff, 0xff, 0xff, 0xf0, 0x7, 0x10, 0xbf, 0x30, + 0xfd, 0xf, 0xff, 0xff, 0xff, 0xff, 0x3, 0xfd, + 0x3, 0xf9, 0xa, 0xf0, 0xff, 0xff, 0xff, 0xff, + 0xf0, 0x7, 0xf5, 0xe, 0xc0, 0x8f, 0x2f, 0xff, + 0xff, 0xff, 0xff, 0x0, 0x4f, 0x70, 0xdd, 0x7, + 0xf3, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x1d, 0xf3, + 0xf, 0xb0, 0x9f, 0x2f, 0xff, 0xff, 0xff, 0xff, + 0x3, 0xf7, 0x7, 0xf6, 0xc, 0xf0, 0x7b, 0xbb, + 0xdf, 0xff, 0xf0, 0x0, 0x3, 0xfe, 0x12, 0xfa, + 0x0, 0x0, 0x0, 0xbf, 0xff, 0x0, 0x3, 0xff, + 0x40, 0xaf, 0x30, 0x0, 0x0, 0x0, 0xbf, 0xf0, + 0x0, 0x3c, 0x30, 0x6f, 0xa0, 0x0, 0x0, 0x0, + 0x0, 0xbe, 0x0, 0x0, 0x0, 0x6f, 0xe1, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6f, + 0xd2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x3, 0x90, 0x0, 0x0, + + /* U+F03E "" */ + 0x3a, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, + 0xa3, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfe, 0xff, 0xd5, 0x6e, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x20, 0x4, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x2, 0xff, + 0xff, 0xff, 0xbf, 0xff, 0xff, 0xff, 0x50, 0x7, + 0xff, 0xff, 0xf5, 0x8, 0xff, 0xff, 0xff, 0xfb, + 0xbf, 0xff, 0xff, 0x50, 0x0, 0x8f, 0xff, 0xff, + 0xff, 0xcb, 0xff, 0xf5, 0x0, 0x0, 0x9, 0xff, + 0xff, 0xfc, 0x0, 0xaf, 0x50, 0x0, 0x0, 0x4, + 0xff, 0xff, 0xc0, 0x0, 0x3, 0x0, 0x0, 0x0, + 0x4, 0xff, 0xff, 0x40, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x4, 0xff, 0xff, 0x74, 0x44, 0x44, 0x44, + 0x44, 0x44, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x6f, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, + + /* U+F043 "" */ + 0x0, 0x0, 0x6, 0x90, 0x0, 0x0, 0x0, 0x0, + 0x1, 0xff, 0x40, 0x0, 0x0, 0x0, 0x0, 0x6f, + 0xfa, 0x0, 0x0, 0x0, 0x0, 0xd, 0xff, 0xf2, + 0x0, 0x0, 0x0, 0x5, 0xff, 0xff, 0x90, 0x0, + 0x0, 0x0, 0xef, 0xff, 0xff, 0x30, 0x0, 0x0, + 0x9f, 0xff, 0xff, 0xfd, 0x0, 0x0, 0x5f, 0xff, + 0xff, 0xff, 0xf9, 0x0, 0xe, 0xff, 0xff, 0xff, + 0xff, 0xf3, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xa0, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf, + 0xfb, 0xff, 0xff, 0xff, 0xff, 0xf2, 0xff, 0x4a, + 0xff, 0xff, 0xff, 0xff, 0x2c, 0xf8, 0x4f, 0xff, + 0xff, 0xff, 0xf0, 0x7f, 0xf2, 0x5c, 0xff, 0xff, + 0xfb, 0x0, 0xef, 0xe5, 0x8, 0xff, 0xff, 0x30, + 0x2, 0xef, 0xff, 0xff, 0xff, 0x50, 0x0, 0x1, + 0xaf, 0xff, 0xfb, 0x30, 0x0, 0x0, 0x0, 0x3, + 0x31, 0x0, 0x0, 0x0, + + /* U+F048 "" */ + 0x6b, 0x90, 0x0, 0x0, 0x3, 0xa2, 0x9f, 0xe0, + 0x0, 0x0, 0x4f, 0xf9, 0x9f, 0xe0, 0x0, 0x5, + 0xff, 0xfa, 0x9f, 0xe0, 0x0, 0x6f, 0xff, 0xfa, + 0x9f, 0xe0, 0x7, 0xff, 0xff, 0xfa, 0x9f, 0xe0, + 0x8f, 0xff, 0xff, 0xfa, 0x9f, 0xe9, 0xff, 0xff, + 0xff, 0xfa, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xfa, + 0x9f, 0xff, 0xff, 0xff, 0xff, 0xfa, 0x9f, 0xfe, + 0xff, 0xff, 0xff, 0xfa, 0x9f, 0xe1, 0xdf, 0xff, + 0xff, 0xfa, 0x9f, 0xe0, 0x1c, 0xff, 0xff, 0xfa, + 0x9f, 0xe0, 0x0, 0xbf, 0xff, 0xfa, 0x9f, 0xe0, + 0x0, 0xa, 0xff, 0xfa, 0x9f, 0xe0, 0x0, 0x0, + 0x9f, 0xfa, 0x9f, 0xe0, 0x0, 0x0, 0x8, 0xf6, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+F04B "" */ + 0x3a, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xef, 0xfe, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xff, 0xff, 0xfb, 0x20, 0x0, 0x0, 0x0, 0x0, + 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, + 0xff, 0xff, 0xff, 0xff, 0xe6, 0x0, 0x0, 0x0, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc3, 0x0, 0x0, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x91, 0x0, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x60, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe2, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0x20, 0x0, + 0xff, 0xff, 0xff, 0xff, 0xfd, 0x40, 0x0, 0x0, + 0xff, 0xff, 0xff, 0xff, 0x70, 0x0, 0x0, 0x0, + 0xff, 0xff, 0xff, 0xa1, 0x0, 0x0, 0x0, 0x0, + 0xff, 0xff, 0xd3, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xaf, 0xe6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+F04C "" */ + 0x3a, 0xbb, 0xb9, 0x10, 0x3, 0xab, 0xbb, 0x91, + 0xef, 0xff, 0xff, 0xa0, 0xe, 0xff, 0xff, 0xfa, + 0xff, 0xff, 0xff, 0xc0, 0xf, 0xff, 0xff, 0xfc, + 0xff, 0xff, 0xff, 0xc0, 0xf, 0xff, 0xff, 0xfc, + 0xff, 0xff, 0xff, 0xc0, 0xf, 0xff, 0xff, 0xfc, + 0xff, 0xff, 0xff, 0xc0, 0xf, 0xff, 0xff, 0xfc, + 0xff, 0xff, 0xff, 0xc0, 0xf, 0xff, 0xff, 0xfc, + 0xff, 0xff, 0xff, 0xc0, 0xf, 0xff, 0xff, 0xfc, + 0xff, 0xff, 0xff, 0xc0, 0xf, 0xff, 0xff, 0xfc, + 0xff, 0xff, 0xff, 0xc0, 0xf, 0xff, 0xff, 0xfc, + 0xff, 0xff, 0xff, 0xc0, 0xf, 0xff, 0xff, 0xfc, + 0xff, 0xff, 0xff, 0xc0, 0xf, 0xff, 0xff, 0xfc, + 0xff, 0xff, 0xff, 0xc0, 0xf, 0xff, 0xff, 0xfc, + 0xff, 0xff, 0xff, 0xc0, 0xf, 0xff, 0xff, 0xfc, + 0xff, 0xff, 0xff, 0xb0, 0xf, 0xff, 0xff, 0xfb, + 0x7f, 0xff, 0xfe, 0x40, 0x7, 0xff, 0xff, 0xe4, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+F04D "" */ + 0x3a, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0x91, + 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, + 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe4, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+F051 "" */ + 0x4a, 0x20, 0x0, 0x0, 0xa, 0xb4, 0xbf, 0xe3, + 0x0, 0x0, 0xf, 0xf8, 0xcf, 0xff, 0x40, 0x0, + 0xf, 0xf8, 0xcf, 0xff, 0xf5, 0x0, 0xf, 0xf8, + 0xcf, 0xff, 0xff, 0x60, 0xf, 0xf8, 0xcf, 0xff, + 0xff, 0xf7, 0xf, 0xf8, 0xcf, 0xff, 0xff, 0xff, + 0x9f, 0xf8, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xf8, + 0xcf, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xcf, 0xff, + 0xff, 0xff, 0xdf, 0xf8, 0xcf, 0xff, 0xff, 0xfc, + 0x1f, 0xf8, 0xcf, 0xff, 0xff, 0xb0, 0xf, 0xf8, + 0xcf, 0xff, 0xfa, 0x0, 0xf, 0xf8, 0xcf, 0xff, + 0x80, 0x0, 0xf, 0xf8, 0xbf, 0xf7, 0x0, 0x0, + 0xf, 0xf8, 0x7f, 0x60, 0x0, 0x0, 0xf, 0xf7, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+F052 "" */ + 0x0, 0x0, 0x0, 0x2, 0xca, 0x10, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2e, 0xff, 0xc0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1, 0xef, 0xff, 0xfb, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1d, 0xff, 0xff, + 0xff, 0xa0, 0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, + 0xff, 0xff, 0xf9, 0x0, 0x0, 0x0, 0xb, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x70, 0x0, 0x0, 0xaf, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, 0x0, 0x8, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x40, + 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xb0, 0xa, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x60, 0x0, 0x34, 0x44, 0x44, 0x44, 0x44, + 0x44, 0x42, 0x0, 0x3, 0x77, 0x77, 0x77, 0x77, + 0x77, 0x77, 0x77, 0x10, 0xf, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xb0, 0xf, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xf, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0, 0xc, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x70, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, + + /* U+F053 "" */ + 0x0, 0x0, 0x0, 0x0, 0x41, 0x0, 0x0, 0x0, + 0x0, 0x9f, 0xd0, 0x0, 0x0, 0x0, 0x9f, 0xff, + 0x20, 0x0, 0x0, 0x9f, 0xff, 0x50, 0x0, 0x0, + 0x9f, 0xff, 0x50, 0x0, 0x0, 0x9f, 0xff, 0x50, + 0x0, 0x0, 0x9f, 0xff, 0x50, 0x0, 0x0, 0x9f, + 0xff, 0x50, 0x0, 0x0, 0xe, 0xff, 0xd1, 0x0, + 0x0, 0x0, 0x3e, 0xff, 0xc1, 0x0, 0x0, 0x0, + 0x3e, 0xff, 0xc1, 0x0, 0x0, 0x0, 0x3e, 0xff, + 0xc1, 0x0, 0x0, 0x0, 0x3e, 0xff, 0xc1, 0x0, + 0x0, 0x0, 0x3e, 0xff, 0xc0, 0x0, 0x0, 0x0, + 0x3e, 0xff, 0x20, 0x0, 0x0, 0x0, 0x3c, 0x60, + + /* U+F054 "" */ + 0x0, 0x50, 0x0, 0x0, 0x0, 0x0, 0x9f, 0xc1, + 0x0, 0x0, 0x0, 0xe, 0xff, 0xc1, 0x0, 0x0, + 0x0, 0x2e, 0xff, 0xc1, 0x0, 0x0, 0x0, 0x2e, + 0xff, 0xc1, 0x0, 0x0, 0x0, 0x2e, 0xff, 0xc1, + 0x0, 0x0, 0x0, 0x2e, 0xff, 0xc1, 0x0, 0x0, + 0x0, 0x2e, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xaf, + 0xff, 0x20, 0x0, 0x0, 0x9f, 0xff, 0x50, 0x0, + 0x0, 0x9f, 0xff, 0x50, 0x0, 0x0, 0x9f, 0xff, + 0x50, 0x0, 0x0, 0x9f, 0xff, 0x50, 0x0, 0x0, + 0x9f, 0xff, 0x60, 0x0, 0x0, 0xe, 0xff, 0x60, + 0x0, 0x0, 0x0, 0x3d, 0x50, 0x0, 0x0, 0x0, + + /* U+F067 "" */ + 0x0, 0x0, 0x0, 0x39, 0x91, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xcf, 0xf8, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xdf, 0xf9, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xdf, 0xf9, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xdf, 0xf9, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xdf, 0xf9, 0x0, 0x0, 0x0, + 0x36, 0x77, 0x77, 0xef, 0xfc, 0x77, 0x77, 0x61, + 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, + 0xae, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe6, + 0x0, 0x0, 0x0, 0xdf, 0xf9, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xdf, 0xf9, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xdf, 0xf9, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xdf, 0xf9, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xdf, 0xf9, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x9f, 0xf5, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1, 0x10, 0x0, 0x0, 0x0, + + /* U+F068 "" */ + 0x36, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x61, + 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, + 0xaf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, + + /* U+F06E "" */ + 0x0, 0x0, 0x0, 0x3, 0x68, 0x87, 0x40, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x8e, 0xff, 0xff, + 0xff, 0xf9, 0x20, 0x0, 0x0, 0x0, 0x4, 0xef, + 0xfd, 0x63, 0x25, 0xbf, 0xff, 0x70, 0x0, 0x0, + 0x7, 0xff, 0xfa, 0x0, 0x0, 0x0, 0x7f, 0xff, + 0xa0, 0x0, 0x6, 0xff, 0xfd, 0x0, 0x8, 0xfc, + 0x20, 0x9f, 0xff, 0xa0, 0x2, 0xff, 0xff, 0x50, + 0x0, 0x8f, 0xfe, 0x12, 0xff, 0xff, 0x60, 0xcf, + 0xff, 0xf2, 0x16, 0x7f, 0xff, 0xf5, 0xe, 0xff, + 0xfe, 0x1e, 0xff, 0xff, 0x12, 0xff, 0xff, 0xff, + 0x70, 0xdf, 0xff, 0xf2, 0x6f, 0xff, 0xf3, 0xe, + 0xff, 0xff, 0xf3, 0xf, 0xff, 0xfb, 0x0, 0xbf, + 0xff, 0x90, 0x4f, 0xff, 0xf8, 0x5, 0xff, 0xfe, + 0x10, 0x1, 0xdf, 0xff, 0x40, 0x28, 0x84, 0x1, + 0xef, 0xff, 0x30, 0x0, 0x1, 0xbf, 0xff, 0x60, + 0x0, 0x4, 0xef, 0xfd, 0x30, 0x0, 0x0, 0x0, + 0x6e, 0xff, 0xfb, 0xbe, 0xff, 0xf9, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x5, 0xad, 0xff, 0xeb, 0x71, + 0x0, 0x0, 0x0, + + /* U+F070 "" */ + 0x4a, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xe, 0xfe, 0x30, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5f, + 0xff, 0x60, 0x0, 0x15, 0x78, 0x74, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x2d, 0xff, 0xa6, 0xdf, 0xff, + 0xff, 0xff, 0xa2, 0x0, 0x0, 0x0, 0x0, 0xa, + 0xff, 0xff, 0xe8, 0x32, 0x5b, 0xff, 0xf8, 0x0, + 0x0, 0x0, 0x0, 0x6, 0xff, 0xf6, 0x0, 0x10, + 0x6, 0xff, 0xfb, 0x0, 0x0, 0x0, 0x0, 0x3, + 0xef, 0xf8, 0x7f, 0xd3, 0x9, 0xff, 0xfb, 0x0, + 0x0, 0x1e, 0x70, 0x1, 0xbf, 0xfe, 0xff, 0xf2, + 0x1f, 0xff, 0xf7, 0x0, 0x9, 0xff, 0xa0, 0x0, + 0x8f, 0xff, 0xff, 0x70, 0xdf, 0xff, 0xf1, 0x0, + 0xcf, 0xff, 0xd1, 0x0, 0x5f, 0xff, 0xf9, 0xc, + 0xff, 0xff, 0x30, 0x5, 0xff, 0xff, 0x60, 0x0, + 0x2d, 0xff, 0xb0, 0xef, 0xff, 0xb0, 0x0, 0xa, + 0xff, 0xfc, 0x0, 0x0, 0xa, 0xff, 0xef, 0xff, + 0xe1, 0x0, 0x0, 0xc, 0xff, 0xf6, 0x0, 0x0, + 0x6, 0xff, 0xff, 0xf3, 0x0, 0x0, 0x0, 0xa, + 0xff, 0xf8, 0x10, 0x0, 0x3, 0xef, 0xfa, 0x0, + 0x0, 0x0, 0x0, 0x5, 0xef, 0xff, 0xcb, 0x80, + 0x1, 0xbf, 0xfb, 0x10, 0x0, 0x0, 0x0, 0x0, + 0x5a, 0xdf, 0xfe, 0x70, 0x0, 0x8f, 0xfe, 0x30, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x5f, 0xff, 0x30, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2d, 0xe1, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1, 0x0, + + /* U+F071 "" */ + 0x0, 0x0, 0x0, 0x0, 0x1, 0xcd, 0x40, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, + 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x4f, 0xff, 0xf8, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xff, 0xff, + 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, + 0xff, 0xff, 0xff, 0xa0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xe, 0xff, 0xff, 0xff, 0xf3, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xfb, 0x33, + 0x8f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, + 0xff, 0xf9, 0x0, 0x6f, 0xff, 0x60, 0x0, 0x0, + 0x0, 0x0, 0xa, 0xff, 0xfa, 0x0, 0x6f, 0xff, + 0xe0, 0x0, 0x0, 0x0, 0x0, 0x4f, 0xff, 0xfb, + 0x0, 0x7f, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, + 0xdf, 0xff, 0xfc, 0x0, 0x8f, 0xff, 0xff, 0x10, + 0x0, 0x0, 0x6, 0xff, 0xff, 0xfd, 0x0, 0x9f, + 0xff, 0xff, 0xa0, 0x0, 0x0, 0xe, 0xff, 0xff, + 0xff, 0xcb, 0xff, 0xff, 0xff, 0xf3, 0x0, 0x0, + 0x8f, 0xff, 0xff, 0xfc, 0x0, 0x8f, 0xff, 0xff, + 0xfc, 0x0, 0x2, 0xff, 0xff, 0xff, 0xf9, 0x0, + 0x4f, 0xff, 0xff, 0xff, 0x60, 0xa, 0xff, 0xff, + 0xff, 0xfe, 0x42, 0xcf, 0xff, 0xff, 0xff, 0xe0, + 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf3, 0x9, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xd0, 0x0, 0x23, + 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, + 0x0, + + /* U+F074 "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x40, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, + 0xf9, 0x0, 0x12, 0x22, 0x10, 0x0, 0x0, 0x1, + 0x29, 0xff, 0x90, 0xff, 0xff, 0xe2, 0x0, 0x0, + 0x6f, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xfe, 0x20, + 0x5, 0xff, 0xff, 0xff, 0xfd, 0x9a, 0xad, 0xff, + 0xd0, 0x5f, 0xff, 0xbd, 0xff, 0xe2, 0x0, 0x0, + 0xcf, 0x44, 0xff, 0xf9, 0x8, 0xfe, 0x20, 0x0, + 0x0, 0x4, 0x4f, 0xff, 0x90, 0x4, 0xd2, 0x0, + 0x0, 0x0, 0x3, 0xff, 0xfa, 0x0, 0x0, 0x10, + 0x0, 0x0, 0x0, 0x3f, 0xff, 0xa1, 0x91, 0x6, + 0xf6, 0x0, 0x0, 0x2, 0xef, 0xfb, 0xc, 0xfc, + 0x8, 0xff, 0x60, 0xef, 0xff, 0xff, 0xb0, 0x1d, + 0xff, 0xff, 0xff, 0xf6, 0xff, 0xff, 0xfc, 0x0, + 0x2, 0xef, 0xff, 0xff, 0xfe, 0xdd, 0xdd, 0xb0, + 0x0, 0x0, 0x2d, 0xde, 0xff, 0xf5, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0x50, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0xf5, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, + + /* U+F077 "" */ + 0x0, 0x0, 0x0, 0x4, 0x20, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x5f, 0xe2, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x5, 0xff, 0xfe, 0x20, 0x0, 0x0, + 0x0, 0x0, 0x6f, 0xff, 0xff, 0xe3, 0x0, 0x0, + 0x0, 0x6, 0xff, 0xfa, 0xcf, 0xfe, 0x30, 0x0, + 0x0, 0x6f, 0xff, 0x90, 0xc, 0xff, 0xe3, 0x0, + 0x6, 0xff, 0xf9, 0x0, 0x0, 0xcf, 0xfe, 0x30, + 0x5f, 0xff, 0x90, 0x0, 0x0, 0xc, 0xff, 0xe2, + 0xaf, 0xf9, 0x0, 0x0, 0x0, 0x0, 0xcf, 0xf6, + 0x1b, 0x80, 0x0, 0x0, 0x0, 0x0, 0xb, 0x90, + + /* U+F078 "" */ + 0x3, 0x20, 0x0, 0x0, 0x0, 0x0, 0x3, 0x20, + 0x6f, 0xe2, 0x0, 0x0, 0x0, 0x0, 0x5f, 0xf2, + 0xaf, 0xfe, 0x20, 0x0, 0x0, 0x5, 0xff, 0xf6, + 0x1c, 0xff, 0xe3, 0x0, 0x0, 0x5f, 0xff, 0x90, + 0x1, 0xcf, 0xfe, 0x30, 0x5, 0xff, 0xf9, 0x0, + 0x0, 0x1c, 0xff, 0xe3, 0x5f, 0xff, 0x90, 0x0, + 0x0, 0x1, 0xcf, 0xff, 0xff, 0xf9, 0x0, 0x0, + 0x0, 0x0, 0x1c, 0xff, 0xff, 0x90, 0x0, 0x0, + 0x0, 0x0, 0x1, 0xcf, 0xf9, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1b, 0x90, 0x0, 0x0, 0x0, + + /* U+F079 "" */ + 0x0, 0x0, 0x26, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xef, 0xa0, + 0x0, 0x44, 0x44, 0x44, 0x44, 0x42, 0x0, 0x0, + 0x0, 0x3e, 0xff, 0xfa, 0x4, 0xff, 0xff, 0xff, + 0xff, 0xfd, 0x0, 0x0, 0x3, 0xef, 0xff, 0xff, + 0xa0, 0xaf, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, + 0xe, 0xfd, 0xef, 0xcf, 0xf8, 0x0, 0x0, 0x0, + 0x5, 0xfe, 0x0, 0x0, 0xb, 0xe2, 0xdf, 0x67, + 0xf5, 0x0, 0x0, 0x0, 0x5, 0xfe, 0x0, 0x0, + 0x0, 0x0, 0xdf, 0x60, 0x0, 0x0, 0x0, 0x0, + 0x5, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xdf, 0x60, + 0x0, 0x0, 0x0, 0x0, 0x5, 0xfe, 0x0, 0x0, + 0x0, 0x0, 0xdf, 0x60, 0x0, 0x0, 0x0, 0x4, + 0x15, 0xfe, 0x3, 0x20, 0x0, 0x0, 0xdf, 0x60, + 0x0, 0x0, 0x0, 0x6f, 0xd6, 0xfe, 0x4f, 0xf1, + 0x0, 0x0, 0xdf, 0x94, 0x44, 0x44, 0x41, 0x3f, + 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0xdf, 0xff, + 0xff, 0xff, 0xff, 0x24, 0xff, 0xff, 0xfc, 0x10, + 0x0, 0x0, 0x9f, 0xff, 0xff, 0xff, 0xfe, 0x30, + 0x4f, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4, 0xfc, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x10, 0x0, 0x0, + + /* U+F07B "" */ + 0x17, 0x88, 0x88, 0x84, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xcf, 0xff, 0xff, 0xff, 0x50, 0x0, 0x0, + 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xf6, 0x44, + 0x44, 0x44, 0x30, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfa, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, + + /* U+F093 "" */ + 0x0, 0x0, 0x0, 0x0, 0x47, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, 0x90, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x4f, 0xff, 0xf9, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, 0xff, + 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x4f, 0xff, + 0xff, 0xff, 0xf9, 0x0, 0x0, 0x0, 0x4, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x90, 0x0, 0x0, 0xc, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0x0, 0x0, + 0x0, 0x11, 0x2f, 0xff, 0xf7, 0x11, 0x10, 0x0, + 0x0, 0x0, 0x0, 0x1f, 0xff, 0xf6, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xf6, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xf6, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, + 0xf6, 0x0, 0x0, 0x0, 0x24, 0x44, 0x42, 0x1f, + 0xff, 0xf6, 0x24, 0x44, 0x42, 0xff, 0xff, 0xfc, + 0x8, 0xbb, 0xa2, 0xcf, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xa5, 0x55, 0x5a, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x66, 0xc4, + 0xff, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, + + /* U+F095 "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xb8, + 0x41, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x9f, 0xff, 0xfb, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1f, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x7, 0xff, 0xff, 0xfe, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xdf, 0xff, 0xff, 0xc0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0xff, + 0xf9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, + 0xff, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xc, 0xff, 0xf1, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x3, 0xff, 0xfa, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xdf, 0xff, 0x20, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xaf, 0xff, 0x90, + 0x0, 0x0, 0x4, 0xa5, 0x0, 0x0, 0xaf, 0xff, + 0xd0, 0x0, 0x0, 0x7d, 0xff, 0xf4, 0x2, 0xcf, + 0xff, 0xe2, 0x0, 0x0, 0xdf, 0xff, 0xff, 0xe9, + 0xff, 0xff, 0xf3, 0x0, 0x0, 0xd, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xe2, 0x0, 0x0, 0x0, 0x9f, + 0xff, 0xff, 0xff, 0xff, 0xa1, 0x0, 0x0, 0x0, + 0x6, 0xff, 0xff, 0xff, 0xfc, 0x40, 0x0, 0x0, + 0x0, 0x0, 0x2f, 0xff, 0xfd, 0x83, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x23, 0x20, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+F0C4 "" */ + 0x0, 0x35, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1c, 0xff, 0xfa, 0x0, 0x0, 0x1, 0x9c, 0xa1, + 0xaf, 0xfe, 0xff, 0x60, 0x0, 0x2e, 0xff, 0xf9, + 0xef, 0x60, 0xaf, 0xb0, 0x3, 0xef, 0xff, 0xb0, + 0xef, 0x92, 0xcf, 0x90, 0x3e, 0xff, 0xfa, 0x0, + 0x7f, 0xff, 0xff, 0xe6, 0xff, 0xff, 0xa0, 0x0, + 0x8, 0xff, 0xff, 0xff, 0xff, 0xfa, 0x0, 0x0, + 0x0, 0x1, 0xcf, 0xff, 0xff, 0xa0, 0x0, 0x0, + 0x0, 0x0, 0x3f, 0xff, 0xff, 0x10, 0x0, 0x0, + 0x0, 0x36, 0xef, 0xff, 0xff, 0xd1, 0x0, 0x0, + 0x1c, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x10, 0x0, + 0xaf, 0xfe, 0xff, 0xc2, 0xdf, 0xff, 0xd1, 0x0, + 0xef, 0x60, 0xaf, 0xa0, 0x1c, 0xff, 0xfd, 0x20, + 0xef, 0x92, 0xcf, 0xa0, 0x0, 0xcf, 0xff, 0xe2, + 0x7f, 0xff, 0xff, 0x40, 0x0, 0xb, 0xff, 0xf9, + 0x8, 0xff, 0xe5, 0x0, 0x0, 0x0, 0x58, 0x50, + 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+F0C5 "" */ + 0x0, 0x0, 0x6f, 0xff, 0xff, 0xf1, 0x68, 0x0, + 0x0, 0x0, 0xaf, 0xff, 0xff, 0xf1, 0x7f, 0x80, + 0x0, 0x0, 0xaf, 0xff, 0xff, 0xf1, 0x7f, 0xf8, + 0x36, 0x62, 0xaf, 0xff, 0xff, 0xf1, 0x36, 0x66, + 0xff, 0xf6, 0xaf, 0xff, 0xff, 0xf6, 0x22, 0x22, + 0xff, 0xf6, 0xaf, 0xff, 0xff, 0xff, 0xff, 0xfe, + 0xff, 0xf6, 0xaf, 0xff, 0xff, 0xff, 0xff, 0xfe, + 0xff, 0xf6, 0xaf, 0xff, 0xff, 0xff, 0xff, 0xfe, + 0xff, 0xf6, 0xaf, 0xff, 0xff, 0xff, 0xff, 0xfe, + 0xff, 0xf6, 0xaf, 0xff, 0xff, 0xff, 0xff, 0xfe, + 0xff, 0xf6, 0xaf, 0xff, 0xff, 0xff, 0xff, 0xfe, + 0xff, 0xf6, 0xaf, 0xff, 0xff, 0xff, 0xff, 0xfe, + 0xff, 0xf6, 0xaf, 0xff, 0xff, 0xff, 0xff, 0xfe, + 0xff, 0xf6, 0xaf, 0xff, 0xff, 0xff, 0xff, 0xfe, + 0xff, 0xf7, 0x6f, 0xff, 0xff, 0xff, 0xff, 0xfa, + 0xff, 0xfe, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0x0, 0x0, + 0xef, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, + 0x14, 0x44, 0x44, 0x44, 0x44, 0x20, 0x0, 0x0, + + /* U+F0C7 "" */ + 0x5, 0x66, 0x66, 0x66, 0x66, 0x64, 0x0, 0x0, + 0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0x0, + 0xff, 0xed, 0xdd, 0xdd, 0xdd, 0xef, 0xf9, 0x0, + 0xff, 0x40, 0x0, 0x0, 0x0, 0xf, 0xff, 0x90, + 0xff, 0x40, 0x0, 0x0, 0x0, 0xe, 0xff, 0xf6, + 0xff, 0x40, 0x0, 0x0, 0x0, 0xe, 0xff, 0xf9, + 0xff, 0x40, 0x0, 0x0, 0x0, 0xf, 0xff, 0xf9, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, + 0xff, 0xff, 0xff, 0xc5, 0x7f, 0xff, 0xff, 0xf9, + 0xff, 0xff, 0xfe, 0x0, 0x5, 0xff, 0xff, 0xf9, + 0xff, 0xff, 0xfa, 0x0, 0x1, 0xff, 0xff, 0xf9, + 0xff, 0xff, 0xfd, 0x0, 0x4, 0xff, 0xff, 0xf9, + 0xff, 0xff, 0xff, 0x93, 0x4d, 0xff, 0xff, 0xf9, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, + 0x8f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe3, + 0x1, 0x22, 0x22, 0x22, 0x22, 0x22, 0x21, 0x0, + + /* U+F0C9 "" */ + 0x79, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x95, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, + 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, + 0x68, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x84, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x67, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x74, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, + 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+F0E0 "" */ + 0x3, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, + 0x30, 0xaf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfa, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xcf, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfc, 0xa, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xa0, 0xa1, 0x6f, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf6, 0x3d, 0xfe, 0x42, + 0xdf, 0xff, 0xff, 0xff, 0xfd, 0x26, 0xff, 0xff, + 0xf9, 0x19, 0xff, 0xff, 0xff, 0x91, 0xbf, 0xff, + 0xff, 0xff, 0xd3, 0x5f, 0xff, 0xe5, 0x4e, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x71, 0x99, 0x17, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x77, 0xdf, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, + + /* U+F0E7 "" */ + 0x0, 0xaf, 0xff, 0xff, 0xa0, 0x0, 0x0, 0xf, + 0xff, 0xff, 0xfb, 0x0, 0x0, 0x1, 0xff, 0xff, + 0xff, 0x60, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xf1, + 0x0, 0x0, 0x5, 0xff, 0xff, 0xfb, 0x0, 0x0, + 0x0, 0x8f, 0xff, 0xff, 0xa5, 0x55, 0x40, 0xa, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x30, 0xcf, 0xff, + 0xff, 0xff, 0xff, 0xc0, 0xe, 0xff, 0xff, 0xff, + 0xff, 0xf3, 0x0, 0xef, 0xff, 0xff, 0xff, 0xfa, + 0x0, 0x1, 0x22, 0x23, 0xff, 0xff, 0x10, 0x0, + 0x0, 0x0, 0x4f, 0xff, 0x70, 0x0, 0x0, 0x0, + 0x8, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xcf, + 0xf5, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x0, + 0x0, 0x0, 0x0, 0x3, 0xff, 0x30, 0x0, 0x0, + 0x0, 0x0, 0x7f, 0x90, 0x0, 0x0, 0x0, 0x0, + 0x7, 0xe1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, + + /* U+F0EA "" */ + 0x0, 0x0, 0x8d, 0x90, 0x0, 0x0, 0x0, 0x0, + 0x8b, 0xbc, 0xfa, 0xfd, 0xbb, 0x90, 0x0, 0x0, + 0xff, 0xff, 0xd0, 0xcf, 0xff, 0xf1, 0x0, 0x0, + 0xff, 0xff, 0xf8, 0xff, 0xff, 0xf1, 0x0, 0x0, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0x0, 0x0, + 0xff, 0xff, 0xf3, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xff, 0xff, 0x95, 0xff, 0xff, 0xf1, 0x79, 0x0, + 0xff, 0xff, 0x88, 0xff, 0xff, 0xf1, 0x7f, 0xb0, + 0xff, 0xff, 0x88, 0xff, 0xff, 0xf1, 0x7f, 0xfa, + 0xff, 0xff, 0x88, 0xff, 0xff, 0xf2, 0x2, 0x21, + 0xff, 0xff, 0x88, 0xff, 0xff, 0xff, 0xdd, 0xdc, + 0xff, 0xff, 0x88, 0xff, 0xff, 0xff, 0xff, 0xfe, + 0xff, 0xff, 0x88, 0xff, 0xff, 0xff, 0xff, 0xfe, + 0xff, 0xff, 0x88, 0xff, 0xff, 0xff, 0xff, 0xfe, + 0x7a, 0xaa, 0x58, 0xff, 0xff, 0xff, 0xff, 0xfe, + 0x0, 0x0, 0x8, 0xff, 0xff, 0xff, 0xff, 0xfe, + 0x0, 0x0, 0x8, 0xff, 0xff, 0xff, 0xff, 0xfe, + 0x0, 0x0, 0x6, 0xff, 0xff, 0xff, 0xff, 0xfc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+F0F3 "" */ + 0x0, 0x0, 0x0, 0x8, 0x60, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x6, 0xcf, 0xfa, 0x40, 0x0, 0x0, + 0x0, 0x1, 0xcf, 0xff, 0xff, 0xf9, 0x0, 0x0, + 0x0, 0xc, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, + 0x0, 0x5f, 0xff, 0xff, 0xff, 0xff, 0xf1, 0x0, + 0x0, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xf5, 0x0, + 0x0, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xf7, 0x0, + 0x0, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, + 0x0, 0xef, 0xff, 0xff, 0xff, 0xff, 0xfa, 0x0, + 0x2, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, + 0x8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x40, + 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd1, + 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, + 0xaf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x4, 0xff, 0xff, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xbf, 0xf7, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x2, 0x10, 0x0, 0x0, 0x0, + + /* U+F11C "" */ + 0x4, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, + 0x44, 0x41, 0xb, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xe0, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3f, + 0xf4, 0x4, 0xd0, 0x2f, 0x0, 0xf3, 0x3, 0xf0, + 0xf, 0xf4, 0xff, 0x40, 0x5d, 0x2, 0xf0, 0xf, + 0x40, 0x4f, 0x0, 0xff, 0x4f, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, 0xff, + 0xff, 0x22, 0xb7, 0x29, 0xa2, 0x4f, 0x42, 0xcf, + 0xff, 0x4f, 0xff, 0xf0, 0xa, 0x60, 0x79, 0x2, + 0xf2, 0xb, 0xff, 0xf4, 0xff, 0xff, 0xdd, 0xfe, + 0xdf, 0xfd, 0xef, 0xed, 0xff, 0xff, 0x4f, 0xf8, + 0x48, 0xe4, 0x44, 0x44, 0x44, 0x47, 0xf4, 0x5f, + 0xf4, 0xff, 0x40, 0x4d, 0x0, 0x0, 0x0, 0x0, + 0x3e, 0x0, 0xff, 0x4f, 0xf7, 0x48, 0xe4, 0x44, + 0x44, 0x44, 0x47, 0xf4, 0x4f, 0xf4, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x37, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xa0, + + /* U+F124 "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1, 0x8b, 0x30, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2, 0xaf, 0xff, 0xd0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x3, 0xbf, 0xff, 0xff, 0xd0, + 0x0, 0x0, 0x0, 0x0, 0x5, 0xcf, 0xff, 0xff, + 0xff, 0x70, 0x0, 0x0, 0x0, 0x6, 0xdf, 0xff, + 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x17, 0xef, + 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x29, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0x0, + 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x90, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x20, 0x0, 0xb, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfb, 0x0, 0x0, 0x0, 0x56, + 0x66, 0x66, 0x7f, 0xff, 0xff, 0xf3, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xff, 0xc0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, + 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2f, 0xff, 0xfd, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2f, 0xff, 0xf6, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xe0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, + 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xc, 0xfd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x30, 0x0, 0x0, 0x0, 0x0, + + /* U+F15B "" */ + 0x58, 0x88, 0x88, 0x87, 0x6, 0x0, 0x0, 0xff, + 0xff, 0xff, 0xfe, 0xf, 0x90, 0x0, 0xff, 0xff, + 0xff, 0xfe, 0xf, 0xf9, 0x0, 0xff, 0xff, 0xff, + 0xfe, 0xf, 0xff, 0x90, 0xff, 0xff, 0xff, 0xfe, + 0xf, 0xff, 0xf5, 0xff, 0xff, 0xff, 0xff, 0x32, + 0x22, 0x21, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xef, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, 0x14, 0x44, + 0x44, 0x44, 0x44, 0x44, 0x30, + + /* U+F1EB "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x36, + 0x89, 0xa9, 0x74, 0x10, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x29, 0xef, 0xff, 0xff, 0xff, 0xff, 0xc6, + 0x0, 0x0, 0x0, 0x1, 0xaf, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfe, 0x60, 0x0, 0x6, 0xff, + 0xff, 0xfc, 0x75, 0x43, 0x46, 0x9e, 0xff, 0xff, + 0xb1, 0x8, 0xff, 0xfe, 0x71, 0x0, 0x0, 0x0, + 0x0, 0x3, 0xcf, 0xff, 0xe2, 0xcf, 0xfa, 0x10, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4e, 0xff, + 0x40, 0xb6, 0x0, 0x0, 0x59, 0xde, 0xfe, 0xc7, + 0x20, 0x0, 0x1b, 0x50, 0x0, 0x0, 0x5, 0xdf, + 0xff, 0xff, 0xff, 0xff, 0xa1, 0x0, 0x0, 0x0, + 0x0, 0x9, 0xff, 0xff, 0xfe, 0xde, 0xff, 0xff, + 0xe3, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xfc, 0x40, + 0x0, 0x2, 0x8f, 0xff, 0x50, 0x0, 0x0, 0x0, + 0x1, 0xb6, 0x0, 0x0, 0x0, 0x0, 0x1b, 0x60, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x35, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x7f, 0xfe, 0x10, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xff, 0xf6, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xdf, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, 0xb0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+F240 "" */ + 0x4, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, + 0x44, 0x44, 0x10, 0xa, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x10, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf5, 0xf, 0xf4, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xff, 0xf3, 0xff, 0x4a, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf, + 0xff, 0x5f, 0xf4, 0xaf, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf0, 0x3f, 0xf5, 0xff, 0x4a, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0xef, + 0x5f, 0xf4, 0xaf, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf0, 0x8f, 0xf5, 0xff, 0x45, 0x88, 0x88, + 0x88, 0x88, 0x88, 0x88, 0x88, 0xf, 0xff, 0x5f, + 0xf7, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, + 0x45, 0xff, 0xc1, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, 0x6, 0xef, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfb, 0x0, + + /* U+F241 "" */ + 0x4, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, + 0x44, 0x44, 0x10, 0xa, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x10, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf5, 0xf, 0xf4, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xff, 0xf3, 0xff, 0x4d, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x60, 0x0, 0xf, + 0xff, 0x5f, 0xf4, 0xdf, 0xff, 0xff, 0xff, 0xff, + 0xf6, 0x0, 0x0, 0x3f, 0xf5, 0xff, 0x4d, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x60, 0x0, 0x0, 0xef, + 0x5f, 0xf4, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xf6, + 0x0, 0x0, 0x8f, 0xf5, 0xff, 0x46, 0x88, 0x88, + 0x88, 0x88, 0x88, 0x30, 0x0, 0xf, 0xff, 0x5f, + 0xf7, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, + 0x45, 0xff, 0xc1, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, 0x6, 0xef, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfb, 0x0, + + /* U+F242 "" */ + 0x4, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, + 0x44, 0x44, 0x10, 0xa, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x10, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf5, 0xf, 0xf4, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xff, 0xf3, 0xff, 0x4c, + 0xff, 0xff, 0xff, 0xf1, 0x0, 0x0, 0x0, 0xf, + 0xff, 0x5f, 0xf4, 0xcf, 0xff, 0xff, 0xff, 0x10, + 0x0, 0x0, 0x0, 0x3f, 0xf5, 0xff, 0x4c, 0xff, + 0xff, 0xff, 0xf1, 0x0, 0x0, 0x0, 0x0, 0xef, + 0x5f, 0xf4, 0xcf, 0xff, 0xff, 0xff, 0x10, 0x0, + 0x0, 0x0, 0x8f, 0xf5, 0xff, 0x46, 0x88, 0x88, + 0x88, 0x80, 0x0, 0x0, 0x0, 0xf, 0xff, 0x5f, + 0xf7, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, + 0x45, 0xff, 0xc1, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, 0x6, 0xef, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfb, 0x0, + + /* U+F243 "" */ + 0x4, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, + 0x44, 0x44, 0x10, 0xa, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x10, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf5, 0xf, 0xf4, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xff, 0xf3, 0xff, 0x49, + 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, + 0xff, 0x5f, 0xf4, 0x9f, 0xff, 0xe0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x3f, 0xf5, 0xff, 0x49, 0xff, + 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xef, + 0x5f, 0xf4, 0x9f, 0xff, 0xe0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x8f, 0xf5, 0xff, 0x44, 0x88, 0x87, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x5f, + 0xf7, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, + 0x45, 0xff, 0xc1, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, 0x6, 0xef, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfb, 0x0, + + /* U+F244 "" */ + 0x4, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, + 0x44, 0x44, 0x10, 0xa, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x10, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf5, 0xf, 0xf4, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xff, 0xf3, 0xff, 0x40, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, + 0xff, 0x5f, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x3f, 0xf5, 0xff, 0x40, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xef, + 0x5f, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x8f, 0xf5, 0xff, 0x40, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x5f, + 0xf7, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, + 0x45, 0xff, 0xc1, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, 0x6, 0xef, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfb, 0x0, + + /* U+F287 "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x78, 0x10, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x26, 0x9f, 0xfd, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x4f, 0xef, 0xff, 0xf0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0x80, + 0x2e, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x20, + 0x0, 0x6, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x3, 0xef, 0xe3, 0x0, 0xd7, 0x0, 0x0, + 0x0, 0x0, 0x2, 0xa1, 0x0, 0xcf, 0xff, 0xd4, + 0x9f, 0x55, 0x55, 0x55, 0x55, 0x55, 0x7f, 0xf7, + 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf5, 0xaf, 0xff, 0xa0, 0x0, + 0xb, 0xb0, 0x0, 0x0, 0x0, 0x3f, 0xb2, 0x0, + 0x9c, 0x90, 0x0, 0x0, 0x3f, 0x30, 0x0, 0x0, + 0x1, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xbb, 0x2, 0xbb, 0xb5, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x2, 0xf9, 0x9f, 0xff, 0x80, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, + 0xbd, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x80, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+F293 "" */ + 0x0, 0x1, 0x7b, 0xdd, 0xb8, 0x20, 0x0, 0x0, + 0x5f, 0xff, 0xdf, 0xff, 0xf6, 0x0, 0x4, 0xff, + 0xff, 0x68, 0xff, 0xff, 0x40, 0xe, 0xff, 0xff, + 0x60, 0x9f, 0xff, 0xd0, 0x4f, 0xff, 0xff, 0x60, + 0x9, 0xff, 0xf3, 0x8f, 0xf6, 0xbf, 0x61, 0xc0, + 0x9f, 0xf7, 0xbf, 0xf6, 0xb, 0x60, 0xe2, 0x5f, + 0xf9, 0xdf, 0xff, 0x50, 0x20, 0x33, 0xff, 0xfb, + 0xef, 0xff, 0xf5, 0x0, 0x2e, 0xff, 0xfc, 0xef, + 0xff, 0xfc, 0x0, 0x7f, 0xff, 0xfc, 0xdf, 0xff, + 0xd1, 0x0, 0x9, 0xff, 0xfc, 0xcf, 0xfc, 0x14, + 0x50, 0x90, 0xaf, 0xfb, 0xaf, 0xf2, 0x4f, 0x60, + 0xf3, 0x2f, 0xf9, 0x6f, 0xfd, 0xff, 0x70, 0x52, + 0xef, 0xf6, 0x1f, 0xff, 0xff, 0x70, 0x2e, 0xff, + 0xf1, 0x9, 0xff, 0xff, 0x72, 0xef, 0xff, 0x90, + 0x0, 0xbf, 0xff, 0xae, 0xff, 0xfd, 0x10, 0x0, + 0x5, 0xcf, 0xff, 0xfd, 0x80, 0x0, 0x0, 0x0, + 0x0, 0x11, 0x0, 0x0, 0x0, + + /* U+F2ED "" */ + 0x0, 0x0, 0x5, 0x88, 0x88, 0x30, 0x0, 0x0, + 0x56, 0x66, 0x7f, 0xff, 0xff, 0xe6, 0x66, 0x63, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, + 0xcd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xd8, + 0x3, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x20, + 0xe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa0, + 0xe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa0, + 0xe, 0xff, 0x1f, 0xf6, 0xaf, 0xc4, 0xff, 0xa0, + 0xe, 0xff, 0xf, 0xf5, 0x9f, 0xb3, 0xff, 0xa0, + 0xe, 0xff, 0xf, 0xf5, 0x9f, 0xb3, 0xff, 0xa0, + 0xe, 0xff, 0xf, 0xf5, 0x9f, 0xb3, 0xff, 0xa0, + 0xe, 0xff, 0xf, 0xf5, 0x9f, 0xb3, 0xff, 0xa0, + 0xe, 0xff, 0xf, 0xf5, 0x9f, 0xb3, 0xff, 0xa0, + 0xe, 0xff, 0xf, 0xf5, 0x9f, 0xb3, 0xff, 0xa0, + 0xe, 0xff, 0xf, 0xf5, 0x9f, 0xb3, 0xff, 0xa0, + 0xe, 0xff, 0x1f, 0xf6, 0xaf, 0xc4, 0xff, 0xa0, + 0xd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, + 0x8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x40, + 0x0, 0x24, 0x44, 0x44, 0x44, 0x44, 0x31, 0x0, + + /* U+F304 "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8a, + 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xbf, 0xff, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xbf, 0xff, 0xff, 0x30, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x34, 0xff, 0xff, 0xfd, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xbf, 0x44, 0xff, 0xff, 0xe0, + 0x0, 0x0, 0x0, 0x0, 0xbf, 0xff, 0x44, 0xff, + 0xf4, 0x0, 0x0, 0x0, 0x0, 0xbf, 0xff, 0xff, + 0x44, 0xf4, 0x0, 0x0, 0x0, 0x0, 0xbf, 0xff, + 0xff, 0xff, 0x41, 0x0, 0x0, 0x0, 0x0, 0xbf, + 0xff, 0xff, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, + 0xbf, 0xff, 0xff, 0xff, 0xf4, 0x0, 0x0, 0x0, + 0x0, 0xbf, 0xff, 0xff, 0xff, 0xf4, 0x0, 0x0, + 0x0, 0x0, 0xbf, 0xff, 0xff, 0xff, 0xf4, 0x0, + 0x0, 0x0, 0x0, 0xbf, 0xff, 0xff, 0xff, 0xf4, + 0x0, 0x0, 0x0, 0x0, 0x8f, 0xff, 0xff, 0xff, + 0xf4, 0x0, 0x0, 0x0, 0x0, 0xa, 0xff, 0xff, + 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, + 0xff, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xe, 0xff, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xff, 0xff, 0xd4, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x2, 0x31, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+F55A "" */ + 0x0, 0x0, 0x0, 0x57, 0x88, 0x88, 0x88, 0x88, + 0x88, 0x88, 0x72, 0x0, 0x0, 0x0, 0xaf, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf2, 0x0, + 0x0, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x70, 0x0, 0xbf, 0xff, 0xff, 0xf8, + 0xaf, 0xff, 0xa8, 0xff, 0xff, 0xf8, 0x0, 0xbf, + 0xff, 0xff, 0xfa, 0x0, 0xaf, 0xa0, 0xa, 0xff, + 0xff, 0x80, 0xbf, 0xff, 0xff, 0xff, 0xf3, 0x0, + 0x60, 0x3, 0xff, 0xff, 0xf8, 0xaf, 0xff, 0xff, + 0xff, 0xff, 0xf3, 0x0, 0x3, 0xff, 0xff, 0xff, + 0x8e, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0x0, + 0x9f, 0xff, 0xff, 0xf8, 0x4f, 0xff, 0xff, 0xff, + 0xff, 0xa0, 0x0, 0x0, 0xaf, 0xff, 0xff, 0x80, + 0x4f, 0xff, 0xff, 0xff, 0xb0, 0x3, 0xe3, 0x0, + 0xbf, 0xff, 0xf8, 0x0, 0x4f, 0xff, 0xff, 0xfe, + 0x23, 0xff, 0xf3, 0x2e, 0xff, 0xff, 0x80, 0x0, + 0x4f, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xfe, 0xff, + 0xff, 0xf7, 0x0, 0x0, 0x4f, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x50, 0x0, 0x0, + 0x3d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x90, + + /* U+F7C2 "" */ + 0x0, 0x1, 0xcf, 0xff, 0xff, 0xfe, 0x60, 0x0, + 0x1c, 0xff, 0xff, 0xff, 0xff, 0xf2, 0x0, 0xcf, + 0x47, 0xf4, 0xd8, 0x4f, 0xf5, 0xc, 0xff, 0x3, + 0xe0, 0xc5, 0xe, 0xf5, 0xcf, 0xff, 0x3, 0xe0, + 0xc5, 0xe, 0xf5, 0xff, 0xff, 0x24, 0xe2, 0xc6, + 0x2e, 0xf5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf5, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf5, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf5, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, + 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 0x5f, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xa0, 0x1, 0x34, + 0x44, 0x44, 0x44, 0x42, 0x0, + + /* U+F8A2 "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x5, 0xf1, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x5, 0xff, 0x10, 0x0, 0x3e, 0x90, + 0x0, 0x0, 0x0, 0x0, 0xbf, 0xf1, 0x0, 0x4f, + 0xfb, 0x0, 0x0, 0x0, 0x0, 0xb, 0xff, 0x10, + 0x5f, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, 0xbf, + 0xf1, 0x6f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x1d, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf1, 0x3e, 0xff, 0xfe, 0xcc, + 0xcc, 0xcc, 0xcc, 0xcc, 0xca, 0x0, 0x2e, 0xff, + 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1d, 0xfb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1b, 0x60, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0 +}; + + +/*--------------------- + * GLYPH DESCRIPTION + *--------------------*/ + +static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = { + {.bitmap_index = 0, .adv_w = 0, .box_w = 0, .box_h = 0, .ofs_x = 0, .ofs_y = 0} /* id = 0 reserved */, + {.bitmap_index = 0, .adv_w = 80, .box_w = 0, .box_h = 0, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 0, .adv_w = 80, .box_w = 3, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 21, .adv_w = 102, .box_w = 6, .box_h = 5, .ofs_x = 0, .ofs_y = 9}, + {.bitmap_index = 36, .adv_w = 160, .box_w = 10, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 106, .adv_w = 160, .box_w = 10, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 191, .adv_w = 256, .box_w = 14, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 289, .adv_w = 192, .box_w = 12, .box_h = 15, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 379, .adv_w = 55, .box_w = 3, .box_h = 5, .ofs_x = 0, .ofs_y = 9}, + {.bitmap_index = 387, .adv_w = 96, .box_w = 5, .box_h = 18, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 432, .adv_w = 96, .box_w = 5, .box_h = 18, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 477, .adv_w = 112, .box_w = 7, .box_h = 6, .ofs_x = 0, .ofs_y = 8}, + {.bitmap_index = 498, .adv_w = 168, .box_w = 9, .box_h = 9, .ofs_x = 1, .ofs_y = 2}, + {.bitmap_index = 539, .adv_w = 96, .box_w = 6, .box_h = 2, .ofs_x = 0, .ofs_y = 4}, + {.bitmap_index = 545, .adv_w = 80, .box_w = 3, .box_h = 2, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 548, .adv_w = 80, .box_w = 5, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 583, .adv_w = 160, .box_w = 10, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 653, .adv_w = 160, .box_w = 6, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 695, .adv_w = 160, .box_w = 10, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 765, .adv_w = 160, .box_w = 10, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 835, .adv_w = 160, .box_w = 10, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 905, .adv_w = 160, .box_w = 10, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 975, .adv_w = 160, .box_w = 10, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1045, .adv_w = 160, .box_w = 10, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1115, .adv_w = 160, .box_w = 10, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1185, .adv_w = 160, .box_w = 10, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1255, .adv_w = 80, .box_w = 3, .box_h = 10, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1270, .adv_w = 80, .box_w = 3, .box_h = 13, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 1290, .adv_w = 168, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 1340, .adv_w = 168, .box_w = 9, .box_h = 6, .ofs_x = 1, .ofs_y = 4}, + {.bitmap_index = 1367, .adv_w = 168, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 1417, .adv_w = 160, .box_w = 10, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1487, .adv_w = 292, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 1649, .adv_w = 192, .box_w = 14, .box_h = 14, .ofs_x = -1, .ofs_y = 0}, + {.bitmap_index = 1747, .adv_w = 192, .box_w = 11, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1824, .adv_w = 208, .box_w = 13, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1915, .adv_w = 208, .box_w = 12, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1999, .adv_w = 192, .box_w = 11, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2076, .adv_w = 176, .box_w = 10, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2146, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 2237, .adv_w = 208, .box_w = 11, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2314, .adv_w = 80, .box_w = 3, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2335, .adv_w = 144, .box_w = 8, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 2391, .adv_w = 192, .box_w = 11, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2468, .adv_w = 160, .box_w = 9, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2531, .adv_w = 240, .box_w = 13, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2622, .adv_w = 208, .box_w = 11, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2699, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 2797, .adv_w = 192, .box_w = 11, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2874, .adv_w = 224, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 2979, .adv_w = 208, .box_w = 12, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 3063, .adv_w = 192, .box_w = 12, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 3147, .adv_w = 176, .box_w = 11, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 3224, .adv_w = 208, .box_w = 11, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 3301, .adv_w = 192, .box_w = 12, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 3385, .adv_w = 272, .box_w = 17, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 3504, .adv_w = 192, .box_w = 12, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 3588, .adv_w = 192, .box_w = 12, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 3672, .adv_w = 176, .box_w = 11, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 3749, .adv_w = 80, .box_w = 4, .box_h = 18, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 3785, .adv_w = 80, .box_w = 5, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 3820, .adv_w = 80, .box_w = 4, .box_h = 18, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 3856, .adv_w = 135, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = 6}, + {.bitmap_index = 3888, .adv_w = 160, .box_w = 12, .box_h = 3, .ofs_x = -1, .ofs_y = -5}, + {.bitmap_index = 3906, .adv_w = 96, .box_w = 5, .box_h = 3, .ofs_x = 0, .ofs_y = 11}, + {.bitmap_index = 3914, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 3964, .adv_w = 160, .box_w = 9, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 4027, .adv_w = 144, .box_w = 9, .box_h = 10, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 4072, .adv_w = 160, .box_w = 9, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 4135, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 4185, .adv_w = 80, .box_w = 6, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 4227, .adv_w = 160, .box_w = 9, .box_h = 14, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 4290, .adv_w = 160, .box_w = 8, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 4346, .adv_w = 64, .box_w = 2, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 4360, .adv_w = 64, .box_w = 4, .box_h = 18, .ofs_x = -1, .ofs_y = -4}, + {.bitmap_index = 4396, .adv_w = 144, .box_w = 8, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 4452, .adv_w = 64, .box_w = 2, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 4466, .adv_w = 240, .box_w = 13, .box_h = 10, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 4531, .adv_w = 160, .box_w = 8, .box_h = 10, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 4571, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 4621, .adv_w = 160, .box_w = 9, .box_h = 14, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 4684, .adv_w = 160, .box_w = 9, .box_h = 14, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 4747, .adv_w = 96, .box_w = 6, .box_h = 10, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 4777, .adv_w = 144, .box_w = 9, .box_h = 10, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 4822, .adv_w = 80, .box_w = 5, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 4857, .adv_w = 160, .box_w = 8, .box_h = 10, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 4897, .adv_w = 144, .box_w = 9, .box_h = 10, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 4942, .adv_w = 208, .box_w = 13, .box_h = 10, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 5007, .adv_w = 144, .box_w = 9, .box_h = 10, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 5052, .adv_w = 144, .box_w = 9, .box_h = 14, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 5115, .adv_w = 144, .box_w = 9, .box_h = 10, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 5160, .adv_w = 96, .box_w = 6, .box_h = 18, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 5214, .adv_w = 75, .box_w = 3, .box_h = 18, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 5241, .adv_w = 96, .box_w = 6, .box_h = 18, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 5295, .adv_w = 168, .box_w = 10, .box_h = 5, .ofs_x = 0, .ofs_y = 4}, + {.bitmap_index = 5320, .adv_w = 288, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 5501, .adv_w = 288, .box_w = 18, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 5627, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 5780, .adv_w = 288, .box_w = 18, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 5906, .adv_w = 198, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 5991, .adv_w = 288, .box_w = 19, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 6162, .adv_w = 288, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 6333, .adv_w = 324, .box_w = 21, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 6512, .adv_w = 288, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 6683, .adv_w = 324, .box_w = 21, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 6830, .adv_w = 288, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 7001, .adv_w = 144, .box_w = 9, .box_h = 15, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 7069, .adv_w = 216, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 7174, .adv_w = 324, .box_w = 21, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 7363, .adv_w = 288, .box_w = 18, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 7489, .adv_w = 198, .box_w = 13, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 7613, .adv_w = 252, .box_w = 12, .box_h = 17, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 7715, .adv_w = 252, .box_w = 16, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 7867, .adv_w = 252, .box_w = 16, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 8003, .adv_w = 252, .box_w = 16, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 8139, .adv_w = 252, .box_w = 12, .box_h = 17, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 8241, .adv_w = 252, .box_w = 18, .box_h = 17, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 8394, .adv_w = 180, .box_w = 11, .box_h = 16, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 8482, .adv_w = 180, .box_w = 11, .box_h = 16, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 8570, .adv_w = 252, .box_w = 16, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 8706, .adv_w = 252, .box_w = 16, .box_h = 4, .ofs_x = 0, .ofs_y = 5}, + {.bitmap_index = 8738, .adv_w = 324, .box_w = 21, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 8885, .adv_w = 360, .box_w = 23, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 9104, .adv_w = 324, .box_w = 22, .box_h = 19, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 9313, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 9466, .adv_w = 252, .box_w = 16, .box_h = 10, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 9546, .adv_w = 252, .box_w = 16, .box_h = 10, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 9626, .adv_w = 360, .box_w = 24, .box_h = 15, .ofs_x = -1, .ofs_y = -1}, + {.bitmap_index = 9806, .adv_w = 288, .box_w = 18, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 9932, .adv_w = 288, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 10103, .adv_w = 288, .box_w = 19, .box_h = 19, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 10284, .adv_w = 252, .box_w = 16, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 10420, .adv_w = 252, .box_w = 16, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 10572, .adv_w = 252, .box_w = 16, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 10708, .adv_w = 252, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 10828, .adv_w = 288, .box_w = 18, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 10954, .adv_w = 180, .box_w = 13, .box_h = 19, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 11078, .adv_w = 252, .box_w = 16, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 11230, .adv_w = 252, .box_w = 16, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 11382, .adv_w = 324, .box_w = 21, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 11529, .adv_w = 288, .box_w = 20, .box_h = 20, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 11729, .adv_w = 216, .box_w = 14, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 11862, .adv_w = 360, .box_w = 23, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 12069, .adv_w = 360, .box_w = 23, .box_h = 12, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 12207, .adv_w = 360, .box_w = 23, .box_h = 12, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 12345, .adv_w = 360, .box_w = 23, .box_h = 12, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 12483, .adv_w = 360, .box_w = 23, .box_h = 12, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 12621, .adv_w = 360, .box_w = 23, .box_h = 12, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 12759, .adv_w = 360, .box_w = 23, .box_h = 15, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 12932, .adv_w = 252, .box_w = 14, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 13065, .adv_w = 252, .box_w = 16, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 13217, .adv_w = 288, .box_w = 19, .box_h = 19, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 13398, .adv_w = 360, .box_w = 23, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 13559, .adv_w = 216, .box_w = 14, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 13692, .adv_w = 290, .box_w = 19, .box_h = 12, .ofs_x = 0, .ofs_y = 1} +}; + +/*--------------------- + * CHARACTER MAPPING + *--------------------*/ + +static const uint16_t unicode_list_2[] = { + 0x0, 0x7, 0xa, 0xb, 0xc, 0x10, 0x12, 0x14, + 0x18, 0x1b, 0x20, 0x25, 0x26, 0x27, 0x3d, 0x42, + 0x47, 0x4a, 0x4b, 0x4c, 0x50, 0x51, 0x52, 0x53, + 0x66, 0x67, 0x6d, 0x6f, 0x70, 0x73, 0x76, 0x77, + 0x78, 0x7a, 0x92, 0x94, 0xc3, 0xc4, 0xc6, 0xc8, + 0xdf, 0xe6, 0xe9, 0xf2, 0x11b, 0x123, 0x15a, 0x1ea, + 0x23f, 0x240, 0x241, 0x242, 0x243, 0x286, 0x292, 0x2ec, + 0x303, 0x559, 0x7c1, 0x8a1 +}; + +/*Collect the unicode lists and glyph_id offsets*/ +static const lv_font_fmt_txt_cmap_t cmaps[] = +{ + { + .range_start = 32, .range_length = 12, .glyph_id_start = 1, + .unicode_list = NULL, .glyph_id_ofs_list = NULL, .list_length = 0, .type = LV_FONT_FMT_TXT_CMAP_FORMAT0_TINY + }, + { + .range_start = 45, .range_length = 82, .glyph_id_start = 13, + .unicode_list = NULL, .glyph_id_ofs_list = NULL, .list_length = 0, .type = LV_FONT_FMT_TXT_CMAP_FORMAT0_TINY + }, + { + .range_start = 61441, .range_length = 2210, .glyph_id_start = 95, + .unicode_list = unicode_list_2, .glyph_id_ofs_list = NULL, .list_length = 60, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY + } +}; + + + +/*-------------------- + * ALL CUSTOM DATA + *--------------------*/ + +#if LV_VERSION_CHECK(8, 0, 0) +/*Store all the custom data of the font*/ +static lv_font_fmt_txt_glyph_cache_t cache; +static const lv_font_fmt_txt_dsc_t font_dsc = { +#else +static lv_font_fmt_txt_dsc_t font_dsc = { +#endif + .glyph_bitmap = glyph_bitmap, + .glyph_dsc = glyph_dsc, + .cmaps = cmaps, + .kern_dsc = NULL, + .kern_scale = 0, + .cmap_num = 3, + .bpp = 4, + .kern_classes = 0, + .bitmap_format = 0, +#if LV_VERSION_CHECK(8, 0, 0) + .cache = &cache +#endif +}; + + +/*----------------- + * PUBLIC FONT + *----------------*/ + +/*Initialize a public general font descriptor*/ +#if LV_VERSION_CHECK(8, 0, 0) +const lv_font_t lv_font_arial_18 = { +#else +lv_font_t lv_font_arial_18 = { +#endif + .get_glyph_dsc = lv_font_get_glyph_dsc_fmt_txt, /*Function pointer to get glyph's data*/ + .get_glyph_bitmap = lv_font_get_bitmap_fmt_txt, /*Function pointer to get glyph's bitmap*/ + .line_height = 18, /*The maximum line height required by the font default: (f.src.ascent - f.src.descent)*/ + .base_line = 3, /*Baseline measured from the bottom of the line*/ +#if !(LVGL_VERSION_MAJOR == 6 && LVGL_VERSION_MINOR == 0) + .subpx = LV_FONT_SUBPX_NONE, +#endif +#if LV_VERSION_CHECK(7, 4, 0) || LVGL_VERSION_MAJOR >= 8 + .underline_position = -2, + .underline_thickness = 1, +#endif + .dsc = &font_dsc /*The custom font data. Will be accessed by `get_glyph_bitmap/dsc` */ +}; + + + +#endif /*#if LV_FONT_ARIAL_18*/ + diff --git a/application/rt-thread/t3e-pro/components/generated/guider_fonts/lv_font_arial_20.c b/application/rt-thread/t3e-pro/components/generated/guider_fonts/lv_font_arial_20.c new file mode 100644 index 00000000..6ee1a4ef --- /dev/null +++ b/application/rt-thread/t3e-pro/components/generated/guider_fonts/lv_font_arial_20.c @@ -0,0 +1,2745 @@ +/* + * Copyright 2025 NXP + * NXP Confidential and Proprietary. This software is owned or controlled by NXP and may only be used strictly in + * accordance with the applicable license terms. By expressly accepting such terms or by downloading, installing, + * activating and/or otherwise using the software, you are agreeing that you have read, and that you agree to + * comply with and are bound by, such license terms. If you do not agree to be bound by the applicable license + * terms, then you may not retain, install, activate or otherwise use the software. + */ +/******************************************************************************* + * Size: 20 px + * Bpp: 4 + * Opts: --user-data-dir=C:\Users\Administrator\AppData\Roaming\gui-guider --app-path=F:\NXP\GUI-Guider-1.7.2-GA\resources\app.asar --no-sandbox --no-zygote --lang=zh-CN --device-scale-factor=1 --num-raster-threads=4 --enable-main-frame-before-activation --renderer-client-id=5 --time-ticks-at-unix-epoch=-1751849969641099 --launch-time-ticks=21590435736 --mojo-platform-channel-handle=3384 --field-trial-handle=2100,i,17908936022241249150,4582176927500139337,131072 --disable-features=SpareRendererForSitePerProcess,WinRetrieveSuggestionsOnlyOnDemand /prefetch:1 + ******************************************************************************/ + +#ifdef LV_LVGL_H_INCLUDE_SIMPLE +#include "lvgl.h" +#else +#include "lvgl.h" +#endif + +#ifndef LV_FONT_ARIAL_20 +#define LV_FONT_ARIAL_20 1 +#endif + +#if LV_FONT_ARIAL_20 + +/*----------------- + * BITMAPS + *----------------*/ + +/*Store the image of the glyphs*/ +static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { + /* U+0020 " " */ + + /* U+0021 "!" */ + 0x4f, 0xe4, 0xfe, 0x4f, 0xe4, 0xfd, 0x3f, 0xd2, + 0xfb, 0x1f, 0xa0, 0xf9, 0xe, 0x80, 0xd7, 0xc, + 0x60, 0x10, 0x1, 0x13, 0xfd, 0x3f, 0xd0, + + /* U+0022 "\"" */ + 0x1f, 0xe0, 0xdf, 0x21, 0xfe, 0xd, 0xf2, 0xf, + 0xe0, 0xdf, 0x20, 0xec, 0xa, 0xf0, 0xb, 0x90, + 0x7c, 0x0, 0x22, 0x1, 0x20, + + /* U+0023 "#" */ + 0x0, 0x1, 0xf6, 0x0, 0x8e, 0x0, 0x0, 0x4f, + 0x20, 0xc, 0xb0, 0x0, 0x8, 0xf0, 0x0, 0xf8, + 0x0, 0x0, 0xbb, 0x0, 0x3f, 0x40, 0xcf, 0xff, + 0xff, 0xff, 0xff, 0xe6, 0x89, 0xfa, 0x88, 0xde, + 0x87, 0x0, 0x5f, 0x20, 0xc, 0xa0, 0x0, 0x8, + 0xe0, 0x0, 0xf7, 0x0, 0x0, 0xbb, 0x0, 0x3f, + 0x40, 0xc, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x69, + 0xfa, 0x88, 0xde, 0x88, 0x70, 0x5f, 0x20, 0xc, + 0xa0, 0x0, 0x8, 0xf0, 0x0, 0xf7, 0x0, 0x0, + 0xbc, 0x0, 0x2f, 0x40, 0x0, 0xe, 0x90, 0x5, + 0xf1, 0x0, 0x0, + + /* U+0024 "$" */ + 0x0, 0x0, 0x8, 0x0, 0x0, 0x0, 0x0, 0x48, + 0xf8, 0x30, 0x0, 0x0, 0xaf, 0xff, 0xff, 0x80, + 0x0, 0x7f, 0xa1, 0xf2, 0xcf, 0x50, 0xd, 0xe0, + 0xf, 0x3, 0xfa, 0x0, 0xfd, 0x0, 0xf0, 0x3, + 0x10, 0xd, 0xf1, 0xf, 0x0, 0x0, 0x0, 0x7f, + 0xd4, 0xf0, 0x0, 0x0, 0x0, 0xaf, 0xff, 0xa5, + 0x0, 0x0, 0x0, 0x39, 0xff, 0xfd, 0x10, 0x0, + 0x0, 0xf, 0x2b, 0xfa, 0x0, 0x0, 0x0, 0xf0, + 0xd, 0xf0, 0x18, 0x60, 0xf, 0x0, 0xaf, 0x22, + 0xfc, 0x0, 0xf0, 0xc, 0xf1, 0xd, 0xf5, 0xf, + 0x4, 0xfc, 0x0, 0x3f, 0xfa, 0xfa, 0xff, 0x30, + 0x0, 0x3b, 0xff, 0xfb, 0x30, 0x0, 0x0, 0x0, + 0xf0, 0x0, 0x0, 0x0, 0x0, 0xf, 0x0, 0x0, + 0x0, + + /* U+0025 "%" */ + 0x7, 0xee, 0xa1, 0x0, 0x0, 0x3f, 0x30, 0x0, + 0x5f, 0x85, 0xeb, 0x0, 0x0, 0xbb, 0x0, 0x0, + 0xbd, 0x0, 0x6f, 0x10, 0x3, 0xf3, 0x0, 0x0, + 0xcb, 0x0, 0x4f, 0x30, 0xc, 0xa0, 0x0, 0x0, + 0xbc, 0x0, 0x5f, 0x20, 0x4f, 0x20, 0x0, 0x0, + 0x6f, 0x51, 0xcd, 0x0, 0xc9, 0x0, 0x0, 0x0, + 0xa, 0xff, 0xd2, 0x5, 0xf2, 0x0, 0x0, 0x0, + 0x0, 0x12, 0x0, 0xd, 0x90, 0x4d, 0xfc, 0x30, + 0x0, 0x0, 0x0, 0x6f, 0x10, 0xeb, 0x4b, 0xe0, + 0x0, 0x0, 0x0, 0xd8, 0x6, 0xf2, 0x2, 0xf5, + 0x0, 0x0, 0x6, 0xf1, 0x8, 0xf0, 0x0, 0xf7, + 0x0, 0x0, 0xe, 0x80, 0x8, 0xf0, 0x0, 0xf7, + 0x0, 0x0, 0x7e, 0x0, 0x6, 0xf2, 0x3, 0xf5, + 0x0, 0x0, 0xe7, 0x0, 0x1, 0xeb, 0x5c, 0xe0, + 0x0, 0x8, 0xe0, 0x0, 0x0, 0x3c, 0xfc, 0x20, + + /* U+0026 "&" */ + 0x0, 0x0, 0x8e, 0xfb, 0x20, 0x0, 0x0, 0x0, + 0xbf, 0xa9, 0xfe, 0x10, 0x0, 0x0, 0x3f, 0xa0, + 0x7, 0xf6, 0x0, 0x0, 0x4, 0xf8, 0x0, 0x4f, + 0x70, 0x0, 0x0, 0x1f, 0xf1, 0xb, 0xf2, 0x0, + 0x0, 0x0, 0x7f, 0xcc, 0xf6, 0x0, 0x0, 0x0, + 0x2, 0xef, 0xf3, 0x0, 0x0, 0x0, 0x6, 0xff, + 0xdf, 0x80, 0x0, 0x0, 0x5, 0xfd, 0x12, 0xff, + 0x41, 0xfa, 0x0, 0xef, 0x10, 0x4, 0xfe, 0x8f, + 0x80, 0x1f, 0xc0, 0x0, 0x7, 0xff, 0xf2, 0x0, + 0xfe, 0x0, 0x0, 0xc, 0xfd, 0x0, 0xb, 0xf8, + 0x0, 0x7, 0xff, 0xf9, 0x0, 0x2e, 0xfd, 0xad, + 0xfd, 0x4e, 0xf9, 0x0, 0x1a, 0xef, 0xd8, 0x0, + 0x2d, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+0027 "'" */ + 0x2f, 0xe2, 0xfe, 0x1f, 0xd0, 0xfb, 0xc, 0x80, + 0x21, + + /* U+0028 "(" */ + 0x0, 0xa, 0xa0, 0x4, 0xf1, 0x0, 0xe9, 0x0, + 0x6f, 0x30, 0xd, 0xd0, 0x2, 0xf8, 0x0, 0x6f, + 0x50, 0x9, 0xf2, 0x0, 0xbf, 0x10, 0xc, 0xf0, + 0x0, 0xbf, 0x10, 0x9, 0xf2, 0x0, 0x6f, 0x50, + 0x2, 0xf9, 0x0, 0xd, 0xd0, 0x0, 0x6f, 0x30, + 0x0, 0xe9, 0x0, 0x5, 0xf2, 0x0, 0xa, 0xa0, + + /* U+0029 ")" */ + 0x7c, 0x0, 0x0, 0xe7, 0x0, 0x6, 0xf1, 0x0, + 0x1f, 0x80, 0x0, 0xbe, 0x0, 0x6, 0xf5, 0x0, + 0x2f, 0x90, 0x0, 0xfc, 0x0, 0xe, 0xd0, 0x0, + 0xee, 0x0, 0xf, 0xe0, 0x0, 0xfc, 0x0, 0x3f, + 0x90, 0x6, 0xf5, 0x0, 0xbe, 0x0, 0x1f, 0x80, + 0x7, 0xf1, 0x0, 0xe7, 0x0, 0x8c, 0x0, 0x0, + + /* U+002A "*" */ + 0x0, 0xd, 0x80, 0x0, 0x4, 0xc, 0x61, 0x40, + 0x3f, 0xdd, 0xcf, 0xe0, 0x2, 0x8f, 0xe6, 0x20, + 0x0, 0xca, 0xe8, 0x0, 0x5, 0xf1, 0x5e, 0x10, + 0x0, 0x10, 0x1, 0x0, + + /* U+002B "+" */ + 0x0, 0x0, 0xc8, 0x0, 0x0, 0x0, 0x0, 0xfa, + 0x0, 0x0, 0x0, 0x0, 0xfa, 0x0, 0x0, 0x0, + 0x0, 0xfa, 0x0, 0x0, 0xab, 0xbb, 0xfe, 0xbb, + 0xb6, 0xef, 0xff, 0xff, 0xff, 0xf9, 0x0, 0x0, + 0xfa, 0x0, 0x0, 0x0, 0x0, 0xfa, 0x0, 0x0, + 0x0, 0x0, 0xfa, 0x0, 0x0, 0x0, 0x0, 0xfa, + 0x0, 0x0, + + /* U+002D "-" */ + 0x4d, 0xdd, 0xdd, 0x5, 0xff, 0xff, 0xf0, + + /* U+002E "." */ + 0x1, 0x13, 0xfd, 0x3f, 0xd0, + + /* U+002F "/" */ + 0x0, 0x0, 0xf6, 0x0, 0x4, 0xf2, 0x0, 0x8, + 0xd0, 0x0, 0xd, 0x90, 0x0, 0x1f, 0x50, 0x0, + 0x5f, 0x0, 0x0, 0xac, 0x0, 0x0, 0xe7, 0x0, + 0x3, 0xf3, 0x0, 0x7, 0xe0, 0x0, 0xc, 0xa0, + 0x0, 0xf, 0x60, 0x0, 0x4f, 0x10, 0x0, 0x9d, + 0x0, 0x0, 0xd8, 0x0, 0x0, + + /* U+0030 "0" */ + 0x0, 0x7, 0xdf, 0xd7, 0x0, 0x0, 0xa, 0xfc, + 0x8c, 0xfa, 0x0, 0x4, 0xfa, 0x0, 0xa, 0xf4, + 0x0, 0xbf, 0x20, 0x0, 0x1f, 0xa0, 0xe, 0xe0, + 0x0, 0x0, 0xde, 0x1, 0xfb, 0x0, 0x0, 0xb, + 0xf1, 0x2f, 0xa0, 0x0, 0x0, 0xaf, 0x22, 0xfa, + 0x0, 0x0, 0xa, 0xf2, 0x2f, 0xa0, 0x0, 0x0, + 0xaf, 0x11, 0xfb, 0x0, 0x0, 0xb, 0xf0, 0xe, + 0xd0, 0x0, 0x0, 0xde, 0x0, 0xaf, 0x10, 0x0, + 0x1f, 0xa0, 0x4, 0xfa, 0x0, 0xa, 0xf4, 0x0, + 0xb, 0xfc, 0x8c, 0xfa, 0x0, 0x0, 0x8, 0xdf, + 0xd7, 0x0, 0x0, + + /* U+0031 "1" */ + 0x0, 0x1, 0xe7, 0x0, 0xc, 0xf7, 0x1, 0xcf, + 0xf7, 0x6e, 0xfb, 0xf7, 0xdd, 0x45, 0xf7, 0x40, + 0x5, 0xf7, 0x0, 0x5, 0xf7, 0x0, 0x5, 0xf7, + 0x0, 0x5, 0xf7, 0x0, 0x5, 0xf7, 0x0, 0x5, + 0xf7, 0x0, 0x5, 0xf7, 0x0, 0x5, 0xf7, 0x0, + 0x5, 0xf7, 0x0, 0x5, 0xf7, + + /* U+0032 "2" */ + 0x0, 0x19, 0xef, 0xea, 0x20, 0x0, 0x1e, 0xfb, + 0x8b, 0xfe, 0x20, 0x9, 0xf7, 0x0, 0x5, 0xfb, + 0x0, 0xee, 0x0, 0x0, 0xd, 0xf0, 0x6, 0x60, + 0x0, 0x0, 0xdf, 0x0, 0x0, 0x0, 0x0, 0x2f, + 0xd0, 0x0, 0x0, 0x0, 0xb, 0xf6, 0x0, 0x0, + 0x0, 0x9, 0xfb, 0x0, 0x0, 0x0, 0x9, 0xfc, + 0x0, 0x0, 0x0, 0xb, 0xfb, 0x0, 0x0, 0x0, + 0x1c, 0xfa, 0x0, 0x0, 0x0, 0xc, 0xf8, 0x0, + 0x0, 0x0, 0x8, 0xf9, 0x0, 0x0, 0x0, 0x1, + 0xff, 0xcc, 0xcc, 0xcc, 0xc0, 0x5f, 0xff, 0xff, + 0xff, 0xff, 0x10, + + /* U+0033 "3" */ + 0x0, 0x19, 0xdf, 0xd7, 0x0, 0x0, 0x1d, 0xfa, + 0x8c, 0xfb, 0x0, 0x9, 0xf6, 0x0, 0xa, 0xf4, + 0x0, 0xad, 0x0, 0x0, 0x5f, 0x70, 0x0, 0x0, + 0x0, 0x8, 0xf5, 0x0, 0x0, 0x0, 0x38, 0xfc, + 0x0, 0x0, 0x0, 0x9f, 0xfe, 0x20, 0x0, 0x0, + 0x4, 0x57, 0xff, 0x40, 0x0, 0x0, 0x0, 0x3, + 0xfd, 0x0, 0x0, 0x0, 0x0, 0xc, 0xf1, 0x6, + 0x50, 0x0, 0x0, 0xbf, 0x30, 0xfe, 0x0, 0x0, + 0xe, 0xf0, 0xa, 0xf7, 0x0, 0x8, 0xfa, 0x0, + 0x1e, 0xfb, 0x9c, 0xfd, 0x10, 0x0, 0x19, 0xef, + 0xd8, 0x0, 0x0, + + /* U+0034 "4" */ + 0x0, 0x0, 0x0, 0x8f, 0x30, 0x0, 0x0, 0x0, + 0x3f, 0xf3, 0x0, 0x0, 0x0, 0xd, 0xff, 0x30, + 0x0, 0x0, 0x8, 0xfb, 0xf3, 0x0, 0x0, 0x2, + 0xf8, 0x8f, 0x30, 0x0, 0x0, 0xcd, 0x8, 0xf3, + 0x0, 0x0, 0x7f, 0x30, 0x8f, 0x30, 0x0, 0x2f, + 0x90, 0x8, 0xf3, 0x0, 0xc, 0xe0, 0x0, 0x8f, + 0x30, 0x6, 0xf4, 0x0, 0x8, 0xf3, 0x0, 0xcf, + 0xff, 0xff, 0xff, 0xff, 0x28, 0xaa, 0xaa, 0xad, + 0xfb, 0xa1, 0x0, 0x0, 0x0, 0x8f, 0x30, 0x0, + 0x0, 0x0, 0x8, 0xf3, 0x0, 0x0, 0x0, 0x0, + 0x8f, 0x30, 0x0, + + /* U+0035 "5" */ + 0x0, 0x8f, 0xff, 0xff, 0xfa, 0x0, 0xb, 0xfb, + 0xbb, 0xbb, 0x70, 0x0, 0xec, 0x0, 0x0, 0x0, + 0x0, 0x1f, 0x90, 0x0, 0x0, 0x0, 0x4, 0xf6, + 0x0, 0x0, 0x0, 0x0, 0x7f, 0x7b, 0xee, 0xa2, + 0x0, 0xa, 0xff, 0xca, 0xdf, 0xf3, 0x0, 0xbf, + 0x40, 0x0, 0x7f, 0xd0, 0x0, 0x0, 0x0, 0x0, + 0xdf, 0x20, 0x0, 0x0, 0x0, 0x9, 0xf4, 0x2, + 0x20, 0x0, 0x0, 0xaf, 0x41, 0xfe, 0x0, 0x0, + 0xd, 0xf1, 0xb, 0xf6, 0x0, 0x7, 0xfa, 0x0, + 0x2e, 0xfb, 0x8c, 0xfd, 0x10, 0x0, 0x2a, 0xef, + 0xd8, 0x0, 0x0, + + /* U+0036 "6" */ + 0x0, 0x5, 0xcf, 0xea, 0x20, 0x0, 0x8, 0xfd, + 0x8a, 0xff, 0x20, 0x3, 0xfc, 0x0, 0x4, 0xfa, + 0x0, 0xaf, 0x20, 0x0, 0x9, 0x80, 0xe, 0xc0, + 0x0, 0x0, 0x0, 0x1, 0xf9, 0x2b, 0xff, 0xa2, + 0x0, 0x3f, 0xbf, 0xea, 0xcf, 0xe2, 0x3, 0xff, + 0xa0, 0x0, 0x7f, 0xb0, 0x3f, 0xf1, 0x0, 0x0, + 0xdf, 0x2, 0xfd, 0x0, 0x0, 0xa, 0xf2, 0xf, + 0xd0, 0x0, 0x0, 0xaf, 0x20, 0xcf, 0x10, 0x0, + 0xd, 0xf0, 0x5, 0xfa, 0x0, 0x6, 0xf9, 0x0, + 0xa, 0xfd, 0x8b, 0xfd, 0x10, 0x0, 0x6, 0xdf, + 0xe9, 0x10, 0x0, + + /* U+0037 "7" */ + 0xf, 0xff, 0xff, 0xff, 0xff, 0x30, 0xcc, 0xcc, + 0xcc, 0xcf, 0xf1, 0x0, 0x0, 0x0, 0x9, 0xf6, + 0x0, 0x0, 0x0, 0x4, 0xfb, 0x0, 0x0, 0x0, + 0x0, 0xdf, 0x20, 0x0, 0x0, 0x0, 0x6f, 0x80, + 0x0, 0x0, 0x0, 0xe, 0xf1, 0x0, 0x0, 0x0, + 0x5, 0xf9, 0x0, 0x0, 0x0, 0x0, 0xbf, 0x30, + 0x0, 0x0, 0x0, 0xf, 0xd0, 0x0, 0x0, 0x0, + 0x5, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x9f, 0x40, + 0x0, 0x0, 0x0, 0xc, 0xf1, 0x0, 0x0, 0x0, + 0x0, 0xee, 0x0, 0x0, 0x0, 0x0, 0xf, 0xc0, + 0x0, 0x0, 0x0, + + /* U+0038 "8" */ + 0x0, 0x8, 0xef, 0xe9, 0x10, 0x0, 0xc, 0xfc, + 0x8b, 0xfd, 0x0, 0x5, 0xf9, 0x0, 0x9, 0xf6, + 0x0, 0x9f, 0x30, 0x0, 0x3f, 0xa0, 0x8, 0xf6, + 0x0, 0x5, 0xf8, 0x0, 0x2f, 0xe6, 0x25, 0xee, + 0x10, 0x0, 0x3d, 0xff, 0xfe, 0x20, 0x0, 0x1b, + 0xf8, 0x68, 0xfe, 0x20, 0xa, 0xf4, 0x0, 0x3, + 0xfc, 0x0, 0xfc, 0x0, 0x0, 0xb, 0xf1, 0x2f, + 0xa0, 0x0, 0x0, 0x9f, 0x31, 0xfd, 0x0, 0x0, + 0xc, 0xf1, 0xb, 0xf6, 0x0, 0x5, 0xfc, 0x0, + 0x2e, 0xfb, 0x8b, 0xfe, 0x20, 0x0, 0x19, 0xef, + 0xe9, 0x10, 0x0, + + /* U+0039 "9" */ + 0x0, 0x19, 0xef, 0xc6, 0x0, 0x0, 0x1e, 0xfc, + 0x9c, 0xfa, 0x0, 0xa, 0xf8, 0x0, 0x8, 0xf5, + 0x0, 0xfe, 0x0, 0x0, 0xe, 0xc0, 0x2f, 0xb0, + 0x0, 0x0, 0xcf, 0x2, 0xfb, 0x0, 0x0, 0xc, + 0xf2, 0xe, 0xf1, 0x0, 0x2, 0xff, 0x30, 0x8f, + 0xc3, 0x3, 0xdf, 0xf3, 0x0, 0xaf, 0xff, 0xfb, + 0x8f, 0x30, 0x0, 0x48, 0x84, 0x9, 0xf1, 0x0, + 0x0, 0x0, 0x0, 0xde, 0x0, 0xac, 0x0, 0x0, + 0x2f, 0xa0, 0x8, 0xf4, 0x0, 0xc, 0xf2, 0x0, + 0x1e, 0xf9, 0x8d, 0xf7, 0x0, 0x0, 0x2a, 0xef, + 0xc5, 0x0, 0x0, + + /* U+003A ":" */ + 0x3f, 0xd3, 0xfd, 0x1, 0x10, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1, 0x13, 0xfd, 0x3f, + 0xd0, + + /* U+003B ";" */ + 0x3f, 0xc3, 0xfc, 0x1, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1, 0x3, 0xfc, 0x3f, + 0xc0, 0x4b, 0xa, 0x82, 0xa0, + + /* U+003C "<" */ + 0x0, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, + 0x6, 0xd9, 0x0, 0x0, 0x28, 0xff, 0xe5, 0x0, + 0x3a, 0xff, 0xc5, 0x0, 0x5c, 0xff, 0xa3, 0x0, + 0x0, 0xef, 0xa1, 0x0, 0x0, 0x0, 0xaf, 0xfb, + 0x40, 0x0, 0x0, 0x2, 0x9f, 0xfd, 0x60, 0x0, + 0x0, 0x1, 0x7e, 0xff, 0x82, 0x0, 0x0, 0x0, + 0x5c, 0xf9, 0x0, 0x0, 0x0, 0x0, 0x35, + + /* U+003D "=" */ + 0xef, 0xff, 0xff, 0xff, 0xf9, 0x9b, 0xbb, 0xbb, + 0xbb, 0xb6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xab, 0xbb, 0xbb, 0xbb, + 0xb6, 0xef, 0xff, 0xff, 0xff, 0xf9, + + /* U+003E ">" */ + 0x20, 0x0, 0x0, 0x0, 0x0, 0xeb, 0x40, 0x0, + 0x0, 0x0, 0x9f, 0xfd, 0x60, 0x0, 0x0, 0x1, + 0x7e, 0xfe, 0x81, 0x0, 0x0, 0x0, 0x5c, 0xff, + 0xa2, 0x0, 0x0, 0x0, 0x3d, 0xf9, 0x0, 0x0, + 0x6, 0xdf, 0xf5, 0x0, 0x28, 0xff, 0xd7, 0x0, + 0x4b, 0xff, 0xc5, 0x0, 0x0, 0xef, 0xa3, 0x0, + 0x0, 0x0, 0x71, 0x0, 0x0, 0x0, 0x0, + + /* U+003F "?" */ + 0x0, 0x19, 0xef, 0xea, 0x20, 0x0, 0x1e, 0xfb, + 0x8b, 0xff, 0x30, 0x9, 0xf8, 0x0, 0x6, 0xfc, + 0x0, 0xef, 0x0, 0x0, 0xd, 0xf1, 0x5, 0x50, + 0x0, 0x0, 0xbf, 0x10, 0x0, 0x0, 0x0, 0x3f, + 0xc0, 0x0, 0x0, 0x0, 0x3e, 0xf3, 0x0, 0x0, + 0x0, 0x2e, 0xf4, 0x0, 0x0, 0x0, 0xd, 0xf4, + 0x0, 0x0, 0x0, 0x3, 0xf9, 0x0, 0x0, 0x0, + 0x0, 0x6f, 0x50, 0x0, 0x0, 0x0, 0x2, 0x51, + 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, + 0x0, 0x8, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x8f, + 0x80, 0x0, 0x0, + + /* U+0040 "@" */ + 0x0, 0x0, 0x2, 0x8c, 0xef, 0xfd, 0x94, 0x0, + 0x0, 0x0, 0x0, 0x9, 0xff, 0xc8, 0x79, 0xbf, + 0xfb, 0x10, 0x0, 0x0, 0x1c, 0xf9, 0x10, 0x0, + 0x0, 0x17, 0xfe, 0x10, 0x0, 0xb, 0xf5, 0x0, + 0x0, 0x0, 0x0, 0x3, 0xfb, 0x0, 0x6, 0xf5, + 0x0, 0x2a, 0xee, 0x70, 0xec, 0x5, 0xf5, 0x0, + 0xea, 0x0, 0x3e, 0xf9, 0x9f, 0xaf, 0x90, 0xd, + 0xb0, 0x4f, 0x30, 0xe, 0xe2, 0x0, 0x4f, 0xf6, + 0x0, 0x8f, 0x9, 0xd0, 0x7, 0xf6, 0x0, 0x0, + 0xdf, 0x30, 0x6, 0xf1, 0xca, 0x0, 0xdf, 0x0, + 0x0, 0xc, 0xf0, 0x0, 0x6f, 0xd, 0x80, 0x1f, + 0xb0, 0x0, 0x0, 0xec, 0x0, 0x9, 0xe0, 0xe8, + 0x2, 0xfa, 0x0, 0x0, 0x2f, 0x90, 0x0, 0xf9, + 0xc, 0xa0, 0x1f, 0xc0, 0x0, 0xa, 0xf6, 0x0, + 0x9f, 0x20, 0x9e, 0x0, 0xcf, 0x40, 0x8, 0xff, + 0x40, 0x8f, 0x70, 0x4, 0xf4, 0x4, 0xff, 0xcd, + 0xfc, 0xfd, 0xdf, 0x80, 0x0, 0xd, 0xd0, 0x5, + 0xdf, 0xb2, 0x3d, 0xfc, 0x50, 0x13, 0x10, 0x4f, + 0xb1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1d, 0xf2, + 0x0, 0x6f, 0xe6, 0x10, 0x0, 0x0, 0x1, 0x7f, + 0xe3, 0x0, 0x0, 0x3d, 0xff, 0xca, 0x88, 0xac, + 0xff, 0xb1, 0x0, 0x0, 0x0, 0x3, 0x8c, 0xef, + 0xfe, 0xc8, 0x20, 0x0, 0x0, + + /* U+0041 "A" */ + 0x0, 0x0, 0x0, 0xbf, 0xb0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1f, 0xff, 0x10, 0x0, 0x0, 0x0, + 0x0, 0x7, 0xf7, 0xf7, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xde, 0xf, 0xd0, 0x0, 0x0, 0x0, 0x0, + 0x2f, 0xa0, 0xaf, 0x40, 0x0, 0x0, 0x0, 0x8, + 0xf5, 0x4, 0xfa, 0x0, 0x0, 0x0, 0x0, 0xef, + 0x0, 0xe, 0xf1, 0x0, 0x0, 0x0, 0x4f, 0xa0, + 0x0, 0x9f, 0x70, 0x0, 0x0, 0xa, 0xf4, 0x0, + 0x3, 0xfd, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, + 0xff, 0xf3, 0x0, 0x0, 0x6f, 0xc9, 0x99, 0x99, + 0xbf, 0x90, 0x0, 0xc, 0xf3, 0x0, 0x0, 0x1, + 0xff, 0x0, 0x1, 0xfd, 0x0, 0x0, 0x0, 0xb, + 0xf6, 0x0, 0x7f, 0x80, 0x0, 0x0, 0x0, 0x5f, + 0xc0, 0xd, 0xf2, 0x0, 0x0, 0x0, 0x0, 0xff, + 0x20, + + /* U+0042 "B" */ + 0x8f, 0xff, 0xff, 0xfd, 0x70, 0x0, 0x8f, 0xdc, + 0xcc, 0xdf, 0xfb, 0x0, 0x8f, 0x50, 0x0, 0x1, + 0xcf, 0x40, 0x8f, 0x50, 0x0, 0x0, 0x5f, 0x80, + 0x8f, 0x50, 0x0, 0x0, 0x5f, 0x70, 0x8f, 0x50, + 0x0, 0x1, 0xcf, 0x20, 0x8f, 0xdc, 0xcc, 0xcf, + 0xe4, 0x0, 0x8f, 0xff, 0xff, 0xff, 0xf9, 0x0, + 0x8f, 0x50, 0x0, 0x3, 0xbf, 0xa0, 0x8f, 0x50, + 0x0, 0x0, 0xe, 0xf1, 0x8f, 0x50, 0x0, 0x0, + 0xb, 0xf3, 0x8f, 0x50, 0x0, 0x0, 0xd, 0xf2, + 0x8f, 0x50, 0x0, 0x0, 0x7f, 0xd0, 0x8f, 0xdc, + 0xcc, 0xce, 0xff, 0x40, 0x8f, 0xff, 0xff, 0xfe, + 0xa3, 0x0, + + /* U+0043 "C" */ + 0x0, 0x3, 0x9d, 0xff, 0xc6, 0x0, 0x0, 0x8, + 0xff, 0xdb, 0xcf, 0xfb, 0x0, 0x8, 0xfd, 0x30, + 0x0, 0x1c, 0xf9, 0x2, 0xfe, 0x10, 0x0, 0x0, + 0x1f, 0xf1, 0x8f, 0x70, 0x0, 0x0, 0x0, 0x67, + 0x1c, 0xf2, 0x0, 0x0, 0x0, 0x0, 0x0, 0xef, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xf0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xef, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xc, 0xf3, 0x0, 0x0, 0x0, 0x1, + 0x20, 0x7f, 0x70, 0x0, 0x0, 0x0, 0x8f, 0x72, + 0xfe, 0x10, 0x0, 0x0, 0x1e, 0xf2, 0x8, 0xfd, + 0x30, 0x0, 0x2c, 0xfa, 0x0, 0xa, 0xff, 0xdb, + 0xdf, 0xfb, 0x0, 0x0, 0x4, 0xbd, 0xff, 0xc6, + 0x0, 0x0, + + /* U+0044 "D" */ + 0x7f, 0xff, 0xff, 0xfd, 0x92, 0x0, 0x7, 0xfd, + 0xcc, 0xcc, 0xff, 0xf4, 0x0, 0x7f, 0x70, 0x0, + 0x0, 0x7f, 0xf2, 0x7, 0xf7, 0x0, 0x0, 0x0, + 0x8f, 0xa0, 0x7f, 0x70, 0x0, 0x0, 0x0, 0xff, + 0x7, 0xf7, 0x0, 0x0, 0x0, 0xb, 0xf3, 0x7f, + 0x70, 0x0, 0x0, 0x0, 0x9f, 0x47, 0xf7, 0x0, + 0x0, 0x0, 0x9, 0xf5, 0x7f, 0x70, 0x0, 0x0, + 0x0, 0xaf, 0x47, 0xf7, 0x0, 0x0, 0x0, 0xc, + 0xf2, 0x7f, 0x70, 0x0, 0x0, 0x1, 0xff, 0x7, + 0xf7, 0x0, 0x0, 0x0, 0x8f, 0x90, 0x7f, 0x70, + 0x0, 0x0, 0x7f, 0xf1, 0x7, 0xfd, 0xcc, 0xcc, + 0xff, 0xf4, 0x0, 0x7f, 0xff, 0xff, 0xfd, 0x92, + 0x0, 0x0, + + /* U+0045 "E" */ + 0x6f, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x6f, 0xdc, + 0xcc, 0xcc, 0xcc, 0xb0, 0x6f, 0x70, 0x0, 0x0, + 0x0, 0x0, 0x6f, 0x70, 0x0, 0x0, 0x0, 0x0, + 0x6f, 0x70, 0x0, 0x0, 0x0, 0x0, 0x6f, 0x70, + 0x0, 0x0, 0x0, 0x0, 0x6f, 0xdc, 0xcc, 0xcc, + 0xcc, 0x40, 0x6f, 0xff, 0xff, 0xff, 0xff, 0x60, + 0x6f, 0x70, 0x0, 0x0, 0x0, 0x0, 0x6f, 0x70, + 0x0, 0x0, 0x0, 0x0, 0x6f, 0x70, 0x0, 0x0, + 0x0, 0x0, 0x6f, 0x70, 0x0, 0x0, 0x0, 0x0, + 0x6f, 0x70, 0x0, 0x0, 0x0, 0x0, 0x6f, 0xdc, + 0xcc, 0xcc, 0xcc, 0xc3, 0x6f, 0xff, 0xff, 0xff, + 0xff, 0xf4, + + /* U+0046 "F" */ + 0x5f, 0xff, 0xff, 0xff, 0xff, 0x45, 0xfe, 0xcc, + 0xcc, 0xcc, 0xc3, 0x5f, 0x80, 0x0, 0x0, 0x0, + 0x5, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x5f, 0x80, + 0x0, 0x0, 0x0, 0x5, 0xf8, 0x0, 0x0, 0x0, + 0x0, 0x5f, 0xec, 0xcc, 0xcc, 0xc3, 0x5, 0xff, + 0xff, 0xff, 0xff, 0x40, 0x5f, 0x80, 0x0, 0x0, + 0x0, 0x5, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x5f, + 0x80, 0x0, 0x0, 0x0, 0x5, 0xf8, 0x0, 0x0, + 0x0, 0x0, 0x5f, 0x80, 0x0, 0x0, 0x0, 0x5, + 0xf8, 0x0, 0x0, 0x0, 0x0, 0x5f, 0x80, 0x0, + 0x0, 0x0, 0x0, + + /* U+0047 "G" */ + 0x0, 0x1, 0x8c, 0xef, 0xea, 0x30, 0x0, 0x0, + 0x6f, 0xfe, 0xbb, 0xdf, 0xf8, 0x0, 0x5, 0xfe, + 0x50, 0x0, 0x3, 0xdf, 0x50, 0xe, 0xf3, 0x0, + 0x0, 0x0, 0x2f, 0xd0, 0x5f, 0xa0, 0x0, 0x0, + 0x0, 0x8, 0x70, 0xaf, 0x40, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xdf, 0x10, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xef, 0x0, 0x0, 0x8, 0xbb, 0xbb, 0xb3, + 0xdf, 0x10, 0x0, 0xc, 0xff, 0xff, 0xf5, 0xbf, + 0x40, 0x0, 0x0, 0x0, 0x8, 0xf5, 0x6f, 0xa0, + 0x0, 0x0, 0x0, 0x8, 0xf5, 0x1e, 0xf4, 0x0, + 0x0, 0x0, 0x9, 0xf5, 0x4, 0xff, 0x71, 0x0, + 0x3, 0xaf, 0xf4, 0x0, 0x5e, 0xff, 0xdc, 0xef, + 0xfe, 0x40, 0x0, 0x1, 0x7c, 0xef, 0xeb, 0x60, + 0x0, + + /* U+0048 "H" */ + 0x6f, 0x80, 0x0, 0x0, 0x1, 0xfd, 0x6f, 0x80, + 0x0, 0x0, 0x1, 0xfd, 0x6f, 0x80, 0x0, 0x0, + 0x1, 0xfd, 0x6f, 0x80, 0x0, 0x0, 0x1, 0xfd, + 0x6f, 0x80, 0x0, 0x0, 0x1, 0xfd, 0x6f, 0x80, + 0x0, 0x0, 0x1, 0xfd, 0x6f, 0xec, 0xcc, 0xcc, + 0xcc, 0xfd, 0x6f, 0xff, 0xff, 0xff, 0xff, 0xfd, + 0x6f, 0x80, 0x0, 0x0, 0x1, 0xfd, 0x6f, 0x80, + 0x0, 0x0, 0x1, 0xfd, 0x6f, 0x80, 0x0, 0x0, + 0x1, 0xfd, 0x6f, 0x80, 0x0, 0x0, 0x1, 0xfd, + 0x6f, 0x80, 0x0, 0x0, 0x1, 0xfd, 0x6f, 0x80, + 0x0, 0x0, 0x1, 0xfd, 0x6f, 0x80, 0x0, 0x0, + 0x1, 0xfd, + + /* U+0049 "I" */ + 0x2f, 0xc2, 0xfc, 0x2f, 0xc2, 0xfc, 0x2f, 0xc2, + 0xfc, 0x2f, 0xc2, 0xfc, 0x2f, 0xc2, 0xfc, 0x2f, + 0xc2, 0xfc, 0x2f, 0xc2, 0xfc, 0x2f, 0xc0, + + /* U+004A "J" */ + 0x0, 0x0, 0x0, 0x7f, 0x70, 0x0, 0x0, 0x7, + 0xf7, 0x0, 0x0, 0x0, 0x7f, 0x70, 0x0, 0x0, + 0x7, 0xf7, 0x0, 0x0, 0x0, 0x7f, 0x70, 0x0, + 0x0, 0x7, 0xf7, 0x0, 0x0, 0x0, 0x7f, 0x70, + 0x0, 0x0, 0x7, 0xf7, 0x0, 0x0, 0x0, 0x7f, + 0x70, 0x0, 0x0, 0x7, 0xf7, 0x39, 0x30, 0x0, + 0x7f, 0x65, 0xf6, 0x0, 0x8, 0xf5, 0x2f, 0xd1, + 0x1, 0xef, 0x20, 0xbf, 0xec, 0xff, 0xa0, 0x0, + 0x9e, 0xfd, 0x70, 0x0, + + /* U+004B "K" */ + 0x8f, 0x50, 0x0, 0x0, 0x1e, 0xf8, 0x8, 0xf5, + 0x0, 0x0, 0x1d, 0xf8, 0x0, 0x8f, 0x50, 0x0, + 0x1d, 0xf8, 0x0, 0x8, 0xf5, 0x0, 0x1c, 0xf9, + 0x0, 0x0, 0x8f, 0x50, 0xc, 0xf9, 0x0, 0x0, + 0x8, 0xf5, 0xc, 0xf9, 0x0, 0x0, 0x0, 0x8f, + 0x6b, 0xff, 0x50, 0x0, 0x0, 0x8, 0xfe, 0xfb, + 0xfe, 0x10, 0x0, 0x0, 0x8f, 0xf9, 0x9, 0xfb, + 0x0, 0x0, 0x8, 0xfa, 0x0, 0xd, 0xf6, 0x0, + 0x0, 0x8f, 0x50, 0x0, 0x3f, 0xf2, 0x0, 0x8, + 0xf5, 0x0, 0x0, 0x8f, 0xc0, 0x0, 0x8f, 0x50, + 0x0, 0x0, 0xdf, 0x80, 0x8, 0xf5, 0x0, 0x0, + 0x3, 0xff, 0x40, 0x8f, 0x50, 0x0, 0x0, 0x8, + 0xfe, 0x10, + + /* U+004C "L" */ + 0x8f, 0x50, 0x0, 0x0, 0x0, 0x8f, 0x50, 0x0, + 0x0, 0x0, 0x8f, 0x50, 0x0, 0x0, 0x0, 0x8f, + 0x50, 0x0, 0x0, 0x0, 0x8f, 0x50, 0x0, 0x0, + 0x0, 0x8f, 0x50, 0x0, 0x0, 0x0, 0x8f, 0x50, + 0x0, 0x0, 0x0, 0x8f, 0x50, 0x0, 0x0, 0x0, + 0x8f, 0x50, 0x0, 0x0, 0x0, 0x8f, 0x50, 0x0, + 0x0, 0x0, 0x8f, 0x50, 0x0, 0x0, 0x0, 0x8f, + 0x50, 0x0, 0x0, 0x0, 0x8f, 0x50, 0x0, 0x0, + 0x0, 0x8f, 0xdc, 0xcc, 0xcc, 0xc4, 0x8f, 0xff, + 0xff, 0xff, 0xf6, + + /* U+004D "M" */ + 0x8f, 0xf8, 0x0, 0x0, 0x0, 0x9, 0xff, 0x28, + 0xff, 0xd0, 0x0, 0x0, 0x0, 0xef, 0xf2, 0x8f, + 0xef, 0x20, 0x0, 0x0, 0x3f, 0xff, 0x28, 0xf9, + 0xf7, 0x0, 0x0, 0x8, 0xfb, 0xf2, 0x8f, 0x5e, + 0xc0, 0x0, 0x0, 0xea, 0xaf, 0x28, 0xf5, 0xaf, + 0x10, 0x0, 0x3f, 0x5a, 0xf2, 0x8f, 0x54, 0xf6, + 0x0, 0x8, 0xf0, 0xaf, 0x28, 0xf5, 0xf, 0xb0, + 0x0, 0xda, 0xa, 0xf2, 0x8f, 0x50, 0xaf, 0x10, + 0x3f, 0x50, 0xaf, 0x28, 0xf5, 0x5, 0xf5, 0x8, + 0xf0, 0xa, 0xf2, 0x8f, 0x50, 0xf, 0xa0, 0xda, + 0x0, 0xaf, 0x28, 0xf5, 0x0, 0xaf, 0x3f, 0x50, + 0xa, 0xf2, 0x8f, 0x50, 0x5, 0xfc, 0xf0, 0x0, + 0xaf, 0x28, 0xf5, 0x0, 0xf, 0xfa, 0x0, 0xa, + 0xf2, 0x8f, 0x50, 0x0, 0xbf, 0x50, 0x0, 0xaf, + 0x20, + + /* U+004E "N" */ + 0x7f, 0xc0, 0x0, 0x0, 0x0, 0xfc, 0x7f, 0xf6, + 0x0, 0x0, 0x0, 0xfc, 0x7f, 0xff, 0x10, 0x0, + 0x0, 0xfc, 0x7f, 0xcf, 0xb0, 0x0, 0x0, 0xfc, + 0x7f, 0x5d, 0xf5, 0x0, 0x0, 0xfc, 0x7f, 0x53, + 0xfe, 0x10, 0x0, 0xfc, 0x7f, 0x50, 0x9f, 0x90, + 0x0, 0xfc, 0x7f, 0x50, 0xe, 0xf4, 0x0, 0xfc, + 0x7f, 0x50, 0x4, 0xfd, 0x0, 0xfc, 0x7f, 0x50, + 0x0, 0xaf, 0x80, 0xfc, 0x7f, 0x50, 0x0, 0x1e, + 0xf3, 0xfc, 0x7f, 0x50, 0x0, 0x6, 0xfc, 0xfc, + 0x7f, 0x50, 0x0, 0x0, 0xbf, 0xfc, 0x7f, 0x50, + 0x0, 0x0, 0x2f, 0xfc, 0x7f, 0x50, 0x0, 0x0, + 0x7, 0xfc, + + /* U+004F "O" */ + 0x0, 0x0, 0x29, 0xdf, 0xec, 0x60, 0x0, 0x0, + 0x0, 0x7f, 0xfe, 0xbc, 0xff, 0xd2, 0x0, 0x0, + 0x7f, 0xe4, 0x0, 0x1, 0x8f, 0xe1, 0x0, 0x2f, + 0xe1, 0x0, 0x0, 0x0, 0x8f, 0xb0, 0x8, 0xf7, + 0x0, 0x0, 0x0, 0x0, 0xef, 0x10, 0xcf, 0x20, + 0x0, 0x0, 0x0, 0x9, 0xf6, 0xf, 0xf0, 0x0, + 0x0, 0x0, 0x0, 0x6f, 0x80, 0xff, 0x0, 0x0, + 0x0, 0x0, 0x5, 0xfa, 0xf, 0xf0, 0x0, 0x0, + 0x0, 0x0, 0x5f, 0x80, 0xcf, 0x20, 0x0, 0x0, + 0x0, 0x8, 0xf6, 0x8, 0xf7, 0x0, 0x0, 0x0, + 0x0, 0xdf, 0x20, 0x1f, 0xe2, 0x0, 0x0, 0x0, + 0x7f, 0xb0, 0x0, 0x6f, 0xe4, 0x0, 0x0, 0x8f, + 0xf2, 0x0, 0x0, 0x6f, 0xfd, 0xbb, 0xff, 0xd3, + 0x0, 0x0, 0x0, 0x29, 0xdf, 0xec, 0x60, 0x0, + 0x0, + + /* U+0050 "P" */ + 0x7f, 0xff, 0xff, 0xfe, 0xc5, 0x0, 0x7f, 0xdc, + 0xcc, 0xcd, 0xff, 0x70, 0x7f, 0x70, 0x0, 0x0, + 0x4f, 0xf1, 0x7f, 0x70, 0x0, 0x0, 0xa, 0xf5, + 0x7f, 0x70, 0x0, 0x0, 0x8, 0xf7, 0x7f, 0x70, + 0x0, 0x0, 0xb, 0xf5, 0x7f, 0x70, 0x0, 0x0, + 0x5f, 0xf1, 0x7f, 0xdc, 0xcc, 0xce, 0xff, 0x60, + 0x7f, 0xff, 0xff, 0xfe, 0xb4, 0x0, 0x7f, 0x70, + 0x0, 0x0, 0x0, 0x0, 0x7f, 0x70, 0x0, 0x0, + 0x0, 0x0, 0x7f, 0x70, 0x0, 0x0, 0x0, 0x0, + 0x7f, 0x70, 0x0, 0x0, 0x0, 0x0, 0x7f, 0x70, + 0x0, 0x0, 0x0, 0x0, 0x7f, 0x70, 0x0, 0x0, + 0x0, 0x0, + + /* U+0051 "Q" */ + 0x0, 0x0, 0x39, 0xdf, 0xeb, 0x60, 0x0, 0x0, + 0x0, 0x8f, 0xfd, 0xbc, 0xff, 0xd2, 0x0, 0x0, + 0x8f, 0xd3, 0x0, 0x1, 0xaf, 0xe0, 0x0, 0x3f, + 0xe1, 0x0, 0x0, 0x0, 0x9f, 0x90, 0x9, 0xf5, + 0x0, 0x0, 0x0, 0x1, 0xff, 0x0, 0xef, 0x0, + 0x0, 0x0, 0x0, 0xa, 0xf5, 0xf, 0xe0, 0x0, + 0x0, 0x0, 0x0, 0x7f, 0x71, 0xfd, 0x0, 0x0, + 0x0, 0x0, 0x6, 0xf8, 0xf, 0xe0, 0x0, 0x0, + 0x0, 0x0, 0x7f, 0x70, 0xef, 0x0, 0x0, 0x0, + 0x0, 0xa, 0xf5, 0x9, 0xf5, 0x0, 0x0, 0x20, + 0x0, 0xef, 0x10, 0x3f, 0xe1, 0x0, 0xf, 0xc3, + 0x9f, 0x90, 0x0, 0x8f, 0xd3, 0x0, 0x6d, 0xff, + 0xe1, 0x0, 0x0, 0x8f, 0xfd, 0xbc, 0xff, 0xfc, + 0x20, 0x0, 0x0, 0x3a, 0xdf, 0xeb, 0x55, 0xef, + 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x86, + + /* U+0052 "R" */ + 0x6f, 0xff, 0xff, 0xff, 0xea, 0x20, 0x0, 0x6f, + 0xca, 0xaa, 0xab, 0xef, 0xf2, 0x0, 0x6f, 0x70, + 0x0, 0x0, 0xa, 0xfa, 0x0, 0x6f, 0x70, 0x0, + 0x0, 0x1, 0xfe, 0x0, 0x6f, 0x70, 0x0, 0x0, + 0x0, 0xff, 0x0, 0x6f, 0x70, 0x0, 0x0, 0x3, + 0xfc, 0x0, 0x6f, 0x70, 0x0, 0x1, 0x4e, 0xf5, + 0x0, 0x6f, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, + 0x6f, 0xdb, 0xbc, 0xff, 0x92, 0x0, 0x0, 0x6f, + 0x70, 0x0, 0x2e, 0xf5, 0x0, 0x0, 0x6f, 0x70, + 0x0, 0x3, 0xff, 0x30, 0x0, 0x6f, 0x70, 0x0, + 0x0, 0x7f, 0xe0, 0x0, 0x6f, 0x70, 0x0, 0x0, + 0xc, 0xf9, 0x0, 0x6f, 0x70, 0x0, 0x0, 0x2, + 0xff, 0x30, 0x6f, 0x70, 0x0, 0x0, 0x0, 0x8f, + 0xd0, + + /* U+0053 "S" */ + 0x0, 0x4, 0xbe, 0xfe, 0xb5, 0x0, 0x0, 0x8, + 0xff, 0xdc, 0xdf, 0xfa, 0x0, 0x3, 0xfd, 0x20, + 0x0, 0x2d, 0xf5, 0x0, 0x7f, 0x50, 0x0, 0x0, + 0x3f, 0xb0, 0x7, 0xf6, 0x0, 0x0, 0x0, 0x75, + 0x0, 0x2f, 0xf7, 0x10, 0x0, 0x0, 0x0, 0x0, + 0x6f, 0xff, 0xd9, 0x50, 0x0, 0x0, 0x0, 0x28, + 0xdf, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x15, + 0xaf, 0xf9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2e, + 0xf1, 0xf, 0xc0, 0x0, 0x0, 0x0, 0x9f, 0x40, + 0xdf, 0x30, 0x0, 0x0, 0xb, 0xf2, 0x6, 0xfe, + 0x50, 0x0, 0x7, 0xfc, 0x0, 0x9, 0xff, 0xec, + 0xcf, 0xfe, 0x20, 0x0, 0x4, 0xad, 0xff, 0xd8, + 0x10, 0x0, + + /* U+0054 "T" */ + 0x8f, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x6c, 0xcc, + 0xcf, 0xfc, 0xcc, 0xc9, 0x0, 0x0, 0xd, 0xf1, + 0x0, 0x0, 0x0, 0x0, 0xd, 0xf1, 0x0, 0x0, + 0x0, 0x0, 0xd, 0xf1, 0x0, 0x0, 0x0, 0x0, + 0xd, 0xf1, 0x0, 0x0, 0x0, 0x0, 0xd, 0xf1, + 0x0, 0x0, 0x0, 0x0, 0xd, 0xf1, 0x0, 0x0, + 0x0, 0x0, 0xd, 0xf1, 0x0, 0x0, 0x0, 0x0, + 0xd, 0xf1, 0x0, 0x0, 0x0, 0x0, 0xd, 0xf1, + 0x0, 0x0, 0x0, 0x0, 0xd, 0xf1, 0x0, 0x0, + 0x0, 0x0, 0xd, 0xf1, 0x0, 0x0, 0x0, 0x0, + 0xd, 0xf1, 0x0, 0x0, 0x0, 0x0, 0xd, 0xf1, + 0x0, 0x0, + + /* U+0055 "U" */ + 0x6f, 0x70, 0x0, 0x0, 0x1, 0xfd, 0x6f, 0x70, + 0x0, 0x0, 0x1, 0xfd, 0x6f, 0x70, 0x0, 0x0, + 0x1, 0xfd, 0x6f, 0x70, 0x0, 0x0, 0x1, 0xfd, + 0x6f, 0x70, 0x0, 0x0, 0x1, 0xfd, 0x6f, 0x70, + 0x0, 0x0, 0x1, 0xfd, 0x6f, 0x70, 0x0, 0x0, + 0x1, 0xfd, 0x6f, 0x70, 0x0, 0x0, 0x1, 0xfd, + 0x6f, 0x70, 0x0, 0x0, 0x1, 0xfd, 0x5f, 0x80, + 0x0, 0x0, 0x1, 0xfc, 0x4f, 0x90, 0x0, 0x0, + 0x3, 0xfb, 0x1f, 0xe0, 0x0, 0x0, 0x8, 0xf7, + 0xb, 0xfa, 0x10, 0x0, 0x5f, 0xf1, 0x2, 0xdf, + 0xfd, 0xce, 0xff, 0x50, 0x0, 0x18, 0xde, 0xfd, + 0xa3, 0x0, + + /* U+0056 "V" */ + 0xbf, 0x40, 0x0, 0x0, 0x0, 0xe, 0xf0, 0x5f, + 0xa0, 0x0, 0x0, 0x0, 0x4f, 0xa0, 0xf, 0xf0, + 0x0, 0x0, 0x0, 0xaf, 0x40, 0x9, 0xf5, 0x0, + 0x0, 0x0, 0xfd, 0x0, 0x3, 0xfa, 0x0, 0x0, + 0x5, 0xf8, 0x0, 0x0, 0xdf, 0x0, 0x0, 0xb, + 0xf2, 0x0, 0x0, 0x8f, 0x50, 0x0, 0x1f, 0xc0, + 0x0, 0x0, 0x2f, 0xb0, 0x0, 0x6f, 0x60, 0x0, + 0x0, 0xc, 0xf1, 0x0, 0xcf, 0x0, 0x0, 0x0, + 0x6, 0xf6, 0x1, 0xfa, 0x0, 0x0, 0x0, 0x0, + 0xfb, 0x7, 0xf4, 0x0, 0x0, 0x0, 0x0, 0xaf, + 0x1c, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x4f, 0x7f, + 0x80, 0x0, 0x0, 0x0, 0x0, 0xe, 0xff, 0x20, + 0x0, 0x0, 0x0, 0x0, 0x8, 0xfc, 0x0, 0x0, + 0x0, + + /* U+0057 "W" */ + 0xaf, 0x40, 0x0, 0x0, 0xcf, 0xc0, 0x0, 0x0, + 0x5f, 0x85, 0xf8, 0x0, 0x0, 0x1f, 0xff, 0x0, + 0x0, 0x9, 0xf4, 0x1f, 0xb0, 0x0, 0x5, 0xfa, + 0xf4, 0x0, 0x0, 0xdf, 0x0, 0xdf, 0x0, 0x0, + 0x9f, 0x2f, 0x90, 0x0, 0x1f, 0xb0, 0x9, 0xf2, + 0x0, 0xd, 0xc0, 0xdd, 0x0, 0x4, 0xf7, 0x0, + 0x5f, 0x60, 0x2, 0xf8, 0x9, 0xf1, 0x0, 0x8f, + 0x30, 0x1, 0xf9, 0x0, 0x6f, 0x30, 0x5f, 0x60, + 0xc, 0xf0, 0x0, 0xd, 0xd0, 0xa, 0xf0, 0x1, + 0xfa, 0x0, 0xfb, 0x0, 0x0, 0x9f, 0x10, 0xeb, + 0x0, 0xc, 0xe0, 0x3f, 0x60, 0x0, 0x5, 0xf4, + 0x3f, 0x70, 0x0, 0x8f, 0x27, 0xf2, 0x0, 0x0, + 0x1f, 0x77, 0xf2, 0x0, 0x4, 0xf5, 0xbe, 0x0, + 0x0, 0x0, 0xda, 0xbe, 0x0, 0x0, 0xf, 0x8e, + 0xa0, 0x0, 0x0, 0x9, 0xee, 0xa0, 0x0, 0x0, + 0xcd, 0xf6, 0x0, 0x0, 0x0, 0x5f, 0xf6, 0x0, + 0x0, 0x7, 0xff, 0x10, 0x0, 0x0, 0x1, 0xff, + 0x10, 0x0, 0x0, 0x3f, 0xd0, 0x0, 0x0, + + /* U+0058 "X" */ + 0xd, 0xf5, 0x0, 0x0, 0x0, 0x9f, 0x70, 0x3, + 0xfe, 0x10, 0x0, 0x5, 0xfb, 0x0, 0x0, 0x8f, + 0xa0, 0x0, 0x1e, 0xe1, 0x0, 0x0, 0xd, 0xf5, + 0x0, 0xcf, 0x50, 0x0, 0x0, 0x3, 0xfe, 0x17, + 0xf9, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xbf, 0xd0, + 0x0, 0x0, 0x0, 0x0, 0xd, 0xff, 0x30, 0x0, + 0x0, 0x0, 0x0, 0x9, 0xff, 0x20, 0x0, 0x0, + 0x0, 0x0, 0x4f, 0xef, 0xc0, 0x0, 0x0, 0x0, + 0x1, 0xef, 0x2c, 0xf7, 0x0, 0x0, 0x0, 0xb, + 0xf7, 0x2, 0xff, 0x20, 0x0, 0x0, 0x6f, 0xc0, + 0x0, 0x7f, 0xc0, 0x0, 0x2, 0xff, 0x20, 0x0, + 0xc, 0xf8, 0x0, 0xd, 0xf6, 0x0, 0x0, 0x2, + 0xff, 0x30, 0x8f, 0xb0, 0x0, 0x0, 0x0, 0x7f, + 0xd0, + + /* U+0059 "Y" */ + 0x9f, 0xa0, 0x0, 0x0, 0x0, 0x5f, 0xd0, 0x1e, + 0xf4, 0x0, 0x0, 0x0, 0xef, 0x30, 0x5, 0xfe, + 0x0, 0x0, 0x9, 0xf8, 0x0, 0x0, 0xbf, 0x80, + 0x0, 0x3f, 0xd0, 0x0, 0x0, 0x1f, 0xf2, 0x0, + 0xdf, 0x30, 0x0, 0x0, 0x6, 0xfb, 0x7, 0xf8, + 0x0, 0x0, 0x0, 0x0, 0xcf, 0x6f, 0xd0, 0x0, + 0x0, 0x0, 0x0, 0x2f, 0xff, 0x30, 0x0, 0x0, + 0x0, 0x0, 0x8, 0xf9, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x6, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x6, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, + 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0xf7, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0xf7, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x6, 0xf7, 0x0, 0x0, + 0x0, + + /* U+005A "Z" */ + 0xc, 0xff, 0xff, 0xff, 0xff, 0xf7, 0x9, 0xcc, + 0xcc, 0xcc, 0xcf, 0xf7, 0x0, 0x0, 0x0, 0x0, + 0x6f, 0xd0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x20, + 0x0, 0x0, 0x0, 0x1e, 0xf5, 0x0, 0x0, 0x0, + 0x0, 0xbf, 0x90, 0x0, 0x0, 0x0, 0x8, 0xfc, + 0x0, 0x0, 0x0, 0x0, 0x4f, 0xe2, 0x0, 0x0, + 0x0, 0x1, 0xef, 0x40, 0x0, 0x0, 0x0, 0xc, + 0xf8, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xb0, 0x0, + 0x0, 0x0, 0x5, 0xfe, 0x10, 0x0, 0x0, 0x0, + 0x2f, 0xf3, 0x0, 0x0, 0x0, 0x0, 0x9f, 0xec, + 0xcc, 0xcc, 0xcc, 0xc8, 0x9f, 0xff, 0xff, 0xff, + 0xff, 0xfb, + + /* U+005B "[" */ + 0xaf, 0xff, 0x3a, 0xf9, 0x81, 0xaf, 0x10, 0xa, + 0xf1, 0x0, 0xaf, 0x10, 0xa, 0xf1, 0x0, 0xaf, + 0x10, 0xa, 0xf1, 0x0, 0xaf, 0x10, 0xa, 0xf1, + 0x0, 0xaf, 0x10, 0xa, 0xf1, 0x0, 0xaf, 0x10, + 0xa, 0xf1, 0x0, 0xaf, 0x10, 0xa, 0xf1, 0x0, + 0xaf, 0x10, 0xa, 0xf9, 0x81, 0xaf, 0xff, 0x30, + + /* U+005C "\\" */ + 0xd8, 0x0, 0x0, 0x9d, 0x0, 0x0, 0x4f, 0x10, + 0x0, 0xf, 0x60, 0x0, 0xc, 0xa0, 0x0, 0x7, + 0xe0, 0x0, 0x3, 0xf3, 0x0, 0x0, 0xe7, 0x0, + 0x0, 0xac, 0x0, 0x0, 0x5f, 0x0, 0x0, 0x1f, + 0x50, 0x0, 0xd, 0x90, 0x0, 0x8, 0xd0, 0x0, + 0x4, 0xf2, 0x0, 0x0, 0xf6, + + /* U+005D "]" */ + 0xaf, 0xff, 0x45, 0x8c, 0xf4, 0x0, 0x8f, 0x40, + 0x8, 0xf4, 0x0, 0x8f, 0x40, 0x8, 0xf4, 0x0, + 0x8f, 0x40, 0x8, 0xf4, 0x0, 0x8f, 0x40, 0x8, + 0xf4, 0x0, 0x8f, 0x40, 0x8, 0xf4, 0x0, 0x8f, + 0x40, 0x8, 0xf4, 0x0, 0x8f, 0x40, 0x8, 0xf4, + 0x0, 0x8f, 0x45, 0x8c, 0xf4, 0xaf, 0xff, 0x40, + + /* U+005E "^" */ + 0x0, 0x3, 0xf9, 0x0, 0x0, 0x0, 0xaf, 0xf1, + 0x0, 0x0, 0x1f, 0xaf, 0x70, 0x0, 0x8, 0xf1, + 0xbe, 0x0, 0x0, 0xeb, 0x5, 0xf5, 0x0, 0x6f, + 0x40, 0xe, 0xc0, 0xd, 0xe0, 0x0, 0x8f, 0x34, + 0xf8, 0x0, 0x1, 0xfa, + + /* U+005F "_" */ + 0x1, 0x11, 0x11, 0x11, 0x11, 0x11, 0x4, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf5, 0x14, 0x44, 0x44, + 0x44, 0x44, 0x44, 0x10, + + /* U+0060 "`" */ + 0xa, 0xd5, 0x0, 0x2e, 0xd0, 0x0, 0x4f, 0x40, + + /* U+0061 "a" */ + 0x0, 0x2a, 0xef, 0xfc, 0x40, 0x0, 0x3f, 0xfa, + 0x8a, 0xff, 0x40, 0xb, 0xf3, 0x0, 0x5, 0xf9, + 0x0, 0x46, 0x0, 0x0, 0x1f, 0xb0, 0x0, 0x1, + 0x36, 0x8c, 0xfb, 0x0, 0x1a, 0xff, 0xfe, 0xaf, + 0xb0, 0xd, 0xf9, 0x41, 0x1, 0xfb, 0x3, 0xfb, + 0x0, 0x0, 0x3f, 0xb0, 0x2f, 0xc0, 0x0, 0xc, + 0xfb, 0x0, 0xcf, 0xb7, 0x8e, 0xff, 0xd0, 0x1, + 0xae, 0xfd, 0xa2, 0xbf, 0x10, + + /* U+0062 "b" */ + 0xbf, 0x10, 0x0, 0x0, 0x0, 0xbf, 0x10, 0x0, + 0x0, 0x0, 0xbf, 0x10, 0x0, 0x0, 0x0, 0xbf, + 0x10, 0x0, 0x0, 0x0, 0xbf, 0x2a, 0xfe, 0xa2, + 0x0, 0xbf, 0xed, 0x8b, 0xfe, 0x20, 0xbf, 0xc0, + 0x0, 0x6f, 0xb0, 0xbf, 0x40, 0x0, 0xc, 0xf0, + 0xbf, 0x0, 0x0, 0x9, 0xf3, 0xbf, 0x0, 0x0, + 0x8, 0xf4, 0xbf, 0x0, 0x0, 0x9, 0xf3, 0xbf, + 0x10, 0x0, 0xc, 0xf0, 0xbf, 0x80, 0x0, 0x3f, + 0xa0, 0xbf, 0xf9, 0x46, 0xed, 0x10, 0xbf, 0x3c, + 0xfe, 0x91, 0x0, + + /* U+0063 "c" */ + 0x0, 0x18, 0xdf, 0xd8, 0x0, 0x1, 0xdf, 0xc8, + 0xbf, 0xc0, 0x9, 0xf7, 0x0, 0x9, 0xf5, 0xe, + 0xe0, 0x0, 0x1, 0x83, 0x2f, 0xa0, 0x0, 0x0, + 0x0, 0x3f, 0x90, 0x0, 0x0, 0x0, 0x2f, 0xa0, + 0x0, 0x0, 0x0, 0xf, 0xd0, 0x0, 0x1, 0xfa, + 0x9, 0xf6, 0x0, 0x8, 0xf5, 0x1, 0xdf, 0xb8, + 0xbf, 0xb0, 0x0, 0x19, 0xef, 0xe8, 0x0, + + /* U+0064 "d" */ + 0x0, 0x0, 0x0, 0x1, 0xfa, 0x0, 0x0, 0x0, + 0x1, 0xfa, 0x0, 0x0, 0x0, 0x1, 0xfa, 0x0, + 0x0, 0x0, 0x1, 0xfa, 0x0, 0x2a, 0xef, 0xa2, + 0xfa, 0x2, 0xef, 0xb9, 0xde, 0xfa, 0xb, 0xf5, + 0x0, 0xc, 0xfa, 0xf, 0xc0, 0x0, 0x3, 0xfa, + 0x3f, 0x80, 0x0, 0x0, 0xfa, 0x4f, 0x80, 0x0, + 0x0, 0xfa, 0x3f, 0x90, 0x0, 0x0, 0xfa, 0xf, + 0xd0, 0x0, 0x3, 0xfa, 0xa, 0xf6, 0x0, 0xb, + 0xfa, 0x1, 0xef, 0xb8, 0xde, 0xfa, 0x0, 0x19, + 0xef, 0xb2, 0xfa, + + /* U+0065 "e" */ + 0x0, 0x8, 0xdf, 0xe9, 0x10, 0x0, 0x1d, 0xfc, + 0x8a, 0xfd, 0x10, 0x9, 0xf7, 0x0, 0x4, 0xfa, + 0x0, 0xfe, 0x0, 0x0, 0xc, 0xf0, 0x2f, 0xd8, + 0x88, 0x88, 0xcf, 0x33, 0xff, 0xff, 0xff, 0xff, + 0xf4, 0x3f, 0xa0, 0x0, 0x0, 0x0, 0x0, 0xfd, + 0x0, 0x0, 0x6, 0x70, 0xa, 0xf8, 0x0, 0x3, + 0xfd, 0x0, 0x1d, 0xfc, 0x8a, 0xff, 0x30, 0x0, + 0x18, 0xdf, 0xea, 0x20, 0x0, + + /* U+0066 "f" */ + 0x0, 0x5d, 0xfe, 0x20, 0x1f, 0xfb, 0xb0, 0x3, + 0xf9, 0x0, 0x0, 0x4f, 0x70, 0x0, 0xdf, 0xff, + 0xf8, 0x5, 0x9f, 0xb6, 0x30, 0x4, 0xf7, 0x0, + 0x0, 0x4f, 0x70, 0x0, 0x4, 0xf7, 0x0, 0x0, + 0x4f, 0x70, 0x0, 0x4, 0xf7, 0x0, 0x0, 0x4f, + 0x70, 0x0, 0x4, 0xf7, 0x0, 0x0, 0x4f, 0x70, + 0x0, 0x4, 0xf7, 0x0, 0x0, + + /* U+0067 "g" */ + 0x0, 0x2a, 0xef, 0xb2, 0xdc, 0x2, 0xef, 0xb9, + 0xde, 0xec, 0xa, 0xf5, 0x0, 0xc, 0xfc, 0x1f, + 0xc0, 0x0, 0x3, 0xfc, 0x4f, 0x90, 0x0, 0x0, + 0xfc, 0x5f, 0x70, 0x0, 0x0, 0xec, 0x4f, 0x80, + 0x0, 0x0, 0xec, 0x1f, 0xb0, 0x0, 0x2, 0xfc, + 0xb, 0xf5, 0x0, 0xb, 0xfc, 0x2, 0xef, 0xb9, + 0xde, 0xfc, 0x0, 0x2b, 0xff, 0xb2, 0xfb, 0x2, + 0x0, 0x0, 0x1, 0xf9, 0xe, 0xd0, 0x0, 0x8, + 0xf5, 0x8, 0xfd, 0x98, 0xcf, 0xb0, 0x0, 0x6c, + 0xef, 0xd7, 0x0, + + /* U+0068 "h" */ + 0xbf, 0x10, 0x0, 0x0, 0xb, 0xf1, 0x0, 0x0, + 0x0, 0xbf, 0x10, 0x0, 0x0, 0xb, 0xf1, 0x0, + 0x0, 0x0, 0xbf, 0x29, 0xef, 0xc4, 0xb, 0xfe, + 0xea, 0xbf, 0xf3, 0xbf, 0xc0, 0x0, 0x6f, 0x9b, + 0xf4, 0x0, 0x1, 0xfb, 0xbf, 0x10, 0x0, 0xf, + 0xcb, 0xf1, 0x0, 0x0, 0xfc, 0xbf, 0x10, 0x0, + 0xf, 0xcb, 0xf1, 0x0, 0x0, 0xfc, 0xbf, 0x10, + 0x0, 0xf, 0xcb, 0xf1, 0x0, 0x0, 0xfc, 0xbf, + 0x10, 0x0, 0xf, 0xc0, + + /* U+0069 "i" */ + 0xaf, 0x1a, 0xf1, 0x11, 0x0, 0x0, 0xaf, 0x1a, + 0xf1, 0xaf, 0x1a, 0xf1, 0xaf, 0x1a, 0xf1, 0xaf, + 0x1a, 0xf1, 0xaf, 0x1a, 0xf1, 0xaf, 0x10, + + /* U+006A "j" */ + 0x0, 0xbf, 0x10, 0xb, 0xf1, 0x0, 0x11, 0x0, + 0x0, 0x0, 0x0, 0xbf, 0x10, 0xb, 0xf1, 0x0, + 0xbf, 0x10, 0xb, 0xf1, 0x0, 0xbf, 0x10, 0xb, + 0xf1, 0x0, 0xbf, 0x10, 0xb, 0xf1, 0x0, 0xbf, + 0x10, 0xb, 0xf1, 0x0, 0xbf, 0x10, 0xb, 0xf0, + 0x0, 0xcf, 0x7, 0xaf, 0xc0, 0xbf, 0xc2, 0x0, + + /* U+006B "k" */ + 0xaf, 0x10, 0x0, 0x0, 0xa, 0xf1, 0x0, 0x0, + 0x0, 0xaf, 0x10, 0x0, 0x0, 0xa, 0xf1, 0x0, + 0x0, 0x0, 0xaf, 0x10, 0x3, 0xfe, 0x2a, 0xf1, + 0x3, 0xfe, 0x20, 0xaf, 0x12, 0xee, 0x20, 0xa, + 0xf3, 0xee, 0x30, 0x0, 0xaf, 0xef, 0xd0, 0x0, + 0xa, 0xff, 0xbf, 0x70, 0x0, 0xaf, 0x41, 0xef, + 0x20, 0xa, 0xf1, 0x6, 0xfb, 0x0, 0xaf, 0x10, + 0xc, 0xf5, 0xa, 0xf1, 0x0, 0x2f, 0xe1, 0xaf, + 0x10, 0x0, 0x8f, 0x90, + + /* U+006C "l" */ + 0xbf, 0xb, 0xf0, 0xbf, 0xb, 0xf0, 0xbf, 0xb, + 0xf0, 0xbf, 0xb, 0xf0, 0xbf, 0xb, 0xf0, 0xbf, + 0xb, 0xf0, 0xbf, 0xb, 0xf0, 0xbf, 0x0, + + /* U+006D "m" */ + 0xbe, 0x2a, 0xff, 0xb2, 0x19, 0xef, 0xb2, 0xb, + 0xfe, 0xa5, 0x9f, 0xdd, 0xb6, 0x8f, 0xd0, 0xbf, + 0x90, 0x0, 0xbf, 0xb0, 0x0, 0x9f, 0x3b, 0xf3, + 0x0, 0x8, 0xf5, 0x0, 0x6, 0xf5, 0xbf, 0x10, + 0x0, 0x8f, 0x40, 0x0, 0x6f, 0x6b, 0xf1, 0x0, + 0x8, 0xf3, 0x0, 0x6, 0xf6, 0xbf, 0x10, 0x0, + 0x8f, 0x30, 0x0, 0x6f, 0x6b, 0xf1, 0x0, 0x8, + 0xf3, 0x0, 0x6, 0xf6, 0xbf, 0x10, 0x0, 0x8f, + 0x30, 0x0, 0x6f, 0x6b, 0xf1, 0x0, 0x8, 0xf3, + 0x0, 0x6, 0xf6, 0xbf, 0x10, 0x0, 0x8f, 0x30, + 0x0, 0x6f, 0x60, + + /* U+006E "n" */ + 0xbe, 0x2a, 0xef, 0xc4, 0xb, 0xfe, 0xb6, 0x7e, + 0xf3, 0xbf, 0x90, 0x0, 0x4f, 0x9b, 0xf3, 0x0, + 0x1, 0xfb, 0xbf, 0x10, 0x0, 0xf, 0xbb, 0xf1, + 0x0, 0x0, 0xfc, 0xbf, 0x10, 0x0, 0xf, 0xcb, + 0xf1, 0x0, 0x0, 0xfc, 0xbf, 0x10, 0x0, 0xf, + 0xcb, 0xf1, 0x0, 0x0, 0xfc, 0xbf, 0x10, 0x0, + 0xf, 0xc0, + + /* U+006F "o" */ + 0x0, 0x19, 0xef, 0xe9, 0x10, 0x0, 0x1e, 0xfc, + 0x9b, 0xfe, 0x20, 0xb, 0xf6, 0x0, 0x6, 0xfb, + 0x1, 0xfc, 0x0, 0x0, 0xc, 0xf2, 0x4f, 0x80, + 0x0, 0x0, 0x8f, 0x44, 0xf7, 0x0, 0x0, 0x7, + 0xf5, 0x4f, 0x90, 0x0, 0x0, 0x8f, 0x41, 0xfd, + 0x0, 0x0, 0xc, 0xf1, 0xb, 0xf6, 0x0, 0x6, + 0xfc, 0x0, 0x1e, 0xfb, 0x8b, 0xfe, 0x20, 0x0, + 0x19, 0xef, 0xe9, 0x10, 0x0, + + /* U+0070 "p" */ + 0xbe, 0x3b, 0xfe, 0xa2, 0x0, 0xbf, 0xfa, 0x35, + 0xee, 0x20, 0xbf, 0xa0, 0x0, 0x2f, 0xb0, 0xbf, + 0x30, 0x0, 0xb, 0xf1, 0xbf, 0x0, 0x0, 0x8, + 0xf3, 0xbe, 0x0, 0x0, 0x7, 0xf4, 0xbf, 0x0, + 0x0, 0x9, 0xf3, 0xbf, 0x30, 0x0, 0xc, 0xf0, + 0xbf, 0xb0, 0x0, 0x6f, 0xa0, 0xbf, 0xed, 0x8a, + 0xfd, 0x10, 0xbf, 0x2b, 0xfe, 0x91, 0x0, 0xbf, + 0x10, 0x0, 0x0, 0x0, 0xbf, 0x10, 0x0, 0x0, + 0x0, 0xbf, 0x10, 0x0, 0x0, 0x0, 0xbf, 0x10, + 0x0, 0x0, 0x0, + + /* U+0071 "q" */ + 0x0, 0x2a, 0xef, 0xb1, 0xeb, 0x2, 0xef, 0x97, + 0xde, 0xeb, 0xb, 0xf5, 0x0, 0xc, 0xfb, 0x1f, + 0xc0, 0x0, 0x3, 0xfb, 0x3f, 0x90, 0x0, 0x0, + 0xfb, 0x4f, 0x80, 0x0, 0x0, 0xeb, 0x3f, 0xa0, + 0x0, 0x0, 0xfb, 0xf, 0xd0, 0x0, 0x3, 0xfb, + 0x9, 0xf6, 0x0, 0xb, 0xfb, 0x1, 0xdf, 0xb8, + 0xde, 0xfb, 0x0, 0x19, 0xef, 0xb3, 0xfb, 0x0, + 0x0, 0x0, 0x1, 0xfb, 0x0, 0x0, 0x0, 0x1, + 0xfb, 0x0, 0x0, 0x0, 0x1, 0xfb, 0x0, 0x0, + 0x0, 0x1, 0xfb, + + /* U+0072 "r" */ + 0xbe, 0x3d, 0xfa, 0xbe, 0xec, 0xb8, 0xbf, 0xa0, + 0x0, 0xbf, 0x30, 0x0, 0xbf, 0x10, 0x0, 0xbf, + 0x10, 0x0, 0xbf, 0x10, 0x0, 0xbf, 0x10, 0x0, + 0xbf, 0x10, 0x0, 0xbf, 0x10, 0x0, 0xbf, 0x10, + 0x0, + + /* U+0073 "s" */ + 0x0, 0x7d, 0xfe, 0xb4, 0x0, 0x8, 0xfc, 0x89, + 0xef, 0x40, 0xf, 0xb0, 0x0, 0x2f, 0xb0, 0xf, + 0xd1, 0x0, 0x2, 0x0, 0x9, 0xff, 0xb7, 0x20, + 0x0, 0x0, 0x6d, 0xff, 0xfd, 0x30, 0x0, 0x0, + 0x16, 0xbf, 0xe0, 0x28, 0x40, 0x0, 0xb, 0xf3, + 0x1f, 0xc0, 0x0, 0xc, 0xf1, 0x8, 0xfd, 0x98, + 0xdf, 0x80, 0x0, 0x6c, 0xef, 0xc6, 0x0, + + /* U+0074 "t" */ + 0x0, 0x34, 0x0, 0x4, 0xf6, 0x0, 0x5, 0xf6, + 0x0, 0x5, 0xf6, 0x0, 0xaf, 0xff, 0xf2, 0x4a, + 0xfa, 0x61, 0x5, 0xf6, 0x0, 0x5, 0xf6, 0x0, + 0x5, 0xf6, 0x0, 0x5, 0xf6, 0x0, 0x5, 0xf6, + 0x0, 0x5, 0xf6, 0x0, 0x5, 0xf7, 0x0, 0x3, + 0xff, 0xb2, 0x0, 0x9f, 0xf4, + + /* U+0075 "u" */ + 0xbf, 0x0, 0x0, 0x1f, 0xbb, 0xf0, 0x0, 0x1, + 0xfb, 0xbf, 0x0, 0x0, 0x1f, 0xbb, 0xf0, 0x0, + 0x1, 0xfb, 0xbf, 0x0, 0x0, 0x1f, 0xbb, 0xf0, + 0x0, 0x1, 0xfb, 0xbf, 0x0, 0x0, 0x1f, 0xbb, + 0xf1, 0x0, 0x4, 0xfb, 0x8f, 0x70, 0x0, 0xcf, + 0xb2, 0xff, 0xba, 0xec, 0xeb, 0x4, 0xcf, 0xe9, + 0x1e, 0xb0, + + /* U+0076 "v" */ + 0x9f, 0x40, 0x0, 0x3, 0xf9, 0x3f, 0x90, 0x0, + 0x9, 0xf3, 0xd, 0xe0, 0x0, 0xe, 0xd0, 0x7, + 0xf4, 0x0, 0x3f, 0x80, 0x2, 0xfa, 0x0, 0x9f, + 0x20, 0x0, 0xcf, 0x0, 0xec, 0x0, 0x0, 0x6f, + 0x44, 0xf7, 0x0, 0x0, 0x1f, 0x99, 0xf1, 0x0, + 0x0, 0xb, 0xee, 0xb0, 0x0, 0x0, 0x5, 0xff, + 0x60, 0x0, 0x0, 0x0, 0xff, 0x0, 0x0, + + /* U+0077 "w" */ + 0xcf, 0x0, 0x0, 0xcf, 0x40, 0x0, 0x9f, 0x28, + 0xf4, 0x0, 0x1f, 0xf8, 0x0, 0xd, 0xd0, 0x3f, + 0x80, 0x5, 0xff, 0xb0, 0x2, 0xf8, 0x0, 0xec, + 0x0, 0x9e, 0xaf, 0x0, 0x6f, 0x40, 0xa, 0xf0, + 0xd, 0xa6, 0xf3, 0xa, 0xf0, 0x0, 0x5f, 0x41, + 0xf6, 0x2f, 0x70, 0xfa, 0x0, 0x1, 0xf9, 0x5f, + 0x20, 0xeb, 0x3f, 0x50, 0x0, 0xc, 0xd9, 0xe0, + 0xa, 0xf8, 0xf1, 0x0, 0x0, 0x7f, 0xea, 0x0, + 0x6f, 0xfc, 0x0, 0x0, 0x3, 0xff, 0x60, 0x2, + 0xff, 0x70, 0x0, 0x0, 0xe, 0xf2, 0x0, 0xe, + 0xf3, 0x0, 0x0, + + /* U+0078 "x" */ + 0x3f, 0xe0, 0x0, 0xd, 0xf3, 0x9, 0xf8, 0x0, + 0x8f, 0x80, 0x0, 0xdf, 0x23, 0xfd, 0x0, 0x0, + 0x4f, 0xcd, 0xf2, 0x0, 0x0, 0x9, 0xff, 0x70, + 0x0, 0x0, 0x4, 0xff, 0x30, 0x0, 0x0, 0xd, + 0xff, 0xd0, 0x0, 0x0, 0x8f, 0x77, 0xf8, 0x0, + 0x3, 0xfd, 0x0, 0xdf, 0x30, 0xd, 0xf3, 0x0, + 0x3f, 0xd0, 0x8f, 0x90, 0x0, 0x9, 0xf8, + + /* U+0079 "y" */ + 0x7f, 0x60, 0x0, 0x1, 0xfa, 0x2f, 0xb0, 0x0, + 0x7, 0xf4, 0xc, 0xf1, 0x0, 0xd, 0xe0, 0x6, + 0xf7, 0x0, 0x3f, 0x80, 0x0, 0xfc, 0x0, 0x8f, + 0x30, 0x0, 0xaf, 0x20, 0xed, 0x0, 0x0, 0x4f, + 0x73, 0xf7, 0x0, 0x0, 0xe, 0xc8, 0xf1, 0x0, + 0x0, 0x8, 0xfe, 0xb0, 0x0, 0x0, 0x2, 0xff, + 0x50, 0x0, 0x0, 0x0, 0xdf, 0x0, 0x0, 0x0, + 0x0, 0xfa, 0x0, 0x0, 0x0, 0x8, 0xf3, 0x0, + 0x0, 0xc, 0xdf, 0xb0, 0x0, 0x0, 0xb, 0xfb, + 0x10, 0x0, 0x0, + + /* U+007A "z" */ + 0x3f, 0xff, 0xff, 0xff, 0xf4, 0x17, 0x77, 0x77, + 0x9f, 0xe1, 0x0, 0x0, 0x0, 0xdf, 0x30, 0x0, + 0x0, 0xa, 0xf6, 0x0, 0x0, 0x0, 0x8f, 0xa0, + 0x0, 0x0, 0x5, 0xfc, 0x0, 0x0, 0x0, 0x2f, + 0xe1, 0x0, 0x0, 0x1, 0xdf, 0x40, 0x0, 0x0, + 0xb, 0xf6, 0x0, 0x0, 0x0, 0x7f, 0xe8, 0x89, + 0x99, 0x95, 0x9f, 0xff, 0xff, 0xff, 0xf9, + + /* U+007B "{" */ + 0x0, 0x5, 0xef, 0x30, 0x1, 0xfe, 0xa2, 0x0, + 0x5f, 0x50, 0x0, 0x6, 0xf3, 0x0, 0x0, 0x6f, + 0x30, 0x0, 0x7, 0xf3, 0x0, 0x0, 0x8f, 0x20, + 0x0, 0xd, 0xd0, 0x0, 0x4e, 0xe3, 0x0, 0x7, + 0xfa, 0x0, 0x0, 0x4, 0xfa, 0x0, 0x0, 0xa, + 0xf0, 0x0, 0x0, 0x7f, 0x20, 0x0, 0x6, 0xf3, + 0x0, 0x0, 0x6f, 0x30, 0x0, 0x6, 0xf3, 0x0, + 0x0, 0x5f, 0x50, 0x0, 0x1, 0xfe, 0x92, 0x0, + 0x5, 0xef, 0x30, + + /* U+007C "|" */ + 0x2f, 0x62, 0xf6, 0x2f, 0x62, 0xf6, 0x2f, 0x62, + 0xf6, 0x2f, 0x62, 0xf6, 0x2f, 0x62, 0xf6, 0x2f, + 0x62, 0xf6, 0x2f, 0x62, 0xf6, 0x2f, 0x62, 0xf6, + 0x2f, 0x62, 0xf6, 0x2f, 0x60, + + /* U+007D "}" */ + 0x8f, 0xc2, 0x0, 0x5, 0xbf, 0xc0, 0x0, 0x0, + 0xaf, 0x0, 0x0, 0x9, 0xf0, 0x0, 0x0, 0x9f, + 0x10, 0x0, 0x8, 0xf1, 0x0, 0x0, 0x7f, 0x30, + 0x0, 0x3, 0xf8, 0x0, 0x0, 0x7, 0xfc, 0x10, + 0x0, 0x3d, 0xf1, 0x0, 0xe, 0xc2, 0x0, 0x5, + 0xf4, 0x0, 0x0, 0x8f, 0x20, 0x0, 0x8, 0xf1, + 0x0, 0x0, 0x8f, 0x10, 0x0, 0x9, 0xf0, 0x0, + 0x0, 0xbf, 0x0, 0x5, 0xbf, 0xb0, 0x0, 0x8f, + 0xb1, 0x0, 0x0, + + /* U+007E "~" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6d, 0xfe, + 0xa5, 0x0, 0x3a, 0x2f, 0xff, 0xff, 0xff, 0xff, + 0xd2, 0x91, 0x1, 0x6b, 0xff, 0xc4, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, + + /* U+F001 "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x31, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x15, 0xae, 0xfd, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x2, 0x7c, 0xff, 0xff, 0xff, 0x0, 0x0, + 0x0, 0x0, 0x49, 0xef, 0xff, 0xff, 0xff, 0xff, + 0x0, 0x0, 0x4, 0xbf, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0xf, 0xff, + 0xff, 0xff, 0xff, 0xfb, 0x69, 0xff, 0x0, 0x0, + 0xf, 0xff, 0xff, 0xfe, 0x95, 0x0, 0x8, 0xff, + 0x0, 0x0, 0xf, 0xff, 0xc7, 0x30, 0x0, 0x0, + 0x8, 0xff, 0x0, 0x0, 0xf, 0xf8, 0x0, 0x0, + 0x0, 0x0, 0x8, 0xff, 0x0, 0x0, 0xf, 0xf8, + 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0x0, 0x0, + 0xf, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, + 0x0, 0x0, 0xf, 0xf8, 0x0, 0x0, 0x0, 0x0, + 0x8, 0xff, 0x0, 0x0, 0xf, 0xf8, 0x0, 0x0, + 0x1, 0x7b, 0xbd, 0xff, 0x0, 0x0, 0xf, 0xf8, + 0x0, 0x0, 0x1e, 0xff, 0xff, 0xff, 0x0, 0x13, + 0x3f, 0xf8, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, + 0x2b, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x4f, 0xff, + 0xff, 0xfc, 0xdf, 0xff, 0xff, 0xf8, 0x0, 0x0, + 0x6, 0xef, 0xff, 0xa1, 0xff, 0xff, 0xff, 0xf7, + 0x0, 0x0, 0x0, 0x2, 0x20, 0x0, 0x7f, 0xff, + 0xff, 0xd1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2, 0x8a, 0xa6, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, + + /* U+F008 "" */ + 0xc4, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x40, 0x4c, 0xfd, 0xcd, 0xff, 0xee, 0xee, 0xee, + 0xee, 0xff, 0xdc, 0xdf, 0xfa, 0x8a, 0xfa, 0x0, + 0x0, 0x0, 0x0, 0xaf, 0xb8, 0xaf, 0xf4, 0x3, + 0xfa, 0x0, 0x0, 0x0, 0x0, 0x9f, 0x40, 0x4f, + 0xf4, 0x4, 0xfa, 0x0, 0x0, 0x0, 0x0, 0x9f, + 0x50, 0x4f, 0xff, 0xff, 0xfa, 0x0, 0x0, 0x0, + 0x0, 0x9f, 0xff, 0xff, 0xf7, 0x47, 0xfd, 0x77, + 0x77, 0x77, 0x77, 0xdf, 0x84, 0x7f, 0xf4, 0x3, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x40, 0x4f, + 0xf7, 0x47, 0xfd, 0x77, 0x77, 0x77, 0x77, 0xdf, + 0x84, 0x7f, 0xff, 0xff, 0xfa, 0x0, 0x0, 0x0, + 0x0, 0x9f, 0xff, 0xff, 0xf4, 0x4, 0xfa, 0x0, + 0x0, 0x0, 0x0, 0x9f, 0x50, 0x4f, 0xf4, 0x3, + 0xfa, 0x0, 0x0, 0x0, 0x0, 0x9f, 0x40, 0x4f, + 0xfa, 0x8a, 0xfa, 0x0, 0x0, 0x0, 0x0, 0xaf, + 0xb8, 0xaf, 0xfd, 0xcd, 0xff, 0xee, 0xee, 0xee, + 0xee, 0xff, 0xdc, 0xdf, 0xc4, 0x3, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x40, 0x4c, + + /* U+F00B "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xdf, 0xff, 0xfa, 0xc, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfd, 0xff, 0xff, 0xfd, 0xe, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfd, 0xe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfd, 0xe, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xcf, 0xff, 0xf9, 0xa, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, + 0xf9, 0xb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, + 0xff, 0xff, 0xfd, 0xe, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfd, 0xe, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xe, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcf, 0xff, + 0xfa, 0xb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xcf, 0xff, 0xf9, 0xa, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfb, 0xff, 0xff, 0xfd, 0xe, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfd, 0xe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfd, 0xe, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xdf, 0xff, 0xfa, 0xc, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfd, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+F00C "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x4e, 0x60, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x4, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x4f, 0xff, 0xff, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, 0xff, 0xf6, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4f, 0xff, + 0xff, 0x60, 0x6, 0xe4, 0x0, 0x0, 0x0, 0x4, + 0xff, 0xff, 0xf6, 0x0, 0x7f, 0xff, 0x40, 0x0, + 0x0, 0x4f, 0xff, 0xff, 0x60, 0x0, 0xff, 0xff, + 0xf4, 0x0, 0x4, 0xff, 0xff, 0xf6, 0x0, 0x0, + 0x6f, 0xff, 0xff, 0x40, 0x4f, 0xff, 0xff, 0x60, + 0x0, 0x0, 0x6, 0xff, 0xff, 0xf8, 0xff, 0xff, + 0xf5, 0x0, 0x0, 0x0, 0x0, 0x6f, 0xff, 0xff, + 0xff, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0x5, + 0xff, 0xff, 0xff, 0xf5, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x5f, 0xff, 0xff, 0x50, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x5, 0xff, 0xf5, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5e, + 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+F00D "" */ + 0x6, 0x70, 0x0, 0x0, 0x0, 0x18, 0x40, 0x8f, + 0xfb, 0x0, 0x0, 0x1, 0xdf, 0xf4, 0xff, 0xff, + 0xb0, 0x0, 0x1d, 0xff, 0xfb, 0x7f, 0xff, 0xfb, + 0x1, 0xdf, 0xff, 0xf4, 0x8, 0xff, 0xff, 0xbd, + 0xff, 0xff, 0x40, 0x0, 0x8f, 0xff, 0xff, 0xff, + 0xf4, 0x0, 0x0, 0x8, 0xff, 0xff, 0xff, 0x40, + 0x0, 0x0, 0x1, 0xef, 0xff, 0xfc, 0x0, 0x0, + 0x0, 0x1d, 0xff, 0xff, 0xff, 0xb0, 0x0, 0x1, + 0xdf, 0xff, 0xff, 0xff, 0xfb, 0x0, 0x1d, 0xff, + 0xff, 0x48, 0xff, 0xff, 0xb0, 0xcf, 0xff, 0xf4, + 0x0, 0x8f, 0xff, 0xf9, 0xdf, 0xff, 0x40, 0x0, + 0x8, 0xff, 0xf9, 0x2e, 0xf4, 0x0, 0x0, 0x0, + 0x8f, 0xc0, 0x0, 0x10, 0x0, 0x0, 0x0, 0x1, + 0x0, + + /* U+F011 "" */ + 0x0, 0x0, 0x0, 0x0, 0x26, 0x50, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xf3, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x64, 0x0, + 0xdf, 0xf4, 0x0, 0x72, 0x0, 0x0, 0x0, 0xb, + 0xfe, 0x10, 0xdf, 0xf4, 0x9, 0xfe, 0x30, 0x0, + 0x0, 0xaf, 0xff, 0x50, 0xdf, 0xf4, 0xe, 0xff, + 0xe1, 0x0, 0x5, 0xff, 0xfb, 0x0, 0xdf, 0xf4, + 0x5, 0xff, 0xfb, 0x0, 0xd, 0xff, 0xb0, 0x0, + 0xdf, 0xf4, 0x0, 0x5f, 0xff, 0x40, 0x4f, 0xff, + 0x20, 0x0, 0xdf, 0xf4, 0x0, 0xb, 0xff, 0xa0, + 0x8f, 0xfb, 0x0, 0x0, 0xdf, 0xf4, 0x0, 0x4, + 0xff, 0xf0, 0xbf, 0xf7, 0x0, 0x0, 0xdf, 0xf4, + 0x0, 0x1, 0xff, 0xf1, 0xbf, 0xf6, 0x0, 0x0, + 0xdf, 0xf4, 0x0, 0x0, 0xff, 0xf2, 0xbf, 0xf7, + 0x0, 0x0, 0x8d, 0xc1, 0x0, 0x0, 0xff, 0xf1, + 0x8f, 0xfa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, + 0xff, 0xf0, 0x4f, 0xff, 0x10, 0x0, 0x0, 0x0, + 0x0, 0xa, 0xff, 0xb0, 0xe, 0xff, 0xb0, 0x0, + 0x0, 0x0, 0x0, 0x4f, 0xff, 0x50, 0x6, 0xff, + 0xf9, 0x0, 0x0, 0x0, 0x4, 0xff, 0xfc, 0x0, + 0x0, 0xaf, 0xff, 0xd5, 0x10, 0x3, 0x9f, 0xff, + 0xf2, 0x0, 0x0, 0xb, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x40, 0x0, 0x0, 0x0, 0x8f, 0xff, + 0xff, 0xff, 0xff, 0xd2, 0x0, 0x0, 0x0, 0x0, + 0x2, 0x9e, 0xff, 0xff, 0xb6, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x12, 0x10, 0x0, 0x0, + 0x0, 0x0, + + /* U+F013 "" */ + 0x0, 0x0, 0x0, 0x0, 0x2, 0x20, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0xff, 0xff, + 0x60, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, + 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1, + 0x0, 0x2b, 0xff, 0xff, 0xb2, 0x0, 0x10, 0x0, + 0x0, 0x8f, 0x87, 0xff, 0xff, 0xff, 0xff, 0x79, + 0xf8, 0x0, 0x4, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x40, 0xc, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x2f, 0xff, + 0xff, 0xff, 0xc7, 0x7c, 0xff, 0xff, 0xff, 0xf2, + 0x7, 0xff, 0xff, 0xfa, 0x0, 0x0, 0xaf, 0xff, + 0xff, 0x70, 0x0, 0x6f, 0xff, 0xf1, 0x0, 0x0, + 0x1f, 0xff, 0xf6, 0x0, 0x0, 0x7f, 0xff, 0xe0, + 0x0, 0x0, 0xe, 0xff, 0xf7, 0x0, 0x0, 0x6f, + 0xff, 0xf1, 0x0, 0x0, 0x1f, 0xff, 0xf6, 0x0, + 0x7, 0xff, 0xff, 0xfa, 0x0, 0x0, 0xaf, 0xff, + 0xff, 0x70, 0x2f, 0xff, 0xff, 0xff, 0xc7, 0x7c, + 0xff, 0xff, 0xff, 0xf2, 0xc, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x4, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x40, + 0x0, 0x8f, 0x97, 0xff, 0xff, 0xff, 0xff, 0x78, + 0xf8, 0x0, 0x0, 0x1, 0x0, 0x1b, 0xff, 0xff, + 0xb1, 0x0, 0x10, 0x0, 0x0, 0x0, 0x0, 0x8, + 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x6, 0xff, 0xff, 0x60, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2, 0x20, 0x0, 0x0, + 0x0, 0x0, + + /* U+F015 "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x46, 0x10, 0x0, + 0x67, 0x60, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x9f, 0xfe, 0x20, 0xf, 0xff, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1, 0xbf, 0xff, 0xff, 0x51, 0xff, + 0xf1, 0x0, 0x0, 0x0, 0x0, 0x2, 0xdf, 0xfc, + 0x8f, 0xff, 0x8f, 0xff, 0x10, 0x0, 0x0, 0x0, + 0x4, 0xff, 0xfa, 0x0, 0x4e, 0xff, 0xff, 0xf1, + 0x0, 0x0, 0x0, 0x7, 0xff, 0xf7, 0x8, 0xd3, + 0x2d, 0xff, 0xff, 0x10, 0x0, 0x0, 0xa, 0xff, + 0xf5, 0x1b, 0xff, 0xf5, 0xb, 0xff, 0xf4, 0x0, + 0x0, 0x1c, 0xff, 0xe2, 0x2d, 0xff, 0xff, 0xf7, + 0x8, 0xff, 0xf6, 0x0, 0x3e, 0xff, 0xc1, 0x4e, + 0xff, 0xff, 0xff, 0xfa, 0x5, 0xff, 0xf9, 0xe, + 0xff, 0x90, 0x6f, 0xff, 0xff, 0xff, 0xff, 0xfc, + 0x13, 0xef, 0xf6, 0x4f, 0x70, 0x9f, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfe, 0x31, 0xcc, 0x0, 0x0, + 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, + 0x0, 0x0, 0x0, 0x4, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x4f, + 0xff, 0xff, 0x80, 0x1, 0xef, 0xff, 0xfc, 0x0, + 0x0, 0x0, 0x4, 0xff, 0xff, 0xf6, 0x0, 0xe, + 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x4f, 0xff, + 0xff, 0x60, 0x0, 0xef, 0xff, 0xfc, 0x0, 0x0, + 0x0, 0x4, 0xff, 0xff, 0xf6, 0x0, 0xe, 0xff, + 0xff, 0xc0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xff, + 0x40, 0x0, 0xcf, 0xff, 0xfa, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, + + /* U+F019 "" */ + 0x0, 0x0, 0x0, 0x0, 0x56, 0x65, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, + 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, + 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x8, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x8, 0xff, 0xff, 0x80, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0xff, + 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, + 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x8, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, + 0x0, 0x7, 0xee, 0xef, 0xff, 0xff, 0xfe, 0xee, + 0x70, 0x0, 0x0, 0x5, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x50, 0x0, 0x0, 0x0, 0x6f, 0xff, + 0xff, 0xff, 0xff, 0xf5, 0x0, 0x0, 0x0, 0x0, + 0x5, 0xff, 0xff, 0xff, 0xff, 0x50, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x5f, 0xff, 0xff, 0xf5, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x5, 0xff, 0xff, + 0x50, 0x0, 0x0, 0x0, 0x7a, 0xaa, 0xaa, 0x91, + 0x4f, 0xf4, 0x19, 0xaa, 0xaa, 0xa7, 0xff, 0xff, + 0xff, 0xfd, 0x23, 0x32, 0xdf, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf9, 0x9f, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfb, 0xf, 0x48, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xef, 0xef, 0xff, + 0x14, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, + 0x44, 0x41, + + /* U+F01C "" */ + 0x0, 0x0, 0x3d, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf9, 0x0, 0x0, 0x0, 0x0, 0x1e, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, + 0xa, 0xff, 0x98, 0x88, 0x88, 0x88, 0x88, 0xdf, + 0xf3, 0x0, 0x0, 0x5, 0xff, 0xa0, 0x0, 0x0, + 0x0, 0x0, 0x2, 0xff, 0xd0, 0x0, 0x1, 0xef, + 0xe1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, + 0x80, 0x0, 0xaf, 0xf5, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xd, 0xff, 0x20, 0x5f, 0xfa, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, + 0xd, 0xff, 0x98, 0x88, 0x70, 0x0, 0x0, 0x3, + 0x88, 0x88, 0xdf, 0xf5, 0xff, 0xff, 0xff, 0xff, + 0x50, 0x0, 0x0, 0xcf, 0xff, 0xff, 0xff, 0x7f, + 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x5f, 0xff, + 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8f, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x8e, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf6, 0x5e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfb, 0x0, + + /* U+F021 "" */ + 0x0, 0x0, 0x0, 0x0, 0x1, 0x10, 0x0, 0x0, + 0x7, 0xba, 0x0, 0x0, 0x1, 0x7c, 0xff, 0xff, + 0xb5, 0x0, 0xb, 0xff, 0x0, 0x0, 0x7f, 0xff, + 0xff, 0xff, 0xff, 0xe5, 0xb, 0xff, 0x0, 0xa, + 0xff, 0xff, 0xdb, 0xbe, 0xff, 0xff, 0x9a, 0xff, + 0x0, 0xaf, 0xff, 0xa2, 0x0, 0x0, 0x3b, 0xff, + 0xff, 0xff, 0x5, 0xff, 0xf6, 0x0, 0x0, 0x0, + 0x0, 0x5f, 0xff, 0xff, 0xd, 0xff, 0x60, 0x0, + 0x0, 0x7, 0xba, 0x9c, 0xff, 0xff, 0x3f, 0xfc, + 0x0, 0x0, 0x0, 0xc, 0xff, 0xff, 0xff, 0xff, + 0x7f, 0xf6, 0x0, 0x0, 0x0, 0xb, 0xff, 0xff, + 0xff, 0xff, 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, 0x0, + 0xff, 0xff, 0xff, 0xff, 0xb0, 0x0, 0x0, 0x0, + 0x6f, 0xf6, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, + 0x0, 0x0, 0xcf, 0xf3, 0xff, 0xff, 0xc9, 0xaa, + 0x70, 0x0, 0x0, 0x7, 0xff, 0xd0, 0xff, 0xff, + 0xf5, 0x0, 0x0, 0x0, 0x0, 0x6f, 0xff, 0x50, + 0xff, 0xff, 0xff, 0xb3, 0x0, 0x0, 0x3b, 0xff, + 0xf9, 0x0, 0xff, 0xa9, 0xff, 0xff, 0xeb, 0xbd, + 0xff, 0xff, 0xa0, 0x0, 0xff, 0xb0, 0x5d, 0xff, + 0xff, 0xff, 0xff, 0xf7, 0x0, 0x0, 0xff, 0xb0, + 0x0, 0x5b, 0xff, 0xff, 0xc8, 0x10, 0x0, 0x0, + 0xab, 0x70, 0x0, 0x0, 0x1, 0x10, 0x0, 0x0, + 0x0, 0x0, + + /* U+F026 "" */ + 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, + 0x2, 0xee, 0x0, 0x0, 0x0, 0x2e, 0xff, 0x0, + 0x0, 0x2, 0xef, 0xff, 0x47, 0x77, 0x7e, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, + 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x9, 0xff, + 0xff, 0x0, 0x0, 0x0, 0x9f, 0xff, 0x0, 0x0, + 0x0, 0x9, 0xff, 0x0, 0x0, 0x0, 0x0, 0x89, + + /* U+F027 "" */ + 0x0, 0x0, 0x0, 0x0, 0x89, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x9f, 0xf0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x9f, 0xff, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x9f, 0xff, 0xf0, 0x0, 0x0, 0xdf, 0xff, + 0xff, 0xff, 0xff, 0x0, 0x73, 0xf, 0xff, 0xff, + 0xff, 0xff, 0xf0, 0x1f, 0xf4, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x0, 0x5f, 0xcf, 0xff, 0xff, 0xff, + 0xff, 0xf0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x0, 0x4f, 0xdf, 0xff, 0xff, 0xff, 0xff, + 0xf0, 0x1f, 0xf5, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x0, 0x85, 0x4, 0x77, 0x77, 0xef, 0xff, 0xf0, + 0x0, 0x0, 0x0, 0x0, 0x2, 0xef, 0xff, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2, 0xef, 0xf0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2, 0xee, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1, 0x10, 0x0, 0x0, + + /* U+F028 "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x7b, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x10, 0x0, 0x0, 0x9, 0xfe, 0x30, 0x0, 0x0, + 0x0, 0x0, 0x2, 0xee, 0x0, 0x0, 0x0, 0x9, + 0xff, 0x20, 0x0, 0x0, 0x0, 0x2, 0xef, 0xf0, + 0x0, 0x8, 0x70, 0x8, 0xfd, 0x0, 0x0, 0x0, + 0x2, 0xef, 0xff, 0x0, 0x0, 0xef, 0xb0, 0xc, + 0xf6, 0x4, 0x77, 0x77, 0xef, 0xff, 0xf0, 0x0, + 0x2, 0xdf, 0x80, 0x3f, 0xd0, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x0, 0x74, 0x1, 0xff, 0x10, 0xcf, + 0x3f, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x1f, 0xf4, + 0x8, 0xf7, 0x7, 0xf6, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x0, 0x5f, 0xc0, 0x3f, 0xa0, 0x4f, 0x9f, + 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0xff, 0x2, + 0xfb, 0x4, 0xf9, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x0, 0x5f, 0xc0, 0x3f, 0xa0, 0x5f, 0x9f, 0xff, + 0xff, 0xff, 0xff, 0xf0, 0x1f, 0xf4, 0x8, 0xf7, + 0x7, 0xf6, 0xdf, 0xff, 0xff, 0xff, 0xff, 0x0, + 0x74, 0x2, 0xff, 0x10, 0xcf, 0x30, 0x0, 0x0, + 0x9f, 0xff, 0xf0, 0x0, 0x2, 0xef, 0x80, 0x3f, + 0xd0, 0x0, 0x0, 0x0, 0x9f, 0xff, 0x0, 0x0, + 0xef, 0xb0, 0xc, 0xf6, 0x0, 0x0, 0x0, 0x0, + 0x9f, 0xf0, 0x0, 0x8, 0x70, 0x8, 0xfd, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x89, 0x0, 0x0, 0x0, + 0x8, 0xff, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x9, 0xff, 0x30, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7b, + 0x20, 0x0, 0x0, + + /* U+F03E "" */ + 0x5e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xe5, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfe, 0xff, 0xf6, 0x38, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x60, + 0x0, 0xaf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x30, 0x0, 0x7f, 0xff, 0xff, 0xfb, 0xef, + 0xff, 0xff, 0xff, 0x80, 0x0, 0xcf, 0xff, 0xff, + 0x90, 0x3e, 0xff, 0xff, 0xff, 0xfa, 0x7c, 0xff, + 0xff, 0xf9, 0x0, 0x3, 0xef, 0xff, 0xff, 0xff, + 0xfc, 0xff, 0xff, 0x90, 0x0, 0x0, 0x3e, 0xff, + 0xff, 0xff, 0x90, 0x6f, 0xf9, 0x0, 0x0, 0x0, + 0x8, 0xff, 0xff, 0xf9, 0x0, 0x6, 0x90, 0x0, + 0x0, 0x0, 0x8, 0xff, 0xff, 0xb0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0xff, 0x80, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, + 0xff, 0xc8, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, + 0x8c, 0xff, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfe, 0x5e, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xe5, + + /* U+F043 "" */ + 0x0, 0x0, 0x0, 0x42, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x3, 0xff, 0x10, 0x0, 0x0, 0x0, 0x0, + 0xa, 0xff, 0x60, 0x0, 0x0, 0x0, 0x0, 0x1f, + 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xff, + 0xf4, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfc, + 0x0, 0x0, 0x0, 0xa, 0xff, 0xff, 0xff, 0x60, + 0x0, 0x0, 0x4f, 0xff, 0xff, 0xff, 0xf2, 0x0, + 0x1, 0xef, 0xff, 0xff, 0xff, 0xfc, 0x0, 0xb, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x70, 0x3f, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf1, 0xaf, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf6, 0xef, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfa, 0xff, 0xa6, 0xff, 0xff, 0xff, + 0xff, 0xfb, 0xef, 0x91, 0xff, 0xff, 0xff, 0xff, + 0xfa, 0xbf, 0xe0, 0x9f, 0xff, 0xff, 0xff, 0xf7, + 0x5f, 0xf9, 0x7, 0xcf, 0xff, 0xff, 0xf2, 0xc, + 0xff, 0xb3, 0x9, 0xff, 0xff, 0x80, 0x1, 0xdf, + 0xff, 0xff, 0xff, 0xfa, 0x0, 0x0, 0x9, 0xff, + 0xff, 0xff, 0x70, 0x0, 0x0, 0x0, 0x15, 0x77, + 0x40, 0x0, 0x0, + + /* U+F048 "" */ + 0x47, 0x60, 0x0, 0x0, 0x0, 0x16, 0x1b, 0xff, + 0x10, 0x0, 0x0, 0x2d, 0xfb, 0xbf, 0xf1, 0x0, + 0x0, 0x2e, 0xff, 0xcb, 0xff, 0x10, 0x0, 0x3e, + 0xff, 0xfc, 0xbf, 0xf1, 0x0, 0x4f, 0xff, 0xff, + 0xcb, 0xff, 0x10, 0x5f, 0xff, 0xff, 0xfc, 0xbf, + 0xf1, 0x6f, 0xff, 0xff, 0xff, 0xcb, 0xff, 0x9f, + 0xff, 0xff, 0xff, 0xfc, 0xbf, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xcb, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfc, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcb, + 0xff, 0x4e, 0xff, 0xff, 0xff, 0xfc, 0xbf, 0xf1, + 0x2d, 0xff, 0xff, 0xff, 0xcb, 0xff, 0x10, 0x1c, + 0xff, 0xff, 0xfc, 0xbf, 0xf1, 0x0, 0xc, 0xff, + 0xff, 0xcb, 0xff, 0x10, 0x0, 0xb, 0xff, 0xfc, + 0xbf, 0xf1, 0x0, 0x0, 0xa, 0xff, 0xca, 0xff, + 0x10, 0x0, 0x0, 0x8, 0xf7, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, + + /* U+F04B "" */ + 0x6, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xbf, 0xfd, 0x30, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xff, 0xff, 0xfa, 0x10, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xf7, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, + 0xd4, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xb2, 0x0, 0x0, 0x0, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x50, 0x0, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, + 0x20, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf2, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf6, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf2, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfb, 0x20, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfd, 0x50, 0x0, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xa2, 0x0, 0x0, 0x0, + 0xff, 0xff, 0xff, 0xff, 0xd4, 0x0, 0x0, 0x0, + 0x0, 0xff, 0xff, 0xff, 0xf7, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xff, 0xff, 0xfa, 0x10, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xbf, 0xfd, 0x30, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x6, 0x50, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+F04C "" */ + 0x6, 0x77, 0x77, 0x30, 0x0, 0x6, 0x77, 0x77, + 0x30, 0xbf, 0xff, 0xff, 0xf3, 0x0, 0xbf, 0xff, + 0xff, 0xf3, 0xff, 0xff, 0xff, 0xf7, 0x0, 0xff, + 0xff, 0xff, 0xf7, 0xff, 0xff, 0xff, 0xf8, 0x0, + 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xf8, + 0x0, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, + 0xf8, 0x0, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, + 0xff, 0xf8, 0x0, 0xff, 0xff, 0xff, 0xf8, 0xff, + 0xff, 0xff, 0xf8, 0x0, 0xff, 0xff, 0xff, 0xf8, + 0xff, 0xff, 0xff, 0xf8, 0x0, 0xff, 0xff, 0xff, + 0xf8, 0xff, 0xff, 0xff, 0xf8, 0x0, 0xff, 0xff, + 0xff, 0xf8, 0xff, 0xff, 0xff, 0xf8, 0x0, 0xff, + 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xf8, 0x0, + 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xf8, + 0x0, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, + 0xf8, 0x0, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, + 0xff, 0xf8, 0x0, 0xff, 0xff, 0xff, 0xf8, 0xff, + 0xff, 0xff, 0xf8, 0x0, 0xff, 0xff, 0xff, 0xf8, + 0xef, 0xff, 0xff, 0xf6, 0x0, 0xef, 0xff, 0xff, + 0xf6, 0x6f, 0xff, 0xff, 0xc1, 0x0, 0x6f, 0xff, + 0xff, 0xc1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, + + /* U+F04D "" */ + 0x5, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, + 0x30, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf7, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, + 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf6, 0x6f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, + + /* U+F051 "" */ + 0x5, 0x20, 0x0, 0x0, 0x0, 0x57, 0x66, 0xff, + 0x40, 0x0, 0x0, 0xc, 0xff, 0x8f, 0xff, 0x60, + 0x0, 0x0, 0xdf, 0xf8, 0xff, 0xff, 0x70, 0x0, + 0xd, 0xff, 0x8f, 0xff, 0xff, 0x80, 0x0, 0xdf, + 0xf8, 0xff, 0xff, 0xff, 0x90, 0xd, 0xff, 0x8f, + 0xff, 0xff, 0xff, 0xb0, 0xdf, 0xf8, 0xff, 0xff, + 0xff, 0xff, 0xcd, 0xff, 0x8f, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, + 0xff, 0xff, 0xff, 0xff, 0x5d, 0xff, 0x8f, 0xff, + 0xff, 0xff, 0x40, 0xdf, 0xf8, 0xff, 0xff, 0xfe, + 0x30, 0xd, 0xff, 0x8f, 0xff, 0xfe, 0x20, 0x0, + 0xdf, 0xf8, 0xff, 0xfd, 0x20, 0x0, 0xd, 0xff, + 0x7f, 0xfd, 0x10, 0x0, 0x0, 0xdf, 0xf3, 0xfb, + 0x10, 0x0, 0x0, 0xc, 0xff, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, + + /* U+F052 "" */ + 0x0, 0x0, 0x0, 0x0, 0x2, 0x10, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0xff, 0x40, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0xff, + 0xff, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, + 0xff, 0xff, 0xfe, 0x20, 0x0, 0x0, 0x0, 0x0, + 0x7, 0xff, 0xff, 0xff, 0xfe, 0x10, 0x0, 0x0, + 0x0, 0x6, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x10, + 0x0, 0x0, 0x5, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfc, 0x0, 0x0, 0x4, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfb, 0x0, 0x3, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfa, 0x0, 0xdf, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, 0xe, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x60, 0x5f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x9f, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xe2, 0xf, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x70, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, + 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x70, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf3, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+F053 "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x5f, 0x80, 0x0, 0x0, 0x0, 0x5f, 0xff, + 0x40, 0x0, 0x0, 0x5f, 0xff, 0xe2, 0x0, 0x0, + 0x5f, 0xff, 0xe2, 0x0, 0x0, 0x5f, 0xff, 0xe3, + 0x0, 0x0, 0x5f, 0xff, 0xe3, 0x0, 0x0, 0x5f, + 0xff, 0xe3, 0x0, 0x0, 0x5f, 0xff, 0xe3, 0x0, + 0x0, 0xd, 0xff, 0xf5, 0x0, 0x0, 0x0, 0x4f, + 0xff, 0xe3, 0x0, 0x0, 0x0, 0x4f, 0xff, 0xe3, + 0x0, 0x0, 0x0, 0x4f, 0xff, 0xe3, 0x0, 0x0, + 0x0, 0x5f, 0xff, 0xe3, 0x0, 0x0, 0x0, 0x5f, + 0xff, 0xe3, 0x0, 0x0, 0x0, 0x5f, 0xff, 0xe2, + 0x0, 0x0, 0x0, 0x5f, 0xff, 0x40, 0x0, 0x0, + 0x0, 0x5f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, + + /* U+F054 "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xdb, 0x0, + 0x0, 0x0, 0x0, 0xcf, 0xfc, 0x0, 0x0, 0x0, + 0x9, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x9, 0xff, + 0xfc, 0x0, 0x0, 0x0, 0x9, 0xff, 0xfc, 0x0, + 0x0, 0x0, 0x9, 0xff, 0xfc, 0x0, 0x0, 0x0, + 0x9, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x9, 0xff, + 0xfc, 0x0, 0x0, 0x0, 0xd, 0xff, 0xf6, 0x0, + 0x0, 0x9, 0xff, 0xfc, 0x0, 0x0, 0x9, 0xff, + 0xfc, 0x0, 0x0, 0x9, 0xff, 0xfc, 0x0, 0x0, + 0x9, 0xff, 0xfc, 0x0, 0x0, 0x9, 0xff, 0xfc, + 0x0, 0x0, 0x9, 0xff, 0xfc, 0x0, 0x0, 0x0, + 0xcf, 0xfc, 0x0, 0x0, 0x0, 0x2, 0xdb, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, + + /* U+F067 "" */ + 0x0, 0x0, 0x0, 0x2, 0x55, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xa0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, + 0xa0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, + 0xff, 0xa0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2f, 0xff, 0xa0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x2f, 0xff, 0xa0, 0x0, 0x0, 0x0, 0x37, + 0x77, 0x77, 0x8f, 0xff, 0xc7, 0x77, 0x77, 0x60, + 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf8, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf5, 0x14, 0x44, 0x44, 0x5f, 0xff, + 0xb4, 0x44, 0x44, 0x30, 0x0, 0x0, 0x0, 0x2f, + 0xff, 0xa0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2f, 0xff, 0xa0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x2f, 0xff, 0xa0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2f, 0xff, 0xa0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1f, 0xff, 0x90, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xd, 0xff, 0x60, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x21, 0x0, + 0x0, 0x0, 0x0, + + /* U+F068 "" */ + 0x49, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf7, 0xcf, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf4, 0x2, 0x22, 0x22, 0x22, + 0x22, 0x22, 0x22, 0x22, 0x10, + + /* U+F06E "" */ + 0x0, 0x0, 0x0, 0x6, 0xad, 0xff, 0xec, 0x83, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xff, + 0xff, 0xef, 0xff, 0xfc, 0x40, 0x0, 0x0, 0x0, + 0x3, 0xef, 0xff, 0x92, 0x0, 0x5, 0xdf, 0xff, + 0x90, 0x0, 0x0, 0x4, 0xff, 0xff, 0x50, 0x2, + 0x52, 0x1, 0xcf, 0xff, 0xb0, 0x0, 0x4, 0xff, + 0xff, 0x80, 0x0, 0x7f, 0xf9, 0x1, 0xef, 0xff, + 0xb0, 0x1, 0xef, 0xff, 0xf0, 0x0, 0x8, 0xff, + 0xf7, 0x8, 0xff, 0xff, 0x80, 0xaf, 0xff, 0xfb, + 0x2, 0x25, 0xff, 0xff, 0xe0, 0x3f, 0xff, 0xff, + 0x2f, 0xff, 0xff, 0xa0, 0x7f, 0xff, 0xff, 0xff, + 0x2, 0xff, 0xff, 0xf7, 0x9f, 0xff, 0xfb, 0x5, + 0xff, 0xff, 0xff, 0xc0, 0x3f, 0xff, 0xff, 0x21, + 0xef, 0xff, 0xf0, 0xc, 0xff, 0xff, 0xf5, 0x7, + 0xff, 0xff, 0x80, 0x3, 0xff, 0xff, 0x80, 0x1a, + 0xff, 0xe5, 0x1, 0xef, 0xff, 0xb0, 0x0, 0x4, + 0xff, 0xff, 0x50, 0x0, 0x10, 0x1, 0xcf, 0xff, + 0xb0, 0x0, 0x0, 0x3, 0xdf, 0xff, 0x92, 0x0, + 0x5, 0xdf, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, + 0x7f, 0xff, 0xff, 0xef, 0xff, 0xfc, 0x40, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x5, 0xad, 0xef, 0xec, + 0x83, 0x0, 0x0, 0x0, 0x0, + + /* U+F070 "" */ + 0x0, 0x60, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, 0xfc, 0x10, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xc, 0xff, 0xe4, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x9f, 0xff, 0x70, 0x4, 0x8c, 0xef, 0xed, 0x94, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x5, 0xff, 0xfb, + 0xef, 0xff, 0xfe, 0xff, 0xff, 0xe6, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x2d, 0xff, 0xff, 0xc4, 0x0, + 0x4, 0xcf, 0xff, 0xb1, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xbf, 0xff, 0x60, 0x3, 0x10, 0x9, 0xff, + 0xfe, 0x20, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, + 0xf9, 0x4f, 0xfa, 0x0, 0xcf, 0xff, 0xe1, 0x0, + 0x0, 0xb, 0xb0, 0x0, 0x4e, 0xff, 0xef, 0xff, + 0xa0, 0x4f, 0xff, 0xfb, 0x0, 0x0, 0x6f, 0xfd, + 0x30, 0x1, 0xcf, 0xff, 0xff, 0xf1, 0xf, 0xff, + 0xff, 0x50, 0x0, 0xbf, 0xff, 0xf6, 0x0, 0x8, + 0xff, 0xff, 0xf3, 0xe, 0xff, 0xff, 0xa0, 0x0, + 0x6f, 0xff, 0xff, 0x0, 0x0, 0x5f, 0xff, 0xf2, + 0xf, 0xff, 0xff, 0x50, 0x0, 0xc, 0xff, 0xff, + 0x40, 0x0, 0x2, 0xdf, 0xfe, 0x8f, 0xff, 0xfa, + 0x0, 0x0, 0x1, 0xef, 0xff, 0xc0, 0x0, 0x0, + 0xa, 0xff, 0xff, 0xff, 0xd1, 0x0, 0x0, 0x0, + 0x2e, 0xff, 0xf9, 0x0, 0x0, 0x0, 0x6f, 0xff, + 0xfd, 0x10, 0x0, 0x0, 0x0, 0x1, 0xcf, 0xff, + 0xc4, 0x0, 0x0, 0x3, 0xef, 0xfd, 0x20, 0x0, + 0x0, 0x0, 0x0, 0x6, 0xef, 0xff, 0xfe, 0xe3, + 0x0, 0x1b, 0xff, 0xf5, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x5, 0x9d, 0xef, 0xec, 0x20, 0x0, 0x8f, + 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4, 0xef, 0xfb, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2c, 0xfa, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x60, + + /* U+F071 "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xa3, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x8f, 0xfe, 0x10, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2, 0xff, 0xff, 0x90, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xa, 0xff, 0xff, 0xf3, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4f, 0xff, 0xff, 0xfb, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xdf, 0xff, 0xff, 0xff, 0x50, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x6, 0xff, 0xff, 0xff, 0xff, + 0xd0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, + 0xff, 0xa2, 0x24, 0xff, 0xf7, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x8f, 0xff, 0x90, 0x1, 0xff, + 0xff, 0x10, 0x0, 0x0, 0x0, 0x0, 0x2, 0xff, + 0xff, 0xa0, 0x2, 0xff, 0xff, 0x90, 0x0, 0x0, + 0x0, 0x0, 0xa, 0xff, 0xff, 0xb0, 0x3, 0xff, + 0xff, 0xf2, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, + 0xff, 0xc0, 0x4, 0xff, 0xff, 0xfb, 0x0, 0x0, + 0x0, 0x0, 0xcf, 0xff, 0xff, 0xd0, 0x5, 0xff, + 0xff, 0xff, 0x40, 0x0, 0x0, 0x6, 0xff, 0xff, + 0xff, 0xf9, 0x9c, 0xff, 0xff, 0xff, 0xd0, 0x0, + 0x0, 0xe, 0xff, 0xff, 0xff, 0xf5, 0x2b, 0xff, + 0xff, 0xff, 0xf7, 0x0, 0x0, 0x8f, 0xff, 0xff, + 0xff, 0x90, 0x1, 0xff, 0xff, 0xff, 0xfe, 0x10, + 0x1, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0xff, + 0xff, 0xff, 0xff, 0x90, 0xa, 0xff, 0xff, 0xff, + 0xff, 0xf4, 0x1a, 0xff, 0xff, 0xff, 0xff, 0xf2, + 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf7, 0xb, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, + 0x1, 0x68, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, + 0x88, 0x88, 0x88, 0x40, + + /* U+F074 "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, + 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xf, 0xf5, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xf, 0xff, 0x50, 0xef, 0xff, + 0xf6, 0x0, 0x0, 0x1, 0xcf, 0xff, 0xff, 0xf5, + 0xff, 0xff, 0xff, 0x50, 0x0, 0xc, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, 0x0, 0xbf, + 0xff, 0xff, 0xff, 0xf7, 0x22, 0x23, 0xdf, 0xf8, + 0x9, 0xff, 0xf7, 0x2f, 0xff, 0x80, 0x0, 0x0, + 0x2e, 0xb0, 0x7f, 0xff, 0x90, 0xf, 0xf8, 0x0, + 0x0, 0x0, 0x3, 0x6, 0xff, 0xfa, 0x0, 0x7, + 0x60, 0x0, 0x0, 0x0, 0x0, 0x4f, 0xff, 0xb0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, + 0xfd, 0x3, 0x0, 0x7, 0x60, 0x0, 0x0, 0x0, + 0x2e, 0xff, 0xe1, 0x3f, 0x90, 0xf, 0xf8, 0x0, + 0x22, 0x23, 0xdf, 0xfe, 0x22, 0xef, 0xf7, 0x2f, + 0xff, 0x80, 0xff, 0xff, 0xff, 0xf3, 0x0, 0xcf, + 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0x50, + 0x0, 0xc, 0xff, 0xff, 0xff, 0xfe, 0xef, 0xff, + 0xf6, 0x0, 0x0, 0x1, 0xcf, 0xff, 0xff, 0xf4, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, + 0xff, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xf, 0xf5, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x4, 0x30, 0x0, + + /* U+F077 "" */ + 0x0, 0x0, 0x0, 0x0, 0x94, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0x50, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, 0xf5, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0xff, + 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, + 0xae, 0xff, 0xf5, 0x0, 0x0, 0x0, 0xc, 0xff, + 0xf9, 0x2, 0xef, 0xff, 0x50, 0x0, 0x0, 0xcf, + 0xff, 0x90, 0x0, 0x2e, 0xff, 0xf5, 0x0, 0xc, + 0xff, 0xf9, 0x0, 0x0, 0x2, 0xef, 0xff, 0x50, + 0xaf, 0xff, 0x90, 0x0, 0x0, 0x0, 0x2e, 0xff, + 0xf2, 0x7f, 0xf9, 0x0, 0x0, 0x0, 0x0, 0x2, + 0xef, 0xe1, 0x6, 0x70, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x29, 0x20, + + /* U+F078 "" */ + 0x6, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x29, + 0x20, 0x7f, 0xf9, 0x0, 0x0, 0x0, 0x0, 0x3, + 0xef, 0xe1, 0x9f, 0xff, 0x90, 0x0, 0x0, 0x0, + 0x3e, 0xff, 0xf2, 0xb, 0xff, 0xf9, 0x0, 0x0, + 0x3, 0xef, 0xff, 0x50, 0x0, 0xbf, 0xff, 0x90, + 0x0, 0x3e, 0xff, 0xf5, 0x0, 0x0, 0xb, 0xff, + 0xf9, 0x3, 0xef, 0xff, 0x50, 0x0, 0x0, 0x0, + 0xbf, 0xff, 0xae, 0xff, 0xf5, 0x0, 0x0, 0x0, + 0x0, 0xb, 0xff, 0xff, 0xff, 0x50, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xbf, 0xff, 0xf5, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xb, 0xff, 0x50, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x94, 0x0, + 0x0, 0x0, 0x0, + + /* U+F079 "" */ + 0x0, 0x0, 0x9c, 0x10, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0xff, + 0xd1, 0x0, 0x58, 0x88, 0x88, 0x88, 0x88, 0x81, + 0x0, 0x0, 0x0, 0xaf, 0xff, 0xfd, 0x20, 0xef, + 0xff, 0xff, 0xff, 0xff, 0xf6, 0x0, 0x0, 0xa, + 0xff, 0xff, 0xff, 0xe2, 0x4e, 0xff, 0xff, 0xff, + 0xff, 0xf6, 0x0, 0x0, 0x8f, 0xfc, 0xff, 0xcf, + 0xfd, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf6, 0x0, + 0x0, 0x7f, 0xc2, 0xff, 0x67, 0xfc, 0x0, 0x0, + 0x0, 0x0, 0x1f, 0xf6, 0x0, 0x0, 0x3, 0x1, + 0xff, 0x60, 0x30, 0x0, 0x0, 0x0, 0x0, 0x1f, + 0xf6, 0x0, 0x0, 0x0, 0x1, 0xff, 0x60, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf6, 0x0, 0x0, + 0x0, 0x1, 0xff, 0x60, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1f, 0xf6, 0x0, 0x0, 0x0, 0x1, 0xff, + 0x60, 0x0, 0x0, 0x0, 0x3, 0xd7, 0x1f, 0xf6, + 0x3d, 0x70, 0x0, 0x1, 0xff, 0x60, 0x0, 0x0, + 0x0, 0xa, 0xff, 0x7f, 0xf9, 0xef, 0xf0, 0x0, + 0x1, 0xff, 0xb8, 0x88, 0x88, 0x88, 0x32, 0xef, + 0xff, 0xff, 0xff, 0x60, 0x0, 0x1, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf2, 0x2e, 0xff, 0xff, 0xf6, + 0x0, 0x0, 0x0, 0xdf, 0xff, 0xff, 0xff, 0xff, + 0xe2, 0x2, 0xef, 0xff, 0x60, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2e, + 0xf6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1, 0x30, 0x0, 0x0, + + /* U+F07B "" */ + 0x5e, 0xff, 0xff, 0xff, 0x90, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xef, 0xff, 0xff, 0xff, 0xf9, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xb8, 0x88, 0x88, 0x88, 0x60, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfe, 0x5e, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xe5, + + /* U+F093 "" */ + 0x0, 0x0, 0x0, 0x0, 0x3, 0x10, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6f, 0xd1, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, + 0xff, 0xfd, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x6f, 0xff, 0xff, 0xd1, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x6, 0xff, 0xff, 0xff, 0xfd, 0x10, + 0x0, 0x0, 0x0, 0x0, 0x6f, 0xff, 0xff, 0xff, + 0xff, 0xd1, 0x0, 0x0, 0x0, 0x6, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfd, 0x10, 0x0, 0x0, 0xd, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x60, 0x0, + 0x0, 0x0, 0x11, 0x1b, 0xff, 0xff, 0x51, 0x11, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, 0xff, 0xff, + 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, + 0xff, 0xff, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xb, 0xff, 0xff, 0x40, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xb, 0xff, 0xff, 0x40, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, 0xff, 0xff, + 0x40, 0x0, 0x0, 0x0, 0x7a, 0xaa, 0xaa, 0x2b, + 0xff, 0xff, 0x42, 0xaa, 0xaa, 0xa7, 0xff, 0xff, + 0xff, 0x82, 0x67, 0x76, 0x8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfb, 0x77, 0x77, 0xbf, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfb, 0xf, 0x48, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xef, 0xef, 0xff, + 0x14, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, + 0x44, 0x41, + + /* U+F095 "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, + 0x62, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1, 0xff, 0xfe, 0xb5, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xf0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xff, + 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x5, 0xff, 0xff, 0xff, 0xd0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xbf, 0xff, 0xff, 0xfb, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0xff, 0xff, + 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x5, 0xff, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x5, 0xff, 0xfe, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xbf, 0xff, + 0x90, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x4f, 0xff, 0xf2, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2e, 0xff, 0xf8, 0x0, 0x0, 0x0, + 0x1, 0x30, 0x0, 0x0, 0x1d, 0xff, 0xfd, 0x0, + 0x0, 0x0, 0x29, 0xff, 0x70, 0x0, 0x3e, 0xff, + 0xff, 0x30, 0x0, 0x4, 0xbf, 0xff, 0xff, 0x40, + 0x7f, 0xff, 0xff, 0x50, 0x0, 0x0, 0xef, 0xff, + 0xff, 0xfe, 0xef, 0xff, 0xff, 0x50, 0x0, 0x0, + 0xc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x40, + 0x0, 0x0, 0x0, 0x8f, 0xff, 0xff, 0xff, 0xff, + 0xfb, 0x10, 0x0, 0x0, 0x0, 0x4, 0xff, 0xff, + 0xff, 0xff, 0xd5, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1f, 0xff, 0xff, 0xea, 0x40, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x57, 0x64, 0x20, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+F0C4 "" */ + 0x0, 0x25, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x9, 0xff, 0xfe, 0x30, 0x0, 0x0, 0x4, + 0xaa, 0x50, 0x7f, 0xff, 0xff, 0xe0, 0x0, 0x0, + 0x8f, 0xff, 0xf5, 0xef, 0xd3, 0x7f, 0xf6, 0x0, + 0x8, 0xff, 0xff, 0xb0, 0xff, 0x80, 0xf, 0xf7, + 0x0, 0x8f, 0xff, 0xfb, 0x0, 0xdf, 0xe7, 0xaf, + 0xf5, 0x8, 0xff, 0xff, 0xb0, 0x0, 0x5f, 0xff, + 0xff, 0xfd, 0x9f, 0xff, 0xfb, 0x0, 0x0, 0x5, + 0xef, 0xff, 0xff, 0xff, 0xff, 0xb0, 0x0, 0x0, + 0x0, 0x1, 0x5f, 0xff, 0xff, 0xfb, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xb, 0xff, 0xff, 0xf2, 0x0, + 0x0, 0x0, 0x0, 0x25, 0x9f, 0xff, 0xff, 0xfd, + 0x10, 0x0, 0x0, 0x9, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xd1, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xfb, + 0x6f, 0xff, 0xfd, 0x10, 0x0, 0xef, 0xd3, 0x7f, + 0xf5, 0x5, 0xff, 0xff, 0xd1, 0x0, 0xff, 0x80, + 0xf, 0xf7, 0x0, 0x5f, 0xff, 0xfd, 0x10, 0xdf, + 0xe7, 0xaf, 0xf5, 0x0, 0x5, 0xff, 0xff, 0xd1, + 0x5f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x4f, 0xff, + 0xf4, 0x5, 0xef, 0xfb, 0x10, 0x0, 0x0, 0x1, + 0x66, 0x20, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, + + /* U+F0C5 "" */ + 0x0, 0x0, 0x8, 0xbb, 0xbb, 0xbb, 0x50, 0x90, + 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0x81, + 0xfb, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, + 0x81, 0xff, 0xb0, 0x0, 0x0, 0xf, 0xff, 0xff, + 0xff, 0x81, 0xff, 0xf8, 0x8c, 0xc9, 0xf, 0xff, + 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xfc, 0xf, + 0xff, 0xff, 0xff, 0xd5, 0x44, 0x43, 0xff, 0xfc, + 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, 0xff, + 0xfc, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, + 0xff, 0xfc, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfa, 0xff, 0xfc, 0xf, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfa, 0xff, 0xfc, 0xf, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfa, 0xff, 0xfc, 0xf, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfa, 0xff, 0xfc, 0xf, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfa, 0xff, 0xfc, 0xf, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, 0xff, 0xfc, + 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, 0xff, + 0xfc, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, + 0xff, 0xfe, 0xb, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf7, 0xff, 0xff, 0x91, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x70, 0x0, 0x0, 0x58, 0x88, 0x88, 0x88, + 0x88, 0x87, 0x10, 0x0, 0x0, + + /* U+F0C7 "" */ + 0x6, 0x77, 0x77, 0x77, 0x77, 0x77, 0x60, 0x0, + 0x0, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, + 0x10, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc1, 0x0, 0xff, 0x90, 0x0, 0x0, 0x0, + 0x1, 0xdf, 0xfc, 0x10, 0xff, 0x80, 0x0, 0x0, + 0x0, 0x0, 0xbf, 0xff, 0xc0, 0xff, 0x80, 0x0, + 0x0, 0x0, 0x0, 0xbf, 0xff, 0xf3, 0xff, 0x80, + 0x0, 0x0, 0x0, 0x0, 0xbf, 0xff, 0xf4, 0xff, + 0x80, 0x0, 0x0, 0x0, 0x0, 0xbf, 0xff, 0xf4, + 0xff, 0xd8, 0x88, 0x88, 0x88, 0x88, 0xef, 0xff, + 0xf4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf4, 0xff, 0xff, 0xff, 0xe4, 0x2, + 0xcf, 0xff, 0xff, 0xf4, 0xff, 0xff, 0xff, 0x60, + 0x0, 0x2f, 0xff, 0xff, 0xf4, 0xff, 0xff, 0xff, + 0x40, 0x0, 0xf, 0xff, 0xff, 0xf4, 0xff, 0xff, + 0xff, 0xa0, 0x0, 0x6f, 0xff, 0xff, 0xf4, 0xff, + 0xff, 0xff, 0xfc, 0x8a, 0xff, 0xff, 0xff, 0xf4, + 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf3, 0x6f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xa0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, + + /* U+F0C9 "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf8, 0xac, 0xcc, 0xcc, 0xcc, 0xcc, + 0xcc, 0xcc, 0xcc, 0xc4, 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, 0xcd, + 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xd5, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf8, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf5, 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, 0xac, 0xcc, 0xcc, + 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xc4, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xef, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, + + /* U+F0E0 "" */ + 0x5e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xe5, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, + 0x3, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfe, 0x30, 0xe3, 0x1b, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xb1, 0x3e, 0xff, 0x70, 0x7f, 0xff, + 0xff, 0xff, 0xff, 0xf7, 0x7, 0xff, 0xff, 0xfb, + 0x13, 0xdf, 0xff, 0xff, 0xfd, 0x31, 0xbf, 0xff, + 0xff, 0xff, 0xe4, 0xa, 0xff, 0xff, 0xa0, 0x4e, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x5d, 0xd5, + 0x8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, + 0x20, 0x2, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfd, 0xdf, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfe, 0x5e, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xe5, + + /* U+F0E7 "" */ + 0x0, 0x14, 0x44, 0x44, 0x41, 0x0, 0x0, 0x0, + 0xbf, 0xff, 0xff, 0xfa, 0x0, 0x0, 0x0, 0xef, + 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xff, + 0xff, 0xf3, 0x0, 0x0, 0x2, 0xff, 0xff, 0xff, + 0xd0, 0x0, 0x0, 0x4, 0xff, 0xff, 0xff, 0x80, + 0x0, 0x0, 0x6, 0xff, 0xff, 0xff, 0x40, 0x0, + 0x0, 0x8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, + 0xa, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, 0xd, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0, 0xf, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x20, 0xb, 0xff, 0xff, + 0xff, 0xff, 0xf9, 0x0, 0x0, 0x0, 0x0, 0x8f, + 0xff, 0xe1, 0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, + 0x60, 0x0, 0x0, 0x0, 0x0, 0xff, 0xfd, 0x0, + 0x0, 0x0, 0x0, 0x3, 0xff, 0xf4, 0x0, 0x0, + 0x0, 0x0, 0x7, 0xff, 0xa0, 0x0, 0x0, 0x0, + 0x0, 0xb, 0xff, 0x20, 0x0, 0x0, 0x0, 0x0, + 0xf, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, + 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9, 0x40, + 0x0, 0x0, 0x0, + + /* U+F0EA "" */ + 0x0, 0x0, 0x6, 0x71, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x14, 0x44, 0xbf, 0xfe, 0x44, 0x43, 0x0, + 0x0, 0x0, 0xef, 0xff, 0xf9, 0x4f, 0xff, 0xff, + 0x40, 0x0, 0x0, 0xff, 0xff, 0xf8, 0x3f, 0xff, + 0xff, 0x50, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x50, 0x0, 0x0, 0xff, 0xff, 0xff, + 0xa8, 0x88, 0x88, 0x20, 0x0, 0x0, 0xff, 0xff, + 0xf6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, + 0xff, 0xf0, 0xcf, 0xff, 0xff, 0x51, 0xe2, 0x0, + 0xff, 0xff, 0xf0, 0xef, 0xff, 0xff, 0x51, 0xfe, + 0x20, 0xff, 0xff, 0xf0, 0xef, 0xff, 0xff, 0x51, + 0xff, 0xe2, 0xff, 0xff, 0xf0, 0xef, 0xff, 0xff, + 0x50, 0xbb, 0xb7, 0xff, 0xff, 0xf0, 0xef, 0xff, + 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xf0, 0xef, + 0xff, 0xff, 0xff, 0xff, 0xfa, 0xff, 0xff, 0xf0, + 0xef, 0xff, 0xff, 0xff, 0xff, 0xfa, 0xff, 0xff, + 0xf0, 0xef, 0xff, 0xff, 0xff, 0xff, 0xfa, 0xff, + 0xff, 0xf0, 0xef, 0xff, 0xff, 0xff, 0xff, 0xfa, + 0xcf, 0xff, 0xf0, 0xef, 0xff, 0xff, 0xff, 0xff, + 0xfa, 0x0, 0x0, 0x0, 0xef, 0xff, 0xff, 0xff, + 0xff, 0xfa, 0x0, 0x0, 0x0, 0xef, 0xff, 0xff, + 0xff, 0xff, 0xfa, 0x0, 0x0, 0x0, 0xef, 0xff, + 0xff, 0xff, 0xff, 0xfa, 0x0, 0x0, 0x0, 0x7b, + 0xbb, 0xbb, 0xbb, 0xbb, 0xb4, + + /* U+F0F3 "" */ + 0x0, 0x0, 0x0, 0x0, 0x31, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x5, 0xfd, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x9, 0xff, 0x10, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xef, 0xff, + 0xfb, 0x20, 0x0, 0x0, 0x0, 0x0, 0xaf, 0xff, + 0xff, 0xff, 0xf3, 0x0, 0x0, 0x0, 0x8, 0xff, + 0xff, 0xff, 0xff, 0xfe, 0x10, 0x0, 0x0, 0x1f, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, + 0x5f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd0, 0x0, + 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, + 0x0, 0x0, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf0, 0x0, 0x0, 0x9f, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf1, 0x0, 0x0, 0xdf, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf5, 0x0, 0x1, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf9, 0x0, 0x9, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x10, 0x5f, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd0, 0xef, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, + 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xe3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xaf, 0xff, 0xf2, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, + 0xa0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, + 0x75, 0x0, 0x0, 0x0, 0x0, + + /* U+F11C "" */ + 0x5e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfb, 0xe, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, 0xff, + 0xc8, 0x8f, 0xa8, 0xaf, 0x88, 0xbf, 0x88, 0xfb, + 0x88, 0xff, 0x8f, 0xf8, 0x0, 0xf4, 0x4, 0xf0, + 0x5, 0xe0, 0xe, 0x50, 0xf, 0xf8, 0xff, 0x80, + 0xf, 0x40, 0x4f, 0x0, 0x6f, 0x0, 0xf6, 0x0, + 0xff, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0x94, + 0x6f, 0x64, 0x8f, 0x44, 0xbb, 0x44, 0xff, 0xff, + 0x8f, 0xff, 0xf6, 0x2, 0xf2, 0x5, 0xf0, 0x8, + 0x80, 0xe, 0xff, 0xf8, 0xff, 0xff, 0x94, 0x6f, + 0x64, 0x8f, 0x44, 0xbb, 0x44, 0xff, 0xff, 0x8f, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf8, 0xff, 0x80, 0xf, 0x40, 0x0, + 0x0, 0x0, 0x0, 0xf6, 0x0, 0xff, 0x8f, 0xf8, + 0x0, 0xf4, 0x0, 0x0, 0x0, 0x0, 0xe, 0x50, + 0xf, 0xf8, 0xff, 0xc8, 0x8f, 0xa8, 0x88, 0x88, + 0x88, 0x88, 0xfb, 0x88, 0xff, 0x8e, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf6, 0x5e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfb, 0x0, + + /* U+F124 "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x56, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1, 0x7e, 0xff, 0xa0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1, 0x8f, 0xff, 0xff, + 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xaf, + 0xff, 0xff, 0xff, 0xa0, 0x0, 0x0, 0x0, 0x0, + 0x4, 0xbf, 0xff, 0xff, 0xff, 0xff, 0x30, 0x0, + 0x0, 0x0, 0x5, 0xcf, 0xff, 0xff, 0xff, 0xff, + 0xfb, 0x0, 0x0, 0x0, 0x6, 0xdf, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf4, 0x0, 0x0, 0x18, 0xef, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd0, 0x0, + 0x5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x50, 0x0, 0xe, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0xd, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, 0x0, + 0x0, 0x2, 0xac, 0xcc, 0xcc, 0xcd, 0xff, 0xff, + 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x4, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x4, 0xff, 0xff, 0xff, 0x10, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, + 0xff, 0xf9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x4, 0xff, 0xff, 0xf2, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, 0xff, 0xb0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, + 0xff, 0xff, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x3, 0xff, 0xfc, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xef, 0xf4, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x27, 0x30, 0x0, 0x0, 0x0, 0x0, + + /* U+F15B "" */ + 0x24, 0x44, 0x44, 0x44, 0x30, 0x30, 0x0, 0xf, + 0xff, 0xff, 0xff, 0xfc, 0xf, 0x60, 0x0, 0xff, + 0xff, 0xff, 0xff, 0xc0, 0xff, 0x60, 0xf, 0xff, + 0xff, 0xff, 0xfc, 0xf, 0xff, 0x60, 0xff, 0xff, + 0xff, 0xff, 0xc0, 0xff, 0xff, 0x6f, 0xff, 0xff, + 0xff, 0xfc, 0xb, 0xbb, 0xbb, 0xff, 0xff, 0xff, + 0xff, 0xe1, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8b, 0xbb, + 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0x80, + + /* U+F1EB "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x23, 0x43, 0x20, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, + 0x8c, 0xff, 0xff, 0xff, 0xfc, 0x83, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x6d, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfd, 0x60, 0x0, 0x0, 0x3, 0xdf, + 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, + 0xd3, 0x0, 0x8, 0xff, 0xff, 0xfb, 0x72, 0x0, + 0x0, 0x2, 0x7b, 0xff, 0xff, 0xf8, 0xa, 0xff, + 0xff, 0xa2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, + 0xaf, 0xff, 0xfa, 0xbf, 0xfd, 0x30, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x3d, 0xff, 0xb0, + 0xba, 0x10, 0x0, 0x5, 0x9d, 0xef, 0xed, 0x95, + 0x0, 0x0, 0x1a, 0xb0, 0x0, 0x0, 0x0, 0x6d, + 0xff, 0xff, 0xff, 0xff, 0xfd, 0x60, 0x0, 0x0, + 0x0, 0x0, 0x1, 0xbf, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xb1, 0x0, 0x0, 0x0, 0x0, 0x8f, + 0xff, 0xfa, 0x53, 0x23, 0x5a, 0xff, 0xff, 0x80, + 0x0, 0x0, 0x0, 0x0, 0xcf, 0xb1, 0x0, 0x0, + 0x0, 0x1, 0xbf, 0xc0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x40, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, + 0x9d, 0x91, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xaf, 0xff, 0xa0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xf, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, 0xc0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x3, 0xef, 0xe3, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+F240 "" */ + 0x17, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, + 0x88, 0x88, 0x88, 0x60, 0xc, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfc, 0xf, 0xf8, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xcf, 0xfd, 0xff, 0x84, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xc, 0xff, 0xff, 0xf8, + 0x4f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf0, 0x5b, 0xff, 0xff, 0x84, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x8f, 0xff, + 0xf8, 0x4f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf0, 0x8, 0xff, 0xff, 0x84, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, 0xff, + 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xcf, 0xff, 0xff, 0xc8, 0x88, + 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x8e, + 0xfd, 0x4e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xa0, 0x4e, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc2, 0x0, + + /* U+F241 "" */ + 0x17, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, + 0x88, 0x88, 0x88, 0x60, 0xc, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfc, 0xf, 0xf8, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xcf, 0xfd, 0xff, 0x81, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x60, 0x0, 0xc, 0xff, 0xff, 0xf8, + 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, 0x0, + 0x0, 0x5b, 0xff, 0xff, 0x81, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x60, 0x0, 0x0, 0x8f, 0xff, + 0xf8, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, + 0x0, 0x0, 0x8, 0xff, 0xff, 0x81, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x60, 0x0, 0xc, 0xff, + 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xcf, 0xff, 0xff, 0xc8, 0x88, + 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x8e, + 0xfd, 0x4e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xa0, 0x4e, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc2, 0x0, + + /* U+F242 "" */ + 0x17, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, + 0x88, 0x88, 0x88, 0x60, 0xc, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfc, 0xf, 0xf8, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xcf, 0xfd, 0xff, 0x81, 0xff, 0xff, 0xff, 0xff, + 0xa0, 0x0, 0x0, 0x0, 0xc, 0xff, 0xff, 0xf8, + 0x1f, 0xff, 0xff, 0xff, 0xfa, 0x0, 0x0, 0x0, + 0x0, 0x5b, 0xff, 0xff, 0x81, 0xff, 0xff, 0xff, + 0xff, 0xa0, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xff, + 0xf8, 0x1f, 0xff, 0xff, 0xff, 0xfa, 0x0, 0x0, + 0x0, 0x0, 0x8, 0xff, 0xff, 0x81, 0xff, 0xff, + 0xff, 0xff, 0xa0, 0x0, 0x0, 0x0, 0xc, 0xff, + 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xcf, 0xff, 0xff, 0xc8, 0x88, + 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x8e, + 0xfd, 0x4e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xa0, 0x4e, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc2, 0x0, + + /* U+F243 "" */ + 0x17, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, + 0x88, 0x88, 0x88, 0x60, 0xc, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfc, 0xf, 0xf8, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xcf, 0xfd, 0xff, 0x81, 0xff, 0xff, 0xe0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0xff, 0xf8, + 0x1f, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x5b, 0xff, 0xff, 0x81, 0xff, 0xff, 0xe0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xff, + 0xf8, 0x1f, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x8, 0xff, 0xff, 0x81, 0xff, 0xff, + 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, + 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xcf, 0xff, 0xff, 0xc8, 0x88, + 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x8e, + 0xfd, 0x4e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xa0, 0x4e, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc2, 0x0, + + /* U+F244 "" */ + 0x17, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, + 0x88, 0x88, 0x88, 0x60, 0xc, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfc, 0xf, 0xf8, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xcf, 0xfd, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0xff, 0xf8, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x5b, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xff, + 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x8, 0xff, 0xff, 0x80, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, + 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xcf, 0xff, 0xff, 0xc8, 0x88, + 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x8e, + 0xfd, 0x4e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xa0, 0x4e, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc2, 0x0, + + /* U+F287 "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xc, 0xfe, 0x20, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c, + 0xdf, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x9, 0xfb, 0xbf, 0xff, 0x90, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2f, 0x70, 0xa, 0xfc, 0x10, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x32, 0x0, 0x0, 0x9e, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2d, 0xff, + 0x90, 0x1, 0xf6, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1c, 0x30, 0x0, 0xcf, 0xff, 0xf6, 0x3c, 0xf3, + 0x33, 0x33, 0x33, 0x33, 0x33, 0x5f, 0xf9, 0x10, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xd0, 0xcf, 0xff, 0xf6, + 0x33, 0x34, 0xed, 0x33, 0x33, 0x33, 0x33, 0x5f, + 0xfa, 0x10, 0x2d, 0xff, 0x90, 0x0, 0x0, 0x5f, + 0x30, 0x0, 0x0, 0x0, 0x1c, 0x30, 0x0, 0x0, + 0x32, 0x0, 0x0, 0x0, 0xd, 0xa0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x6, 0xf3, 0xa, 0xff, 0xf7, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xce, + 0xae, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x8, 0xbe, 0xff, 0xf8, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xa, 0xff, 0xf7, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, + 0x22, 0x20, 0x0, 0x0, 0x0, + + /* U+F293 "" */ + 0x0, 0x0, 0x0, 0x34, 0x31, 0x0, 0x0, 0x0, + 0x0, 0x3, 0xbf, 0xff, 0xff, 0xe7, 0x0, 0x0, + 0x0, 0x6f, 0xff, 0xfa, 0xff, 0xff, 0xb0, 0x0, + 0x4, 0xff, 0xff, 0xf1, 0x9f, 0xff, 0xf8, 0x0, + 0xd, 0xff, 0xff, 0xf1, 0xa, 0xff, 0xff, 0x10, + 0x3f, 0xff, 0xff, 0xf1, 0x0, 0xbf, 0xff, 0x60, + 0x7f, 0xfd, 0x8f, 0xf1, 0x66, 0xc, 0xff, 0xa0, + 0xaf, 0xf8, 0x7, 0xf1, 0x6f, 0x13, 0xff, 0xd0, + 0xcf, 0xff, 0x70, 0x71, 0x53, 0x1e, 0xff, 0xf0, + 0xdf, 0xff, 0xf7, 0x0, 0x1, 0xdf, 0xff, 0xf0, + 0xef, 0xff, 0xff, 0x60, 0xc, 0xff, 0xff, 0xf0, + 0xef, 0xff, 0xff, 0x30, 0x7, 0xff, 0xff, 0xf0, + 0xdf, 0xff, 0xf3, 0x0, 0x10, 0x8f, 0xff, 0xf0, + 0xcf, 0xff, 0x30, 0xb1, 0x67, 0x9, 0xff, 0xf0, + 0x9f, 0xf6, 0xb, 0xf2, 0x6e, 0x2, 0xff, 0xd0, + 0x6f, 0xff, 0xcf, 0xf2, 0x52, 0x2e, 0xff, 0xa0, + 0x1f, 0xff, 0xff, 0xf2, 0x2, 0xef, 0xff, 0x50, + 0x9, 0xff, 0xff, 0xf2, 0x2e, 0xff, 0xfe, 0x0, + 0x0, 0xdf, 0xff, 0xf4, 0xef, 0xff, 0xf5, 0x0, + 0x0, 0x1a, 0xff, 0xff, 0xff, 0xff, 0x60, 0x0, + 0x0, 0x0, 0x27, 0xab, 0xb9, 0x50, 0x0, 0x0, + + /* U+F2ED "" */ + 0x0, 0x0, 0x2, 0xab, 0xbb, 0xb7, 0x0, 0x0, + 0x0, 0x57, 0x77, 0x7c, 0xff, 0xff, 0xff, 0x77, + 0x77, 0x72, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf7, 0xef, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf6, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0x88, 0x88, + 0x88, 0x88, 0x88, 0x88, 0x88, 0x20, 0xc, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x40, 0xc, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x40, + 0xc, 0xff, 0x77, 0xff, 0x3b, 0xfe, 0x1e, 0xff, + 0x40, 0xc, 0xff, 0x66, 0xff, 0x2a, 0xfe, 0xe, + 0xff, 0x40, 0xc, 0xff, 0x66, 0xff, 0x2a, 0xfe, + 0xe, 0xff, 0x40, 0xc, 0xff, 0x66, 0xff, 0x2a, + 0xfe, 0xe, 0xff, 0x40, 0xc, 0xff, 0x66, 0xff, + 0x2a, 0xfe, 0xe, 0xff, 0x40, 0xc, 0xff, 0x66, + 0xff, 0x2a, 0xfe, 0xe, 0xff, 0x40, 0xc, 0xff, + 0x66, 0xff, 0x2a, 0xfe, 0xe, 0xff, 0x40, 0xc, + 0xff, 0x66, 0xff, 0x2a, 0xfe, 0xe, 0xff, 0x40, + 0xc, 0xff, 0x66, 0xff, 0x2a, 0xfe, 0xe, 0xff, + 0x40, 0xc, 0xff, 0x77, 0xff, 0x3b, 0xfe, 0x1e, + 0xff, 0x40, 0xb, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x30, 0x7, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfe, 0x0, 0x0, 0x57, 0x88, 0x88, + 0x88, 0x88, 0x88, 0x72, 0x0, + + /* U+F304 "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, + 0x64, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x2, 0xdf, 0xf8, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x2, 0xef, 0xff, 0xf8, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, + 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, + 0x90, 0x8f, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, + 0x0, 0x2, 0xef, 0xb0, 0x8f, 0xff, 0xfc, 0x0, + 0x0, 0x0, 0x0, 0x2, 0xef, 0xff, 0xb0, 0x8f, + 0xfe, 0x10, 0x0, 0x0, 0x0, 0x2, 0xef, 0xff, + 0xff, 0xb0, 0x8e, 0x20, 0x0, 0x0, 0x0, 0x2, + 0xef, 0xff, 0xff, 0xff, 0xb0, 0x10, 0x0, 0x0, + 0x0, 0x2, 0xef, 0xff, 0xff, 0xff, 0xfe, 0x10, + 0x0, 0x0, 0x0, 0x2, 0xef, 0xff, 0xff, 0xff, + 0xfe, 0x20, 0x0, 0x0, 0x0, 0x2, 0xef, 0xff, + 0xff, 0xff, 0xfe, 0x20, 0x0, 0x0, 0x0, 0x2, + 0xef, 0xff, 0xff, 0xff, 0xfe, 0x20, 0x0, 0x0, + 0x0, 0x2, 0xef, 0xff, 0xff, 0xff, 0xfe, 0x20, + 0x0, 0x0, 0x0, 0x1, 0xef, 0xff, 0xff, 0xff, + 0xfe, 0x20, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xff, + 0xff, 0xff, 0xfe, 0x20, 0x0, 0x0, 0x0, 0x0, + 0xa, 0xff, 0xff, 0xff, 0xfe, 0x20, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xcf, 0xff, 0xff, 0xfe, 0x20, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xff, 0xff, + 0xfe, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xff, 0xff, 0xfe, 0x20, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x5, 0x75, 0x31, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+F55A "" */ + 0x0, 0x0, 0x0, 0x6e, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfb, 0x20, 0x0, 0x0, 0x8f, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfb, 0x0, 0x0, 0x8f, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x8f, + 0xff, 0xff, 0xff, 0x85, 0xff, 0xff, 0x58, 0xff, + 0xff, 0xff, 0x0, 0x8f, 0xff, 0xff, 0xff, 0xb0, + 0x4, 0xff, 0x40, 0xb, 0xff, 0xff, 0xf0, 0x8f, + 0xff, 0xff, 0xff, 0xff, 0x40, 0x4, 0x40, 0x4, + 0xff, 0xff, 0xff, 0x8f, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x40, 0x0, 0x4, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x10, 0x0, + 0xef, 0xff, 0xff, 0xff, 0x8f, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x40, 0x0, 0x4, 0xff, 0xff, 0xff, + 0xf0, 0x8f, 0xff, 0xff, 0xff, 0xff, 0x40, 0x4, + 0x40, 0x4, 0xff, 0xff, 0xff, 0x0, 0x8f, 0xff, + 0xff, 0xff, 0xb0, 0x4, 0xff, 0x40, 0xb, 0xff, + 0xff, 0xf0, 0x0, 0x8f, 0xff, 0xff, 0xff, 0x85, + 0xff, 0xff, 0x58, 0xff, 0xff, 0xff, 0x0, 0x0, + 0x8f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf0, 0x0, 0x0, 0x8f, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0x0, + 0x0, 0x0, 0x6e, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfc, 0x20, + + /* U+F7C2 "" */ + 0x0, 0x0, 0x28, 0x88, 0x88, 0x88, 0x73, 0x0, + 0x0, 0x2e, 0xff, 0xff, 0xff, 0xff, 0xf6, 0x0, + 0x1d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x1d, + 0xf6, 0xe, 0x50, 0xd6, 0x8, 0xff, 0x1d, 0xff, + 0x60, 0xe5, 0xd, 0x60, 0x8f, 0xfc, 0xff, 0xf6, + 0xe, 0x50, 0xd6, 0x8, 0xff, 0xff, 0xff, 0x60, + 0xe5, 0xd, 0x60, 0x8f, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe9, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x7, 0xab, + 0xbb, 0xbb, 0xbb, 0xbb, 0xa6, 0x0, + + /* U+F8A2 "" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa, 0xf1, 0x0, 0x0, 0x1, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0xff, 0x10, + 0x0, 0xa, 0xf3, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xff, 0xf1, 0x0, 0xb, 0xff, 0x50, 0x0, 0x0, + 0x0, 0x0, 0xf, 0xff, 0x10, 0xc, 0xff, 0xf5, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf1, 0x1d, + 0xff, 0xff, 0xcb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbf, + 0xff, 0x1c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf1, 0x9f, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x9f, + 0xff, 0xf9, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, + 0x40, 0x0, 0x8f, 0xff, 0x50, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf5, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x5c, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0 +}; + + +/*--------------------- + * GLYPH DESCRIPTION + *--------------------*/ + +static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = { + {.bitmap_index = 0, .adv_w = 0, .box_w = 0, .box_h = 0, .ofs_x = 0, .ofs_y = 0} /* id = 0 reserved */, + {.bitmap_index = 0, .adv_w = 89, .box_w = 0, .box_h = 0, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 0, .adv_w = 89, .box_w = 3, .box_h = 15, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 23, .adv_w = 114, .box_w = 7, .box_h = 6, .ofs_x = 0, .ofs_y = 9}, + {.bitmap_index = 44, .adv_w = 178, .box_w = 11, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 127, .adv_w = 178, .box_w = 11, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 232, .adv_w = 285, .box_w = 16, .box_h = 15, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 352, .adv_w = 213, .box_w = 13, .box_h = 16, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 456, .adv_w = 61, .box_w = 3, .box_h = 6, .ofs_x = 0, .ofs_y = 9}, + {.bitmap_index = 465, .adv_w = 107, .box_w = 5, .box_h = 19, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 513, .adv_w = 107, .box_w = 5, .box_h = 19, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 561, .adv_w = 125, .box_w = 8, .box_h = 7, .ofs_x = 0, .ofs_y = 8}, + {.bitmap_index = 589, .adv_w = 187, .box_w = 10, .box_h = 10, .ofs_x = 1, .ofs_y = 2}, + {.bitmap_index = 639, .adv_w = 107, .box_w = 7, .box_h = 2, .ofs_x = 0, .ofs_y = 4}, + {.bitmap_index = 646, .adv_w = 89, .box_w = 3, .box_h = 3, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 651, .adv_w = 89, .box_w = 6, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 696, .adv_w = 178, .box_w = 11, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 779, .adv_w = 178, .box_w = 6, .box_h = 15, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 824, .adv_w = 178, .box_w = 11, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 907, .adv_w = 178, .box_w = 11, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 990, .adv_w = 178, .box_w = 11, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1073, .adv_w = 178, .box_w = 11, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1156, .adv_w = 178, .box_w = 11, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1239, .adv_w = 178, .box_w = 11, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1322, .adv_w = 178, .box_w = 11, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1405, .adv_w = 178, .box_w = 11, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1488, .adv_w = 89, .box_w = 3, .box_h = 11, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1505, .adv_w = 89, .box_w = 3, .box_h = 14, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 1526, .adv_w = 187, .box_w = 10, .box_h = 11, .ofs_x = 1, .ofs_y = 2}, + {.bitmap_index = 1581, .adv_w = 187, .box_w = 10, .box_h = 6, .ofs_x = 1, .ofs_y = 5}, + {.bitmap_index = 1611, .adv_w = 187, .box_w = 10, .box_h = 11, .ofs_x = 1, .ofs_y = 2}, + {.bitmap_index = 1666, .adv_w = 178, .box_w = 11, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1749, .adv_w = 325, .box_w = 19, .box_h = 19, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 1930, .adv_w = 213, .box_w = 15, .box_h = 15, .ofs_x = -1, .ofs_y = 0}, + {.bitmap_index = 2043, .adv_w = 213, .box_w = 12, .box_h = 15, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2133, .adv_w = 231, .box_w = 13, .box_h = 15, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2231, .adv_w = 231, .box_w = 13, .box_h = 15, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2329, .adv_w = 213, .box_w = 12, .box_h = 15, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2419, .adv_w = 195, .box_w = 11, .box_h = 15, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2502, .adv_w = 249, .box_w = 14, .box_h = 15, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2607, .adv_w = 231, .box_w = 12, .box_h = 15, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2697, .adv_w = 89, .box_w = 3, .box_h = 15, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2720, .adv_w = 160, .box_w = 9, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 2788, .adv_w = 213, .box_w = 13, .box_h = 15, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2886, .adv_w = 178, .box_w = 10, .box_h = 15, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2961, .adv_w = 267, .box_w = 15, .box_h = 15, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 3074, .adv_w = 231, .box_w = 12, .box_h = 15, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 3164, .adv_w = 249, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 3277, .adv_w = 213, .box_w = 12, .box_h = 15, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 3367, .adv_w = 249, .box_w = 15, .box_h = 16, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 3487, .adv_w = 231, .box_w = 14, .box_h = 15, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 3592, .adv_w = 213, .box_w = 13, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 3690, .adv_w = 195, .box_w = 12, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 3780, .adv_w = 231, .box_w = 12, .box_h = 15, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 3870, .adv_w = 213, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 3975, .adv_w = 302, .box_w = 19, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 4118, .adv_w = 213, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 4223, .adv_w = 213, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 4328, .adv_w = 195, .box_w = 12, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 4418, .adv_w = 89, .box_w = 5, .box_h = 19, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 4466, .adv_w = 89, .box_w = 6, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 4511, .adv_w = 89, .box_w = 5, .box_h = 19, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 4559, .adv_w = 150, .box_w = 9, .box_h = 8, .ofs_x = 0, .ofs_y = 7}, + {.bitmap_index = 4595, .adv_w = 178, .box_w = 13, .box_h = 3, .ofs_x = -1, .ofs_y = -5}, + {.bitmap_index = 4615, .adv_w = 107, .box_w = 5, .box_h = 3, .ofs_x = 0, .ofs_y = 12}, + {.bitmap_index = 4623, .adv_w = 178, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 4684, .adv_w = 178, .box_w = 10, .box_h = 15, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 4759, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 4814, .adv_w = 178, .box_w = 10, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 4889, .adv_w = 178, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 4950, .adv_w = 89, .box_w = 7, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 5003, .adv_w = 178, .box_w = 10, .box_h = 15, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 5078, .adv_w = 178, .box_w = 9, .box_h = 15, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 5146, .adv_w = 71, .box_w = 3, .box_h = 15, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 5169, .adv_w = 71, .box_w = 5, .box_h = 19, .ofs_x = -1, .ofs_y = -4}, + {.bitmap_index = 5217, .adv_w = 160, .box_w = 9, .box_h = 15, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 5285, .adv_w = 71, .box_w = 3, .box_h = 15, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 5308, .adv_w = 267, .box_w = 15, .box_h = 11, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 5391, .adv_w = 178, .box_w = 9, .box_h = 11, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 5441, .adv_w = 178, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 5502, .adv_w = 178, .box_w = 10, .box_h = 15, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 5577, .adv_w = 178, .box_w = 10, .box_h = 15, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 5652, .adv_w = 107, .box_w = 6, .box_h = 11, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 5685, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 5740, .adv_w = 89, .box_w = 6, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 5785, .adv_w = 178, .box_w = 9, .box_h = 11, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 5835, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 5890, .adv_w = 231, .box_w = 15, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 5973, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 6028, .adv_w = 160, .box_w = 10, .box_h = 15, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 6103, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 6158, .adv_w = 107, .box_w = 7, .box_h = 19, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 6225, .adv_w = 83, .box_w = 3, .box_h = 19, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 6254, .adv_w = 107, .box_w = 7, .box_h = 19, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 6321, .adv_w = 187, .box_w = 11, .box_h = 5, .ofs_x = 0, .ofs_y = 5}, + {.bitmap_index = 6349, .adv_w = 320, .box_w = 20, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 6559, .adv_w = 320, .box_w = 20, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 6709, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 6899, .adv_w = 320, .box_w = 20, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 7049, .adv_w = 220, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 7154, .adv_w = 320, .box_w = 20, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 7364, .adv_w = 320, .box_w = 20, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 7574, .adv_w = 360, .box_w = 23, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 7793, .adv_w = 320, .box_w = 20, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 8003, .adv_w = 360, .box_w = 23, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 8176, .adv_w = 320, .box_w = 20, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 8386, .adv_w = 160, .box_w = 10, .box_h = 16, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 8466, .adv_w = 240, .box_w = 15, .box_h = 16, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 8586, .adv_w = 360, .box_w = 23, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 8805, .adv_w = 320, .box_w = 20, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 8955, .adv_w = 220, .box_w = 14, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 9102, .adv_w = 280, .box_w = 13, .box_h = 19, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 9226, .adv_w = 280, .box_w = 18, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 9415, .adv_w = 280, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 9586, .adv_w = 280, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 9757, .adv_w = 280, .box_w = 13, .box_h = 19, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 9881, .adv_w = 280, .box_w = 19, .box_h = 19, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 10062, .adv_w = 200, .box_w = 11, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 10167, .adv_w = 200, .box_w = 11, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 10272, .adv_w = 280, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 10443, .adv_w = 280, .box_w = 18, .box_h = 5, .ofs_x = 0, .ofs_y = 5}, + {.bitmap_index = 10488, .adv_w = 360, .box_w = 23, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 10661, .adv_w = 400, .box_w = 26, .box_h = 21, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 10934, .adv_w = 360, .box_w = 24, .box_h = 21, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 11186, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 11376, .adv_w = 280, .box_w = 18, .box_h = 11, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 11475, .adv_w = 280, .box_w = 18, .box_h = 11, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 11574, .adv_w = 400, .box_w = 26, .box_h = 16, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 11782, .adv_w = 320, .box_w = 20, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 11932, .adv_w = 320, .box_w = 20, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 12142, .adv_w = 320, .box_w = 21, .box_h = 21, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 12363, .adv_w = 280, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 12534, .adv_w = 280, .box_w = 18, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 12723, .adv_w = 280, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 12894, .adv_w = 280, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 13047, .adv_w = 320, .box_w = 20, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 13197, .adv_w = 200, .box_w = 14, .box_h = 21, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 13344, .adv_w = 280, .box_w = 18, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 13533, .adv_w = 280, .box_w = 18, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 13722, .adv_w = 360, .box_w = 23, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 13895, .adv_w = 320, .box_w = 22, .box_h = 21, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 14126, .adv_w = 240, .box_w = 15, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 14284, .adv_w = 400, .box_w = 25, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 14522, .adv_w = 400, .box_w = 25, .box_h = 13, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 14685, .adv_w = 400, .box_w = 25, .box_h = 13, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 14848, .adv_w = 400, .box_w = 25, .box_h = 13, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 15011, .adv_w = 400, .box_w = 25, .box_h = 13, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 15174, .adv_w = 400, .box_w = 25, .box_h = 13, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 15337, .adv_w = 400, .box_w = 26, .box_h = 17, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 15558, .adv_w = 280, .box_w = 16, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 15726, .adv_w = 280, .box_w = 18, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 15915, .adv_w = 320, .box_w = 21, .box_h = 21, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 16136, .adv_w = 400, .box_w = 25, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 16324, .adv_w = 240, .box_w = 15, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 16482, .adv_w = 322, .box_w = 21, .box_h = 13, .ofs_x = 0, .ofs_y = 1} +}; + +/*--------------------- + * CHARACTER MAPPING + *--------------------*/ + +static const uint16_t unicode_list_2[] = { + 0x0, 0x7, 0xa, 0xb, 0xc, 0x10, 0x12, 0x14, + 0x18, 0x1b, 0x20, 0x25, 0x26, 0x27, 0x3d, 0x42, + 0x47, 0x4a, 0x4b, 0x4c, 0x50, 0x51, 0x52, 0x53, + 0x66, 0x67, 0x6d, 0x6f, 0x70, 0x73, 0x76, 0x77, + 0x78, 0x7a, 0x92, 0x94, 0xc3, 0xc4, 0xc6, 0xc8, + 0xdf, 0xe6, 0xe9, 0xf2, 0x11b, 0x123, 0x15a, 0x1ea, + 0x23f, 0x240, 0x241, 0x242, 0x243, 0x286, 0x292, 0x2ec, + 0x303, 0x559, 0x7c1, 0x8a1 +}; + +/*Collect the unicode lists and glyph_id offsets*/ +static const lv_font_fmt_txt_cmap_t cmaps[] = +{ + { + .range_start = 32, .range_length = 12, .glyph_id_start = 1, + .unicode_list = NULL, .glyph_id_ofs_list = NULL, .list_length = 0, .type = LV_FONT_FMT_TXT_CMAP_FORMAT0_TINY + }, + { + .range_start = 45, .range_length = 82, .glyph_id_start = 13, + .unicode_list = NULL, .glyph_id_ofs_list = NULL, .list_length = 0, .type = LV_FONT_FMT_TXT_CMAP_FORMAT0_TINY + }, + { + .range_start = 61441, .range_length = 2210, .glyph_id_start = 95, + .unicode_list = unicode_list_2, .glyph_id_ofs_list = NULL, .list_length = 60, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY + } +}; + + + +/*-------------------- + * ALL CUSTOM DATA + *--------------------*/ + +#if LV_VERSION_CHECK(8, 0, 0) +/*Store all the custom data of the font*/ +static lv_font_fmt_txt_glyph_cache_t cache; +static const lv_font_fmt_txt_dsc_t font_dsc = { +#else +static lv_font_fmt_txt_dsc_t font_dsc = { +#endif + .glyph_bitmap = glyph_bitmap, + .glyph_dsc = glyph_dsc, + .cmaps = cmaps, + .kern_dsc = NULL, + .kern_scale = 0, + .cmap_num = 3, + .bpp = 4, + .kern_classes = 0, + .bitmap_format = 0, +#if LV_VERSION_CHECK(8, 0, 0) + .cache = &cache +#endif +}; + + +/*----------------- + * PUBLIC FONT + *----------------*/ + +/*Initialize a public general font descriptor*/ +#if LV_VERSION_CHECK(8, 0, 0) +const lv_font_t lv_font_arial_20 = { +#else +lv_font_t lv_font_arial_20 = { +#endif + .get_glyph_dsc = lv_font_get_glyph_dsc_fmt_txt, /*Function pointer to get glyph's data*/ + .get_glyph_bitmap = lv_font_get_bitmap_fmt_txt, /*Function pointer to get glyph's bitmap*/ + .line_height = 20, /*The maximum line height required by the font default: (f.src.ascent - f.src.descent)*/ + .base_line = 4, /*Baseline measured from the bottom of the line*/ +#if !(LVGL_VERSION_MAJOR == 6 && LVGL_VERSION_MINOR == 0) + .subpx = LV_FONT_SUBPX_NONE, +#endif +#if LV_VERSION_CHECK(7, 4, 0) || LVGL_VERSION_MAJOR >= 8 + .underline_position = -2, + .underline_thickness = 1, +#endif + .dsc = &font_dsc /*The custom font data. Will be accessed by `get_glyph_bitmap/dsc` */ +}; + + + +#endif /*#if LV_FONT_ARIAL_20*/ + diff --git a/application/rt-thread/t3e-pro/components/generated/lvgl_src/lvgl_data/alarmtime.png b/application/rt-thread/t3e-pro/components/generated/lvgl_src/lvgl_data/alarmtime.png new file mode 100644 index 00000000..d33080f9 Binary files /dev/null and b/application/rt-thread/t3e-pro/components/generated/lvgl_src/lvgl_data/alarmtime.png differ diff --git a/application/rt-thread/t3e-pro/components/generated/lvgl_src/lvgl_data/setdate.png b/application/rt-thread/t3e-pro/components/generated/lvgl_src/lvgl_data/setdate.png index 2c484e76..b635ca10 100644 Binary files a/application/rt-thread/t3e-pro/components/generated/lvgl_src/lvgl_data/setdate.png and b/application/rt-thread/t3e-pro/components/generated/lvgl_src/lvgl_data/setdate.png differ diff --git a/application/rt-thread/t3e-pro/components/generated/setup_scr_dateinfopage.c b/application/rt-thread/t3e-pro/components/generated/setup_scr_dateinfopage.c new file mode 100644 index 00000000..a7a70196 --- /dev/null +++ b/application/rt-thread/t3e-pro/components/generated/setup_scr_dateinfopage.c @@ -0,0 +1,430 @@ +/* +* Copyright 2025 NXP +* NXP Confidential and Proprietary. This software is owned or controlled by NXP and may only be used strictly in +* accordance with the applicable license terms. By expressly accepting such terms or by downloading, installing, +* activating and/or otherwise using the software, you are agreeing that you have read, and that you agree to +* comply with and are bound by, such license terms. If you do not agree to be bound by the applicable license +* terms, then you may not retain, install, activate or otherwise use the software. +*/ +#include +#include +#include +#include +#include + +#include "lvgl.h" +#include "gui_guider.h" +#include "events_init.h" +#include "widgets_init.h" +#include "custom.h" + +/* +时间界面逻辑 +1 进页面 显示最新时间 3个状态同步更新 + 同步自动选择的开关状态 ok + 同步2个日期按钮的 允许/禁用状态 ok + 同步最新时间显示 ok +2 依据是开关状态: + 选择关闭自动更新,则允许点击按钮 + 如果跳转到更新时区 年月日时分界面 + 1 显示最新的时间和时区 + 2 如果点击更改,时间当成本地时间 通过utc+- 转为utc时间 并保存时区 + 选择开启自动更新 禁用按钮点击, + 立即向zigbee查询时间,并依据zigbee下发的utc时间和当地时间计算出时区 并保存时区 ok +*/ + +void setup_scr_dateinfopage(lv_ui *ui) +{ + time_t now; + struct tm timeinfo; + + time(&now); + localtime_r(&now, &timeinfo); + + LOG_I("timezone utc:%d",tz_get()); + LOG_I("time==%d:%d:%d:%d:%02d:%02d:%02d:%02d:%02d", + timeinfo.tm_isdst, //是否为夏时制 + timeinfo.tm_yday, //一年过去的天数 + timeinfo.tm_wday, //星期,1对应星期一 + timeinfo.tm_year+1900, //年,距离1900年的差值,默认是70 + timeinfo.tm_mon+1, //日期:月,从0开始 0~11 + timeinfo.tm_mday, //日期:日,从1开始 + timeinfo.tm_hour, //小时 + timeinfo.tm_min, //分钟 + timeinfo.tm_sec); //秒钟 + //Write codes dateinfopage + ui->dateinfopage = lv_obj_create(NULL); + lv_obj_set_size(ui->dateinfopage, 480, 480); + lv_obj_set_scrollbar_mode(ui->dateinfopage, LV_SCROLLBAR_MODE_OFF); + + //Write style for dateinfopage, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. + lv_obj_set_style_bg_opa(ui->dateinfopage, 255, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_bg_color(ui->dateinfopage, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_bg_grad_dir(ui->dateinfopage, LV_GRAD_DIR_NONE, LV_PART_MAIN|LV_STATE_DEFAULT); + + //Write codes dateinfopage_returnbg + ui->dateinfopage_returnbg = lv_img_create(ui->dateinfopage); + lv_obj_add_flag(ui->dateinfopage_returnbg, LV_OBJ_FLAG_CLICKABLE); + lv_img_set_src(ui->dateinfopage_returnbg, LVGL_PATH(returnbg.png)); + lv_img_set_pivot(ui->dateinfopage_returnbg, 50,50); + lv_img_set_angle(ui->dateinfopage_returnbg, 0); + lv_obj_set_pos(ui->dateinfopage_returnbg, 23, 27); + lv_obj_set_size(ui->dateinfopage_returnbg, 14, 26); + + //Write style for dateinfopage_returnbg, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. + lv_obj_set_style_img_opa(ui->dateinfopage_returnbg, 255, LV_PART_MAIN|LV_STATE_DEFAULT); + + //Write codes dateinfopage_retrunbtn + ui->dateinfopage_retrunbtn = lv_btn_create(ui->dateinfopage); + //ui->dateinfopage_retrunbtn_label = lv_label_create(ui->dateinfopage_retrunbtn); + //lv_label_set_text(ui->dateinfopage_retrunbtn_label, ""); + //lv_label_set_long_mode(ui->dateinfopage_retrunbtn_label, LV_LABEL_LONG_WRAP); + //lv_obj_align(ui->dateinfopage_retrunbtn_label, LV_ALIGN_CENTER, 0, 0); + lv_obj_set_style_pad_all(ui->dateinfopage_retrunbtn, 0, LV_STATE_DEFAULT); + //lv_obj_set_width(ui->displayinfopage_retrunbtn_label, LV_PCT(100)); + lv_obj_set_pos(ui->dateinfopage_retrunbtn, 8, 8); + lv_obj_set_size(ui->dateinfopage_retrunbtn, 60, 60); + + //Write style for displayinfopage_retrunbtn, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. + lv_obj_set_style_bg_opa(ui->dateinfopage_retrunbtn, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_border_width(ui->dateinfopage_retrunbtn, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_radius(ui->dateinfopage_retrunbtn, 5, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_shadow_width(ui->dateinfopage_retrunbtn, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + // lv_obj_set_style_text_color(ui->dateinfopage_retrunbtn, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT); + // lv_obj_set_style_text_font(ui->dateinfopage_retrunbtn, &lv_font_albbhptR_16, LV_PART_MAIN|LV_STATE_DEFAULT); + // lv_obj_set_style_text_opa(ui->dateinfopage_retrunbtn, 255, LV_PART_MAIN|LV_STATE_DEFAULT); + // lv_obj_set_style_text_align(ui->dateinfopage_retrunbtn, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT); + + + //Write codes dateinfopage_sw_1 + ui->dateinfopage_sw_1 = lv_switch_create(ui->dateinfopage); + lv_obj_set_pos(ui->dateinfopage_sw_1, 390, 78); + lv_obj_set_size(ui->dateinfopage_sw_1, 60, 30); + + //Write style for dateinfopage_sw_1, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. + lv_obj_set_style_bg_opa(ui->dateinfopage_sw_1, 255, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_bg_color(ui->dateinfopage_sw_1, lv_color_hex(0x212121), LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_bg_grad_dir(ui->dateinfopage_sw_1, LV_GRAD_DIR_VER, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_bg_grad_color(ui->dateinfopage_sw_1, lv_color_hex(0x212121), LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_bg_main_stop(ui->dateinfopage_sw_1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_bg_grad_stop(ui->dateinfopage_sw_1, 255, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_border_width(ui->dateinfopage_sw_1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_radius(ui->dateinfopage_sw_1, 100, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_shadow_width(ui->dateinfopage_sw_1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + + //Write style for dateinfopage_sw_1, Part: LV_PART_INDICATOR, State: LV_STATE_CHECKED. + lv_obj_set_style_bg_opa(ui->dateinfopage_sw_1, 255, LV_PART_INDICATOR|LV_STATE_CHECKED); + lv_obj_set_style_bg_color(ui->dateinfopage_sw_1, lv_color_hex(0x374c69), LV_PART_INDICATOR|LV_STATE_CHECKED); + lv_obj_set_style_bg_grad_dir(ui->dateinfopage_sw_1, LV_GRAD_DIR_VER, LV_PART_INDICATOR|LV_STATE_CHECKED); + lv_obj_set_style_bg_grad_color(ui->dateinfopage_sw_1, lv_color_hex(0x374c69), LV_PART_INDICATOR|LV_STATE_CHECKED); + lv_obj_set_style_bg_main_stop(ui->dateinfopage_sw_1, 0, LV_PART_INDICATOR|LV_STATE_CHECKED); + lv_obj_set_style_bg_grad_stop(ui->dateinfopage_sw_1, 255, LV_PART_INDICATOR|LV_STATE_CHECKED); + lv_obj_set_style_border_width(ui->dateinfopage_sw_1, 0, LV_PART_INDICATOR|LV_STATE_CHECKED); + + //Write style for dateinfopage_sw_1, Part: LV_PART_KNOB, State: LV_STATE_DEFAULT. + lv_obj_set_style_bg_opa(ui->dateinfopage_sw_1, 255, LV_PART_KNOB|LV_STATE_DEFAULT); + lv_obj_set_style_bg_color(ui->dateinfopage_sw_1, lv_color_hex(0xeb950f), LV_PART_KNOB|LV_STATE_DEFAULT); + lv_obj_set_style_bg_grad_dir(ui->dateinfopage_sw_1, LV_GRAD_DIR_VER, LV_PART_KNOB|LV_STATE_DEFAULT); + lv_obj_set_style_bg_grad_color(ui->dateinfopage_sw_1, lv_color_hex(0xef950f), LV_PART_KNOB|LV_STATE_DEFAULT); + lv_obj_set_style_bg_main_stop(ui->dateinfopage_sw_1, 0, LV_PART_KNOB|LV_STATE_DEFAULT); + lv_obj_set_style_bg_grad_stop(ui->dateinfopage_sw_1, 255, LV_PART_KNOB|LV_STATE_DEFAULT); + lv_obj_set_style_border_width(ui->dateinfopage_sw_1, 0, LV_PART_KNOB|LV_STATE_DEFAULT); + lv_obj_set_style_radius(ui->dateinfopage_sw_1, 100, LV_PART_KNOB|LV_STATE_DEFAULT); + if(GET_nvs_Sys_Info_autoupdatetime()) + { + lv_obj_add_state(ui->dateinfopage_sw_1, LV_STATE_CHECKED);//on + } + else + { + lv_obj_clear_state(ui->dateinfopage_sw_1, LV_STATE_CHECKED);//off + } + //Write codes dateinfopage_label_2 + ui->dateinfopage_label_2 = lv_label_create(ui->dateinfopage); + //lv_label_set_text(ui->dateinfopage_label_2, "Set time Automatically"); + lv_label_set_text(ui->dateinfopage_label_2, Menu_List[GET_nvs_Sys_Info_language()][MENU_LIST_SetClockauto]); + lv_label_set_long_mode(ui->dateinfopage_label_2, LV_LABEL_LONG_WRAP); + lv_obj_set_pos(ui->dateinfopage_label_2, 38, 80); + lv_obj_set_size(ui->dateinfopage_label_2, 250, 24); + + //Write style for dateinfopage_label_2, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. + lv_obj_set_style_border_width(ui->dateinfopage_label_2, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_radius(ui->dateinfopage_label_2, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_color(ui->dateinfopage_label_2, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_font(ui->dateinfopage_label_2, &lv_font_simsun_16, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_opa(ui->dateinfopage_label_2, 255, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_letter_space(ui->dateinfopage_label_2, 2, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_line_space(ui->dateinfopage_label_2, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_align(ui->dateinfopage_label_2, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_bg_opa(ui->dateinfopage_label_2, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_top(ui->dateinfopage_label_2, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_right(ui->dateinfopage_label_2, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_bottom(ui->dateinfopage_label_2, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_left(ui->dateinfopage_label_2, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_shadow_width(ui->dateinfopage_label_2, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + + //Write codes dateinfopage_datecont + ui->dateinfopage_datecont = lv_obj_create(ui->dateinfopage); + lv_obj_set_pos(ui->dateinfopage_datecont, 17, 127); + lv_obj_set_size(ui->dateinfopage_datecont, 443, 50); + lv_obj_set_scrollbar_mode(ui->dateinfopage_datecont, LV_SCROLLBAR_MODE_OFF); + + //Write style for dateinfopage_datecont, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. + lv_obj_set_style_border_width(ui->dateinfopage_datecont, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_radius(ui->dateinfopage_datecont, 10, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_bg_opa(ui->dateinfopage_datecont, 255, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_bg_color(ui->dateinfopage_datecont, lv_color_hex(0x212121), LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_bg_grad_dir(ui->dateinfopage_datecont, LV_GRAD_DIR_VER, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_bg_grad_color(ui->dateinfopage_datecont, lv_color_hex(0x212121), LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_bg_main_stop(ui->dateinfopage_datecont, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_bg_grad_stop(ui->dateinfopage_datecont, 255, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_top(ui->dateinfopage_datecont, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_bottom(ui->dateinfopage_datecont, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_left(ui->dateinfopage_datecont, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_right(ui->dateinfopage_datecont, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_shadow_width(ui->dateinfopage_datecont, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + + //Write codes dateinfopage_img_2 + ui->dateinfopage_img_2 = lv_img_create(ui->dateinfopage_datecont); + lv_obj_add_flag(ui->dateinfopage_img_2, LV_OBJ_FLAG_CLICKABLE); + lv_img_set_src(ui->dateinfopage_img_2, LVGL_PATH(nextpagebg.png)); + lv_img_set_pivot(ui->dateinfopage_img_2, 0,0); + lv_img_set_angle(ui->dateinfopage_img_2, 0); + lv_obj_set_pos(ui->dateinfopage_img_2, 422, 17); + lv_obj_set_size(ui->dateinfopage_img_2, 14, 22); + + + //Write style for dateinfopage_img_2, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. + lv_obj_set_style_img_opa(ui->dateinfopage_img_2, 255, LV_PART_MAIN|LV_STATE_DEFAULT); + + //Write codes dateinfopage_datelabel + ui->dateinfopage_datelabel = lv_label_create(ui->dateinfopage_datecont); +// lv_label_set_text(ui->dateinfopage_datelabel, "Date"); + lv_label_set_text(ui->dateinfopage_datelabel, Menu_List[GET_nvs_Sys_Info_language()][MENU_LIST_SetClockDate]); + lv_label_set_long_mode(ui->dateinfopage_datelabel, LV_LABEL_LONG_WRAP); + lv_obj_set_pos(ui->dateinfopage_datelabel, 21, 0); + lv_obj_set_size(ui->dateinfopage_datelabel, 50, 24); + + //Write style for dateinfopage_datelabel, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. + lv_obj_set_style_border_width(ui->dateinfopage_datelabel, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_radius(ui->dateinfopage_datelabel, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_color(ui->dateinfopage_datelabel, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_font(ui->dateinfopage_datelabel, &lv_font_simsun_16, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_opa(ui->dateinfopage_datelabel, 255, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_letter_space(ui->dateinfopage_datelabel, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_line_space(ui->dateinfopage_datelabel, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_align(ui->dateinfopage_datelabel, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_bg_opa(ui->dateinfopage_datelabel, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_top(ui->dateinfopage_datelabel, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_right(ui->dateinfopage_datelabel, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_bottom(ui->dateinfopage_datelabel, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_left(ui->dateinfopage_datelabel, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_shadow_width(ui->dateinfopage_datelabel, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + + //Write codes dateinfopage_datetxtlabel + ui->dateinfopage_datetxtlabel = lv_label_create(ui->dateinfopage_datecont); + //lv_label_set_text(ui->dateinfopage_datetxtlabel, "January 1, 2023"); + if(GET_nvs_Sys_Info_language()==LANG_CH) + { + lv_label_set_text_fmt(ui->dateinfopage_datetxtlabel,"%d年%d月%d日",timeinfo.tm_year+1900,timeinfo.tm_mon+1,timeinfo.tm_mday); + } + else + { + lv_label_set_text_fmt(ui->dateinfopage_datetxtlabel,"%s %d, %d",Menu_monList[timeinfo.tm_mon+1],timeinfo.tm_mday,timeinfo.tm_year+1900); + } + lv_label_set_long_mode(ui->dateinfopage_datetxtlabel, LV_LABEL_LONG_WRAP); + lv_obj_set_pos(ui->dateinfopage_datetxtlabel, 21, 24); + lv_obj_set_size(ui->dateinfopage_datetxtlabel, 200, 24); + + //Write style for dateinfopage_datetxtlabel, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. + lv_obj_set_style_border_width(ui->dateinfopage_datetxtlabel, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_radius(ui->dateinfopage_datetxtlabel, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_color(ui->dateinfopage_datetxtlabel, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_font(ui->dateinfopage_datetxtlabel, &lv_font_simsun_16, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_opa(ui->dateinfopage_datetxtlabel, 255, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_letter_space(ui->dateinfopage_datetxtlabel, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_line_space(ui->dateinfopage_datetxtlabel, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_align(ui->dateinfopage_datetxtlabel, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_bg_opa(ui->dateinfopage_datetxtlabel, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_top(ui->dateinfopage_datetxtlabel, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_right(ui->dateinfopage_datetxtlabel, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_bottom(ui->dateinfopage_datetxtlabel, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_left(ui->dateinfopage_datetxtlabel, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_shadow_width(ui->dateinfopage_datetxtlabel, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + + //Write codes dateinfopage_datebtn + ui->dateinfopage_datebtn = lv_btn_create(ui->dateinfopage_datecont); + ui->dateinfopage_datebtn_label = lv_label_create(ui->dateinfopage_datebtn); + lv_label_set_text(ui->dateinfopage_datebtn_label, ""); + lv_label_set_long_mode(ui->dateinfopage_datebtn_label, LV_LABEL_LONG_WRAP); + lv_obj_align(ui->dateinfopage_datebtn_label, LV_ALIGN_CENTER, 0, 0); + lv_obj_set_style_pad_all(ui->dateinfopage_datebtn, 0, LV_STATE_DEFAULT); + lv_obj_set_width(ui->dateinfopage_datebtn_label, LV_PCT(100)); + lv_obj_set_pos(ui->dateinfopage_datebtn, 0, 0); + lv_obj_set_size(ui->dateinfopage_datebtn, 443, 50); + + //Write style for dateinfopage_datebtn, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. + lv_obj_set_style_bg_opa(ui->dateinfopage_datebtn, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_border_width(ui->dateinfopage_datebtn, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_radius(ui->dateinfopage_datebtn, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_shadow_width(ui->dateinfopage_datebtn, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_color(ui->dateinfopage_datebtn, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_font(ui->dateinfopage_datebtn, &lv_font_simsun_16, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_opa(ui->dateinfopage_datebtn, 255, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_align(ui->dateinfopage_datebtn, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT); + + //Write style for dateinfopage_datebtn, Part: LV_PART_MAIN, State: LV_STATE_DISABLED. + lv_obj_set_style_bg_opa(ui->dateinfopage_datebtn, 202, LV_PART_MAIN|LV_STATE_DISABLED); + lv_obj_set_style_bg_color(ui->dateinfopage_datebtn, lv_color_hex(0x212121), LV_PART_MAIN|LV_STATE_DISABLED); + lv_obj_set_style_bg_grad_dir(ui->dateinfopage_datebtn, LV_GRAD_DIR_VER, LV_PART_MAIN|LV_STATE_DISABLED); + lv_obj_set_style_bg_grad_color(ui->dateinfopage_datebtn, lv_color_hex(0x212121), LV_PART_MAIN|LV_STATE_DISABLED); + lv_obj_set_style_bg_main_stop(ui->dateinfopage_datebtn, 0, LV_PART_MAIN|LV_STATE_DISABLED); + lv_obj_set_style_bg_grad_stop(ui->dateinfopage_datebtn, 255, LV_PART_MAIN|LV_STATE_DISABLED); + lv_obj_set_style_border_width(ui->dateinfopage_datebtn, 0, LV_PART_MAIN|LV_STATE_DISABLED); + lv_obj_set_style_radius(ui->dateinfopage_datebtn, 10, LV_PART_MAIN|LV_STATE_DISABLED); + lv_obj_set_style_shadow_width(ui->dateinfopage_datebtn, 0, LV_PART_MAIN|LV_STATE_DISABLED); + lv_obj_set_style_text_color(ui->dateinfopage_datebtn, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DISABLED); + lv_obj_set_style_text_font(ui->dateinfopage_datebtn, &lv_font_simsun_16, LV_PART_MAIN|LV_STATE_DISABLED); + lv_obj_set_style_text_opa(ui->dateinfopage_datebtn, 255, LV_PART_MAIN|LV_STATE_DISABLED); + + //Write codes dateinfopage_timecont + ui->dateinfopage_timecont = lv_obj_create(ui->dateinfopage); + lv_obj_set_pos(ui->dateinfopage_timecont, 17, 182); + lv_obj_set_size(ui->dateinfopage_timecont, 443, 50); + lv_obj_set_scrollbar_mode(ui->dateinfopage_timecont, LV_SCROLLBAR_MODE_OFF); + + //Write style for dateinfopage_timecont, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. + lv_obj_set_style_border_width(ui->dateinfopage_timecont, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_radius(ui->dateinfopage_timecont, 10, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_bg_opa(ui->dateinfopage_timecont, 255, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_bg_color(ui->dateinfopage_timecont, lv_color_hex(0x212121), LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_bg_grad_dir(ui->dateinfopage_timecont, LV_GRAD_DIR_VER, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_bg_grad_color(ui->dateinfopage_timecont, lv_color_hex(0x212121), LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_bg_main_stop(ui->dateinfopage_timecont, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_bg_grad_stop(ui->dateinfopage_timecont, 255, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_top(ui->dateinfopage_timecont, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_bottom(ui->dateinfopage_timecont, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_left(ui->dateinfopage_timecont, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_right(ui->dateinfopage_timecont, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_shadow_width(ui->dateinfopage_timecont, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + + //Write codes dateinfopage_img_3 + ui->dateinfopage_img_3 = lv_img_create(ui->dateinfopage_timecont); + lv_obj_add_flag(ui->dateinfopage_img_3, LV_OBJ_FLAG_CLICKABLE); + lv_img_set_src(ui->dateinfopage_img_3, LVGL_PATH(nextpagebg.png)); + lv_img_set_pivot(ui->dateinfopage_img_3, 0,0); + lv_img_set_angle(ui->dateinfopage_img_3, 0); + lv_obj_set_pos(ui->dateinfopage_img_3, 422, 17); + lv_obj_set_size(ui->dateinfopage_img_3, 14, 22); + + //Write style for dateinfopage_img_3, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. + lv_obj_set_style_img_opa(ui->dateinfopage_img_3, 255, LV_PART_MAIN|LV_STATE_DEFAULT); + + //Write codes dateinfopage_timeclabel + ui->dateinfopage_timeclabel = lv_label_create(ui->dateinfopage_timecont); +// lv_label_set_text(ui->dateinfopage_timeclabel, "Time"); + lv_label_set_text(ui->dateinfopage_timeclabel, Menu_List[GET_nvs_Sys_Info_language()][MENU_LIST_SetClockTime]); + lv_label_set_long_mode(ui->dateinfopage_timeclabel, LV_LABEL_LONG_WRAP); + lv_obj_set_pos(ui->dateinfopage_timeclabel, 21, 0); + lv_obj_set_size(ui->dateinfopage_timeclabel, 50, 24); + + //Write style for dateinfopage_timeclabel, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. + lv_obj_set_style_border_width(ui->dateinfopage_timeclabel, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_radius(ui->dateinfopage_timeclabel, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_color(ui->dateinfopage_timeclabel, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_font(ui->dateinfopage_timeclabel, &lv_font_simsun_16, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_opa(ui->dateinfopage_timeclabel, 255, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_letter_space(ui->dateinfopage_timeclabel, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_line_space(ui->dateinfopage_timeclabel, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_align(ui->dateinfopage_timeclabel, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_bg_opa(ui->dateinfopage_timeclabel, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_top(ui->dateinfopage_timeclabel, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_right(ui->dateinfopage_timeclabel, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_bottom(ui->dateinfopage_timeclabel, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_left(ui->dateinfopage_timeclabel, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_shadow_width(ui->dateinfopage_timeclabel, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + + //Write codes dateinfopage_timetxtlabel + ui->dateinfopage_timetxtlabel = lv_label_create(ui->dateinfopage_timecont); + //lv_label_set_text(ui->dateinfopage_timetxtlabel, "09:48"); + lv_label_set_text_fmt(ui->dateinfopage_timetxtlabel,"%02d:%02d",timeinfo.tm_hour,timeinfo.tm_min); + + lv_label_set_long_mode(ui->dateinfopage_timetxtlabel, LV_LABEL_LONG_WRAP); + lv_obj_set_pos(ui->dateinfopage_timetxtlabel, 21, 24); + lv_obj_set_size(ui->dateinfopage_timetxtlabel, 60, 24); + + //Write style for dateinfopage_timetxtlabel, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. + lv_obj_set_style_border_width(ui->dateinfopage_timetxtlabel, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_radius(ui->dateinfopage_timetxtlabel, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_color(ui->dateinfopage_timetxtlabel, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_font(ui->dateinfopage_timetxtlabel, &lv_font_simsun_16, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_opa(ui->dateinfopage_timetxtlabel, 255, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_letter_space(ui->dateinfopage_timetxtlabel, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_line_space(ui->dateinfopage_timetxtlabel, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_align(ui->dateinfopage_timetxtlabel, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_bg_opa(ui->dateinfopage_timetxtlabel, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_top(ui->dateinfopage_timetxtlabel, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_right(ui->dateinfopage_timetxtlabel, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_bottom(ui->dateinfopage_timetxtlabel, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_left(ui->dateinfopage_timetxtlabel, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_shadow_width(ui->dateinfopage_timetxtlabel, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + + //Write codes dateinfopage_timebtn + ui->dateinfopage_timebtn = lv_btn_create(ui->dateinfopage_timecont); + ui->dateinfopage_timebtn_label = lv_label_create(ui->dateinfopage_timebtn); + lv_label_set_text(ui->dateinfopage_timebtn_label, ""); + lv_label_set_long_mode(ui->dateinfopage_timebtn_label, LV_LABEL_LONG_WRAP); + lv_obj_align(ui->dateinfopage_timebtn_label, LV_ALIGN_CENTER, 0, 0); + lv_obj_set_style_pad_all(ui->dateinfopage_timebtn, 0, LV_STATE_DEFAULT); + lv_obj_set_width(ui->dateinfopage_timebtn_label, LV_PCT(100)); + lv_obj_set_pos(ui->dateinfopage_timebtn, 0, 0); + lv_obj_set_size(ui->dateinfopage_timebtn, 443, 50); + + //Write style for dateinfopage_timebtn, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. + lv_obj_set_style_bg_opa(ui->dateinfopage_timebtn, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_border_width(ui->dateinfopage_timebtn, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_radius(ui->dateinfopage_timebtn, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_shadow_width(ui->dateinfopage_timebtn, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_color(ui->dateinfopage_timebtn, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_font(ui->dateinfopage_timebtn, &lv_font_simsun_16, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_opa(ui->dateinfopage_timebtn, 255, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_align(ui->dateinfopage_timebtn, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT); + + //Write style for dateinfopage_timebtn, Part: LV_PART_MAIN, State: LV_STATE_DISABLED. + lv_obj_set_style_bg_opa(ui->dateinfopage_timebtn, 204, LV_PART_MAIN|LV_STATE_DISABLED); + lv_obj_set_style_bg_color(ui->dateinfopage_timebtn, lv_color_hex(0x212121), LV_PART_MAIN|LV_STATE_DISABLED); + lv_obj_set_style_bg_grad_dir(ui->dateinfopage_timebtn, LV_GRAD_DIR_VER, LV_PART_MAIN|LV_STATE_DISABLED); + lv_obj_set_style_bg_grad_color(ui->dateinfopage_timebtn, lv_color_hex(0x212121), LV_PART_MAIN|LV_STATE_DISABLED); + lv_obj_set_style_bg_main_stop(ui->dateinfopage_timebtn, 0, LV_PART_MAIN|LV_STATE_DISABLED); + lv_obj_set_style_bg_grad_stop(ui->dateinfopage_timebtn, 255, LV_PART_MAIN|LV_STATE_DISABLED); + lv_obj_set_style_border_width(ui->dateinfopage_timebtn, 0, LV_PART_MAIN|LV_STATE_DISABLED); + lv_obj_set_style_radius(ui->dateinfopage_timebtn, 10, LV_PART_MAIN|LV_STATE_DISABLED); + lv_obj_set_style_shadow_width(ui->dateinfopage_timebtn, 0, LV_PART_MAIN|LV_STATE_DISABLED); + lv_obj_set_style_text_color(ui->dateinfopage_timebtn, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DISABLED); + lv_obj_set_style_text_font(ui->dateinfopage_timebtn, &lv_font_simsun_16, LV_PART_MAIN|LV_STATE_DISABLED); + lv_obj_set_style_text_opa(ui->dateinfopage_timebtn, 255, LV_PART_MAIN|LV_STATE_DISABLED); + + //The custom code of dateinfopage. + if(GET_nvs_Sys_Info_autoupdatetime())//自动更新时间要把按钮禁用掉 + { + //lv_obj_add_state(ui->dateinfopage_timebtn, LV_STATE_DISABLED);//off + + //日期按键禁止按下 + lv_obj_add_state(guider_ui.dateinfopage_datebtn, LV_STATE_DISABLED);//off + //时间禁止允许按下 + lv_obj_add_state(guider_ui.dateinfopage_timebtn, LV_STATE_DISABLED);//off + } + else//手动更新时间 允许按钮操作 + { + //lv_obj_add_state(ui->dateinfopage_timebtn, LV_STATE_DEFAULT);//on + + //日期按键允许按下 + lv_obj_clear_state(ui->dateinfopage_datebtn, LV_STATE_DISABLED);//on + //时间按键允许按下 + lv_obj_clear_state(ui->dateinfopage_timebtn, LV_STATE_DISABLED);//on + } + //Update current screen layout. + lv_obj_update_layout(ui->dateinfopage); + + //Init events for screen. + events_init_dateinfopage(ui); +} diff --git a/application/rt-thread/t3e-pro/components/generated/setup_scr_datesetpage.c b/application/rt-thread/t3e-pro/components/generated/setup_scr_datesetpage.c new file mode 100644 index 00000000..429477b3 --- /dev/null +++ b/application/rt-thread/t3e-pro/components/generated/setup_scr_datesetpage.c @@ -0,0 +1,654 @@ +/* +* Copyright 2025 NXP +* NXP Confidential and Proprietary. This software is owned or controlled by NXP and may only be used strictly in +* accordance with the applicable license terms. By expressly accepting such terms or by downloading, installing, +* activating and/or otherwise using the software, you are agreeing that you have read, and that you agree to +* comply with and are bound by, such license terms. If you do not agree to be bound by the applicable license +* terms, then you may not retain, install, activate or otherwise use the software. +*/ + +#include +#include +#include +#include +#include + +#include "lvgl.h" +#include "gui_guider.h" +#include "events_init.h" +#include "widgets_init.h" +#include "custom.h" + + +//显示最新的时间和时区 +void setup_scr_datesetpage(lv_ui *ui) +{ + time_t now; + struct tm timeinfo; + + time(&now); + localtime_r(&now, &timeinfo); + + LOG_I("timezone utc:%d",tz_get()); + LOG_I("time==%d:%d:%d:%d:%02d:%02d:%02d:%02d:%02d", + timeinfo.tm_isdst, //是否为夏时制 + timeinfo.tm_yday, //一年过去的天数 + timeinfo.tm_wday, //星期,1对应星期一 + timeinfo.tm_year+1900, //年,距离1900年的差值,默认是70 + timeinfo.tm_mon+1, //日期:月,从0开始 0~11 + timeinfo.tm_mday, //日期:日,从1开始 + timeinfo.tm_hour, //小时 + timeinfo.tm_min, //分钟 + timeinfo.tm_sec); //秒钟 + + + //Write codes datesetpage + ui->datesetpage = lv_obj_create(NULL); + lv_obj_set_size(ui->datesetpage, 480, 480); + lv_obj_set_scrollbar_mode(ui->datesetpage, LV_SCROLLBAR_MODE_OFF); + + //Write style for datesetpage, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. + lv_obj_set_style_bg_opa(ui->datesetpage, 255, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_bg_color(ui->datesetpage, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_bg_grad_dir(ui->datesetpage, LV_GRAD_DIR_NONE, LV_PART_MAIN|LV_STATE_DEFAULT); + + //Write codes datesetpage_returnbg + ui->datesetpage_returnbg = lv_img_create(ui->datesetpage); + lv_obj_add_flag(ui->datesetpage_returnbg, LV_OBJ_FLAG_CLICKABLE); + lv_img_set_src(ui->datesetpage_returnbg, LVGL_PATH(returnbg.png)); + lv_img_set_pivot(ui->datesetpage_returnbg, 50,50); + lv_img_set_angle(ui->datesetpage_returnbg, 0); + lv_obj_set_pos(ui->datesetpage_returnbg, 23, 27); + lv_obj_set_size(ui->datesetpage_returnbg, 14, 26); + + //Write style for datesetpage_returnbg, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. + lv_obj_set_style_img_opa(ui->datesetpage_returnbg, 255, LV_PART_MAIN|LV_STATE_DEFAULT); + + //Write codes datesetpage_retrunbtn + ui->datesetpage_retrunbtn = lv_btn_create(ui->datesetpage); + ui->datesetpage_retrunbtn_label = lv_label_create(ui->datesetpage_retrunbtn); + lv_label_set_text(ui->datesetpage_retrunbtn_label, ""); + lv_label_set_long_mode(ui->datesetpage_retrunbtn_label, LV_LABEL_LONG_WRAP); + lv_obj_align(ui->datesetpage_retrunbtn_label, LV_ALIGN_CENTER, 0, 0); + lv_obj_set_style_pad_all(ui->datesetpage_retrunbtn, 0, LV_STATE_DEFAULT); + lv_obj_set_width(ui->datesetpage_retrunbtn_label, LV_PCT(100)); + lv_obj_set_pos(ui->datesetpage_retrunbtn, 7, 10); + lv_obj_set_size(ui->datesetpage_retrunbtn, 60, 60); + + //Write style for datesetpage_retrunbtn, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. + lv_obj_set_style_bg_opa(ui->datesetpage_retrunbtn, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_border_width(ui->datesetpage_retrunbtn, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_radius(ui->datesetpage_retrunbtn, 5, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_shadow_width(ui->datesetpage_retrunbtn, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_color(ui->datesetpage_retrunbtn, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_font(ui->datesetpage_retrunbtn, &lv_font_albbhptR_20, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_opa(ui->datesetpage_retrunbtn, 255, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_align(ui->datesetpage_retrunbtn, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT); + + //Write codes datesetpage_label_1 + ui->datesetpage_label_1 = lv_label_create(ui->datesetpage); + //lv_label_set_text(ui->datesetpage_label_1, "Time Zone"); + lv_label_set_text(ui->datesetpage_label_1, Menu_List[GET_nvs_Sys_Info_language()][MENU_LIST_SetClockZone]); + lv_label_set_long_mode(ui->datesetpage_label_1, LV_LABEL_LONG_WRAP); + lv_obj_set_pos(ui->datesetpage_label_1, 44, 82); + lv_obj_set_size(ui->datesetpage_label_1, 180, 20); + + //Write style for datesetpage_label_1, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. + lv_obj_set_style_border_width(ui->datesetpage_label_1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_radius(ui->datesetpage_label_1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_color(ui->datesetpage_label_1, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_font(ui->datesetpage_label_1, &lv_font_albbhptR_20, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_opa(ui->datesetpage_label_1, 255, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_letter_space(ui->datesetpage_label_1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_line_space(ui->datesetpage_label_1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_align(ui->datesetpage_label_1, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_bg_opa(ui->datesetpage_label_1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_top(ui->datesetpage_label_1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_right(ui->datesetpage_label_1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_bottom(ui->datesetpage_label_1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_left(ui->datesetpage_label_1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_shadow_width(ui->datesetpage_label_1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + + //Write codes datesetpage_zoneddlist + ui->datesetpage_zoneddlist = lv_dropdown_create(ui->datesetpage); + lv_dropdown_set_options(ui->datesetpage_zoneddlist, "UTC-12\nUTC-11\nUTC-10\nUTC-09\nUTC-08\nUTC-07\nUTC-06\nUTC-05\nUTC-04\nUTC-03\nUTC-02\nUTC-01\nUTC+00\nUTC+01\nUTC+02\nUTC+03\nUTC+04\nUTC+05\nUTC+06\nUTC+07\nUTC+08\nUTC+09\nUTC+10\nUTC+11\nUTC+12"); + lv_obj_set_pos(ui->datesetpage_zoneddlist, 39, 113); + lv_obj_set_size(ui->datesetpage_zoneddlist, 403, 35); +//0--UTC-12 ....12---UTC+0...... 关系:+12 + lv_dropdown_set_selected(ui->datesetpage_zoneddlist,tz_get()+12);//-12~+12----->0~24 + + //Write style for datesetpage_zoneddlist, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. + lv_obj_set_style_text_color(ui->datesetpage_zoneddlist, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_font(ui->datesetpage_zoneddlist, &lv_font_albbhptR_20, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_opa(ui->datesetpage_zoneddlist, 255, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_border_width(ui->datesetpage_zoneddlist, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_top(ui->datesetpage_zoneddlist, 8, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_left(ui->datesetpage_zoneddlist, 6, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_right(ui->datesetpage_zoneddlist, 6, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_radius(ui->datesetpage_zoneddlist, 10, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_bg_opa(ui->datesetpage_zoneddlist, 255, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_bg_color(ui->datesetpage_zoneddlist, lv_color_hex(0x00A8FF), LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_bg_grad_dir(ui->datesetpage_zoneddlist, LV_GRAD_DIR_NONE, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_shadow_width(ui->datesetpage_zoneddlist, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + + //Write style state: LV_STATE_CHECKED for &style_datesetpage_zoneddlist_extra_list_selected_checked + static lv_style_t style_datesetpage_zoneddlist_extra_list_selected_checked; + ui_init_style(&style_datesetpage_zoneddlist_extra_list_selected_checked); + + lv_style_set_border_width(&style_datesetpage_zoneddlist_extra_list_selected_checked, 1); + lv_style_set_border_opa(&style_datesetpage_zoneddlist_extra_list_selected_checked, 255); + lv_style_set_border_color(&style_datesetpage_zoneddlist_extra_list_selected_checked, lv_color_hex(0xe1e6ee)); + lv_style_set_border_side(&style_datesetpage_zoneddlist_extra_list_selected_checked, LV_BORDER_SIDE_FULL); + lv_style_set_radius(&style_datesetpage_zoneddlist_extra_list_selected_checked, 3); + lv_style_set_bg_opa(&style_datesetpage_zoneddlist_extra_list_selected_checked, 255); + lv_style_set_bg_color(&style_datesetpage_zoneddlist_extra_list_selected_checked, lv_color_hex(0x00a1b5)); + lv_style_set_bg_grad_dir(&style_datesetpage_zoneddlist_extra_list_selected_checked, LV_GRAD_DIR_NONE); + lv_obj_add_style(lv_dropdown_get_list(ui->datesetpage_zoneddlist), &style_datesetpage_zoneddlist_extra_list_selected_checked, LV_PART_SELECTED|LV_STATE_CHECKED); + + //Write style state: LV_STATE_DEFAULT for &style_datesetpage_zoneddlist_extra_list_main_default + static lv_style_t style_datesetpage_zoneddlist_extra_list_main_default; + ui_init_style(&style_datesetpage_zoneddlist_extra_list_main_default); + + lv_style_set_max_height(&style_datesetpage_zoneddlist_extra_list_main_default, 320); + lv_style_set_text_color(&style_datesetpage_zoneddlist_extra_list_main_default, lv_color_hex(0x0D3055)); + lv_style_set_text_font(&style_datesetpage_zoneddlist_extra_list_main_default, &lv_font_albbhptR_20); + lv_style_set_text_opa(&style_datesetpage_zoneddlist_extra_list_main_default, 255); + lv_style_set_border_width(&style_datesetpage_zoneddlist_extra_list_main_default, 1); + lv_style_set_border_opa(&style_datesetpage_zoneddlist_extra_list_main_default, 255); + lv_style_set_border_color(&style_datesetpage_zoneddlist_extra_list_main_default, lv_color_hex(0xe1e6ee)); + lv_style_set_border_side(&style_datesetpage_zoneddlist_extra_list_main_default, LV_BORDER_SIDE_FULL); + lv_style_set_radius(&style_datesetpage_zoneddlist_extra_list_main_default, 3); + lv_style_set_bg_opa(&style_datesetpage_zoneddlist_extra_list_main_default, 255); + lv_style_set_bg_color(&style_datesetpage_zoneddlist_extra_list_main_default, lv_color_hex(0xffffff)); + lv_style_set_bg_grad_dir(&style_datesetpage_zoneddlist_extra_list_main_default, LV_GRAD_DIR_NONE); + lv_obj_add_style(lv_dropdown_get_list(ui->datesetpage_zoneddlist), &style_datesetpage_zoneddlist_extra_list_main_default, LV_PART_MAIN|LV_STATE_DEFAULT); + + //Write style state: LV_STATE_DEFAULT for &style_datesetpage_zoneddlist_extra_list_scrollbar_default + static lv_style_t style_datesetpage_zoneddlist_extra_list_scrollbar_default; + ui_init_style(&style_datesetpage_zoneddlist_extra_list_scrollbar_default); + + lv_style_set_radius(&style_datesetpage_zoneddlist_extra_list_scrollbar_default, 3); + lv_style_set_bg_opa(&style_datesetpage_zoneddlist_extra_list_scrollbar_default, 255); + lv_style_set_bg_color(&style_datesetpage_zoneddlist_extra_list_scrollbar_default, lv_color_hex(0x00ff00)); + lv_style_set_bg_grad_dir(&style_datesetpage_zoneddlist_extra_list_scrollbar_default, LV_GRAD_DIR_NONE); + lv_obj_add_style(lv_dropdown_get_list(ui->datesetpage_zoneddlist), &style_datesetpage_zoneddlist_extra_list_scrollbar_default, LV_PART_SCROLLBAR|LV_STATE_DEFAULT); + + //Write codes datesetpage_label_2 + ui->datesetpage_label_2 = lv_label_create(ui->datesetpage); + //lv_label_set_text(ui->datesetpage_label_2, "Date"); + lv_label_set_text(ui->datesetpage_label_2, Menu_List[GET_nvs_Sys_Info_language()][MENU_LIST_SetClockDate]); + + lv_label_set_long_mode(ui->datesetpage_label_2, LV_LABEL_LONG_WRAP); + lv_obj_set_pos(ui->datesetpage_label_2, 44, 179); + lv_obj_set_size(ui->datesetpage_label_2, 180, 20); + + //Write style for datesetpage_label_2, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. + lv_obj_set_style_border_width(ui->datesetpage_label_2, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_radius(ui->datesetpage_label_2, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_color(ui->datesetpage_label_2, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_font(ui->datesetpage_label_2, &lv_font_albbhptR_20, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_opa(ui->datesetpage_label_2, 255, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_letter_space(ui->datesetpage_label_2, 2, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_line_space(ui->datesetpage_label_2, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_align(ui->datesetpage_label_2, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_bg_opa(ui->datesetpage_label_2, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_top(ui->datesetpage_label_2, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_right(ui->datesetpage_label_2, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_bottom(ui->datesetpage_label_2, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_left(ui->datesetpage_label_2, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_shadow_width(ui->datesetpage_label_2, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + + //Write codes datesetpage_yearddlist + ui->datesetpage_yearddlist = lv_dropdown_create(ui->datesetpage); + lv_dropdown_set_options(ui->datesetpage_yearddlist, "2024\n2025\n2026\n2027\n2028\n2029\n2030\n2031\n2032\n2033\n2034\n2035\n2036\n2037\n2038\n2039\n2040\n2041\n2042\n2043\n2044\n2045\n2046\n2047\n2048\n2049\n2050\n2051\n2052\n2053\n2054\n2055\n2056\n2057\n2058\n2059\n2060\n2061\n2062\n2063\n2064\n2065\n2066\n2067\n2068\n2069\n2070\n2071\n2072\n2073\n2074\n2075\n2076\n2077\n2078\n2079\n2080\n2081\n2082\n2083\n2084\n2085\n2086\n2087\n2088\n2089\n2090\n2091\n2092\n2093\n2094\n2095\n2096\n2097\n2098\n2099"); + lv_obj_set_pos(ui->datesetpage_yearddlist, 39, 210); + lv_obj_set_size(ui->datesetpage_yearddlist, 120, 35); + //(timeinfo.tm_year+1900)-2004 + lv_dropdown_set_selected(ui->datesetpage_yearddlist,(timeinfo.tm_year+1900)-2024); + + //Write style for datesetpage_yearddlist, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. + lv_obj_set_style_text_color(ui->datesetpage_yearddlist, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_font(ui->datesetpage_yearddlist, &lv_font_albbhptR_20, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_opa(ui->datesetpage_yearddlist, 255, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_border_width(ui->datesetpage_yearddlist, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_top(ui->datesetpage_yearddlist, 8, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_left(ui->datesetpage_yearddlist, 6, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_right(ui->datesetpage_yearddlist, 6, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_radius(ui->datesetpage_yearddlist, 10, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_bg_opa(ui->datesetpage_yearddlist, 255, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_bg_color(ui->datesetpage_yearddlist, lv_color_hex(0x00A8FF), LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_bg_grad_dir(ui->datesetpage_yearddlist, LV_GRAD_DIR_NONE, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_shadow_width(ui->datesetpage_yearddlist, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + + //Write style state: LV_STATE_CHECKED for &style_datesetpage_yearddlist_extra_list_selected_checked + static lv_style_t style_datesetpage_yearddlist_extra_list_selected_checked; + ui_init_style(&style_datesetpage_yearddlist_extra_list_selected_checked); + + lv_style_set_border_width(&style_datesetpage_yearddlist_extra_list_selected_checked, 1); + lv_style_set_border_opa(&style_datesetpage_yearddlist_extra_list_selected_checked, 255); + lv_style_set_border_color(&style_datesetpage_yearddlist_extra_list_selected_checked, lv_color_hex(0xe1e6ee)); + lv_style_set_border_side(&style_datesetpage_yearddlist_extra_list_selected_checked, LV_BORDER_SIDE_FULL); + lv_style_set_radius(&style_datesetpage_yearddlist_extra_list_selected_checked, 3); + lv_style_set_bg_opa(&style_datesetpage_yearddlist_extra_list_selected_checked, 255); + lv_style_set_bg_color(&style_datesetpage_yearddlist_extra_list_selected_checked, lv_color_hex(0x00a1b5)); + lv_style_set_bg_grad_dir(&style_datesetpage_yearddlist_extra_list_selected_checked, LV_GRAD_DIR_NONE); + lv_obj_add_style(lv_dropdown_get_list(ui->datesetpage_yearddlist), &style_datesetpage_yearddlist_extra_list_selected_checked, LV_PART_SELECTED|LV_STATE_CHECKED); + + //Write style state: LV_STATE_DEFAULT for &style_datesetpage_yearddlist_extra_list_main_default + static lv_style_t style_datesetpage_yearddlist_extra_list_main_default; + ui_init_style(&style_datesetpage_yearddlist_extra_list_main_default); + + lv_style_set_max_height(&style_datesetpage_yearddlist_extra_list_main_default, 150); + lv_style_set_text_color(&style_datesetpage_yearddlist_extra_list_main_default, lv_color_hex(0x0D3055)); + lv_style_set_text_font(&style_datesetpage_yearddlist_extra_list_main_default, &lv_font_albbhptR_20); + lv_style_set_text_opa(&style_datesetpage_yearddlist_extra_list_main_default, 255); + lv_style_set_border_width(&style_datesetpage_yearddlist_extra_list_main_default, 1); + lv_style_set_border_opa(&style_datesetpage_yearddlist_extra_list_main_default, 255); + lv_style_set_border_color(&style_datesetpage_yearddlist_extra_list_main_default, lv_color_hex(0xe1e6ee)); + lv_style_set_border_side(&style_datesetpage_yearddlist_extra_list_main_default, LV_BORDER_SIDE_FULL); + lv_style_set_radius(&style_datesetpage_yearddlist_extra_list_main_default, 3); + lv_style_set_bg_opa(&style_datesetpage_yearddlist_extra_list_main_default, 255); + lv_style_set_bg_color(&style_datesetpage_yearddlist_extra_list_main_default, lv_color_hex(0xffffff)); + lv_style_set_bg_grad_dir(&style_datesetpage_yearddlist_extra_list_main_default, LV_GRAD_DIR_NONE); + lv_obj_add_style(lv_dropdown_get_list(ui->datesetpage_yearddlist), &style_datesetpage_yearddlist_extra_list_main_default, LV_PART_MAIN|LV_STATE_DEFAULT); + + //Write style state: LV_STATE_DEFAULT for &style_datesetpage_yearddlist_extra_list_scrollbar_default + static lv_style_t style_datesetpage_yearddlist_extra_list_scrollbar_default; + ui_init_style(&style_datesetpage_yearddlist_extra_list_scrollbar_default); + + lv_style_set_radius(&style_datesetpage_yearddlist_extra_list_scrollbar_default, 3); + lv_style_set_bg_opa(&style_datesetpage_yearddlist_extra_list_scrollbar_default, 255); + lv_style_set_bg_color(&style_datesetpage_yearddlist_extra_list_scrollbar_default, lv_color_hex(0x00ff00)); + lv_style_set_bg_grad_dir(&style_datesetpage_yearddlist_extra_list_scrollbar_default, LV_GRAD_DIR_NONE); + lv_obj_add_style(lv_dropdown_get_list(ui->datesetpage_yearddlist), &style_datesetpage_yearddlist_extra_list_scrollbar_default, LV_PART_SCROLLBAR|LV_STATE_DEFAULT); + + //Write codes datesetpage_moonddlist + ui->datesetpage_moonddlist = lv_dropdown_create(ui->datesetpage); + lv_dropdown_set_options(ui->datesetpage_moonddlist, "01\n02\n03\n04\n05\n06\n07\n08\n09\n10\n11\n12"); + lv_obj_set_pos(ui->datesetpage_moonddlist, 200, 210); + lv_obj_set_size(ui->datesetpage_moonddlist, 80, 35); + //timeinfo.tm_mon //日期:月,从0开始 0~11 刚好对应 + lv_dropdown_set_selected(ui->datesetpage_moonddlist,timeinfo.tm_mon); + + //Write style for datesetpage_moonddlist, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. + lv_obj_set_style_text_color(ui->datesetpage_moonddlist, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_font(ui->datesetpage_moonddlist, &lv_font_albbhptR_20, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_opa(ui->datesetpage_moonddlist, 255, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_border_width(ui->datesetpage_moonddlist, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_top(ui->datesetpage_moonddlist, 8, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_left(ui->datesetpage_moonddlist, 6, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_right(ui->datesetpage_moonddlist, 6, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_radius(ui->datesetpage_moonddlist, 10, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_bg_opa(ui->datesetpage_moonddlist, 255, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_bg_color(ui->datesetpage_moonddlist, lv_color_hex(0x00A8FF), LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_bg_grad_dir(ui->datesetpage_moonddlist, LV_GRAD_DIR_NONE, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_shadow_width(ui->datesetpage_moonddlist, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + + //Write style state: LV_STATE_CHECKED for &style_datesetpage_moonddlist_extra_list_selected_checked + static lv_style_t style_datesetpage_moonddlist_extra_list_selected_checked; + ui_init_style(&style_datesetpage_moonddlist_extra_list_selected_checked); + + lv_style_set_border_width(&style_datesetpage_moonddlist_extra_list_selected_checked, 1); + lv_style_set_border_opa(&style_datesetpage_moonddlist_extra_list_selected_checked, 255); + lv_style_set_border_color(&style_datesetpage_moonddlist_extra_list_selected_checked, lv_color_hex(0xe1e6ee)); + lv_style_set_border_side(&style_datesetpage_moonddlist_extra_list_selected_checked, LV_BORDER_SIDE_FULL); + lv_style_set_radius(&style_datesetpage_moonddlist_extra_list_selected_checked, 3); + lv_style_set_bg_opa(&style_datesetpage_moonddlist_extra_list_selected_checked, 255); + lv_style_set_bg_color(&style_datesetpage_moonddlist_extra_list_selected_checked, lv_color_hex(0x00a1b5)); + lv_style_set_bg_grad_dir(&style_datesetpage_moonddlist_extra_list_selected_checked, LV_GRAD_DIR_NONE); + lv_obj_add_style(lv_dropdown_get_list(ui->datesetpage_moonddlist), &style_datesetpage_moonddlist_extra_list_selected_checked, LV_PART_SELECTED|LV_STATE_CHECKED); + + //Write style state: LV_STATE_DEFAULT for &style_datesetpage_moonddlist_extra_list_main_default + static lv_style_t style_datesetpage_moonddlist_extra_list_main_default; + ui_init_style(&style_datesetpage_moonddlist_extra_list_main_default); + + lv_style_set_max_height(&style_datesetpage_moonddlist_extra_list_main_default, 150); + lv_style_set_text_color(&style_datesetpage_moonddlist_extra_list_main_default, lv_color_hex(0x0D3055)); + lv_style_set_text_font(&style_datesetpage_moonddlist_extra_list_main_default, &lv_font_albbhptR_20); + lv_style_set_text_opa(&style_datesetpage_moonddlist_extra_list_main_default, 255); + lv_style_set_border_width(&style_datesetpage_moonddlist_extra_list_main_default, 1); + lv_style_set_border_opa(&style_datesetpage_moonddlist_extra_list_main_default, 255); + lv_style_set_border_color(&style_datesetpage_moonddlist_extra_list_main_default, lv_color_hex(0xe1e6ee)); + lv_style_set_border_side(&style_datesetpage_moonddlist_extra_list_main_default, LV_BORDER_SIDE_FULL); + lv_style_set_radius(&style_datesetpage_moonddlist_extra_list_main_default, 3); + lv_style_set_bg_opa(&style_datesetpage_moonddlist_extra_list_main_default, 255); + lv_style_set_bg_color(&style_datesetpage_moonddlist_extra_list_main_default, lv_color_hex(0xffffff)); + lv_style_set_bg_grad_dir(&style_datesetpage_moonddlist_extra_list_main_default, LV_GRAD_DIR_NONE); + lv_obj_add_style(lv_dropdown_get_list(ui->datesetpage_moonddlist), &style_datesetpage_moonddlist_extra_list_main_default, LV_PART_MAIN|LV_STATE_DEFAULT); + + //Write style state: LV_STATE_DEFAULT for &style_datesetpage_moonddlist_extra_list_scrollbar_default + static lv_style_t style_datesetpage_moonddlist_extra_list_scrollbar_default; + ui_init_style(&style_datesetpage_moonddlist_extra_list_scrollbar_default); + + lv_style_set_radius(&style_datesetpage_moonddlist_extra_list_scrollbar_default, 3); + lv_style_set_bg_opa(&style_datesetpage_moonddlist_extra_list_scrollbar_default, 255); + lv_style_set_bg_color(&style_datesetpage_moonddlist_extra_list_scrollbar_default, lv_color_hex(0x00ff00)); + lv_style_set_bg_grad_dir(&style_datesetpage_moonddlist_extra_list_scrollbar_default, LV_GRAD_DIR_NONE); + lv_obj_add_style(lv_dropdown_get_list(ui->datesetpage_moonddlist), &style_datesetpage_moonddlist_extra_list_scrollbar_default, LV_PART_SCROLLBAR|LV_STATE_DEFAULT); + + //Write codes datesetpage_sunddlist + ui->datesetpage_sunddlist = lv_dropdown_create(ui->datesetpage); + + //统一用31天 保存的时候弹窗警告 + //依据月份定 + // if( + // ((timeinfo.tm_mon+1)==1) + // ||((timeinfo.tm_mon+1)==3) + // ||((timeinfo.tm_mon+1)==5) + // ||((timeinfo.tm_mon+1)==7) + // ||((timeinfo.tm_mon+1)==8) + // ||((timeinfo.tm_mon+1)==10) + // ||((timeinfo.tm_mon+1)==12) + // ) + // { + lv_dropdown_set_options(ui->datesetpage_sunddlist, "01\n02\n03\n04\n05\n06\n07\n08\n09\n10\n11\n12\n13\n14\n15\n16\n17\n18\n19\n20\n21\n22\n23\n24\n25\n26\n27\n28\n29\n30\n31");// 1 3 5 7 8 10 12 + // } + // else if( + // ((timeinfo.tm_mon+1)==4) + // ||((timeinfo.tm_mon+1)==6) + // ||((timeinfo.tm_mon+1)==9) + // ||((timeinfo.tm_mon+1)==11) + // ) + // { + // lv_dropdown_set_options(ui->datesetpage_sunddlist, "1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n11\n12\n13\n14\n15\n16\n17\n18\n19\n20\n21\n22\n23\n24\n25\n26\n27\n28\n29\n30");//4 6 9 11 + // } + // else//2月 + // { + // lv_dropdown_set_options(ui->datesetpage_sunddlist, "1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n11\n12\n13\n14\n15\n16\n17\n18\n19\n20\n21\n22\n23\n24\n25\n26\n27\n28");//2 + // } + + lv_obj_set_pos(ui->datesetpage_sunddlist, 310, 210); + lv_obj_set_size(ui->datesetpage_sunddlist, 80, 35); + + LOG_I("tm_mday:%d",timeinfo.tm_mday-1); + //timeinfo.tm_mday//日期:日,从1开始 ;所以-1转换 + lv_dropdown_set_selected(ui->datesetpage_sunddlist,timeinfo.tm_mday-1); + + //Write style for datesetpage_sunddlist, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. + lv_obj_set_style_text_color(ui->datesetpage_sunddlist, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_font(ui->datesetpage_sunddlist, &lv_font_albbhptR_20, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_opa(ui->datesetpage_sunddlist, 255, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_border_width(ui->datesetpage_sunddlist, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_top(ui->datesetpage_sunddlist, 8, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_left(ui->datesetpage_sunddlist, 6, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_right(ui->datesetpage_sunddlist, 6, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_radius(ui->datesetpage_sunddlist, 10, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_bg_opa(ui->datesetpage_sunddlist, 255, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_bg_color(ui->datesetpage_sunddlist, lv_color_hex(0x00A8FF), LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_bg_grad_dir(ui->datesetpage_sunddlist, LV_GRAD_DIR_NONE, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_shadow_width(ui->datesetpage_sunddlist, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + + //Write style state: LV_STATE_CHECKED for &style_datesetpage_sunddlist_extra_list_selected_checked + static lv_style_t style_datesetpage_sunddlist_extra_list_selected_checked; + ui_init_style(&style_datesetpage_sunddlist_extra_list_selected_checked); + + lv_style_set_border_width(&style_datesetpage_sunddlist_extra_list_selected_checked, 1); + lv_style_set_border_opa(&style_datesetpage_sunddlist_extra_list_selected_checked, 255); + lv_style_set_border_color(&style_datesetpage_sunddlist_extra_list_selected_checked, lv_color_hex(0xe1e6ee)); + lv_style_set_border_side(&style_datesetpage_sunddlist_extra_list_selected_checked, LV_BORDER_SIDE_FULL); + lv_style_set_radius(&style_datesetpage_sunddlist_extra_list_selected_checked, 3); + lv_style_set_bg_opa(&style_datesetpage_sunddlist_extra_list_selected_checked, 255); + lv_style_set_bg_color(&style_datesetpage_sunddlist_extra_list_selected_checked, lv_color_hex(0x00a1b5)); + lv_style_set_bg_grad_dir(&style_datesetpage_sunddlist_extra_list_selected_checked, LV_GRAD_DIR_NONE); + lv_obj_add_style(lv_dropdown_get_list(ui->datesetpage_sunddlist), &style_datesetpage_sunddlist_extra_list_selected_checked, LV_PART_SELECTED|LV_STATE_CHECKED); + + //Write style state: LV_STATE_DEFAULT for &style_datesetpage_sunddlist_extra_list_main_default + static lv_style_t style_datesetpage_sunddlist_extra_list_main_default; + ui_init_style(&style_datesetpage_sunddlist_extra_list_main_default); + + lv_style_set_max_height(&style_datesetpage_sunddlist_extra_list_main_default, 150); + lv_style_set_text_color(&style_datesetpage_sunddlist_extra_list_main_default, lv_color_hex(0x0D3055)); + lv_style_set_text_font(&style_datesetpage_sunddlist_extra_list_main_default, &lv_font_albbhptR_20); + lv_style_set_text_opa(&style_datesetpage_sunddlist_extra_list_main_default, 255); + lv_style_set_border_width(&style_datesetpage_sunddlist_extra_list_main_default, 1); + lv_style_set_border_opa(&style_datesetpage_sunddlist_extra_list_main_default, 255); + lv_style_set_border_color(&style_datesetpage_sunddlist_extra_list_main_default, lv_color_hex(0xe1e6ee)); + lv_style_set_border_side(&style_datesetpage_sunddlist_extra_list_main_default, LV_BORDER_SIDE_FULL); + lv_style_set_radius(&style_datesetpage_sunddlist_extra_list_main_default, 3); + lv_style_set_bg_opa(&style_datesetpage_sunddlist_extra_list_main_default, 255); + lv_style_set_bg_color(&style_datesetpage_sunddlist_extra_list_main_default, lv_color_hex(0xffffff)); + lv_style_set_bg_grad_dir(&style_datesetpage_sunddlist_extra_list_main_default, LV_GRAD_DIR_NONE); + lv_obj_add_style(lv_dropdown_get_list(ui->datesetpage_sunddlist), &style_datesetpage_sunddlist_extra_list_main_default, LV_PART_MAIN|LV_STATE_DEFAULT); + + //Write style state: LV_STATE_DEFAULT for &style_datesetpage_sunddlist_extra_list_scrollbar_default + static lv_style_t style_datesetpage_sunddlist_extra_list_scrollbar_default; + ui_init_style(&style_datesetpage_sunddlist_extra_list_scrollbar_default); + + lv_style_set_radius(&style_datesetpage_sunddlist_extra_list_scrollbar_default, 3); + lv_style_set_bg_opa(&style_datesetpage_sunddlist_extra_list_scrollbar_default, 255); + lv_style_set_bg_color(&style_datesetpage_sunddlist_extra_list_scrollbar_default, lv_color_hex(0x00ff00)); + lv_style_set_bg_grad_dir(&style_datesetpage_sunddlist_extra_list_scrollbar_default, LV_GRAD_DIR_NONE); + lv_obj_add_style(lv_dropdown_get_list(ui->datesetpage_sunddlist), &style_datesetpage_sunddlist_extra_list_scrollbar_default, LV_PART_SCROLLBAR|LV_STATE_DEFAULT); + + //Write codes datesetpage_label_3 + ui->datesetpage_label_3 = lv_label_create(ui->datesetpage); + //lv_label_set_text(ui->datesetpage_label_3, "Time "); + lv_label_set_text(ui->datesetpage_label_3, Menu_List[GET_nvs_Sys_Info_language()][MENU_LIST_SetClockTime]); + + lv_label_set_long_mode(ui->datesetpage_label_3, LV_LABEL_LONG_WRAP); + lv_obj_set_pos(ui->datesetpage_label_3, 44, 280); + lv_obj_set_size(ui->datesetpage_label_3, 180, 20); + + //Write style for datesetpage_label_3, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. + lv_obj_set_style_border_width(ui->datesetpage_label_3, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_radius(ui->datesetpage_label_3, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_color(ui->datesetpage_label_3, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_font(ui->datesetpage_label_3, &lv_font_albbhptR_20, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_opa(ui->datesetpage_label_3, 255, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_letter_space(ui->datesetpage_label_3, 2, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_line_space(ui->datesetpage_label_3, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_align(ui->datesetpage_label_3, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_bg_opa(ui->datesetpage_label_3, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_top(ui->datesetpage_label_3, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_right(ui->datesetpage_label_3, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_bottom(ui->datesetpage_label_3, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_left(ui->datesetpage_label_3, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_shadow_width(ui->datesetpage_label_3, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + + //Write codes datesetpage_hourddlist + ui->datesetpage_hourddlist = lv_dropdown_create(ui->datesetpage); + lv_dropdown_set_options(ui->datesetpage_hourddlist, "00\n01\n02\n03\n04\n05\n06\n07\n08\n09\n10\n11\n12\n13\n14\n15\n16\n17\n18\n19\n20\n21\n22\n23"); + lv_obj_set_pos(ui->datesetpage_hourddlist, 39, 310); + lv_obj_set_size(ui->datesetpage_hourddlist, 120, 35); + //timeinfo.tm_hour 0~23 + lv_dropdown_set_selected(ui->datesetpage_hourddlist,timeinfo.tm_hour); + + //Write style for datesetpage_hourddlist, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. + lv_obj_set_style_text_color(ui->datesetpage_hourddlist, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_font(ui->datesetpage_hourddlist, &lv_font_albbhptR_20, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_opa(ui->datesetpage_hourddlist, 255, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_border_width(ui->datesetpage_hourddlist, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_top(ui->datesetpage_hourddlist, 8, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_left(ui->datesetpage_hourddlist, 6, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_right(ui->datesetpage_hourddlist, 6, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_radius(ui->datesetpage_hourddlist, 10, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_bg_opa(ui->datesetpage_hourddlist, 255, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_bg_color(ui->datesetpage_hourddlist, lv_color_hex(0x00A8FF), LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_bg_grad_dir(ui->datesetpage_hourddlist, LV_GRAD_DIR_NONE, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_shadow_width(ui->datesetpage_hourddlist, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + + //Write style state: LV_STATE_CHECKED for &style_datesetpage_hourddlist_extra_list_selected_checked + static lv_style_t style_datesetpage_hourddlist_extra_list_selected_checked; + ui_init_style(&style_datesetpage_hourddlist_extra_list_selected_checked); + + lv_style_set_border_width(&style_datesetpage_hourddlist_extra_list_selected_checked, 1); + lv_style_set_border_opa(&style_datesetpage_hourddlist_extra_list_selected_checked, 255); + lv_style_set_border_color(&style_datesetpage_hourddlist_extra_list_selected_checked, lv_color_hex(0xe1e6ee)); + lv_style_set_border_side(&style_datesetpage_hourddlist_extra_list_selected_checked, LV_BORDER_SIDE_FULL); + lv_style_set_radius(&style_datesetpage_hourddlist_extra_list_selected_checked, 3); + lv_style_set_bg_opa(&style_datesetpage_hourddlist_extra_list_selected_checked, 255); + lv_style_set_bg_color(&style_datesetpage_hourddlist_extra_list_selected_checked, lv_color_hex(0x00a1b5)); + lv_style_set_bg_grad_dir(&style_datesetpage_hourddlist_extra_list_selected_checked, LV_GRAD_DIR_NONE); + lv_obj_add_style(lv_dropdown_get_list(ui->datesetpage_hourddlist), &style_datesetpage_hourddlist_extra_list_selected_checked, LV_PART_SELECTED|LV_STATE_CHECKED); + + //Write style state: LV_STATE_DEFAULT for &style_datesetpage_hourddlist_extra_list_main_default + static lv_style_t style_datesetpage_hourddlist_extra_list_main_default; + ui_init_style(&style_datesetpage_hourddlist_extra_list_main_default); + + lv_style_set_max_height(&style_datesetpage_hourddlist_extra_list_main_default, 120); + lv_style_set_text_color(&style_datesetpage_hourddlist_extra_list_main_default, lv_color_hex(0x0D3055)); + lv_style_set_text_font(&style_datesetpage_hourddlist_extra_list_main_default, &lv_font_albbhptR_20); + lv_style_set_text_opa(&style_datesetpage_hourddlist_extra_list_main_default, 255); + lv_style_set_border_width(&style_datesetpage_hourddlist_extra_list_main_default, 1); + lv_style_set_border_opa(&style_datesetpage_hourddlist_extra_list_main_default, 255); + lv_style_set_border_color(&style_datesetpage_hourddlist_extra_list_main_default, lv_color_hex(0xe1e6ee)); + lv_style_set_border_side(&style_datesetpage_hourddlist_extra_list_main_default, LV_BORDER_SIDE_FULL); + lv_style_set_radius(&style_datesetpage_hourddlist_extra_list_main_default, 3); + lv_style_set_bg_opa(&style_datesetpage_hourddlist_extra_list_main_default, 255); + lv_style_set_bg_color(&style_datesetpage_hourddlist_extra_list_main_default, lv_color_hex(0xffffff)); + lv_style_set_bg_grad_dir(&style_datesetpage_hourddlist_extra_list_main_default, LV_GRAD_DIR_NONE); + lv_obj_add_style(lv_dropdown_get_list(ui->datesetpage_hourddlist), &style_datesetpage_hourddlist_extra_list_main_default, LV_PART_MAIN|LV_STATE_DEFAULT); + + //Write style state: LV_STATE_DEFAULT for &style_datesetpage_hourddlist_extra_list_scrollbar_default + static lv_style_t style_datesetpage_hourddlist_extra_list_scrollbar_default; + ui_init_style(&style_datesetpage_hourddlist_extra_list_scrollbar_default); + + lv_style_set_radius(&style_datesetpage_hourddlist_extra_list_scrollbar_default, 3); + lv_style_set_bg_opa(&style_datesetpage_hourddlist_extra_list_scrollbar_default, 255); + lv_style_set_bg_color(&style_datesetpage_hourddlist_extra_list_scrollbar_default, lv_color_hex(0x00ff00)); + lv_style_set_bg_grad_dir(&style_datesetpage_hourddlist_extra_list_scrollbar_default, LV_GRAD_DIR_NONE); + lv_obj_add_style(lv_dropdown_get_list(ui->datesetpage_hourddlist), &style_datesetpage_hourddlist_extra_list_scrollbar_default, LV_PART_SCROLLBAR|LV_STATE_DEFAULT); + + //Write codes datesetpage_minuteddlist + ui->datesetpage_minuteddlist = lv_dropdown_create(ui->datesetpage); + lv_dropdown_set_options(ui->datesetpage_minuteddlist, "00\n01\n02\n03\n04\n05\n06\n07\n08\n09\n10\n11\n12\n13\n14\n15\n16\n17\n18\n19\n20\n21\n22\n23\n24\n25\n26\n27\n28\n29\n30\n31\n32\n33\n34\n35\n36\n37\n38\n39\n40\n41\n42\n43\n44\n45\n46\n47\n48\n49\n50\n51\n52\n53\n54\n55\n56\n57\n58\n59"); + lv_obj_set_pos(ui->datesetpage_minuteddlist, 200, 310); + lv_obj_set_size(ui->datesetpage_minuteddlist, 120, 35); + //timeinfo.tm_min 0~59 + lv_dropdown_set_selected(ui->datesetpage_minuteddlist,timeinfo.tm_min); + + //Write style for datesetpage_minuteddlist, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. + lv_obj_set_style_text_color(ui->datesetpage_minuteddlist, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_font(ui->datesetpage_minuteddlist, &lv_font_albbhptR_20, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_opa(ui->datesetpage_minuteddlist, 255, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_border_width(ui->datesetpage_minuteddlist, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_top(ui->datesetpage_minuteddlist, 8, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_left(ui->datesetpage_minuteddlist, 6, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_right(ui->datesetpage_minuteddlist, 6, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_radius(ui->datesetpage_minuteddlist, 10, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_bg_opa(ui->datesetpage_minuteddlist, 255, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_bg_color(ui->datesetpage_minuteddlist, lv_color_hex(0x00A8FF), LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_bg_grad_dir(ui->datesetpage_minuteddlist, LV_GRAD_DIR_NONE, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_shadow_width(ui->datesetpage_minuteddlist, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + + //Write style state: LV_STATE_CHECKED for &style_datesetpage_minuteddlist_extra_list_selected_checked + static lv_style_t style_datesetpage_minuteddlist_extra_list_selected_checked; + ui_init_style(&style_datesetpage_minuteddlist_extra_list_selected_checked); + + lv_style_set_border_width(&style_datesetpage_minuteddlist_extra_list_selected_checked, 1); + lv_style_set_border_opa(&style_datesetpage_minuteddlist_extra_list_selected_checked, 255); + lv_style_set_border_color(&style_datesetpage_minuteddlist_extra_list_selected_checked, lv_color_hex(0xe1e6ee)); + lv_style_set_border_side(&style_datesetpage_minuteddlist_extra_list_selected_checked, LV_BORDER_SIDE_FULL); + lv_style_set_radius(&style_datesetpage_minuteddlist_extra_list_selected_checked, 3); + lv_style_set_bg_opa(&style_datesetpage_minuteddlist_extra_list_selected_checked, 255); + lv_style_set_bg_color(&style_datesetpage_minuteddlist_extra_list_selected_checked, lv_color_hex(0x00a1b5)); + lv_style_set_bg_grad_dir(&style_datesetpage_minuteddlist_extra_list_selected_checked, LV_GRAD_DIR_NONE); + lv_obj_add_style(lv_dropdown_get_list(ui->datesetpage_minuteddlist), &style_datesetpage_minuteddlist_extra_list_selected_checked, LV_PART_SELECTED|LV_STATE_CHECKED); + + //Write style state: LV_STATE_DEFAULT for &style_datesetpage_minuteddlist_extra_list_main_default + static lv_style_t style_datesetpage_minuteddlist_extra_list_main_default; + ui_init_style(&style_datesetpage_minuteddlist_extra_list_main_default); + + lv_style_set_max_height(&style_datesetpage_minuteddlist_extra_list_main_default, 120); + lv_style_set_text_color(&style_datesetpage_minuteddlist_extra_list_main_default, lv_color_hex(0x0D3055)); + lv_style_set_text_font(&style_datesetpage_minuteddlist_extra_list_main_default, &lv_font_albbhptR_20); + lv_style_set_text_opa(&style_datesetpage_minuteddlist_extra_list_main_default, 255); + lv_style_set_border_width(&style_datesetpage_minuteddlist_extra_list_main_default, 1); + lv_style_set_border_opa(&style_datesetpage_minuteddlist_extra_list_main_default, 255); + lv_style_set_border_color(&style_datesetpage_minuteddlist_extra_list_main_default, lv_color_hex(0xe1e6ee)); + lv_style_set_border_side(&style_datesetpage_minuteddlist_extra_list_main_default, LV_BORDER_SIDE_FULL); + lv_style_set_radius(&style_datesetpage_minuteddlist_extra_list_main_default, 3); + lv_style_set_bg_opa(&style_datesetpage_minuteddlist_extra_list_main_default, 255); + lv_style_set_bg_color(&style_datesetpage_minuteddlist_extra_list_main_default, lv_color_hex(0xffffff)); + lv_style_set_bg_grad_dir(&style_datesetpage_minuteddlist_extra_list_main_default, LV_GRAD_DIR_NONE); + lv_obj_add_style(lv_dropdown_get_list(ui->datesetpage_minuteddlist), &style_datesetpage_minuteddlist_extra_list_main_default, LV_PART_MAIN|LV_STATE_DEFAULT); + + //Write style state: LV_STATE_DEFAULT for &style_datesetpage_minuteddlist_extra_list_scrollbar_default + static lv_style_t style_datesetpage_minuteddlist_extra_list_scrollbar_default; + ui_init_style(&style_datesetpage_minuteddlist_extra_list_scrollbar_default); + + lv_style_set_radius(&style_datesetpage_minuteddlist_extra_list_scrollbar_default, 3); + lv_style_set_bg_opa(&style_datesetpage_minuteddlist_extra_list_scrollbar_default, 255); + lv_style_set_bg_color(&style_datesetpage_minuteddlist_extra_list_scrollbar_default, lv_color_hex(0x00ff00)); + lv_style_set_bg_grad_dir(&style_datesetpage_minuteddlist_extra_list_scrollbar_default, LV_GRAD_DIR_NONE); + lv_obj_add_style(lv_dropdown_get_list(ui->datesetpage_minuteddlist), &style_datesetpage_minuteddlist_extra_list_scrollbar_default, LV_PART_SCROLLBAR|LV_STATE_DEFAULT); + + //Write codes datesetpage_changebtn + ui->datesetpage_changebtn = lv_btn_create(ui->datesetpage); + ui->datesetpage_changebtn_label = lv_label_create(ui->datesetpage_changebtn); + //lv_label_set_text(ui->datesetpage_changebtn_label, "更改"); + lv_label_set_text(ui->datesetpage_changebtn_label,Menu_List[GET_nvs_Sys_Info_language()][MENU_LIST_SetClockChange]); + lv_label_set_long_mode(ui->datesetpage_changebtn_label, LV_LABEL_LONG_WRAP); + lv_obj_align(ui->datesetpage_changebtn_label, LV_ALIGN_CENTER, 0, 0); + lv_obj_set_style_pad_all(ui->datesetpage_changebtn, 0, LV_STATE_DEFAULT); + lv_obj_set_width(ui->datesetpage_changebtn_label, LV_PCT(100)); + lv_obj_set_pos(ui->datesetpage_changebtn, 84, 402); + lv_obj_set_size(ui->datesetpage_changebtn, 119, 48); + + //Write style for datesetpage_changebtn, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. + lv_obj_set_style_bg_opa(ui->datesetpage_changebtn, 255, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_bg_color(ui->datesetpage_changebtn, lv_color_hex(0x2195f6), LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_bg_grad_dir(ui->datesetpage_changebtn, LV_GRAD_DIR_NONE, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_border_width(ui->datesetpage_changebtn, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_radius(ui->datesetpage_changebtn, 24, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_shadow_width(ui->datesetpage_changebtn, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_color(ui->datesetpage_changebtn, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_font(ui->datesetpage_changebtn, &lv_font_albbhptR_20, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_opa(ui->datesetpage_changebtn, 255, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_align(ui->datesetpage_changebtn, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT); + + //Write style for datesetpage_changebtn, Part: LV_PART_MAIN, State: LV_STATE_PRESSED. + lv_obj_set_style_bg_opa(ui->datesetpage_changebtn, 255, LV_PART_MAIN|LV_STATE_PRESSED); + lv_obj_set_style_bg_color(ui->datesetpage_changebtn, lv_color_hex(0x1F3051), LV_PART_MAIN|LV_STATE_PRESSED); + lv_obj_set_style_bg_grad_dir(ui->datesetpage_changebtn, LV_GRAD_DIR_NONE, LV_PART_MAIN|LV_STATE_PRESSED); + lv_obj_set_style_border_width(ui->datesetpage_changebtn, 0, LV_PART_MAIN|LV_STATE_PRESSED); + lv_obj_set_style_radius(ui->datesetpage_changebtn, 24, LV_PART_MAIN|LV_STATE_PRESSED); + lv_obj_set_style_shadow_width(ui->datesetpage_changebtn, 0, LV_PART_MAIN|LV_STATE_PRESSED); + lv_obj_set_style_text_color(ui->datesetpage_changebtn, lv_color_hex(0xa8a8a8), LV_PART_MAIN|LV_STATE_PRESSED); + lv_obj_set_style_text_font(ui->datesetpage_changebtn, &lv_font_albbhptR_20, LV_PART_MAIN|LV_STATE_PRESSED); + lv_obj_set_style_text_opa(ui->datesetpage_changebtn, 255, LV_PART_MAIN|LV_STATE_PRESSED); + + //Write codes datesetpage_cancelbtn + ui->datesetpage_cancelbtn = lv_btn_create(ui->datesetpage); + ui->datesetpage_cancelbtn_label = lv_label_create(ui->datesetpage_cancelbtn); + //lv_label_set_text(ui->datesetpage_cancelbtn_label, "取消"); + lv_label_set_text(ui->datesetpage_cancelbtn_label,Menu_List[GET_nvs_Sys_Info_language()][MENU_LIST_SetClockcancel]); + lv_label_set_long_mode(ui->datesetpage_cancelbtn_label, LV_LABEL_LONG_WRAP); + lv_obj_align(ui->datesetpage_cancelbtn_label, LV_ALIGN_CENTER, 0, 0); + lv_obj_set_style_pad_all(ui->datesetpage_cancelbtn, 0, LV_STATE_DEFAULT); + lv_obj_set_width(ui->datesetpage_cancelbtn_label, LV_PCT(100)); + lv_obj_set_pos(ui->datesetpage_cancelbtn, 289, 402); + lv_obj_set_size(ui->datesetpage_cancelbtn, 119, 48); + + //Write style for datesetpage_cancelbtn, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. + lv_obj_set_style_bg_opa(ui->datesetpage_cancelbtn, 255, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_bg_color(ui->datesetpage_cancelbtn, lv_color_hex(0x2195f6), LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_bg_grad_dir(ui->datesetpage_cancelbtn, LV_GRAD_DIR_NONE, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_border_width(ui->datesetpage_cancelbtn, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_radius(ui->datesetpage_cancelbtn, 24, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_shadow_width(ui->datesetpage_cancelbtn, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_color(ui->datesetpage_cancelbtn, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_font(ui->datesetpage_cancelbtn, &lv_font_albbhptR_20, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_opa(ui->datesetpage_cancelbtn, 255, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_align(ui->datesetpage_cancelbtn, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT); + + //Write style for datesetpage_cancelbtn, Part: LV_PART_MAIN, State: LV_STATE_PRESSED. + lv_obj_set_style_bg_opa(ui->datesetpage_cancelbtn, 255, LV_PART_MAIN|LV_STATE_PRESSED); + lv_obj_set_style_bg_color(ui->datesetpage_cancelbtn, lv_color_hex(0x1F3051), LV_PART_MAIN|LV_STATE_PRESSED); + lv_obj_set_style_bg_grad_dir(ui->datesetpage_cancelbtn, LV_GRAD_DIR_NONE, LV_PART_MAIN|LV_STATE_PRESSED); + lv_obj_set_style_border_width(ui->datesetpage_cancelbtn, 0, LV_PART_MAIN|LV_STATE_PRESSED); + lv_obj_set_style_radius(ui->datesetpage_cancelbtn, 24, LV_PART_MAIN|LV_STATE_PRESSED); + lv_obj_set_style_shadow_width(ui->datesetpage_cancelbtn, 0, LV_PART_MAIN|LV_STATE_PRESSED); + lv_obj_set_style_text_color(ui->datesetpage_cancelbtn, lv_color_hex(0xa8a8a8), LV_PART_MAIN|LV_STATE_PRESSED); + lv_obj_set_style_text_font(ui->datesetpage_cancelbtn, &lv_font_albbhptR_20, LV_PART_MAIN|LV_STATE_PRESSED); + lv_obj_set_style_text_opa(ui->datesetpage_cancelbtn, 255, LV_PART_MAIN|LV_STATE_PRESSED); + + //The custom code of datesetpage. + + + //Update current screen layout. + lv_obj_update_layout(ui->datesetpage); + + //Init events for screen. + events_init_datesetpage(ui); +} diff --git a/application/rt-thread/t3e-pro/components/generated/setup_scr_scene.c b/application/rt-thread/t3e-pro/components/generated/setup_scr_scene.c index 1483917a..e7db6add 100644 --- a/application/rt-thread/t3e-pro/components/generated/setup_scr_scene.c +++ b/application/rt-thread/t3e-pro/components/generated/setup_scr_scene.c @@ -976,6 +976,59 @@ void setup_scr_scene(lv_ui *ui) lv_img_set_src(ui->scene_scenes_page_icon, LVGL_PATH(page_sw1_42x22.png)); } //The custom code of scene. + //Write codes scene_alarmtimecont + ui->scene_alarmtimecont = lv_obj_create(ui->scene); + lv_obj_set_pos(ui->scene_alarmtimecont, 115, 340); + lv_obj_set_size(ui->scene_alarmtimecont, 250, 36); + lv_obj_set_scrollbar_mode(ui->scene_alarmtimecont, LV_SCROLLBAR_MODE_OFF); + + //Write style for scene_alarmtimecont, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. + lv_obj_set_style_border_width(ui->scene_alarmtimecont, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_radius(ui->scene_alarmtimecont, 10, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_bg_opa(ui->scene_alarmtimecont, 170, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_bg_color(ui->scene_alarmtimecont, lv_color_hex(0x00A8FF), LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_bg_grad_dir(ui->scene_alarmtimecont, LV_GRAD_DIR_NONE, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_top(ui->scene_alarmtimecont, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_bottom(ui->scene_alarmtimecont, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_left(ui->scene_alarmtimecont, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_right(ui->scene_alarmtimecont, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_shadow_width(ui->scene_alarmtimecont, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + + //Write codes scene_img_13 + ui->scene_img_13 = lv_img_create(ui->scene_alarmtimecont); + lv_obj_add_flag(ui->scene_img_13, LV_OBJ_FLAG_CLICKABLE); + lv_img_set_src(ui->scene_img_13, LVGL_PATH(alarmtime.png)); + lv_img_set_pivot(ui->scene_img_13, 50,50); + lv_img_set_angle(ui->scene_img_13, 0); + lv_obj_set_pos(ui->scene_img_13, 6, 4); + lv_obj_set_size(ui->scene_img_13, 28, 28); + + //Write style for scene_img_13, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. + lv_obj_set_style_img_opa(ui->scene_img_13, 255, LV_PART_MAIN|LV_STATE_DEFAULT); + + //Write codes scene_label_12 + ui->scene_label_12 = lv_label_create(ui->scene_alarmtimecont); + //lv_label_set_text(ui->scene_label_12, "The currt time may be wrong, \nyou need to set the time manually."); + lv_label_set_text(ui->scene_label_12,Menu_List[GET_nvs_Sys_Info_language()][MENU_LIST_power_date_alarm]); + lv_label_set_long_mode(ui->scene_label_12, LV_LABEL_LONG_WRAP); + lv_obj_set_pos(ui->scene_label_12, 38, 6); + lv_obj_set_size(ui->scene_label_12, 210, 28); + + //Write style for scene_label_12, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. + lv_obj_set_style_border_width(ui->scene_label_12, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_radius(ui->scene_label_12, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_color(ui->scene_label_12, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_font(ui->scene_label_12, &lv_font_albbhptR_12, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_opa(ui->scene_label_12, 255, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_letter_space(ui->scene_label_12, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_line_space(ui->scene_label_12, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_align(ui->scene_label_12, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_bg_opa(ui->scene_label_12, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_top(ui->scene_label_12, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_right(ui->scene_label_12, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_bottom(ui->scene_label_12, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_left(ui->scene_label_12, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_shadow_width(ui->scene_label_12, 0, LV_PART_MAIN|LV_STATE_DEFAULT); //Update current screen layout. lv_obj_update_layout(ui->scene); diff --git a/application/rt-thread/t3e-pro/components/generated/setup_scr_setting - 副本.zip b/application/rt-thread/t3e-pro/components/generated/setup_scr_setting - 副本.zip new file mode 100644 index 00000000..1a380acd Binary files /dev/null and b/application/rt-thread/t3e-pro/components/generated/setup_scr_setting - 副本.zip differ diff --git a/application/rt-thread/t3e-pro/components/generated/setup_scr_setting.c b/application/rt-thread/t3e-pro/components/generated/setup_scr_setting.c index e493c143..365cd26a 100644 --- a/application/rt-thread/t3e-pro/components/generated/setup_scr_setting.c +++ b/application/rt-thread/t3e-pro/components/generated/setup_scr_setting.c @@ -15,7 +15,6 @@ #include "custom.h" - void setup_scr_setting(lv_ui *ui) { //Write codes setting @@ -65,18 +64,13 @@ void setup_scr_setting(lv_ui *ui) //Write codes setting_cont_1 ui->setting_cont_1 = lv_obj_create(ui->setting); lv_obj_set_pos(ui->setting_cont_1, 15, 76); - lv_obj_set_size(ui->setting_cont_1, 447, 320); + lv_obj_set_size(ui->setting_cont_1, 447, 340); lv_obj_set_scrollbar_mode(ui->setting_cont_1, LV_SCROLLBAR_MODE_OFF); //Write style for setting_cont_1, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->setting_cont_1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->setting_cont_1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->setting_cont_1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); - lv_obj_set_style_bg_color(ui->setting_cont_1, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); - lv_obj_set_style_bg_grad_dir(ui->setting_cont_1, LV_GRAD_DIR_VER, LV_PART_MAIN|LV_STATE_DEFAULT); - lv_obj_set_style_bg_grad_color(ui->setting_cont_1, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); - lv_obj_set_style_bg_main_stop(ui->setting_cont_1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); - lv_obj_set_style_bg_grad_stop(ui->setting_cont_1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->setting_cont_1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_bottom(ui->setting_cont_1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->setting_cont_1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); @@ -138,10 +132,10 @@ void setup_scr_setting(lv_ui *ui) //Write codes setting_mainfolabel_1 ui->setting_mainfolabel_1 = lv_label_create(ui->setting_cont_1); //lv_label_set_text(ui->setting_mainfolabel_1, "Host"); - lv_label_set_text(ui->setting_mainfolabel_1,Menu_List[GET_nvs_Sys_Info_language()][MENU_LIST_SetHost]); + lv_label_set_text(ui->setting_mainfolabel_1,Menu_List[GET_nvs_Sys_Info_language()][MENU_LIST_SetHost]); lv_label_set_long_mode(ui->setting_mainfolabel_1, LV_LABEL_LONG_DOT); lv_obj_set_pos(ui->setting_mainfolabel_1, 50, 17); - lv_obj_set_size(ui->setting_mainfolabel_1, 150, 24); + lv_obj_set_size(ui->setting_mainfolabel_1, 200, 24); //Write style for setting_mainfolabel_1, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->setting_mainfolabel_1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); @@ -175,10 +169,10 @@ void setup_scr_setting(lv_ui *ui) lv_obj_set_style_border_width(ui->setting_mainfobtn_1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->setting_mainfobtn_1, 10, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->setting_mainfobtn_1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); - // lv_obj_set_style_text_color(ui->setting_mainfobtn_1, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); - // lv_obj_set_style_text_font(ui->setting_mainfobtn_1, &lv_font_simsun_16, LV_PART_MAIN|LV_STATE_DEFAULT); - // lv_obj_set_style_text_opa(ui->setting_mainfobtn_1, 255, LV_PART_MAIN|LV_STATE_DEFAULT); - // lv_obj_set_style_text_align(ui->setting_mainfobtn_1, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT); + //lv_obj_set_style_text_color(ui->setting_mainfobtn_1, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); + //lv_obj_set_style_text_font(ui->setting_mainfobtn_1, &lv_font_simsun_16, LV_PART_MAIN|LV_STATE_DEFAULT); + //lv_obj_set_style_text_opa(ui->setting_mainfobtn_1, 255, LV_PART_MAIN|LV_STATE_DEFAULT); + //lv_obj_set_style_text_align(ui->setting_mainfobtn_1, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes setting_dispinfo ui->setting_dispinfo = lv_label_create(ui->setting_cont_1); @@ -226,7 +220,7 @@ void setup_scr_setting(lv_ui *ui) lv_img_set_src(ui->setting_dispinfoimg_2, LVGL_PATH(nextpagebg.png)); lv_img_set_pivot(ui->setting_dispinfoimg_2, 0,0); lv_img_set_angle(ui->setting_dispinfoimg_2, 0); - lv_obj_set_pos(ui->setting_dispinfoimg_2, 424, 61); + lv_obj_set_pos(ui->setting_dispinfoimg_2, 424, 65); lv_obj_set_size(ui->setting_dispinfoimg_2, 14, 22); //Write style for setting_dispinfoimg_2, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. @@ -235,11 +229,10 @@ void setup_scr_setting(lv_ui *ui) //Write codes setting_dispinfolabel_1 ui->setting_dispinfolabel_1 = lv_label_create(ui->setting_cont_1); //lv_label_set_text(ui->setting_dispinfolabel_1, "Display"); - lv_label_set_text(ui->setting_dispinfolabel_1,Menu_List[GET_nvs_Sys_Info_language()][MENU_LIST_SetDisplay]); - + lv_label_set_text(ui->setting_dispinfolabel_1,Menu_List[GET_nvs_Sys_Info_language()][MENU_LIST_SetDisplay]); lv_label_set_long_mode(ui->setting_dispinfolabel_1, LV_LABEL_LONG_DOT); lv_obj_set_pos(ui->setting_dispinfolabel_1, 50, 65); - lv_obj_set_size(ui->setting_dispinfolabel_1, 150, 24); + lv_obj_set_size(ui->setting_dispinfolabel_1, 200, 24); //Write style for setting_dispinfolabel_1, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->setting_dispinfolabel_1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); @@ -273,16 +266,113 @@ void setup_scr_setting(lv_ui *ui) lv_obj_set_style_border_width(ui->setting_dispinfobtn_1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->setting_dispinfobtn_1, 10, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->setting_dispinfobtn_1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); - // lv_obj_set_style_text_color(ui->setting_dispinfobtn_1, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); - // lv_obj_set_style_text_font(ui->setting_dispinfobtn_1, &lv_font_simsun_16, LV_PART_MAIN|LV_STATE_DEFAULT); - // lv_obj_set_style_text_opa(ui->setting_dispinfobtn_1, 255, LV_PART_MAIN|LV_STATE_DEFAULT); - // lv_obj_set_style_text_align(ui->setting_dispinfobtn_1, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT); + //lv_obj_set_style_text_color(ui->setting_dispinfobtn_1, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); + //lv_obj_set_style_text_font(ui->setting_dispinfobtn_1, &lv_font_simsun_16, LV_PART_MAIN|LV_STATE_DEFAULT); + //lv_obj_set_style_text_opa(ui->setting_dispinfobtn_1, 255, LV_PART_MAIN|LV_STATE_DEFAULT); + //lv_obj_set_style_text_align(ui->setting_dispinfobtn_1, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT); + + //Write codes setting_dateinfo + ui->setting_dateinfo = lv_label_create(ui->setting_cont_1); + lv_label_set_text(ui->setting_dateinfo, ""); + lv_label_set_long_mode(ui->setting_dateinfo, LV_LABEL_LONG_DOT); + lv_obj_set_pos(ui->setting_dateinfo, 2, 98); + lv_obj_set_size(ui->setting_dateinfo, 443, 46); + + //Write style for setting_dateinfo, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. + lv_obj_set_style_border_width(ui->setting_dateinfo, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_radius(ui->setting_dateinfo, 10, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_color(ui->setting_dateinfo, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_font(ui->setting_dateinfo, &lv_font_simsun_16, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_opa(ui->setting_dateinfo, 255, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_letter_space(ui->setting_dateinfo, 2, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_line_space(ui->setting_dateinfo, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_align(ui->setting_dateinfo, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_bg_opa(ui->setting_dateinfo, 255, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_bg_color(ui->setting_dateinfo, lv_color_hex(0x212121), LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_bg_grad_dir(ui->setting_dateinfo, LV_GRAD_DIR_VER, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_bg_grad_color(ui->setting_dateinfo, lv_color_hex(0x212121), LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_bg_main_stop(ui->setting_dateinfo, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_bg_grad_stop(ui->setting_dateinfo, 255, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_top(ui->setting_dateinfo, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_right(ui->setting_dateinfo, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_bottom(ui->setting_dateinfo, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_left(ui->setting_dateinfo, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_shadow_width(ui->setting_dateinfo, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + + //Write codes setting_dateinfoimg_1 + ui->setting_dateinfoimg_1 = lv_img_create(ui->setting_cont_1); + lv_obj_add_flag(ui->setting_dateinfoimg_1, LV_OBJ_FLAG_CLICKABLE); + lv_img_set_src(ui->setting_dateinfoimg_1, LVGL_PATH(setdate.png)); + lv_img_set_pivot(ui->setting_dateinfoimg_1, 0,0); + lv_img_set_angle(ui->setting_dateinfoimg_1, 0); + lv_obj_set_pos(ui->setting_dateinfoimg_1, 14, 106); + lv_obj_set_size(ui->setting_dateinfoimg_1, 30, 30); + + //Write style for setting_dateinfoimg_1, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. + lv_obj_set_style_img_opa(ui->setting_dateinfoimg_1, 255, LV_PART_MAIN|LV_STATE_DEFAULT); + + //Write codes setting_dateinfoimg_2 + ui->setting_dateinfoimg_2 = lv_img_create(ui->setting_cont_1); + lv_obj_add_flag(ui->setting_dateinfoimg_2, LV_OBJ_FLAG_CLICKABLE); + lv_img_set_src(ui->setting_dateinfoimg_2, LVGL_PATH(nextpagebg.png)); + lv_img_set_pivot(ui->setting_dateinfoimg_2, 0,0); + lv_img_set_angle(ui->setting_dateinfoimg_2, 0); + lv_obj_set_pos(ui->setting_dateinfoimg_2, 424, 113); + lv_obj_set_size(ui->setting_dateinfoimg_2, 14, 22); + + //Write style for setting_dateinfoimg_2, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. + lv_obj_set_style_img_opa(ui->setting_dateinfoimg_2, 255, LV_PART_MAIN|LV_STATE_DEFAULT); + + //Write codes setting_dateinfolabel_1 + ui->setting_dateinfolabel_1 = lv_label_create(ui->setting_cont_1); + //lv_label_set_text(ui->setting_dateinfolabel_1, "Clock & time"); + lv_label_set_text(ui->setting_dateinfolabel_1,Menu_List[GET_nvs_Sys_Info_language()][MENU_LIST_SetClock]); + lv_label_set_long_mode(ui->setting_dateinfolabel_1, LV_LABEL_LONG_DOT); + lv_obj_set_pos(ui->setting_dateinfolabel_1, 50, 113); + lv_obj_set_size(ui->setting_dateinfolabel_1, 200, 24); + + //Write style for setting_dateinfolabel_1, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. + lv_obj_set_style_border_width(ui->setting_dateinfolabel_1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_radius(ui->setting_dateinfolabel_1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_color(ui->setting_dateinfolabel_1, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_font(ui->setting_dateinfolabel_1, &lv_font_simsun_16, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_opa(ui->setting_dateinfolabel_1, 255, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_letter_space(ui->setting_dateinfolabel_1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_line_space(ui->setting_dateinfolabel_1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_text_align(ui->setting_dateinfolabel_1, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_bg_opa(ui->setting_dateinfolabel_1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_top(ui->setting_dateinfolabel_1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_right(ui->setting_dateinfolabel_1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_bottom(ui->setting_dateinfolabel_1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_pad_left(ui->setting_dateinfolabel_1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_shadow_width(ui->setting_dateinfolabel_1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + + //Write codes setting_dateinfobtn_1 + ui->setting_dateinfobtn_1 = lv_btn_create(ui->setting_cont_1); + // ui->setting_dateinfobtn_1_label = lv_label_create(ui->setting_dateinfobtn_1); + // lv_label_set_text(ui->setting_dateinfobtn_1_label, ""); + // lv_label_set_long_mode(ui->setting_dateinfobtn_1_label, LV_LABEL_LONG_WRAP); + // lv_obj_align(ui->setting_dateinfobtn_1_label, LV_ALIGN_CENTER, 0, 0); + lv_obj_set_style_pad_all(ui->setting_dateinfobtn_1, 0, LV_STATE_DEFAULT); + // lv_obj_set_width(ui->setting_dateinfobtn_1_label, LV_PCT(100)); + lv_obj_set_pos(ui->setting_dateinfobtn_1, 15, 106); + lv_obj_set_size(ui->setting_dateinfobtn_1, 420, 30); + + //Write style for setting_dateinfobtn_1, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. + lv_obj_set_style_bg_opa(ui->setting_dateinfobtn_1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_border_width(ui->setting_dateinfobtn_1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_radius(ui->setting_dateinfobtn_1, 10, LV_PART_MAIN|LV_STATE_DEFAULT); + lv_obj_set_style_shadow_width(ui->setting_dateinfobtn_1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); + // lv_obj_set_style_text_color(ui->setting_dateinfobtn_1, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); + // lv_obj_set_style_text_font(ui->setting_dateinfobtn_1, &lv_font_simsun_16, LV_PART_MAIN|LV_STATE_DEFAULT); + // lv_obj_set_style_text_opa(ui->setting_dateinfobtn_1, 255, LV_PART_MAIN|LV_STATE_DEFAULT); + // lv_obj_set_style_text_align(ui->setting_dateinfobtn_1, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT); //Write codes setting_langinfo ui->setting_langinfo = lv_label_create(ui->setting_cont_1); lv_label_set_text(ui->setting_langinfo, ""); lv_label_set_long_mode(ui->setting_langinfo, LV_LABEL_LONG_DOT); - lv_obj_set_pos(ui->setting_langinfo, 2, 98); + lv_obj_set_pos(ui->setting_langinfo, 2, 146); lv_obj_set_size(ui->setting_langinfo, 443, 46); //Write style for setting_langinfo, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. @@ -312,7 +402,7 @@ void setup_scr_setting(lv_ui *ui) lv_img_set_src(ui->setting_langinfoimg_1, LVGL_PATH(langaugebg.png)); lv_img_set_pivot(ui->setting_langinfoimg_1, 0,0); lv_img_set_angle(ui->setting_langinfoimg_1, 0); - lv_obj_set_pos(ui->setting_langinfoimg_1, 14, 106); + lv_obj_set_pos(ui->setting_langinfoimg_1, 14, 154); lv_obj_set_size(ui->setting_langinfoimg_1, 30, 30); //Write style for setting_langinfoimg_1, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. @@ -324,7 +414,7 @@ void setup_scr_setting(lv_ui *ui) lv_img_set_src(ui->setting_langinfoimg_2, LVGL_PATH(nextpagebg.png)); lv_img_set_pivot(ui->setting_langinfoimg_2, 0,0); lv_img_set_angle(ui->setting_langinfoimg_2, 0); - lv_obj_set_pos(ui->setting_langinfoimg_2, 424, 109); + lv_obj_set_pos(ui->setting_langinfoimg_2, 424, 161); lv_obj_set_size(ui->setting_langinfoimg_2, 14, 22); //Write style for setting_langinfoimg_2, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. @@ -333,10 +423,10 @@ void setup_scr_setting(lv_ui *ui) //Write codes setting_langinfolabel_1 ui->setting_langinfolabel_1 = lv_label_create(ui->setting_cont_1); //lv_label_set_text(ui->setting_langinfolabel_1, "Language"); - lv_label_set_text(ui->setting_langinfolabel_1,Menu_List[GET_nvs_Sys_Info_language()][MENU_LIST_SetLanguange]); + lv_label_set_text(ui->setting_langinfolabel_1,Menu_List[GET_nvs_Sys_Info_language()][MENU_LIST_SetLanguange]); lv_label_set_long_mode(ui->setting_langinfolabel_1, LV_LABEL_LONG_DOT); - lv_obj_set_pos(ui->setting_langinfolabel_1, 50, 113); - lv_obj_set_size(ui->setting_langinfolabel_1, 150, 24); + lv_obj_set_pos(ui->setting_langinfolabel_1, 50, 161); + lv_obj_set_size(ui->setting_langinfolabel_1, 200, 24); //Write style for setting_langinfolabel_1, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->setting_langinfolabel_1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); @@ -362,7 +452,7 @@ void setup_scr_setting(lv_ui *ui) //lv_obj_align(ui->setting_langinfobtn_1_label, LV_ALIGN_CENTER, 0, 0); lv_obj_set_style_pad_all(ui->setting_langinfobtn_1, 0, LV_STATE_DEFAULT); //lv_obj_set_width(ui->setting_langinfobtn_1_label, LV_PCT(100)); - lv_obj_set_pos(ui->setting_langinfobtn_1, 15, 106); + lv_obj_set_pos(ui->setting_langinfobtn_1, 15, 154); lv_obj_set_size(ui->setting_langinfobtn_1, 420, 30); //Write style for setting_langinfobtn_1, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. @@ -379,7 +469,7 @@ void setup_scr_setting(lv_ui *ui) ui->setting_smartconfiginfo = lv_label_create(ui->setting_cont_1); lv_label_set_text(ui->setting_smartconfiginfo, ""); lv_label_set_long_mode(ui->setting_smartconfiginfo, LV_LABEL_LONG_DOT); - lv_obj_set_pos(ui->setting_smartconfiginfo, 2, 146); + lv_obj_set_pos(ui->setting_smartconfiginfo, 2, 194); lv_obj_set_size(ui->setting_smartconfiginfo, 443, 46); //Write style for setting_smartconfiginfo, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. @@ -409,7 +499,7 @@ void setup_scr_setting(lv_ui *ui) lv_img_set_src(ui->setting_smartconfiimg_1, LVGL_PATH(zigbeeinfo.png)); lv_img_set_pivot(ui->setting_smartconfiimg_1, 0,0); lv_img_set_angle(ui->setting_smartconfiimg_1, 0); - lv_obj_set_pos(ui->setting_smartconfiimg_1, 14, 154); + lv_obj_set_pos(ui->setting_smartconfiimg_1, 14, 202); lv_obj_set_size(ui->setting_smartconfiimg_1, 30, 30); //Write style for setting_smartconfiimg_1, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. @@ -421,7 +511,7 @@ void setup_scr_setting(lv_ui *ui) lv_img_set_src(ui->setting_smartconfiimg_2, LVGL_PATH(nextpagebg.png)); lv_img_set_pivot(ui->setting_smartconfiimg_2, 0,0); lv_img_set_angle(ui->setting_smartconfiimg_2, 0); - lv_obj_set_pos(ui->setting_smartconfiimg_2, 424, 157); + lv_obj_set_pos(ui->setting_smartconfiimg_2, 424, 209); lv_obj_set_size(ui->setting_smartconfiimg_2, 14, 22); //Write style for setting_smartconfiimg_2, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. @@ -430,10 +520,10 @@ void setup_scr_setting(lv_ui *ui) //Write codes setting_smartconfilabel_1 ui->setting_smartconfilabel_1 = lv_label_create(ui->setting_cont_1); //lv_label_set_text(ui->setting_smartconfilabel_1, "Network"); - lv_label_set_text(ui->setting_smartconfilabel_1,Menu_List[GET_nvs_Sys_Info_language()][MENU_LIST_SetNetwork]); + lv_label_set_text(ui->setting_smartconfilabel_1,Menu_List[GET_nvs_Sys_Info_language()][MENU_LIST_SetNetwork]); lv_label_set_long_mode(ui->setting_smartconfilabel_1, LV_LABEL_LONG_DOT); - lv_obj_set_pos(ui->setting_smartconfilabel_1, 50, 161); - lv_obj_set_size(ui->setting_smartconfilabel_1, 150, 24); + lv_obj_set_pos(ui->setting_smartconfilabel_1, 50, 209); + lv_obj_set_size(ui->setting_smartconfilabel_1, 200, 24); //Write style for setting_smartconfilabel_1, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->setting_smartconfilabel_1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); @@ -459,7 +549,7 @@ void setup_scr_setting(lv_ui *ui) //lv_obj_align(ui->setting_smartconfibtn_1_label, LV_ALIGN_CENTER, 0, 0); lv_obj_set_style_pad_all(ui->setting_smartconfibtn_1, 0, LV_STATE_DEFAULT); //lv_obj_set_width(ui->setting_smartconfibtn_1_label, LV_PCT(100)); - lv_obj_set_pos(ui->setting_smartconfibtn_1, 15, 154); + lv_obj_set_pos(ui->setting_smartconfibtn_1, 15, 202); lv_obj_set_size(ui->setting_smartconfibtn_1, 420, 30); //Write style for setting_smartconfibtn_1, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. @@ -468,7 +558,7 @@ void setup_scr_setting(lv_ui *ui) lv_obj_set_style_radius(ui->setting_smartconfibtn_1, 10, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->setting_smartconfibtn_1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); // lv_obj_set_style_text_color(ui->setting_smartconfibtn_1, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); - // lv_obj_set_style_text_font(ui->setting_smartconfibtn_1, &lv_font_simsun_16, LV_PART_MAIN|LV_STATE_DEFAULT); + // lv_obj_set_style_text_font(ui->setting_smartconfibtn_1, &lv_font_simsun_12, LV_PART_MAIN|LV_STATE_DEFAULT); // lv_obj_set_style_text_opa(ui->setting_smartconfibtn_1, 255, LV_PART_MAIN|LV_STATE_DEFAULT); // lv_obj_set_style_text_align(ui->setting_smartconfibtn_1, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT); @@ -476,7 +566,7 @@ void setup_scr_setting(lv_ui *ui) ui->setting_firstinfo = lv_label_create(ui->setting_cont_1); lv_label_set_text(ui->setting_firstinfo, ""); lv_label_set_long_mode(ui->setting_firstinfo, LV_LABEL_LONG_DOT); - lv_obj_set_pos(ui->setting_firstinfo, 2, 194); + lv_obj_set_pos(ui->setting_firstinfo, 2, 242); lv_obj_set_size(ui->setting_firstinfo, 443, 46); //Write style for setting_firstinfo, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. @@ -506,7 +596,7 @@ void setup_scr_setting(lv_ui *ui) lv_img_set_src(ui->setting_firstinfoimg_1, LVGL_PATH(setcj.png)); lv_img_set_pivot(ui->setting_firstinfoimg_1, 0,0); lv_img_set_angle(ui->setting_firstinfoimg_1, 0); - lv_obj_set_pos(ui->setting_firstinfoimg_1, 14, 202); + lv_obj_set_pos(ui->setting_firstinfoimg_1, 14, 250); lv_obj_set_size(ui->setting_firstinfoimg_1, 30, 30); //Write style for setting_firstinfoimg_1, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. @@ -518,7 +608,7 @@ void setup_scr_setting(lv_ui *ui) lv_img_set_src(ui->setting_firstinfoimg_2, LVGL_PATH(nextpagebg.png)); lv_img_set_pivot(ui->setting_firstinfoimg_2, 0,0); lv_img_set_angle(ui->setting_firstinfoimg_2, 0); - lv_obj_set_pos(ui->setting_firstinfoimg_2, 424, 205); + lv_obj_set_pos(ui->setting_firstinfoimg_2, 424, 257); lv_obj_set_size(ui->setting_firstinfoimg_2, 14, 22); //Write style for setting_firstinfoimg_2, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. @@ -527,10 +617,10 @@ void setup_scr_setting(lv_ui *ui) //Write codes setting_firstinfolabel_1 ui->setting_firstinfolabel_1 = lv_label_create(ui->setting_cont_1); //lv_label_set_text(ui->setting_firstinfolabel_1, "First screen"); - lv_label_set_text(ui->setting_firstinfolabel_1, Menu_List[GET_nvs_Sys_Info_language()][MENU_LIST_SetFirstScreen]); + lv_label_set_text(ui->setting_firstinfolabel_1, Menu_List[GET_nvs_Sys_Info_language()][MENU_LIST_SetFirstScreen]); lv_label_set_long_mode(ui->setting_firstinfolabel_1, LV_LABEL_LONG_DOT); - lv_obj_set_pos(ui->setting_firstinfolabel_1, 50, 209); - lv_obj_set_size(ui->setting_firstinfolabel_1, 150, 24); + lv_obj_set_pos(ui->setting_firstinfolabel_1, 50, 257); + lv_obj_set_size(ui->setting_firstinfolabel_1, 200, 24); //Write style for setting_firstinfolabel_1, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->setting_firstinfolabel_1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); @@ -556,7 +646,7 @@ void setup_scr_setting(lv_ui *ui) //lv_obj_align(ui->setting_firstinfobtn_1_label, LV_ALIGN_CENTER, 0, 0); lv_obj_set_style_pad_all(ui->setting_firstinfobtn_1, 0, LV_STATE_DEFAULT); //lv_obj_set_width(ui->setting_firstinfobtn_1_label, LV_PCT(100)); - lv_obj_set_pos(ui->setting_firstinfobtn_1, 15, 202); + lv_obj_set_pos(ui->setting_firstinfobtn_1, 15, 250); lv_obj_set_size(ui->setting_firstinfobtn_1, 420, 30); //Write style for setting_firstinfobtn_1, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. @@ -564,23 +654,23 @@ void setup_scr_setting(lv_ui *ui) lv_obj_set_style_border_width(ui->setting_firstinfobtn_1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->setting_firstinfobtn_1, 10, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->setting_firstinfobtn_1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); - // lv_obj_set_style_text_color(ui->setting_firstinfobtn_1, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); - // lv_obj_set_style_text_font(ui->setting_firstinfobtn_1, &lv_font_simsun_16, LV_PART_MAIN|LV_STATE_DEFAULT); - // lv_obj_set_style_text_opa(ui->setting_firstinfobtn_1, 255, LV_PART_MAIN|LV_STATE_DEFAULT); - // lv_obj_set_style_text_align(ui->setting_firstinfobtn_1, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT); + //lv_obj_set_style_text_color(ui->setting_firstinfobtn_1, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); + //lv_obj_set_style_text_font(ui->setting_firstinfobtn_1, &lv_font_simsun_16, LV_PART_MAIN|LV_STATE_DEFAULT); + //lv_obj_set_style_text_opa(ui->setting_firstinfobtn_1, 255, LV_PART_MAIN|LV_STATE_DEFAULT); + //lv_obj_set_style_text_align(ui->setting_firstinfobtn_1, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT); // //Write codes setting_relayinfo // ui->setting_relayinfo = lv_label_create(ui->setting_cont_1); // lv_label_set_text(ui->setting_relayinfo, ""); // lv_label_set_long_mode(ui->setting_relayinfo, LV_LABEL_LONG_DOT); - // lv_obj_set_pos(ui->setting_relayinfo, 2, 242); + // lv_obj_set_pos(ui->setting_relayinfo, 2, 290); // lv_obj_set_size(ui->setting_relayinfo, 443, 46); // //Write style for setting_relayinfo, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. // lv_obj_set_style_border_width(ui->setting_relayinfo, 0, LV_PART_MAIN|LV_STATE_DEFAULT); // lv_obj_set_style_radius(ui->setting_relayinfo, 10, LV_PART_MAIN|LV_STATE_DEFAULT); // lv_obj_set_style_text_color(ui->setting_relayinfo, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); - // lv_obj_set_style_text_font(ui->setting_relayinfo, &lv_font_DroidSansFallback_12, LV_PART_MAIN|LV_STATE_DEFAULT); + // lv_obj_set_style_text_font(ui->setting_relayinfo, &lv_font_simsun_16, LV_PART_MAIN|LV_STATE_DEFAULT); // lv_obj_set_style_text_opa(ui->setting_relayinfo, 255, LV_PART_MAIN|LV_STATE_DEFAULT); // lv_obj_set_style_text_letter_space(ui->setting_relayinfo, 2, LV_PART_MAIN|LV_STATE_DEFAULT); // lv_obj_set_style_text_line_space(ui->setting_relayinfo, 0, LV_PART_MAIN|LV_STATE_DEFAULT); @@ -600,10 +690,10 @@ void setup_scr_setting(lv_ui *ui) // //Write codes setting_relayinfoimg_1 // ui->setting_relayinfoimg_1 = lv_img_create(ui->setting_cont_1); // lv_obj_add_flag(ui->setting_relayinfoimg_1, LV_OBJ_FLAG_CLICKABLE); - // lv_img_set_src(ui->setting_relayinfoimg_1, LVGL_PATH(relay3icon.png)); + // lv_img_set_src(ui->setting_relayinfoimg_1, &_relay3icon_alpha_30x30); // lv_img_set_pivot(ui->setting_relayinfoimg_1, 0,0); // lv_img_set_angle(ui->setting_relayinfoimg_1, 0); - // lv_obj_set_pos(ui->setting_relayinfoimg_1, 14, 250); + // lv_obj_set_pos(ui->setting_relayinfoimg_1, 14, 298); // lv_obj_set_size(ui->setting_relayinfoimg_1, 30, 30); // //Write style for setting_relayinfoimg_1, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. @@ -612,22 +702,21 @@ void setup_scr_setting(lv_ui *ui) // //Write codes setting_relayinfoimg_2 // ui->setting_relayinfoimg_2 = lv_img_create(ui->setting_cont_1); // lv_obj_add_flag(ui->setting_relayinfoimg_2, LV_OBJ_FLAG_CLICKABLE); - // lv_img_set_src(ui->setting_relayinfoimg_2, LVGL_PATH(nextpagebg.png)); + // lv_img_set_src(ui->setting_relayinfoimg_2, &_nextpagebg_alpha_15x20); // lv_img_set_pivot(ui->setting_relayinfoimg_2, 0,0); // lv_img_set_angle(ui->setting_relayinfoimg_2, 0); - // lv_obj_set_pos(ui->setting_relayinfoimg_2, 424, 253); - // lv_obj_set_size(ui->setting_relayinfoimg_2, 14, 22); + // lv_obj_set_pos(ui->setting_relayinfoimg_2, 424, 305); + // lv_obj_set_size(ui->setting_relayinfoimg_2, 15, 20); // //Write style for setting_relayinfoimg_2, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. // lv_obj_set_style_img_opa(ui->setting_relayinfoimg_2, 255, LV_PART_MAIN|LV_STATE_DEFAULT); // //Write codes setting_relayinfolabel_1 // ui->setting_relayinfolabel_1 = lv_label_create(ui->setting_cont_1); - // //lv_label_set_text(ui->setting_relayinfolabel_1, "Relay select"); - // lv_label_set_text(ui->setting_relayinfolabel_1, Menu_List[GET_nvs_Sys_Info_language()][MENU_LIST_SetRelay]); + // lv_label_set_text(ui->setting_relayinfolabel_1, "Relay select"); // lv_label_set_long_mode(ui->setting_relayinfolabel_1, LV_LABEL_LONG_DOT); - // lv_obj_set_pos(ui->setting_relayinfolabel_1, 50, 257); - // lv_obj_set_size(ui->setting_relayinfolabel_1, 150, 24); + // lv_obj_set_pos(ui->setting_relayinfolabel_1, 50, 305); + // lv_obj_set_size(ui->setting_relayinfolabel_1, 200, 24); // //Write style for setting_relayinfolabel_1, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. // lv_obj_set_style_border_width(ui->setting_relayinfolabel_1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); @@ -647,13 +736,13 @@ void setup_scr_setting(lv_ui *ui) // //Write codes setting_relayinfobtn_1 // ui->setting_relayinfobtn_1 = lv_btn_create(ui->setting_cont_1); - // //ui->setting_relayinfobtn_1_label = lv_label_create(ui->setting_relayinfobtn_1); - // //lv_label_set_text(ui->setting_relayinfobtn_1_label, ""); - // //lv_label_set_long_mode(ui->setting_relayinfobtn_1_label, LV_LABEL_LONG_DOT); - // //lv_obj_align(ui->setting_relayinfobtn_1_label, LV_ALIGN_CENTER, 0, 0); + // ui->setting_relayinfobtn_1_label = lv_label_create(ui->setting_relayinfobtn_1); + // lv_label_set_text(ui->setting_relayinfobtn_1_label, ""); + // lv_label_set_long_mode(ui->setting_relayinfobtn_1_label, LV_LABEL_LONG_WRAP); + // lv_obj_align(ui->setting_relayinfobtn_1_label, LV_ALIGN_CENTER, 0, 0); // lv_obj_set_style_pad_all(ui->setting_relayinfobtn_1, 0, LV_STATE_DEFAULT); - // //lv_obj_set_width(ui->setting_relayinfobtn_1_label, LV_PCT(100)); - // lv_obj_set_pos(ui->setting_relayinfobtn_1, 15, 250); + // lv_obj_set_width(ui->setting_relayinfobtn_1_label, LV_PCT(100)); + // lv_obj_set_pos(ui->setting_relayinfobtn_1, 15, 298); // lv_obj_set_size(ui->setting_relayinfobtn_1, 420, 30); // //Write style for setting_relayinfobtn_1, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. @@ -661,13 +750,13 @@ void setup_scr_setting(lv_ui *ui) // lv_obj_set_style_border_width(ui->setting_relayinfobtn_1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); // lv_obj_set_style_radius(ui->setting_relayinfobtn_1, 10, LV_PART_MAIN|LV_STATE_DEFAULT); // lv_obj_set_style_shadow_width(ui->setting_relayinfobtn_1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); - // // lv_obj_set_style_text_color(ui->setting_relayinfobtn_1, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); - // // lv_obj_set_style_text_font(ui->setting_relayinfobtn_1, &lv_font_simsun_16, LV_PART_MAIN|LV_STATE_DEFAULT); - // // lv_obj_set_style_text_opa(ui->setting_relayinfobtn_1, 255, LV_PART_MAIN|LV_STATE_DEFAULT); - // // lv_obj_set_style_text_align(ui->setting_relayinfobtn_1, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT); + // lv_obj_set_style_text_color(ui->setting_relayinfobtn_1, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); + // lv_obj_set_style_text_font(ui->setting_relayinfobtn_1, &lv_font_simsun_16, LV_PART_MAIN|LV_STATE_DEFAULT); + // lv_obj_set_style_text_opa(ui->setting_relayinfobtn_1, 255, LV_PART_MAIN|LV_STATE_DEFAULT); + // lv_obj_set_style_text_align(ui->setting_relayinfobtn_1, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT); //The custom code of setting. - + #if defined(CONFIG_USER_RELAY_3)||defined(CONFIG_USER_RELAY_4) #endif //Update current screen layout. @@ -676,3 +765,4 @@ void setup_scr_setting(lv_ui *ui) //Init events for screen. events_init_setting(ui); } + diff --git a/application/rt-thread/t3e-pro/components/generated/setup_scr_smartinfopage.c b/application/rt-thread/t3e-pro/components/generated/setup_scr_smartinfopage.c index 2e99e41d..b37ac7c2 100644 --- a/application/rt-thread/t3e-pro/components/generated/setup_scr_smartinfopage.c +++ b/application/rt-thread/t3e-pro/components/generated/setup_scr_smartinfopage.c @@ -68,7 +68,7 @@ void setup_scr_smartinfopage(lv_ui *ui) lv_label_set_long_mode(ui->smartinfopage_label_1, LV_LABEL_LONG_DOT); lv_obj_set_pos(ui->smartinfopage_label_1, 46, 32); - lv_obj_set_size(ui->smartinfopage_label_1, 200, 20); + lv_obj_set_size(ui->smartinfopage_label_1, 300, 20); //Write style for smartinfopage_label_1, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. lv_obj_set_style_border_width(ui->smartinfopage_label_1, 0, LV_PART_MAIN|LV_STATE_DEFAULT); diff --git a/application/rt-thread/t3e-pro/components/gui_guider.c b/application/rt-thread/t3e-pro/components/gui_guider.c index 2b620bf3..c8b4993d 100644 --- a/application/rt-thread/t3e-pro/components/gui_guider.c +++ b/application/rt-thread/t3e-pro/components/gui_guider.c @@ -388,6 +388,7 @@ void init_scr_del_flag(lv_ui *ui) ui->mianinfopage_del = true; ui->langinfopage_del = true; ui->displayinfopage_del = true; + ui->dateinfopage_del = true; ui->smartinfopage_del = true; ui->firstinfopage_del = true; ui->relayinfopage_del = true; @@ -581,7 +582,22 @@ void gui_guider_init(void) custom_init(&guider_ui);//有custom_task任务调用初始化 zigbee_uart_int(); +// //setenv("TZ", "GMT-8", 1); +// // tz_set(-8);//本地时间就是相对0时区的时间 +// if(GET_nvs_Sys_Info_autoupdatetime())//是否自动获时间 +// { +// tz_set(0);//本地时间就是相对0时区的时间 +// } +// else +// { +// tz_set(GET_nvs_Sys_Info_tzzone()); +// } + esp32Timeinit(); + + // SetTimeZone("UTC+00"); + // //setenv("TZ","UTC+0", 1); + // tzset(); #endif ////speech_uart_int(); diff --git a/application/rt-thread/t3e-pro/components/gui_guider.h b/application/rt-thread/t3e-pro/components/gui_guider.h index bbefe538..21c6a9ca 100644 --- a/application/rt-thread/t3e-pro/components/gui_guider.h +++ b/application/rt-thread/t3e-pro/components/gui_guider.h @@ -121,6 +121,12 @@ typedef struct lv_obj_t *setting_dispinfolabel_1; lv_obj_t *setting_dispinfobtn_1; lv_obj_t *setting_dispinfobtn_1_label; + lv_obj_t *setting_dateinfo; + lv_obj_t *setting_dateinfoimg_1; + lv_obj_t *setting_dateinfoimg_2; + lv_obj_t *setting_dateinfolabel_1; + lv_obj_t *setting_dateinfobtn_1; + lv_obj_t *setting_dateinfobtn_1_label; lv_obj_t *setting_langinfo; lv_obj_t *setting_langinfoimg_1; lv_obj_t *setting_langinfoimg_2; @@ -169,6 +175,43 @@ typedef struct lv_obj_t *displayinfopage_autobrightsw_1; lv_obj_t *displayinfopage_autolocklabel; lv_obj_t *displayinfopage_autlockdlist_1; + lv_obj_t *dateinfopage; + bool dateinfopage_del; + lv_obj_t *dateinfopage_returnbg; + lv_obj_t *dateinfopage_retrunbtn; + lv_obj_t *dateinfopage_retrunbtn_label; + lv_obj_t *dateinfopage_sw_1; + lv_obj_t *dateinfopage_label_2; + lv_obj_t *dateinfopage_datecont; + lv_obj_t *dateinfopage_img_2; + lv_obj_t *dateinfopage_datelabel; + lv_obj_t *dateinfopage_datetxtlabel; + lv_obj_t *dateinfopage_datebtn; + lv_obj_t *dateinfopage_datebtn_label; + lv_obj_t *dateinfopage_timecont; + lv_obj_t *dateinfopage_img_3; + lv_obj_t *dateinfopage_timeclabel; + lv_obj_t *dateinfopage_timetxtlabel; + lv_obj_t *dateinfopage_timebtn; + lv_obj_t *dateinfopage_timebtn_label; + lv_obj_t *datesetpage; + bool datesetpage_del; + lv_obj_t *datesetpage_returnbg; + lv_obj_t *datesetpage_retrunbtn; + lv_obj_t *datesetpage_retrunbtn_label; + lv_obj_t *datesetpage_label_1; + lv_obj_t *datesetpage_zoneddlist; + lv_obj_t *datesetpage_label_2; + lv_obj_t *datesetpage_yearddlist; + lv_obj_t *datesetpage_moonddlist; + lv_obj_t *datesetpage_sunddlist; + lv_obj_t *datesetpage_label_3; + lv_obj_t *datesetpage_hourddlist; + lv_obj_t *datesetpage_minuteddlist; + lv_obj_t *datesetpage_changebtn; + lv_obj_t *datesetpage_changebtn_label; + lv_obj_t *datesetpage_cancelbtn; + lv_obj_t *datesetpage_cancelbtn_label; lv_obj_t *langinfopage; bool langinfopage_del; lv_obj_t *langinfopage_returnbg; @@ -292,6 +335,9 @@ typedef struct lv_obj_t *scene_label_6; lv_obj_t *scene_btn_6; lv_obj_t *scene_btn_6_label; + lv_obj_t *scene_alarmtimecont; + lv_obj_t *scene_img_13; + lv_obj_t *scene_label_12; lv_obj_t *onoff; bool onoff_del; lv_obj_t *onoff_common_cont; @@ -1384,6 +1430,8 @@ void setup_scr_setting(lv_ui *ui); void setup_scr_mianinfopage(lv_ui *ui); void setup_scr_langinfopage(lv_ui *ui); void setup_scr_displayinfopage(lv_ui *ui); +void setup_scr_dateinfopage(lv_ui *ui); +void setup_scr_datesetpage(lv_ui *ui); void setup_scr_smartinfopage(lv_ui *ui); void setup_scr_firstinfopage(lv_ui *ui); void setup_scr_relayinfopage(lv_ui *ui); @@ -1622,6 +1670,12 @@ LV_FONT_DECLARE(lv_font_albbhptR_30); LV_FONT_DECLARE(lv_font_DroidSansFallback_60); LV_FONT_DECLARE(lv_font_albbhptR_100); + +LV_FONT_DECLARE(lv_font_albbhptR_12); +LV_FONT_DECLARE(lv_font_arial_12); +LV_FONT_DECLARE(lv_font_arial_18); +LV_FONT_DECLARE(lv_font_arial_20); +LV_FONT_DECLARE(lv_font_albbhptR_20); // extern lv_font_t *lv_font_DroidSansFallback_12; // extern lv_font_t *lv_font_DroidSansFallback_14; // extern lv_font_t *lv_font_simsun_16; diff --git a/application/rt-thread/t3e-pro/components/mcu_sdk/src/protocol.c b/application/rt-thread/t3e-pro/components/mcu_sdk/src/protocol.c index 18fccebc..9862f106 100644 --- a/application/rt-thread/t3e-pro/components/mcu_sdk/src/protocol.c +++ b/application/rt-thread/t3e-pro/components/mcu_sdk/src/protocol.c @@ -12,6 +12,7 @@ #include "zigbee.h" #include "zigbee_fun.h" #include "custom.h" +#include // static const char *TAG = "protocol"; @@ -3365,8 +3366,8 @@ void mcu_write_rtctime(unsigned char time[]) time[0]~time[3]:standard time time[4]~time[7]: Local time */ - unsigned int standardtime; - unsigned int Localtime; + long standardtime; + long Localtime; standardtime=time[0]; standardtime=standardtime<<8; standardtime|=time[1]; @@ -3381,18 +3382,34 @@ void mcu_write_rtctime(unsigned char time[]) Localtime|=time[6]; Localtime=Localtime<<8; Localtime|=time[7]; - printf("standardtime:%d\r\n",standardtime); - printf("Localtime:%d\r\n",Localtime); + printf("standardtime:%ld\r\n",standardtime); + printf("Localtime:%ld\r\n",Localtime); +//确定时区 +//Localtime-standardtime/3600 +//=0是utc+0 +//<0是utc- +//>0是utc+ + char zone=(char)((Localtime-standardtime)/3600); + printf("zone:%d\r\n", zone); + + struct timeval tv; + //tv.tv_sec=(time_t)Localtime;//用本地时间 时区要设置0 相对0时区的时间 + + tz_set(zone); + tv.tv_sec=(time_t)standardtime;//utc时间 + tv.tv_usec=0; + // int settimeofday(const struct timeval *tv , const struct timezone *tz); + //tz参数为时区 通常将参数tz设置为NULL,表示使用当前系统的时区 + //输入时间戳,通过settimeofday()函数来设置系统时间,这个函数设置的精度可以精确到微秒 +// tz_set(0);//本地时间就是相对0时区的时间 + settimeofday(&tv, NULL);//不用重新设置时区 + my_memcpy((void *)timestamp,(const char *)time,4); //get timestamp + zigbee_timestamp_to_time(); + + SET_nvs_Sys_Info_tzzone(zone); + nvs_eepom_sysInfo_update(); + //更新时区信息 - struct timeval tv; - tv.tv_sec=(time_t)standardtime;//用本地时间 不用处理时区了 - tv.tv_usec=0; - // int settimeofday(const struct timeval *tv , const struct timezone *tz); - //tz参数为时区 通常将参数tz设置为NULL,表示使用当前系统的时区 - //输入时间戳,通过settimeofday()函数来设置系统时间,这个函数设置的精度可以精确到微秒 - settimeofday(&tv, NULL);//不用重新设置时区 - my_memcpy((void *)timestamp,(const char *)time,4); //get timestamp - zigbee_timestamp_to_time(); /* year = _time.w_year; //year month = _time.w_month; //month @@ -3781,10 +3798,10 @@ void zigbee_net_work_state_event(unsigned char zigbee_work_state) break; case ZIGBEE_JOIN_GATEWAY://已入网 - // if(GET_nvs_Sys_Info_autoupdatetime())//是否自动获取时间 - // { + if(GET_nvs_Sys_Info_autoupdatetime())//是否自动获取时间 + { mcu_get_system_time();//入网后自动获取时间 - // } + } printf("protocol:net_work_state JOIN_GATEWAY\r\n"); //ZIGEvent evt; @@ -3833,10 +3850,10 @@ void zigbee_work_state_event(unsigned char zigbee_work_state) break; case ZIGBEE_JOIN_GATEWAY://已入网 - //if(GET_nvs_Sys_Info_autoupdatetime())//是否自动获取玩疯了时间 - //{ + if(GET_nvs_Sys_Info_autoupdatetime())//是否自动获取玩疯了时间 + { mcu_get_system_time();//入网后自动获取时间 - //} + } printf("protocol:work_state JOIN_GATEWAY\r\n"); //ZIGEvent evt; diff --git a/application/rt-thread/t3e-pro/components/mcu_sdk/src/protocol.h b/application/rt-thread/t3e-pro/components/mcu_sdk/src/protocol.h index 78d6b93f..feb1889f 100644 --- a/application/rt-thread/t3e-pro/components/mcu_sdk/src/protocol.h +++ b/application/rt-thread/t3e-pro/components/mcu_sdk/src/protocol.h @@ -33,7 +33,7 @@ extern "C" ///< mcu version -#define MCU_VER "1.0.1" // MAX 3.3.15 BIT 7~0 XX.XX.XXXX 00~14 +#define MCU_VER "1.0.5" // MAX 3.3.15 BIT 7~0 XX.XX.XXXX 00~14 #define ZIGBEE_UART_QUEUE_LMT 768 // using to save data received from uart #define ZIGBEE_UART_RECV_BUF_LMT 256 // diff --git a/application/rt-thread/t3e-pro/components/nvs_eepom.c b/application/rt-thread/t3e-pro/components/nvs_eepom.c index ec5e70be..230d185b 100644 --- a/application/rt-thread/t3e-pro/components/nvs_eepom.c +++ b/application/rt-thread/t3e-pro/components/nvs_eepom.c @@ -171,12 +171,12 @@ static void nvs_eepom_sysInfo_factoryinfo(void)//出厂设置 nvs_SysInfo.backlight=100; nvs_SysInfo.autobacklight=1;//自动亮度是否开启(功能改为屏保是否启用) - nvs_SysInfo.autoupdatetime=1; + nvs_SysInfo.autoupdatetime=1;//默认开启自动更新 nvs_SysInfo.autoScreentime=30;//默认30s nvs_SysInfo.subdevice_array[3]=1; //默认显示场景开关4路 - memcpy(nvs_SysInfo.tzzone,(const char *)"GMT-8",strlen((const char *)"GMT-8")); + // memcpy(nvs_SysInfo.tzzone,(const char *)"GMT-8",strlen((const char *)"GMT-8")); } static void nvs_eepom_sysInfo_factory(void)//出厂设置 { diff --git a/application/rt-thread/t3e-pro/components/nvs_eepom.h b/application/rt-thread/t3e-pro/components/nvs_eepom.h index 93022591..9562e55c 100644 --- a/application/rt-thread/t3e-pro/components/nvs_eepom.h +++ b/application/rt-thread/t3e-pro/components/nvs_eepom.h @@ -123,7 +123,7 @@ typedef struct { // uint8_t debug; uint8_t language;//语言 - uint8_t autoupdatetime;//是否自动更新时间 + uint8_t autoupdatetime;//是否自动更新时间 0手动 1自动 uint8_t backlight;//亮度 uint8_t autobacklight;//是否自动亮度 @@ -229,6 +229,8 @@ extern nvs_Sys_Info nvs_SysInfo; #define SET_nvs_Sys_Info_autoupdatetime(val) (nvs_SysInfo.autoupdatetime=val) #define GET_nvs_Sys_Info_autoupdatetime() (nvs_SysInfo.autoupdatetime) +#define SET_nvs_Sys_Info_tzzone(val) (nvs_SysInfo.tzzone[0]=val) +#define GET_nvs_Sys_Info_tzzone() (nvs_SysInfo.tzzone[0]) #define SET_nvs_Sys_Info_backlight(val) (nvs_SysInfo.backlight=val) #define GET_nvs_Sys_Info_backlight() (nvs_SysInfo.backlight) diff --git a/packages/artinchip/lvgl-ui/aic_widgets/aic_canvas/libaic_canvas_v8_e907f.a b/packages/artinchip/lvgl-ui/aic_widgets/aic_canvas/libaic_canvas_v8_e907f.a index e6bf0e01..5ac36725 100644 Binary files a/packages/artinchip/lvgl-ui/aic_widgets/aic_canvas/libaic_canvas_v8_e907f.a and b/packages/artinchip/lvgl-ui/aic_widgets/aic_canvas/libaic_canvas_v8_e907f.a differ diff --git a/packages/artinchip/lvgl-ui/lvgl_v8/lv_conf.h b/packages/artinchip/lvgl-ui/lvgl_v8/lv_conf.h index 369ad717..f7d9715f 100644 --- a/packages/artinchip/lvgl-ui/lvgl_v8/lv_conf.h +++ b/packages/artinchip/lvgl-ui/lvgl_v8/lv_conf.h @@ -131,11 +131,19 @@ /*------------- * Others *-----------*/ -/*1: Show CPU usage and FPS count*/ -#define LV_USE_PERF_MONITOR 0 -#if LV_USE_PERF_MONITOR - #define LV_USE_PERF_MONITOR_POS LV_ALIGN_BOTTOM_RIGHT -#endif +// /*1: Show CPU usage and FPS count*/ +// #define LV_USE_PERF_MONITOR 1 +// #if LV_USE_PERF_MONITOR +// #define LV_USE_PERF_MONITOR_POS LV_ALIGN_BOTTOM_RIGHT +// #endif + +// /*1: Show the used memory and the memory fragmentation +// * Requires LV_MEM_CUSTOM = 0*/ +// #define LV_USE_MEM_MONITOR 1 +// #if LV_USE_MEM_MONITOR +// #define LV_USE_MEM_MONITOR_POS LV_ALIGN_BOTTOM_LEFT +// #endif + /* 允许处理大字体或包含大量字符的字体 * 限制取决于字体大小、字体和 bpp * 如果字体需要,将触发编译器错误 */ diff --git a/t3e_pro_v1.0.4.zip b/t3e_pro_v1.0.4.zip deleted file mode 100644 index f8939e64..00000000 Binary files a/t3e_pro_v1.0.4.zip and /dev/null differ diff --git a/t3e_pro标准版_v1.0.5.zip b/t3e_pro标准版_v1.0.5.zip new file mode 100644 index 00000000..11d8c2c2 Binary files /dev/null and b/t3e_pro标准版_v1.0.5.zip differ diff --git a/target/configs/d12x_t3e-pro_rt-thread_t3e-pro_defconfig b/target/configs/d12x_t3e-pro_rt-thread_t3e-pro_defconfig index 3c2d3f80..d0af2fab 100644 --- a/target/configs/d12x_t3e-pro_rt-thread_t3e-pro_defconfig +++ b/target/configs/d12x_t3e-pro_rt-thread_t3e-pro_defconfig @@ -506,7 +506,7 @@ CONFIG_RT_IDLE_HOOK_LIST_SIZE=4 CONFIG_IDLE_THREAD_STACK_SIZE=8192 CONFIG_RT_USING_TIMER_SOFT=y CONFIG_RT_TIMER_THREAD_PRIO=4 -CONFIG_RT_TIMER_THREAD_STACK_SIZE=1024 +CONFIG_RT_TIMER_THREAD_STACK_SIZE=4096 # # kservice optimization @@ -550,7 +550,7 @@ CONFIG_RT_USING_HEAP=y # Kernel Device Object # CONFIG_RT_USING_DEVICE=y -# CONFIG_RT_USING_DEVICE_OPS is not set +CONFIG_RT_USING_DEVICE_OPS=y # CONFIG_RT_USING_INTERRUPT_INFO is not set CONFIG_RT_USING_CONSOLE=y CONFIG_RT_CONSOLEBUF_SIZE=128 diff --git a/target/d12x/t3e-pro/pack/.image_cfg.json.tmp b/target/d12x/t3e-pro/pack/.image_cfg.json.tmp index d144df01..6386a1d9 100644 --- a/target/d12x/t3e-pro/pack/.image_cfg.json.tmp +++ b/target/d12x/t3e-pro/pack/.image_cfg.json.tmp @@ -15,7 +15,7 @@ "info": { // Header information about image "platform": "d12x", "product": "t3e-pro", - "version": "1.0.4", + "version": "1.0.5", "media": { "type": "spi-nor", "device_id": 0, diff --git a/target/d12x/t3e-pro/pack/bootloader.bin b/target/d12x/t3e-pro/pack/bootloader.bin index eb0989f4..8e0b601d 100644 Binary files a/target/d12x/t3e-pro/pack/bootloader.bin and b/target/d12x/t3e-pro/pack/bootloader.bin differ diff --git a/target/d12x/t3e-pro/pack/image_cfg.json b/target/d12x/t3e-pro/pack/image_cfg.json index 81017e38..36717f20 100644 --- a/target/d12x/t3e-pro/pack/image_cfg.json +++ b/target/d12x/t3e-pro/pack/image_cfg.json @@ -15,7 +15,7 @@ "info": { // Header information about image "platform": "d12x", "product": "t3e-pro", - "version": "1.0.4", + "version": "1.0.5", "media": { "type": "spi-nor", "device_id": 0, diff --git a/tools/env/tools/ConEmu/ConEmu.xml b/tools/env/tools/ConEmu/ConEmu.xml index 1c0251ff..57bf40dd 100644 --- a/tools/env/tools/ConEmu/ConEmu.xml +++ b/tools/env/tools/ConEmu/ConEmu.xml @@ -1,7 +1,7 @@ - + @@ -259,11 +259,11 @@ - - + + - + diff --git a/tools/env/tools/ConEmu/ConEmu/clink/profile/.history b/tools/env/tools/ConEmu/ConEmu/clink/profile/.history index d38cb4a5..bf29846f 100644 --- a/tools/env/tools/ConEmu/ConEmu/clink/profile/.history +++ b/tools/env/tools/ConEmu/ConEmu/clink/profile/.history @@ -107,3 +107,38 @@ me me mc -j16 me +me +me +me +me +me +me +me +me +me +me +mc -j16 +me +me +me +me +me +me +me +me +me +me +me +me +me +mc -j16 +me +mc -j16 +me +me +me +me +me +me +bm +me