diff --git a/Drivers/BSP/160160D/160160D.C b/Drivers/BSP/160160D/160160D.C index 6dd5de7..637d240 100644 --- a/Drivers/BSP/160160D/160160D.C +++ b/Drivers/BSP/160160D/160160D.C @@ -1319,28 +1319,45 @@ void FillBoxScreen(uint8_t x, uint8_t y, uint8_t len, uint8_t high, uint8_t byte y++; /* 移动到下一行 */ } } + +/** + * @brief LCD 控制与背光 GPIO 初始化 + * @note 初始化 UC1698U 控制器所需的 GPIO 引脚,分为两组: + * GPIOB 组(控制信号与背光): + * | 引脚 | 功能 | 说明 | + * |------|----------|----------------| + * | PB0 | 背光 | 背光开关 | + * | PB10 | RST | 复位信号 | + * | PB11 | CS | 片选 | + * | PB12 | RD | 读使能 | + * | PB13 | WR | 写使能 | + * | PB14 | CD | 命令/数据选择 | + * GPIOE 组(数据总线): + * | 引脚 | 功能 | 说明 | + * |-----------|----------|-------------------------| + * | PE8~PE15 | D0~D7 | 8 位并行数据总线 | + * 配置为推挽输出、上拉、高速模式 + * @retval 无 + */ void LCD_GPIO_Init(void) { GPIO_InitTypeDef gpio_init_struct; - __HAL_RCC_GPIOB_CLK_ENABLE(); // 时钟初始化 - __HAL_RCC_GPIOE_CLK_ENABLE(); // 时钟初始化 - + __HAL_RCC_GPIOB_CLK_ENABLE(); /**< 使能 GPIOB 时钟 */ + __HAL_RCC_GPIOE_CLK_ENABLE(); /**< 使能 GPIOE 时钟 */ - // 配置 LCD 引脚 + /* ========== GPIOB:控制信号与背光 ========== */ gpio_init_struct.Pin = GPIO_PIN_14 | GPIO_PIN_13 | GPIO_PIN_12 | GPIO_PIN_11 | GPIO_PIN_10 | GPIO_PIN_0; - gpio_init_struct.Mode = GPIO_MODE_OUTPUT_PP; /*推挽输出模式*/ - gpio_init_struct.Pull = GPIO_PULLUP; - gpio_init_struct.Speed = GPIO_SPEED_HIGH; - // 初始化 LCD 选引脚 + gpio_init_struct.Mode = GPIO_MODE_OUTPUT_PP; /**< 推挽输出 */ + gpio_init_struct.Pull = GPIO_PULLUP; /**< 上拉 */ + gpio_init_struct.Speed = GPIO_SPEED_HIGH; /**< 高速 */ HAL_GPIO_Init(GPIOB, &gpio_init_struct); - // 配置 LCD 引脚 + /* ========== GPIOE:8 位数据总线 ========== */ gpio_init_struct.Pin = GPIO_PIN_8 | GPIO_PIN_9 | GPIO_PIN_10 | GPIO_PIN_11 | GPIO_PIN_12 | GPIO_PIN_13 | GPIO_PIN_14 | GPIO_PIN_15; - gpio_init_struct.Mode = GPIO_MODE_OUTPUT_PP; /*推挽输出模式*/ - gpio_init_struct.Pull = GPIO_PULLUP; - gpio_init_struct.Speed = GPIO_SPEED_HIGH; - // 初始化 LCD 选引脚 + gpio_init_struct.Mode = GPIO_MODE_OUTPUT_PP; /**< 推挽输出 */ + gpio_init_struct.Pull = GPIO_PULLUP; /**< 上拉 */ + gpio_init_struct.Speed = GPIO_SPEED_HIGH; /**< 高速 */ HAL_GPIO_Init(GPIOE, &gpio_init_struct); } /** @@ -1422,64 +1439,66 @@ void DisplayNANRUI_LOGO(void) } -/******************************************************************************* -* FunctionName : Display_Picture() -* Description : 图片显示程序 -* EntryParameter : none -* ReturnValue : none -*******************************************************************************/ +/** + * @brief 在 LCD 上显示指定尺寸的位图 + * @param Width 位图宽度(像素,不超过 160) + * @param Height 位图高度(像素,不超过 160) + * @param picture 位图数据指针(每像素 1 位,每行 Width/8 字节,行内取反显示) + * @note 使用 4K 色(RGB444)模式;位图居中显示 + * X 坐标按每 3 像素递增;每行末尾补 0 使点数能被 3 整除 + * 若 Width 或 Height 大于 160 则直接返回 + * @retval 无 + */ void Display_BMP(uint32_t Width, uint32_t Height, const uint8_t* picture) { - uint8_t i,n; - uint8_t disp_point[4]={0x00,0x0f,0xf0,0xff}; - uint8_t x, y; - uint32_t bytesNumOfRow; - set_color_mode(COLOR_4K_444);//设置4.4.4.模式 - - if(Width>160 || Height>160) - return ; //设置4.4.4.模式 - - x = ((160-Width)/2)/3; //x坐标为每3个像素点递增 - y = (160-Height)/2 + Height; //x坐标为每3个像素点递增 - - bytesNumOfRow = Width/8; - for(i=0;i>6)&0x03]); - WriteData(disp_point[(~picture[i*bytesNumOfRow+n]>>4)&0x03]); - WriteData(disp_point[(~picture[i*bytesNumOfRow+n]>>2)&0x03]); - WriteData(disp_point[(~picture[i*bytesNumOfRow+n]>>0)&0x03]); - } - WriteData(0x00); //补全每行末尾的数据,使总点数能被三整除 - } + uint8_t i, n; + uint8_t disp_point[4] = {0x00, 0x0f, 0xf0, 0xff}; /**< 4K 色像素值映射 */ + uint8_t x, y; + uint32_t bytesNumOfRow; + + set_color_mode(COLOR_4K_444); /**< 设置 4K 色模式 */ + + if (Width > 160 || Height > 160) + return; + + x = ((160 - Width) / 2) / 3; /**< 居中 X,每 3 像素为一单位 */ + y = (160 - Height) / 2 + Height; /**< 居中 Y,自下而上绘制 */ + + bytesNumOfRow = Width / 8; + for (i = 0; i < Height; i++) + { + SetAddress(x, y - i); + for (n = 0; n < bytesNumOfRow; n++) + { + WriteData(disp_point[(~picture[i * bytesNumOfRow + n] >> 6) & 0x03]); + WriteData(disp_point[(~picture[i * bytesNumOfRow + n] >> 4) & 0x03]); + WriteData(disp_point[(~picture[i * bytesNumOfRow + n] >> 2) & 0x03]); + WriteData(disp_point[(~picture[i * bytesNumOfRow + n] >> 0) & 0x03]); + } + WriteData(0x00); /**< 补足使每行点数能被 3 整除 */ + } } -/******************************************************************************* -* FunctionName : DisplayNANRUI_BMP() -* Description : BMP格式显示测试 -* EntryParameter : none -* ReturnValue : none -*******************************************************************************/ +/** + * @brief 显示南瑞(NANRUI)Logo 位图 + * @note 调用 Display_BMP,尺寸 128×50 像素,数据源为 NANRUI_BMP + * @retval 无 + */ void DisplayNANRUI_BMP(void) { - const uint32_t xmax=128, ymax=50; - Display_BMP(xmax, ymax, NANRUI_BMP); + const uint32_t xmax = 128, ymax = 50; + Display_BMP(xmax, ymax, NANRUI_BMP); } -/******************************************************************************* -* FunctionName : DisplayNANRUI_BMP() -* Description : BMP格式显示测试 -* EntryParameter : none -* ReturnValue : none -*******************************************************************************/ +/** + * @brief 显示 QQ Logo 位图 + * @note 调用 Display_BMP,尺寸 96×94 像素,数据源为 QQ_BMP + * @retval 无 + */ void DisplayQQ_BMP(void) { - const uint32_t xmax=96, ymax=94; - - Display_BMP(xmax, ymax, QQ_BMP); + const uint32_t xmax = 96, ymax = 94; + Display_BMP(xmax, ymax, QQ_BMP); } /** * @brief 绘制单条水平线(内部函数) @@ -1589,58 +1608,6 @@ void DiaplayHeadGraph(void) /* 绘制左侧垂直边框(从第18行开始,高度142) */ DisplayVerticalLine(0, 18, 142, 0x80); } - -/** - * @brief 绘制带阴影效果的方框(内部函数) - * @param x 起始列坐标(X坐标) - * @param y 起始行坐标(Y坐标) - * @param len 方框宽度(像素单位) - * @param high 方框高度(行数) - * @note 绘制一个带3D阴影效果的方框 - * 包括:左边框、上边框、下边框(带阴影)、右边框(带渐变阴影效果) - * @retval 无 - */ -static void DrawBox(uint8_t x, uint8_t y, uint8_t len, uint8_t high) -{ - /* 绘制左边框 */ - DisplayVerticalLine(x, y, high, 0x80); - - /* 绘制上边框 */ - DisplayHorizontalLine(x, y, len); - - /* 绘制下边框 */ - DisplayHorizontalLine(x, y + high, len); - /* 绘制第一层阴影 */ - writebyte(x, y + high + 1, 0x7F, RESET); - DisplayHorizontalLine(x + 1, y + high + 1, len); - /* 绘制第二层阴影 */ - writebyte(x, y + high + 2, 0x3F, RESET); - DisplayHorizontalLine(x + 1, y + high + 2, len); - - /* 绘制右边框(带渐变阴影效果) */ - DisplayVerticalLine(x + len, y, high + 3, 0x80); /* 主边框 */ - DisplayVerticalLine(x + len, y + 1, high + 2, 0xC0); /* 第一层阴影 */ - DisplayVerticalLine(x + len, y + 2, high + 1, 0xE0); /* 第二层阴影 */ -} - -/** - * @brief 绘制无阴影效果的方框(内部函数) - * @param x 起始列坐标(X坐标) - * @param y 起始行坐标(Y坐标) - * @param len 方框宽度(像素单位) - * @param high 方框高度(行数) - * @note 绘制一个简单的方框,无阴影效果 - * 包括:左边框、上边框、下边框、右边框 - * @retval 无 - */ -static void DrawBox_NoShadow(uint8_t x, uint8_t y, uint8_t len, uint8_t high) -{ - DisplayVerticalLine(x, y, high, 0x80); /* 左边框 */ - DisplayHorizontalLine(x, y, len); /* 上边框 */ - DisplayHorizontalLine(x, y + high, len); /* 下边框 */ - DisplayVerticalLine(x + len - 1, y, high, 0x20); /* 右边框 */ -} - /** * @brief 绘制一个像素点(带渐变效果) * @param x 列坐标(X坐标) @@ -1665,168 +1632,3 @@ void DrawPoint(uint8_t x, uint8_t y) DisplayVerticalLine(x + 1, y + 4, 1, 0x60); DisplayHorizontalLine(x + 1, y + 5, 1); } -/** - * @brief 显示消息提示框(静态模式) - * @note 在屏幕指定位置显示一个带阴影的消息提示框 - * 位置:坐标(10,40),尺寸:33x50像素 - * 先清除背景区域,然后绘制方框 - * 动态框模式代码已注释(需要定义DYNAMIC_BOX) - * @retval 无 - */ -void MessageBox(void) -{ - /* 静态框模式 */ - FillBoxScreen(9, 37, 35, 59, 0x00); /* 清除背景区域 */ - DrawBox(10, 40, 33, 50); /* 绘制带阴影的方框 */ -} -/** - * @brief 清除消息提示框 - * @note 清除消息提示框的整个显示区域 - * 位置和尺寸与MessageBox函数对应 - * @retval 无 - */ -void ClrMessageBox(void) -{ - FillBoxScreen(9, 37, 35, 59, 0x00); /* 清除消息框区域 */ -} -/** - * @brief 清除消息提示框内容区域 - * @note 只清除消息框内部的内容区域,保留边框 - * 用于刷新消息内容而不重新绘制边框 - * @retval 无 - */ -void ClrMessageBoxContent(void) -{ - FillBoxScreen(11, 41, 31, 48, 0x00); /* 清除内容区域(保留边框) */ -} -/** - * @brief 显示可编程消息提示框(支持静态和动态模式) - * @param x 起始列坐标(X坐标) - * @param y 起始行坐标(Y坐标) - * @param size 方框大小参数(影响方框尺寸) - * @note 根据编译选项显示静态或动态消息框 - * 静态模式:直接绘制完整方框 - * 动态模式:逐步绘制方框,产生动画效果 - * 方框尺寸:宽度=size,高度=size*3/2+9 - * @retval 无 - */ -void ProgramableMessageBox(uint8_t x, uint8_t y, uint8_t size) -{ -#ifdef STATIC_BOX /* 静态框模式 */ - FillBoxScreen(x - 1, y - 3, size + 2, size * 3 / 2 + 9, 0x00); /* 清除背景 */ - DrawBox(x, y, size, size * 3 / 2 + 9); /* 绘制方框 */ -#endif //#ifdef STATIC_BOX - -#ifdef DYNAMIC_BOX /* 动态框模式 */ - FillBoxScreen(x - 1, y - 3, size * 2 + 2, size * 3 + 9, 0x00); /* 清除背景 */ - /* 逐步绘制方框,产生动画效果 */ - for(int i = 0; i < size; i++) - { - EraseLine(x, y, i * 2, i * 3); /* 擦除旧线条 */ - DrawBox(x, y, (i + 1) * 2, (i + 1) * 3); /* 绘制新方框 */ - delay_ms(5); /* 延时,产生动画效果 */ - } -#endif //#ifdef DYNAMIC_BOX -} -/** - * @brief 绘制下拉菜单组合框 - * @param x 起始列坐标(X坐标) - * @param y 起始行坐标(Y坐标) - * @param len 菜单框宽度(像素单位) - * @param items 菜单项数量 - * @note 根据编译选项显示静态或动态菜单框 - * 静态模式:直接绘制完整菜单框 - * 动态模式:逐步绘制菜单框,产生下拉动画效果 - * 每个菜单项高度:20像素 - * @retval 无 - */ -void DrawMenuComboBox(uint8_t x, uint8_t y, uint8_t len, uint8_t items) -{ -#ifdef STATIC_BOX /* 静态框模式 */ - FillBoxScreen(x - 1, y - 6, len + 3, items * 20 + 9, 0x00); /* 清除背景 */ - DrawBox(x - 1, y - 3, len + 2, items * 20); /* 绘制菜单框 */ -#endif //#ifdef STATIC_BOX - -#ifdef DYNAMIC_BOX /* 动态框模式 */ - FillBoxScreen(x - 2, y - 6, len + 3, items * 20 + 9, 0x00); /* 清除背景 */ - /* 逐步绘制菜单框,产生下拉动画效果 */ - for(int i = 0; i < items; i++) - { - EraseLine(x - 1, y - 6, len + 2, i * 20 + 3); /* 擦除旧线条 */ - DrawBox(x - 1, y - 3, len + 2, (i + 1) * 20); /* 绘制新菜单框 */ - delay_ms(15); /* 延时,产生动画效果 */ - } -#endif //#ifdef DYNAMIC_BOX -} - -/** - * @brief 显示消息设置提示框(带标题栏,清除背景) - * @param title 标题字符串指针(GB2312编码) - * @note 显示一个带标题栏的消息设置框 - * 先清除背景区域,然后绘制无阴影方框 - * 标题栏区域填充白色,标题文字反显 - * 位置:坐标(8,40),尺寸:37x70像素 - * @retval 无 - */ -void MessageSetBox(const uint8_t *title) -{ - FillBoxScreen(7, 37, 39, 79, 0x00); /* 清除背景区域 */ - DrawBox_NoShadow(8, 40, 37, 70); /* 绘制无阴影方框 */ - FillBoxScreen(8, 40, 37, 20, 0xFF); /* 填充标题栏区域(白色) */ - HZ12AndChar_Printf(18, 43, title, SET); /* 显示标题(反显) */ -} - -/** - * @brief 显示消息设置提示框(带标题栏,不清除背景) - * @param title 标题字符串指针(GB2312编码) - * @note 功能与MessageSetBox类似,但不清除背景区域 - * 用于在已有内容上叠加显示消息框 - * @retval 无 - */ -void MessageSetBox_NoClear(const uint8_t *title) -{ - DrawBox_NoShadow(8, 40, 37, 70); /* 绘制无阴影方框 */ - FillBoxScreen(8, 40, 37, 20, 0xFF); /* 填充标题栏区域(白色) */ - HZ12AndChar_Printf(18, 43, title, SET); /* 显示标题(反显) */ -} - - -/** - * @brief 清除消息设置框的内容显示区域 - * @note 只清除消息框内部的内容区域,保留标题栏和边框 - * 用于刷新消息内容而不重新绘制整个框 - * @retval 无 - */ -void ClrMessageSetBox(void) -{ - FillBoxScreen(9, 61, 34, 48, 0x00); /* 清除内容区域(保留标题栏和边框) */ -} - -/** - * @brief 删除消息设置提示框 - * @note 清除整个消息设置框的显示区域 - * 包括标题栏、边框和内容区域 - * @retval 无 - */ -void DeleteMessageSetBox(void) -{ - FillBoxScreen(7, 37, 39, 79, 0x00); /* 清除整个消息框区域 */ -} - -/** - * @brief 绘制记录框(用于显示记录列表) - * @param x 起始列坐标(X坐标) - * @param y 起始行坐标(Y坐标) - * @param len 框宽度(像素单位) - * @param items 记录项数量 - * @note 绘制一个带阴影的记录列表框 - * 每个记录项高度:16像素(显示区域),19像素(包括间距) - * 先清除背景,然后绘制方框 - * @retval 无 - */ -void DrawRecordBox(uint8_t x, uint8_t y, uint8_t len, uint8_t items) -{ - FillBoxScreen(x - 1, y - 3, len + 2, items * 16 + 6, 0x00); /* 清除背景 */ - DrawBox(x - 1, y - 3, len + 2, items * 19); /* 绘制记录框 */ -} - diff --git a/Drivers/BSP/160160D/160160D.h b/Drivers/BSP/160160D/160160D.h index 1917be5..d2647c4 100644 --- a/Drivers/BSP/160160D/160160D.h +++ b/Drivers/BSP/160160D/160160D.h @@ -1,117 +1,116 @@ +/****************************************************************************** + * @file 160160D.h + * @brief UC1698U控制器驱动的 160x160 像素 LCD 显示屏驱动头文件 + * @details 本文件定义了 LCD 驱动的接口函数、状态码宏定义以及 ASCII 字体数据。 + * 包含显示控制、字符显示、图形显示、菜单操作等功能的函数声明。 + * @author 阜阳师范大学物电学院 + * @version V0.1 + * @date 2026.1.19 + * @note 控制器: UC1698U + * 显示屏: 160x160像素 + * 颜色模式: 4K色(RGB444)和 64K色(RGB565) + ******************************************************************************/ + #ifndef __160160D_H__ #define __160160D_H__ #include "./SYSTEM/sys/sys.h" #include "./SYSTEM/delay/delay.h" -#define LCD_EXT extern +/* ============================================================================ + * 显示状态码定义 + * ============================================================================ */ +#define DISPLAY_BLANK 0x00 /**< 显示空白 */ +#define PROTEC_ON 0x01 /**< 保护开启 */ +#define PROTEC_EXIT 0x02 /**< 保护退出 */ +#define PROTEC_START 0x03 /**< 保护启动 */ +#define PROTECT_TRIP 0x04 /**< 保护跳闸 */ +#define HEART_ACCUM 0x05 /**< 心跳累加 */ +#define HEART_REDUCE 0x06 /**< 心跳减少 */ +#define NEXT_MENU 0x07 /**< 下一菜单 */ +#define UP_DOWN 0x08 /**< 上下键 */ +#define LEFT_RIGHT 0x09 /**< 左右键 */ +#define DERECTION_KEY 0x0a /**< 方向键 */ +#define ENTER_KEY 0x0b /**< 确认键 */ +#define ESC_KEY 0x0c /**< 取消键 */ +#define ADD_DEC 0x0d /**< 加减键 */ +#define DI_CLOSE 0x0e /**< 数字输入关闭 */ +#define DI_OPEN 0x0f /**< 数字输入开启 */ +#define DI_UNCERT 0x10 /**< 数字输入不确定 */ +#define DELET_MESS 0x11 /**< 删除消息 */ +#define HAVE_MESS 0x12 /**< 有消息 */ +#define CODE_PASS 0x13 /**< 密码通过 */ +#define CODE_ERROR 0x14 /**< 密码错误 */ +/* ============================================================================ + * 函数声明(仅包含 160160D.C 中实际定义的函数) + * ============================================================================ */ - - -#define DISPLAY_BLANK 0x00 -#define PROTEC_ON 0x01 -#define PROTEC_EXIT 0x02 -#define PROTEC_START 0x03 -#define PROTECT_TRIP 0x04 -#define HEART_ACCUM 0x05 -#define HEART_REDUCE 0x06 -#define NEXT_MENU 0x07 -#define UP_DOWN 0x08 -#define LEFT_RIGHT 0x09 -#define DERECTION_KEY 0x0a -#define ENTER_KEY 0x0b -#define ESC_KEY 0x0c -#define ADD_DEC 0x0d -#define DI_CLOSE 0x0e -#define DI_OPEN 0x0f -#define DI_UNCERT 0x10 -#define DELET_MESS 0x11 -#define HAVE_MESS 0x12 -#define CODE_PASS 0x13 -#define CODE_ERROR 0x14 - - - -LCD_EXT void display_datas(unsigned char datas); //R-G-B=4-4-4 -LCD_EXT void display_line(unsigned char datas); -LCD_EXT void ReverseShow88(uint8_t column ,uint8_t lin,uint8_t const *address); -LCD_EXT void ReverseShow916(uint8_t column ,uint8_t lin,uint8_t const *address); -LCD_EXT void DisplayOneByteS(uint8_t ox, uint8_t oy, uint8_t byte1); -LCD_EXT void DisplayOneText(uint8_t ox,uint8_t oy,uint8_t ascii_code); -LCD_EXT void Clear_Line(uint8_t ox1,uint8_t ox2,uint8_t oy,uint8_t number1,uint8_t number2,uint8_t language); -LCD_EXT void DisplayBrokenLine(uint8_t ox,uint8_t oy,uint8_t num); -LCD_EXT void DisplaySolidLine(uint8_t ox,uint8_t oy,uint8_t num); -LCD_EXT void DisplayLineText2(uint8_t ox,uint8_t oy,uint8_t number,uint8_t const *ptr); -LCD_EXT void DisplayOneChinesetest(uint8_t column,uint8_t lin); -LCD_EXT void REDisplayOneChinesetest(uint8_t column,uint8_t lin); -LCD_EXT void ReverseDispOne(uint8_t ox,uint8_t oy,uint8_t ascii_code); -LCD_EXT void ReverseLineText(uint8_t ox,uint8_t oy,uint8_t number,uint8_t const *ptr); -LCD_EXT void ReverseDispLine(uint8_t ox,uint8_t oy,uint8_t number,uint8_t const *ptr); -LCD_EXT void ReverseOneGraphics(uint8_t column,uint8_t lin,uint16_t hzcode,uint8_t tb_index); -LCD_EXT void display_pic(unsigned char *p); -LCD_EXT void display_pic1(unsigned char *p); -LCD_EXT void DisplayOneGraphics(uint8_t column,uint8_t lin, uint16_t hzcode,uint8_t tb_index); -LCD_EXT void DisplayConnectGraphics(uint8_t column,uint8_t lin,uint16_t hzcode); -LCD_EXT void DisplayOneChinese(uint8_t column,uint8_t lin,uint8_t const *HzCode); -LCD_EXT void DisplayLineChinese(uint8_t ox1,uint8_t oy1,uint8_t number1,uint8_t const *ptr1,uint8_t ox2,uint8_t oy2,uint8_t number2,uint8_t const *ptr2,uint8_t language); -LCD_EXT void DeleteMenuCursor(uint8_t x1,uint8_t y1,uint8_t const *ptr1,uint8_t x2,uint8_t y2,uint8_t const *ptr2,uint8_t num,uint8_t num2,uint8_t language); -LCD_EXT void DisplayMenuCursor(uint8_t x1,uint8_t y1,uint8_t const *ptr1,uint8_t x2,uint8_t y2,uint8_t const *ptr2,uint8_t num,uint8_t num2,uint8_t language); -LCD_EXT void ClearScreen(void); -void ReverseScreen(void); -LCD_EXT void CloseDataCursor(void); -LCD_EXT void DisplayDataCursor2(void); -LCD_EXT void DisplayDataCursor(void); -LCD_EXT void DisplayOneInt(uint8_t ox,uint8_t oy, uint16_t int_value); -LCD_EXT void DisplayOneText2(uint8_t ox,uint8_t oy,uint8_t ascii_code); -LCD_EXT void DisplayHoriLine(uint8_t column,uint8_t lin,uint8_t num); -LCD_EXT void DisplayOneByte(uint8_t ox, uint8_t oy, uint8_t byte1); -LCD_EXT void DisplayGraphicsScreen(void); -LCD_EXT void DisplayLineText(uint8_t ox,uint8_t oy,uint8_t number,uint8_t const *ptr); -LCD_EXT void DisplayOneInt2(uint8_t ox,uint8_t oy, uint16_t int_value); -LCD_EXT void DisplayLongInt(uint8_t ox,uint8_t oy, uint32_t value,uint8_t redixs_point); -LCD_EXT void DisplayOneByte2(uint8_t ox, uint8_t oy, uint8_t byte1); -LCD_EXT void LcdInit(void); -LCD_EXT void ReverseDispNum2(uint8_t ox,uint8_t oy,uint8_t ascii_code); -LCD_EXT void DisplayCount(uint8_t ox, uint8_t oy, uint8_t byte1); -LCD_EXT void DisplayHex(uint8_t ox,uint8_t oy,uint16_t number); -LCD_EXT void ReverseDispOne2(uint8_t ox,uint8_t oy,uint8_t ascii_code); -void Fault_Disp(void); -void KeyRun_Disp(uint32_t Flag); -void IP_Sprintf(uint8_t *buf, uint32_t IPdata); -void IP_Printf(uint8_t x, uint32_t y, uint32_t IPdata, FlagStatus SetFlag, uint32_t cursor); -void HZ12AndChar_Printf(uint8_t x, uint8_t y, const uint8_t *ptr, FlagStatus Flag); -void HZ12AndChar_SignPrintf(uint8_t x, uint8_t y, const uint8_t *ptr, uint32_t SignNUM ); -void DisplayNL_LOGO(void); -void DisplayNANRUI_LOGO(void); -void DisplayNANRUI_BMP(void); -void Display_BMP(uint32_t Width, uint32_t Height, const uint8_t* picture); -void DisplayQQ_BMP(void); -void ASCII_Printf(uint8_t x, uint32_t y, uint32_t data, FlagStatus Flag); -void ASCII_SignPrintf(uint8_t x, uint32_t y, uint32_t data, uint32_t SignNUM); -void IntValue_Printf(uint8_t x, uint32_t y, int32_t data, FlagStatus Flag); -void FloatValue_Printf(uint8_t x, uint32_t y, float data, FlagStatus Flag); -void FixLenIToF_Printf(uint32_t x, uint32_t y, int32_t data, uint32_t len, uint32_t dot, FlagStatus Flag, uint32_t cursor); -void FixLenIToF_Sprintf(uint8_t* str, int32_t data, uint32_t len, uint32_t dot); -void DisplayHorizontalLine(uint8_t x,uint8_t y,uint8_t len); -void DisplayVerticalLine(uint8_t x,uint8_t y,uint8_t high, uint8_t value); -void ClearMenuScreen(void); -void ScreenPrintf(uint8_t* ptr); -void Char6_Write(uint8_t x,uint8_t y, uint8_t CharCode, FlagStatus Flag); -void MessageBox(void); -void ClrMessageBox(void); -void ClrMessageBoxContent(void); -void MeunItem_Printf(uint8_t x, uint32_t y, int32_t data, FlagStatus Flag); -void MessageSetBox(const uint8_t *title); -void MessageSetBox_NoClear(const uint8_t *title); -void ClrMessageSetBox(void); -void DeleteMessageSetBox(void); -void ProgramableMessageBox(uint8_t x, uint8_t y, uint8_t size); -void DrawMenuComboBox(uint8_t x, uint8_t y, uint8_t len, uint8_t items); -void DrawRecordBox(uint8_t x, uint8_t y, uint8_t len, uint8_t items); +/* ---------- 硬件初始化函数 ---------- */ +void LCD_GPIO_Init(void); +void LCD_Reset(void); +void LCD_InitXRD(void); +void LcdInit(void); void BackLight_Close(void); void BackLight_ON(void); +/* ---------- 屏幕控制函数 ---------- */ +void ClearScreen(void); +void ReverseScreen(void); +void ClearMenuScreen(void); +void DisplayGraphicsScreen(void); + +/* ---------- 字符显示函数 ---------- */ +void Char6_Write(uint8_t x, uint8_t y, uint8_t CharCode, FlagStatus Flag); +void Char8_Write(uint8_t x, uint8_t y, uint8_t CharCode, FlagStatus Flag); +void Char12_Write(uint8_t x, uint8_t y, uint8_t CharCode, FlagStatus Flag); +void HZ12_Write(uint8_t x, uint8_t y, const uint8_t *HzCode, FlagStatus Flag); +void HZ12AndChar_Printf(uint8_t x, uint8_t y, const uint8_t *ptr, FlagStatus Flag); +void HZ12AndChar_SignPrintf(uint8_t x, uint8_t y, const uint8_t *ptr, uint32_t SignNUM); +void ASCII_Printf(uint8_t x, uint32_t y, uint32_t data, FlagStatus Flag); +void ASCII_SignPrintf(uint8_t x, uint32_t y, uint32_t data, uint32_t SignNUM); +void ScreenPrintf(uint8_t* ptr); + +/* ---------- 数值显示函数 ---------- */ +void IntValue_Printf(uint8_t x, uint32_t y, int32_t data, FlagStatus Flag); +void FloatValue_Printf(uint8_t x, uint32_t y, float data, FlagStatus Flag); +void FixLenIntValue_Printf(uint32_t x, uint32_t y, int32_t data, uint32_t len, FlagStatus Flag); +void FixLenIToF_Sprintf(uint8_t* str, int32_t data, uint32_t len, uint32_t dot); +void FixLenIToF_Printf(uint32_t x, uint32_t y, int32_t data, uint32_t len, uint32_t dot, FlagStatus Flag, uint32_t cursor); +void FixLenFloatValue_Printf(uint32_t x, uint32_t y, float data, uint32_t len, uint32_t dot, FlagStatus Flag); +void MeunItem_Printf(uint8_t x, uint32_t y, int32_t data, FlagStatus Flag); + +/* ---------- IP 地址显示函数 ---------- */ +void IP_Sprintf(uint8_t *buf, uint32_t IPdata); +void IP_Printf(uint8_t x, uint32_t y, uint32_t IPdata, FlagStatus SetFlag, uint32_t cursor); + +/* ---------- 图形显示函数 ---------- */ +void DisplayOneGraphics(uint8_t column, uint8_t lin, uint16_t hzcode, uint8_t tb_index); +void DisplayNL_LOGO(void); +void DisplayNANRUI_LOGO(void); +void Display_BMP(uint32_t Width, uint32_t Height, const uint8_t* picture); +void DisplayNANRUI_BMP(void); +void DisplayQQ_BMP(void); +void DiaplayHeadGraph(void); +void DrawPoint(uint8_t x, uint8_t y); + +/* ---------- 线条绘制函数 ---------- */ +void DisplayHorizontalLine(uint8_t x, uint8_t y, uint8_t len); +void DisplayVerticalLine(uint8_t x, uint8_t y, uint8_t high, uint8_t value); + +/* ---------- 状态显示函数 ---------- */ +void Fault_Disp(void); +void KeyRun_Disp(uint32_t Flag); + +/* ============================================================================ + * ASCII 字体数据 + * ============================================================================ */ + +/** + * @brief 6x12 点阵 ASCII 字体数据 + * @note 包含 95 个 ASCII 字符(空格到波浪号),每个字符 6 列 x 12 行 = 72 位 = 9 字节 + * 字符索引:0=' ', 1='!', ..., 94='~' + */ static const uint8_t ASCII6x12[] = { 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,/*" ",0*/ @@ -305,6 +304,11 @@ static const uint8_t ASCII6x12[] = 0x40,0xA4,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,/*"~",94*/ }; +/** + * @brief 8x12 点阵 ASCII 字体数据 + * @note 包含 95 个 ASCII 字符(空格到波浪号),每个字符 8 列 x 12 行 = 96 位 = 12 字节 + * 字符索引:0=' ', 1='!', ..., 94='~' + */ static const uint8_t ASCII8x12[] = { 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,/*" ",0*/ @@ -497,6 +501,11 @@ static const uint8_t ASCII8x12[] = { 0x30,0x4C,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,/*"~",94*/ }; +/** + * @brief 12x12 点阵 ASCII 字体数据 + * @note 包含 95 个 ASCII 字符(空格到波浪号),每个字符 12 列 x 12 行 = 144 位 = 18 字节 + * 字符索引:0=' ', 1='!', ..., 94='~' + */ static const uint8_t ASCII12x12[] = { 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, diff --git a/Drivers/BSP/160160D/BMP.C b/Drivers/BSP/160160D/BMP.C deleted file mode 100644 index 670534a..0000000 --- a/Drivers/BSP/160160D/BMP.C +++ /dev/null @@ -1,4351 +0,0 @@ -#include "./SYSTEM/sys/sys.h" -uint8_t XRD[12960]={ - -0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, -0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, -0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, -0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, -0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, -0xff,0xf0,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, -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,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0xf,0xff,0xf0,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,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,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0xf,0xff,0xf0,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,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, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0xf,0xff,0xf0,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,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,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0xf,0xff,0xf0,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,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,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0xf,0xff,0xf0,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,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,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,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,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,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,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,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,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,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,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,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,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,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,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,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,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,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,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,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,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,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,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,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,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,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,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0, -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,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0, -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,0xf,0xff, -0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0xf,0xf0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0, -0xff,0xf,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0xf, -0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0xf,0xf0,0xf,0xf0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0xf0,0x0,0x0,0x0,0xf,0xf0,0x0,0xf,0xf0,0x0,0x0,0x0,0x0,0xf, -0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xf0,0xff,0x0,0x0,0x0,0x0,0x0, -0xf,0xff,0xff,0xf0,0x0,0x0,0xf,0xff,0x0,0xf,0xff,0xf0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xf0,0xf,0xf0,0x0,0x0,0x0,0x0, -0xf,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0xf,0xf0,0xf,0xf0,0x0,0x0,0x0,0x0, -0xff,0x0,0xf0,0xf0,0xf0,0x0,0x0,0xf,0xff,0x0,0xf,0xf0,0x0,0x0,0x0,0x0, -0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf,0xf0,0x0,0x0,0x0,0xf, -0xff,0xff,0xf,0xf0,0x0,0x0,0x0,0xf,0xff,0x0,0xf,0xf,0xf0,0x0,0x0,0x0, -0xf,0x0,0x0,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0, -0x0,0xf,0xff,0xf0,0x0,0x0,0x0,0x0,0xff,0xff,0xf,0xf,0xff,0x0,0x0,0x0, -0xf,0xff,0x0,0xff,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,0x0,0x0, -0x0,0x0,0xff,0xff,0xf0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0x0,0x0,0x0,0x0, -0xf,0xff,0x0,0xff,0xf0,0x0,0x0,0x0,0x0,0xf0,0x0,0xff,0xff,0xf0,0x0,0x0, -0x0,0xff,0xf0,0x0,0xf,0xff,0x0,0x0,0x0,0x0,0xff,0x0,0xf,0x0,0x0,0x0, -0x0,0x0,0xf,0xff,0xf0,0x0,0x0,0x0,0x0,0xff,0x0,0xf0,0xff,0xf0,0xf0,0x0, -0x0,0x0,0xf0,0xf,0xff,0xf,0x0,0x0,0x0,0xff,0x0,0x0,0xff,0xf0,0x0,0x0, -0x0,0x0,0xf,0xff,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0x0,0x0,0x0, -0x0,0xf0,0x0,0xf,0xff,0xf,0x0,0x0,0x0,0xff,0xff,0x0,0xff,0xff,0x0,0x0, -0x0,0x0,0xff,0x0,0xff,0xf0,0x0,0x0,0x0,0xf,0xff,0xff,0x0,0xf,0x0,0x0, -0x0,0x0,0x0,0xf,0xff,0xf0,0x0,0x0,0x0,0x0,0xf,0xf,0xff,0xff,0xf,0xf0, -0x0,0x0,0xf,0xf0,0xf,0xf,0xff,0x0,0x0,0x0,0xff,0xf0,0xff,0xff,0x0,0x0, -0x0,0x0,0xf,0xf0,0xff,0xf0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0x0, -0x0,0x0,0xf0,0x0,0xff,0xff,0xf,0x0,0x0,0x0,0xff,0xff,0x0,0xff,0xff,0x0, -0x0,0x0,0xf,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x0,0x0,0xf,0x0, -0x0,0x0,0x0,0x0,0xf,0xff,0xf0,0x0,0x0,0x0,0x0,0xf,0xff,0x0,0xff,0xff, -0x0,0x0,0x0,0xff,0xff,0xf,0xff,0x0,0x0,0x0,0x0,0xf,0x0,0xf,0xf0,0x0, -0x0,0x0,0x0,0xf,0xff,0xff,0xf0,0xf0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff, -0xf0,0x0,0x0,0xf,0xf,0xff,0xff,0xff,0x0,0x0,0x0,0xf0,0xf0,0xf,0xff,0xff, -0x0,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0xf,0xf,0xff,0xf0,0xf, -0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,0x0,0x0,0x0,0x0,0xf,0xf0,0xf0,0xf, -0x0,0x0,0x0,0x0,0xf,0xf0,0x0,0xff,0xff,0xff,0x0,0x0,0xf,0x0,0xf,0xf0, -0xff,0x0,0x0,0x0,0xf,0xf0,0xff,0xf,0xf0,0x0,0x0,0x0,0x0,0xff,0xff,0x0, -0xf0,0x0,0x0,0x0,0x0,0xf0,0xf,0xff,0xf,0x0,0x0,0x0,0xf0,0xf0,0xf,0x0, -0xf,0x0,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf,0xf0, -0xf,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,0x0,0x0,0x0,0x0,0xf,0x0,0xf0, -0xff,0xff,0x0,0x0,0x0,0xf,0xff,0xff,0xf0,0xf0,0xf,0x0,0x0,0x0,0xf0,0xff, -0x0,0xf,0xf0,0x0,0x0,0x0,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0xff,0x0, -0x0,0xf0,0x0,0x0,0x0,0x0,0x0,0xf,0xf,0xff,0x0,0x0,0x0,0xff,0x0,0xf, -0xf,0xf0,0x0,0x0,0x0,0x0,0x0,0xf0,0x0,0xf0,0x0,0x0,0x0,0xf,0xf0,0xff, -0x0,0xf,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,0x0,0x0,0x0,0x0,0xf0,0xf, -0xf,0xf0,0xf,0xff,0x0,0x0,0xff,0x0,0xf0,0xf0,0xf0,0xff,0x0,0x0,0xf,0xff, -0xf0,0x0,0x0,0xf0,0x0,0x0,0x0,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0xf0, -0x0,0x0,0xf0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0x0,0x0,0x0,0xff,0x0, -0xf,0x0,0xf,0xf0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0xff, -0xff,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,0x0,0x0,0x0,0x0,0xf0, -0xf,0xf,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0xf0,0xf0,0xf0,0xf0,0x0,0x0,0x0, -0x0,0xf,0xff,0xff,0xff,0xf0,0x0,0x0,0x0,0xf0,0x0,0x0,0x0,0x0,0x0,0x0, -0xf,0xf0,0x0,0xf0,0x0,0x0,0x0,0x0,0x0,0xf,0xf,0xf,0x0,0x0,0x0,0xf0, -0x0,0xf,0x0,0xf0,0xff,0xf0,0x0,0x0,0xf,0xff,0x0,0xf,0x0,0x0,0x0,0x0, -0xf0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,0x0,0x0,0x0,0x0, -0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xf0,0x0,0x0, -0x0,0x0,0x0,0xf,0xff,0xff,0xf0,0x0,0x0,0x0,0xf,0xff,0xff,0x0,0x0,0x0, -0x0,0x0,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xf,0xff,0x0,0x0,0x0, -0xf0,0x0,0xf,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0xf,0xff,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,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,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x0,0x0, -0x0,0x0,0x0,0x0,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,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,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,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,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,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,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0, -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,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,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff, -0xf0,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,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,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf, -0xff,0xf0,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, -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,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0xf,0xff,0xf0,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,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,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0xf,0xff,0xf0,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,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, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0xf,0xff,0xf0,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,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,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0xf,0xff,0xf0,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,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,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0xf,0xff,0xf0,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,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,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,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,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,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,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,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,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0xff,0xff,0x0,0x0,0xf,0x0,0x0,0xf0,0x0,0x0,0x0,0xf0,0x0,0x0, -0x0,0x0,0xf0,0x0,0x0,0xf,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0xf0,0x0,0xf, -0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0xf,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf,0xff,0xff, -0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,0x0,0x0,0x0,0x0,0xff, -0xff,0xff,0xff,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0xf,0x0,0xf0,0x0,0xf,0x0, -0xf,0xff,0xff,0xff,0x0,0x0,0xf,0x0,0xff,0xff,0xff,0xf0,0x0,0x0,0xf0,0x0, -0xf,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0xf,0xff,0xff,0xff,0xff,0xff,0xff,0xf,0xff,0xff,0xf,0xff,0xf,0xff, -0xf,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,0x0,0x0,0x0,0x0, -0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0xf0,0x0,0xff,0xff,0xff,0xff,0x0,0xf, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0, -0x0,0xf,0xf,0x0,0x0,0x0,0x0,0x0,0xf0,0x0,0x0,0xf0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0xf,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xf0,0xff,0xf, -0xf0,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,0x0,0x0,0x0, -0x0,0x0,0x0,0xf0,0x0,0xf,0x0,0x0,0x0,0xf0,0xf0,0x0,0xf,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x0,0xf0,0x0,0x0,0x0,0x0,0xf,0x0, -0xf0,0x0,0xf,0x0,0xf0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xf0,0xff,0xff,0xff,0xff,0x0,0x0,0x0, -0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,0x0,0x0, -0x0,0x0,0x0,0xff,0xff,0xff,0xf0,0x0,0x0,0xf,0x0,0xf0,0x0,0xf0,0x0,0x0, -0x0,0x0,0xf,0xff,0xff,0xff,0xff,0xf0,0xf0,0x0,0xf0,0x0,0x0,0x0,0xf0,0x0, -0xf0,0xf0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0xf,0xf,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xf0,0xff,0xff,0xff,0xff,0xf,0xff, -0xff,0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,0x0, -0x0,0x0,0x0,0x0,0x0,0xf,0xf0,0x0,0x0,0x0,0xff,0xff,0x0,0xf,0x0,0xf, -0x0,0xf,0xff,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0xf,0xf,0xff,0xff,0xff,0xff, -0x0,0xf,0xf0,0xff,0xff,0xff,0xff,0xf0,0x0,0x0,0xf,0x0,0xf0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,0xff,0xf0,0xff,0xff,0xff,0xf0,0xff, -0xf0,0x0,0x0,0x0,0xf0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0, -0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x0,0xf,0x0,0x0,0x0,0xf,0x0,0xff,0xff, -0xff,0xf0,0x0,0xf,0x0,0x0,0xf0,0x0,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xf0, -0x0,0x0,0x0,0xf0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0xf0,0xf0,0xf,0xf0,0x0, -0x0,0x0,0xff,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,0xff,0xf0,0xff,0xf0,0xff,0xff, -0xff,0xf0,0xff,0xff,0xf0,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff, -0xf0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xff,0xf0,0x0,0x0,0xf0,0x0,0xf, -0x0,0xf0,0x0,0x0,0xf,0x0,0x0,0xf0,0xf,0x0,0x0,0xf,0xf,0x0,0x0,0x0, -0xf0,0x0,0x0,0xf,0xf0,0x0,0xf,0x0,0x0,0x0,0x0,0xff,0x0,0xf,0x0,0xf, -0xff,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,0xff,0xf0,0x0,0x0,0xf, -0xff,0xff,0xf0,0x0,0x0,0x0,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf, -0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x0,0xf,0x0,0xff,0xff,0xf0, -0xf,0x0,0xf0,0x0,0x0,0xf,0x0,0xf,0x0,0x0,0xf0,0x0,0xf0,0xf,0x0,0x0, -0x0,0xf0,0x0,0x0,0xf0,0xf0,0x0,0xf0,0xf0,0x0,0x0,0xff,0x0,0x0,0x0,0xf0, -0x0,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,0xff,0xf0,0xff,0xff, -0xff,0xff,0xff,0xff,0xff,0xf,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0xf,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0xf,0x0,0xf0,0xf0,0x0,0x0,0xf,0x0, -0x0,0xf,0x0,0xf0,0x0,0x0,0xf,0x0,0xff,0xff,0xff,0xff,0x0,0x0,0xf,0x0, -0x0,0x0,0xf0,0x0,0xf,0xf0,0xf0,0x0,0xf0,0xf0,0x0,0x0,0x0,0x0,0xf0,0xf0, -0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,0xff,0xf0,0xff, -0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0xf,0xff,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0xf,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0xf0,0x0,0xf0,0xf,0x0,0x0,0x0, -0xf,0xf0,0xf,0x0,0xf0,0x0,0x0,0xf,0x0,0xf,0x0,0x0,0xf,0x0,0x0,0xf, -0x0,0x0,0x0,0xf0,0x0,0x0,0x0,0xf0,0xf,0x0,0xf,0x0,0x0,0x0,0xf0,0xf0, -0xf,0x0,0x0,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,0xff,0xf0, -0xff,0xff,0xff,0xff,0xff,0xf,0xff,0xf,0xff,0xf,0xff,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0xf,0xff,0xf0,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0xf0,0x0,0xff,0x0, -0xff,0xf0,0x0,0xf,0x0,0xf0,0xf,0x0,0xf0,0xf0,0x0,0x0,0x0,0x0,0x0,0x0, -0xf,0x0,0x0,0x0,0xf0,0x0,0x0,0x0,0xf0,0xf,0x0,0x0,0xf0,0x0,0x0,0xf0, -0xf0,0x0,0x0,0xf0,0xf0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,0xff, -0xf0,0xff,0xff,0xff,0xff,0xff,0xf,0xff,0xf,0xff,0xf,0xff,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0xf,0xff,0xf0,0x0,0x0,0x0,0x0,0xf0,0x0,0xf0,0xf0,0x0,0xf, -0x0,0xf,0x0,0x0,0xf0,0x0,0xf0,0xf,0xf,0x0,0xf,0xf0,0x0,0x0,0x0,0x0, -0x0,0xf,0x0,0x0,0xf0,0xf0,0x0,0x0,0x0,0xf0,0xf0,0x0,0x0,0xf,0x0,0xf, -0x0,0xf0,0x0,0x0,0xf0,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0xf,0xff,0xf0, -0xff,0xf0,0xff,0xff,0xf,0xff,0xff,0xf,0xff,0xf,0xf0,0xf,0xff,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0xf,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x0,0x0, -0x0,0x0,0x0,0x0,0xff,0x0,0x0,0xf,0xff,0x0,0x0,0x0,0xf,0xff,0xff,0xff, -0xf0,0x0,0xf,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0xf0, -0x0,0x0,0xf,0xff,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xf,0xff,0xff,0xff,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,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,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,0xf, -0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,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,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,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,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,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,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,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,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,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,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,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,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,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,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,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,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,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,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x0,0x0,0x0,0x0,0x0,0xf, -0x0,0x0,0xf,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0xf0,0x0,0x0,0x0,0x0,0x0, -0x0,0xf,0x0,0x0,0x0,0xf0,0x0,0x0,0x0,0x0,0xf0,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,0x0,0x0,0x0,0x0,0xf,0xff,0xf0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0xf0,0x0,0x0, -0x0,0xf0,0x0,0xf,0x0,0x0,0x0,0xf,0x0,0xf,0xff,0xff,0x0,0x0,0x0,0x0, -0x0,0x0,0xf,0x0,0x0,0x0,0xf,0xf,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, -0xff,0xff,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff, -0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0, -0x0,0x0,0xf0,0x0,0xf0,0x0,0x0,0x0,0xf,0x0,0xf,0x0,0xf0,0x0,0x0,0xff, -0xff,0x0,0x0,0xf,0x0,0x0,0xf,0xf,0x0,0x0,0x0,0x0,0xf0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0xff,0xf0,0x0,0xf, -0xff,0xff,0xff,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf, -0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xf,0x0,0xf0,0xf,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x0,0xf,0x0,0xf0,0x0,0x0, -0xf0,0xf,0xf,0xff,0xff,0xff,0xf0,0xf,0x0,0x0,0x0,0x0,0x0,0xf0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xf,0xff,0xff,0xff,0xf,0xff, -0xf0,0xff,0xff,0xff,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0xf,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x0,0xff,0x0,0xf, -0x0,0x0,0xf,0xff,0xff,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0xf,0x0,0xf0,0x0, -0x0,0xf0,0xf,0x0,0x0,0xf,0x0,0x0,0xf,0x0,0xf,0xff,0xff,0x0,0xf0,0x0, -0x0,0x0,0x0,0x0,0xf,0xf0,0x0,0x0,0x0,0x0,0xf,0xf,0xff,0xff,0xff,0xf, -0xff,0xf0,0xff,0xff,0xff,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0xf,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xf,0x0,0xf0, -0xf,0x0,0x0,0x0,0x0,0x0,0xf0,0x0,0x0,0x0,0x0,0xf,0x0,0xf,0x0,0xf0, -0x0,0x0,0xf0,0xf,0x0,0x0,0xf,0x0,0x0,0xf,0x0,0xf,0x0,0xf,0x0,0xf0, -0x0,0x0,0x0,0x0,0x0,0xf,0xf0,0x0,0x0,0x0,0x0,0xf,0xf,0x0,0xf,0xff, -0xf,0xff,0xf0,0xff,0xf0,0x0,0xf,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0xf,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff, -0xff,0xff,0x0,0x0,0x0,0x0,0x0,0xf0,0x0,0x0,0x0,0x0,0xff,0xf0,0xf,0x0, -0xf0,0x0,0x0,0xff,0xff,0x0,0xf0,0xf,0x0,0x0,0xf,0x0,0xf,0x0,0xf,0x0, -0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x0,0xff,0xf0, -0xff,0xf0,0x0,0xf,0xff,0xf,0xff,0xf,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0xf,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0xf0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xf0,0x0,0xff,0xf,0xf, -0x0,0xf0,0x0,0x0,0xf0,0xf,0x0,0xf,0xf,0x0,0x0,0xf,0x0,0xf,0xff,0xff, -0x0,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff, -0xf0,0xff,0xf0,0xff,0xf,0xff,0xf,0xff,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0xf,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, -0xff,0xff,0xff,0xff,0xf0,0x0,0x0,0x0,0xf,0xf,0x0,0x0,0x0,0xf,0xf,0x0, -0xf,0x0,0xf0,0x0,0x0,0xf0,0xf,0x0,0xf,0xf,0x0,0x0,0xf,0x0,0xf,0x0, -0xf,0x0,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff, -0xff,0xf0,0xff,0xf,0xff,0xf0,0xff,0xf0,0x0,0xff,0xf0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0xf0,0xf,0x0,0xf0,0x0,0xf0,0x0,0x0,0x0,0xf,0xf,0x0,0x0,0x0,0xf0,0xf, -0x0,0xf,0x0,0xf0,0x0,0x0,0xf0,0xf,0x0,0x0,0xf,0x0,0x0,0xf,0x0,0xf, -0x0,0xf,0x0,0xf0,0x0,0x0,0x0,0x0,0x0,0xf,0xf0,0x0,0x0,0x0,0x0,0xf, -0xf,0xff,0xf0,0xff,0xf,0xff,0xf0,0xff,0xff,0xff,0xf,0xf0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0xf0,0xf0,0x0,0xf,0x0,0xf0,0x0,0x0,0x0,0xf0,0x0,0xf0,0x0,0x0,0x0, -0xf,0x0,0xf,0x0,0xf0,0xf,0x0,0xff,0xff,0x0,0x0,0xf,0x0,0x0,0xf,0x0, -0xf,0xff,0xff,0x0,0xf0,0x0,0x0,0x0,0x0,0x0,0xf,0xf0,0x0,0x0,0x0,0x0, -0xf,0xf,0xff,0xf0,0xff,0xf,0xff,0xf0,0xff,0xf,0xff,0xf,0xf0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0xf0,0xff,0xff,0xff,0xf0,0xf0,0x0,0x0,0xf,0x0,0x0,0xf,0x0,0x0, -0x0,0xf,0x0,0xf0,0x0,0xf0,0xf,0x0,0xf0,0xf,0x0,0x0,0xf,0x0,0x0,0xf, -0x0,0x0,0x0,0x0,0x0,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0xf,0xf0,0x0,0xf,0xff,0xf0,0x0,0xf,0xff,0x0,0x0,0xff,0xf0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0xf0,0x0,0x0,0x0,0x0,0xf0,0x0,0x0,0xf0,0x0,0x0,0x0,0xf0, -0x0,0x0,0xf,0xf,0x0,0x0,0xf0,0xf,0x0,0xf0,0x0,0x0,0xf,0xf,0x0,0x0, -0xf,0x0,0x0,0x0,0x0,0xf0,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0xf,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0xf0,0x0,0x0,0x0,0xf,0xf0,0x0,0xff,0x0,0x0,0x0,0x0, -0xf,0xf0,0x0,0xf,0xf0,0x0,0x0,0xf,0xff,0x0,0x0,0x0,0x0,0x0,0xf0,0x0, -0x0,0xf,0x0,0x0,0x0,0x0,0xf,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,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,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,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,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,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,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,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,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,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,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0, -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,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,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff, -0xf0,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,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,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf, -0xff,0xf0,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, -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,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0xf,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0xff,0xff,0xf0,0x0,0x0,0xf0,0x0,0x0,0xf0,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,0xf,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0, -0x0,0xf,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0xf0,0x0,0x0,0xf0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0xf,0xff, -0xff,0xff,0x0,0x0,0x0,0x0,0x0,0xf0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff, -0xff,0x0,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x0,0x0, -0x0,0x0,0xf,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, -0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0xf0,0x0,0xf,0x0,0x0,0x0,0x0, -0x0,0xf,0x0,0xf,0x0,0x0,0x0,0xf,0x0,0xf,0xff,0xff,0xff,0xff,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x0, -0x0,0xf,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xf0,0xff,0xff,0xff,0x0, -0x0,0x0,0x0,0xf,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0xff,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0xf0,0x0,0xf,0x0,0x0,0x0, -0x0,0x0,0xf0,0x0,0xf,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0xf0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, -0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0x0,0xff,0xff,0xff, -0x0,0x0,0x0,0x0,0xf,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0xf0,0x0,0xff,0x0,0xf,0x0,0x0,0x0,0x0,0xf0,0x0,0xf,0x0,0x0, -0x0,0x0,0xf,0x0,0x0,0xf0,0x0,0x0,0x0,0xf0,0x0,0xf0,0x0,0xf0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0xf0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xf0,0xf,0xf0,0xff, -0xff,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0xf0,0xf,0x0,0xf0,0xf,0x0,0x0,0x0,0x0,0xf0,0x0,0xf,0x0, -0x0,0x0,0x0,0xff,0xff,0xff,0x0,0x0,0x0,0xf,0xff,0xff,0x0,0xf,0x0,0xf, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xf0,0x0,0x0,0x0,0x0,0x0, -0x0,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,0xf,0xf,0xff, -0x0,0xff,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0xf0,0xf0,0x0,0xf,0xf,0x0,0xf,0xff,0xff,0xff,0xff,0xff, -0xff,0xff,0x0,0x0,0x0,0xf,0xf0,0xf,0x0,0x0,0x0,0x0,0xf,0x0,0xf0,0x0, -0x0,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xf0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0x0,0xff,0xf, -0xff,0xf0,0xf,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0xf0,0x0, -0xf,0x0,0x0,0x0,0x0,0xf,0xf0,0x0,0x0,0xf0,0x0,0x0,0x0,0xf0,0xf,0xff, -0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf0,0x0,0x0,0x0,0xf,0x0,0xff,0xff, -0xf,0xff,0xff,0xf,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0, -0x0,0xf,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0xf,0x0,0x0, -0xf,0x0,0xf0,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff, -0xff,0xf,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xff,0xff,0xf0,0x0,0x0,0x0, -0xf0,0x0,0xf,0x0,0x0,0x0,0x0,0xf0,0x0,0xf,0x0,0xf,0xf0,0x0,0xff,0xff, -0xf0,0xf,0x0,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0xf0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff, -0x0,0x0,0x0,0x0,0xf,0xff,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x0,0xf0,0x0,0xf0,0x0,0xf0,0x0,0x0, -0xf,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0xf0,0xf,0xf,0x0,0x0,0x0,0x0, -0x0,0x0,0xf,0x0,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xf0, -0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0xf,0xff,0xff,0xf0,0x0,0x0,0x0,0x0,0xf, -0xff,0xf,0xff,0xff,0xff,0xf,0xff,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xf,0x0,0x0,0xf,0x0,0xf0,0x0, -0x0,0xf,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0xf,0x0,0xf,0x0,0xf0,0x0,0x0, -0x0,0x0,0x0,0xf,0x0,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf, -0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0xf,0xff,0xf,0xff,0xff,0xff,0xf,0xff,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xf,0xff,0xff,0xff,0xf0,0xf0, -0x0,0x0,0xf0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0xf0,0x0,0xf,0x0,0xf,0x0, -0x0,0x0,0xff,0xf0,0xf0,0x0,0xf0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xf,0xf,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0xf,0xff,0xf,0xff,0xff,0xff,0xf,0xff,0x0,0x0,0x0,0x0,0xf,0xff,0xf0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0xf0, -0xf0,0x0,0xf,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0xf,0x0,0x0,0xf,0x0,0x0, -0xf0,0xf,0xff,0x0,0x0,0xf0,0x0,0xf0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x0,0xff,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0xf,0xff,0x0,0x0,0x0,0x0,0xf,0xff,0x0,0x0,0x0,0x0,0xf,0xff, -0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0, -0xf0,0xf0,0x0,0xf0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0xf0,0x0,0xf,0xf,0x0, -0x0,0xf0,0x0,0x0,0x0,0xf,0x0,0x0,0xf,0xff,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0xff,0xff,0xff,0xf0, -0x0,0x0,0x0,0xf,0xff,0xf,0xff,0xff,0xff,0xf,0xff,0x0,0x0,0x0,0x0,0xf, -0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0, -0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0, -0x0,0x0,0x0,0x0,0x0,0x0,0xf0,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,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0xf,0xff,0xf0,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,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,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0xf,0xff,0xf0,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,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, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0xf,0xff,0xf0,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,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,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0xf,0xff,0xf0,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,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,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0xf,0xff,0xf0,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,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,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,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,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,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,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,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,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,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,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,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,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,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,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,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,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,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,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,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,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,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,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,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,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,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,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x0,0xf,0x0,0x0,0x0,0xf0,0xf, -0xff,0xff,0xf0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xf0,0x0, -0x0,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x0,0x0,0xf0, -0x0,0x0,0xf,0xf0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xff,0xff,0xff,0xf0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff, -0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0xf0,0xf0,0xf,0x0,0x0,0x0,0xf0, -0xf,0x0,0x0,0xf0,0x0,0xff,0xff,0xff,0xff,0xff,0xf0,0x0,0xf,0x0,0x0,0xf0, -0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xf0,0xff,0xff,0xff,0xff,0xff,0xff,0xf,0xff, -0xff,0xf0,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,0x0,0x0,0xf,0xff, -0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf, -0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0xff,0x0,0xf0,0x0,0x0,0x0, -0xf0,0xf,0x0,0x0,0xf0,0x0,0xf0,0x0,0xf0,0x0,0x0,0x0,0x0,0xf,0xff,0xff, -0xf0,0x0,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0, -0xf0,0x0,0xf0,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,0xff,0xff,0xf, -0xff,0xf0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0, -0xf,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xf0,0xff,0xff,0xf0, -0xff,0xff,0xf,0xff,0xff,0xf0,0x0,0xf0,0xff,0xff,0xff,0xff,0x0,0x0,0xf,0x0, -0x0,0xf0,0x0,0x0,0x0,0xf,0xf,0xf,0xf0,0x0,0x0,0xff,0xff,0xff,0xff,0x0, -0x0,0xf,0xf,0x0,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,0x0,0x0, -0xf,0xff,0xf0,0x0,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0xf,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xf0,0xf,0xf0,0xf, -0x0,0x0,0xf0,0xf,0x0,0xf0,0x0,0x0,0xf0,0x0,0xf0,0x0,0x0,0x0,0x0,0xf, -0xff,0xff,0xf0,0x0,0x0,0x0,0xf0,0xf,0x0,0xf,0x0,0x0,0xf0,0xf,0x0,0xf, -0x0,0xf,0xff,0xff,0xff,0xff,0xff,0xf0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,0xff, -0xff,0xf,0xff,0xf0,0x0,0x0,0x0,0xf,0xf,0xf,0xf0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0xf,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xf0,0xff,0x0,0xf0, -0xf,0x0,0x0,0xff,0xf,0xff,0xff,0xff,0x0,0xf0,0xf,0x0,0xf0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x0,0xf,0x0,0x0,0xf0,0x0,0xff,0xff,0xff, -0xff,0x0,0x0,0x0,0xf0,0x0,0xf0,0xf0,0x0,0x0,0xff,0x0,0x0,0xf,0xff,0xf0, -0x0,0x0,0xf,0xff,0xf0,0x0,0x0,0x0,0xf0,0xf,0x0,0xf,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0xf,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x0, -0xf0,0xf,0x0,0xf,0xf0,0xf,0x0,0xf0,0x0,0x0,0xf0,0xff,0xff,0xff,0xff,0x0, -0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0xff,0xff,0xff,0xf0,0x0,0x0,0xf0,0xf, -0x0,0xf,0x0,0x0,0x0,0xf0,0x0,0xf0,0xf0,0x0,0x0,0xff,0x0,0x0,0xf,0xff, -0xff,0xff,0xff,0xff,0xff,0xf0,0x0,0x0,0xff,0x0,0xf,0x0,0x0,0xf0,0x0,0x0, -0x0,0x0,0x0,0x0,0xf,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff, -0xf0,0xf0,0xf0,0x0,0xf0,0xf0,0xf,0x0,0xf0,0x0,0x0,0xf0,0x0,0x0,0xf0,0x0, -0x0,0x0,0x0,0x0,0xf0,0x0,0x0,0x0,0x0,0xf0,0x0,0x0,0xf0,0x0,0x0,0xff, -0xff,0xff,0xff,0x0,0x0,0xff,0xff,0xf0,0xf0,0xf0,0x0,0x0,0x0,0x0,0x0,0xf, -0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x0,0x0,0x0,0xff,0xff,0xff,0xf0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf, -0x0,0xf0,0xf,0x0,0x0,0x0,0xf0,0xf,0xff,0xff,0xf0,0x0,0xf0,0x0,0x0,0xf0, -0x0,0x0,0x0,0xf,0x0,0xff,0xff,0xf0,0x0,0x0,0xf0,0x0,0x0,0xf0,0x0,0x0, -0xf,0xf,0x0,0x0,0x0,0x0,0x0,0xf0,0x0,0xf0,0xf0,0x0,0x0,0x0,0x0,0x0, -0xf,0xff,0xff,0xff,0xf,0xff,0xff,0xf0,0x0,0x0,0x0,0xf0,0x0,0x0,0xf0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0xff,0x0,0xf,0xf0,0x0,0x0,0xf0,0xf0,0xf0,0x0,0xf0,0x0,0xf0,0xff,0xff, -0xff,0xff,0xf0,0x0,0xf,0x0,0xf0,0x0,0x0,0x0,0x0,0xf0,0x0,0x0,0xf0,0x0, -0x0,0x0,0xff,0x0,0x0,0x0,0x0,0xf0,0xf0,0xf0,0xf0,0xf0,0x0,0x0,0xff,0x0, -0x0,0xf,0xff,0xf0,0xff,0x0,0x0,0xf,0xf0,0x0,0x0,0x0,0xf0,0x0,0x0,0xf0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0xf,0x0,0xf0,0xf0,0xf,0x0,0x0,0xff,0x0,0xf0,0x0,0xf0,0xf,0x0,0x0, -0x0,0xf0,0x0,0x0,0x0,0xf0,0xf0,0xf0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xf0, -0x0,0x0,0xf,0x0,0xff,0x0,0x0,0xf,0x0,0xf0,0xf,0x0,0xf0,0x0,0x0,0xff, -0x0,0x0,0xf,0xff,0xf0,0xff,0xf,0xff,0xff,0xf0,0x0,0x0,0x0,0xf0,0x0,0x0, -0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,0x0,0x0,0x0,0x0,0x0, -0x0,0xf,0xf0,0x0,0xf,0x0,0x0,0xf0,0xf,0xf0,0x0,0xff,0xff,0xf0,0xf,0x0, -0x0,0x0,0xf0,0x0,0x0,0xf,0x0,0xf,0xff,0xff,0xff,0x0,0x0,0xf0,0x0,0x0, -0xf0,0x0,0xff,0xf0,0x0,0x0,0xff,0xff,0x0,0xf,0xf0,0xf0,0x0,0xf0,0x0,0x0, -0x0,0x0,0x0,0xf,0xff,0xf,0xf,0xf,0xff,0xff,0xf0,0x0,0x0,0x0,0xff,0xff, -0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,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,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,0xf,0xf0,0xff,0xf0,0x0,0x0,0x0,0xf0,0x0,0x0,0x0,0xf0, -0x0,0x0,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,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,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,0xf,0xff,0xff,0xff,0xff,0xff,0xff,0xf0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,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,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,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,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,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,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0, -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,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,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff, -0xf0,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,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,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf, -0xff,0xf0,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, -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,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0xf,0xff,0xf0,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,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,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0xf,0xff,0xf0,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,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, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0xf,0xff,0xf0,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,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,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0xf,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf, -0x0,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xf0,0x0, -0x0,0xf,0xff,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0xf, -0x0,0x0,0x0,0x0,0xf0,0x0,0xf,0x0,0xf0,0x0,0x0,0x0,0x0,0x0,0xf,0xff, -0xff,0xff,0xff,0xff,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x0,0x0, -0x0,0x0,0x0,0x0,0xf,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff, -0xff,0xff,0xff,0xf0,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0xf,0x0,0xf0,0x0,0xf0, -0x0,0x0,0xf,0x0,0x0,0xf0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xf0,0x0,0x0, -0x0,0xf0,0x0,0x0,0x0,0xf,0x0,0xf,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0xf, -0xff,0xf0,0x0,0x0,0xf,0xff,0xf0,0x0,0x0,0xf,0xff,0xff,0xff,0xff,0xff,0x0, -0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0, -0x0,0xf0,0x0,0x0,0x0,0x0,0x0,0xf0,0x0,0x0,0x0,0x0,0xf,0x0,0xf,0x0, -0xf0,0x0,0x0,0xf,0xff,0xff,0xf0,0x0,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff, -0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0xf0,0xf,0x0,0xf0,0x0,0x0,0x0,0x0, -0xf,0xff,0xf0,0xff,0xff,0xf,0xff,0xf0,0x0,0x0,0x0,0x0,0xf,0xf0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0xf0,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0xf0,0xff,0xff,0xf0,0xf,0xff,0xff,0xff, -0xff,0xff,0xf0,0x0,0xf,0x0,0x0,0xf0,0x0,0x0,0x0,0xf,0xf,0xf,0xf0,0x0, -0x0,0x0,0xf0,0xf,0x0,0x0,0xf,0xff,0xf0,0x0,0xf,0x0,0x0,0x0,0x0,0x0, -0x0,0xf,0xff,0xf0,0x0,0x0,0xf,0xff,0xf0,0x0,0x0,0x0,0x0,0xf0,0xf0,0xff, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0xf0,0x0,0xf0,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0xf,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xf0,0x0,0x0,0x0,0xf0,0xf,0x0,0xf, -0x0,0x0,0xf,0x0,0x0,0xf0,0x0,0x0,0x0,0xf0,0x0,0xf0,0xf0,0x0,0x0,0x0, -0x0,0x0,0xf,0xff,0xf0,0xff,0xff,0xf,0xff,0xf0,0x0,0x0,0x0,0xf,0x0,0xf0, -0x0,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0xf0,0xf,0x0,0xf0,0x0,0x0,0x0,0xff,0x0,0x0,0xf0,0x0,0x0,0xf, -0xff,0xff,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x0,0xf,0x0, -0x0,0xf0,0x0,0xff,0xff,0xff,0xff,0x0,0x0,0xf,0xf,0xf,0x0,0xf,0x0,0x0, -0xff,0x0,0x0,0xf,0xff,0xf0,0x0,0x0,0xf,0xff,0xf0,0x0,0x0,0xf,0xf0,0x0, -0xf0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0xf0,0xff,0xff,0xff,0xff,0x0,0xf,0xf,0x0,0x0,0xf0,0x0,0x0, -0xf,0x0,0xf0,0x0,0xf0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0xff,0xff, -0xff,0xf0,0x0,0x0,0x0,0xf0,0xf,0x0,0xf0,0x0,0xff,0xf0,0xf0,0x0,0x0,0xf0, -0x0,0xff,0x0,0x0,0xf,0xff,0xff,0xff,0xff,0xff,0xff,0xf0,0x0,0x0,0x0,0xf, -0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0xf0,0x0,0x0,0xf0,0x0,0x0,0xf0,0xf,0xf,0xff,0xff,0xff, -0x0,0xf,0xff,0xff,0xff,0xf0,0x0,0x0,0x0,0x0,0xf0,0x0,0x0,0x0,0x0,0xf0, -0x0,0x0,0xf0,0x0,0x0,0x0,0xf0,0xf,0x0,0x0,0xf,0xf,0xf,0xf,0xff,0xff, -0x0,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x0,0x0,0x0, -0xf,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0xf0,0x0,0x0,0xf0,0x0,0x0,0x0,0xf,0x0,0x0,0xf0, -0x0,0x0,0xf,0x0,0xf0,0x0,0xf0,0x0,0x0,0xf,0x0,0xff,0xff,0xf0,0x0,0x0, -0xf0,0x0,0x0,0xf0,0x0,0x0,0x0,0xf0,0xf,0x0,0x0,0x0,0xf,0x0,0xf,0x0, -0xf,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xf,0xff,0xff,0xf0,0x0,0x0, -0x0,0xf,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0xff,0xff,0xff,0xff,0xf0,0x0,0xf,0x0,0x0, -0xf0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0xf,0x0,0xf0,0x0,0x0,0x0, -0x0,0xf0,0x0,0x0,0xf0,0x0,0x0,0xf,0x0,0xf,0x0,0xf,0x0,0xf,0x0,0xf, -0x0,0xf,0x0,0x0,0xff,0x0,0x0,0xf,0xff,0xf0,0xff,0x0,0x0,0xf,0xf0,0x0, -0x0,0x0,0xf,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0, -0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0xf0,0x0,0x0,0x0,0xf,0x0, -0x0,0xf0,0x0,0x0,0x0,0x0,0xf0,0x0,0x0,0x0,0x0,0xf0,0xf0,0xf0,0x0,0x0, -0x0,0x0,0xff,0xff,0xff,0xf0,0x0,0x0,0xf0,0x0,0xf,0x0,0xf,0x0,0xf,0x0, -0xf,0xff,0xff,0x0,0x0,0xff,0x0,0x0,0xf,0xff,0xf0,0xff,0xf,0xff,0xff,0xf0, -0x0,0x0,0x0,0xf,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff, -0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0xf0,0x0,0x0,0x0,0xf, -0x0,0xf,0xf0,0x0,0xf,0xff,0xff,0xff,0xff,0xff,0xf0,0xf,0x0,0xf,0xff,0xff, -0xff,0x0,0x0,0xf0,0x0,0x0,0xf0,0x0,0xf,0x0,0x0,0x0,0xff,0xff,0x0,0xf, -0x0,0xf,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf,0xf,0xf,0xff,0xff, -0xf0,0x0,0x0,0x0,0xf,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf, -0xff,0xf0,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, -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,0xf,0xf0,0xff,0xf0,0x0,0x0, -0x0,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0xf,0xff,0xf0,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,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,0xf,0xff,0xff,0xff,0xff, -0xff,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0xf,0xff,0xf0,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,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, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0xf,0xff,0xf0,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,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,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0xf,0xff,0xf0,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,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,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0xf,0xff,0xf0,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,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,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,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,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,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,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,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,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,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,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,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,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,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,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,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,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,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,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,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,0x0,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,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,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,0x0,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf0,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,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,0x0,0x0,0x0,0x0,0x0, -0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,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, - - - - - - -}; - - -uint8_t CROSS[12960]={ //162*160 pixel code,these code can be generated by the 'photo code generator' program -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -0, -136,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,136, -0, -128,128,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,8,8, -0, -128,8,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,128,8, -0, -128,0,128,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,8,0,8, -0, -128,0,8,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,128,0,8, -0, -128,0,0,128,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,8,0,0,8, -0, -128,0,0,8,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,128,0,0,8, -0, -128,0,0,0,128,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,8,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,128,0,0,0,8, -0, -128,0,0,0,0,128,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,8,0,0,0,0,8, -0, -128,0,0,0,0,8,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,128,0,0,0,0,8, -0, -128,0,0,0,0,0,128,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,8,0,0,0,0,0,8, -0, -128,0,0,0,0,0,8,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,128,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,128, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -8,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,8, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -128,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -8,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,128, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,128,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,8,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,8,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,128,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,128,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,8,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,8,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,128,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,128,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,8,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,8,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,128,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,128,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,8,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,8,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,128,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,128,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,8,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,8,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,128,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,128,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,8,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,8,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,128,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,128, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -8,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -8,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,128, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,128,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,8,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,8,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,128,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,128,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,8,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,8,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,128,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,128,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,8,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,8,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,128,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,128,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,8,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,8,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,128,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,128,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,8,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,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,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,128,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,128,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,8,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,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,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,128,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,128, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -8,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,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,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -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, -128,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,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,128, -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, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,128,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,8,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, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,8,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,128,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,128,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,8,0,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, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,8,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,128,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,128,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,8,0,0,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, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,8,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,128,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,128,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, -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, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,8,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,128,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,128,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,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, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,8,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,128,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,128,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,8,0,0,0,0,0,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, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,8,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,128,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,128, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -8,0,0,0,0,0,0,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, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0,0,0,0,0,0,0,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, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -8,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,128, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,128,0,0,0,0,0,0, -0,0,0,0,0,0,8,0, -0,0,0,0,0,0,0,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, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,8,0,0,0,0,0,0, -0,0,0,0,0,0,128,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,128,0,0,0,0,0, -0,0,0,0,0,8,0,0, -0,0,0,0,0,0,0,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, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,8,0,0,0,0,0, -0,0,0,0,0,128,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,128,0,0,0,0, -0,0,0,0,8,0,0,0, -0,0,0,0,0,0,0,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, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,8,0,0,0,0, -0,0,0,0,128,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,128,0,0,0, -0,0,0,8,0,0,0,0, -0,0,0,0,0,0,0,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, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,8,0,0,0, -0,0,0,128,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,128,0,0, -0,0,8,0,0,0,0,0, -0,0,0,0,0,0,0,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, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,8,0,0, -0,0,128,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,128,0, -0,8,0,0,0,0,0,0, -0,0,0,0,0,0,0,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, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,8,0, -0,128,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,128, -8,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,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, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,128, -8,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,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, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,8,0, -0,128,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,128,0, -0,8,0,0,0,0,0,0, -0,0,0,0,0,0,0,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, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,8,0,0, -0,0,128,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,128,0,0, -0,0,8,0,0,0,0,0, -0,0,0,0,0,0,0,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, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,8,0,0,0, -0,0,0,128,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,128,0,0,0, -0,0,0,8,0,0,0,0, -0,0,0,0,0,0,0,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, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,8,0,0,0,0, -0,0,0,0,128,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,128,0,0,0,0, -0,0,0,0,8,0,0,0, -0,0,0,0,0,0,0,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, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,8,0,0,0,0,0, -0,0,0,0,0,128,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,128,0,0,0,0,0, -0,0,0,0,0,8,0,0, -0,0,0,0,0,0,0,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, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,8,0,0,0,0,0,0, -0,0,0,0,0,0,128,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,128,0,0,0,0,0,0, -0,0,0,0,0,0,8,0, -0,0,0,0,0,0,0,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, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -8,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,128, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0,0,0,0,0,0,0,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, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,128, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -8,0,0,0,0,0,0,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, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,8,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,128,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,128,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,8,0,0,0,0,0,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, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,8,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,128,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,128,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,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, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,8,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,128,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,128,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, -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, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,8,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,128,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,128,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,8,0,0,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, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,8,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,128,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,128,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,8,0,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, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,8,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,128,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,128,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,8,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, -128,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,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,128, -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, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -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, -128,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,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,128, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -8,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,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,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,128,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,128,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,8,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,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,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,128,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,128,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,8,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,8,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,128,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,128,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,8,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,8,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,128,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,128,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,8,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,8,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,128,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,128,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,8,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,8,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,128,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,128,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,8,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -8,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,128, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,128, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -8,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,8,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,128,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,128,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,8,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,8,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,128,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,128,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,8,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,8,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,128,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,128,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,8,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,8,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,128,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,128,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,8,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,8,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,128,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,128,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,8,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,8,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,128,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,128,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,8,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -8,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,128, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,8, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -128,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,128, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -8,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,8,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,128,0,0,0,0,0,8, -0, -128,0,0,0,0,0,128,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,8,0,0,0,0,0,8, -0, -128,0,0,0,0,8,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,128,0,0,0,0,8, -0, -128,0,0,0,0,128,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,8,0,0,0,0,8, -0, -128,0,0,0,8,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,128,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,8,0,0,0,8, -0, -128,0,0,8,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,128,0,0,8, -0, -128,0,0,128,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,8,0,0,8, -0, -128,0,8,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,128,0,8, -0, -128,0,128,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,8,0,8, -0, -128,8,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,128,8, -0, -128,128,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,8,8, -0, -136,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,136, -0, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -0, -}; - - -uint8_t RECTANGLE[12960]={ //162*160 pixel code,these code can be generated by the photo code -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,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,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,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,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,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,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,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,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,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,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,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,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,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,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,136,136,136,136, -136,136,136,136,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,136,136,136,136, -136,136,136,136,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,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,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,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,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,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,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,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,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,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,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,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,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,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,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,128,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,8,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,128,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,8,0,0,0,8, -0, -128,0,0,0,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -128,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,8, -0, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -136,136,136,136,136,136,136,136, -0, - -}; - - diff --git a/Drivers/BSP/160160D/ChineseLibrary12x12.h b/Drivers/BSP/160160D/ChineseLibrary12x12.h deleted file mode 100644 index 89736d5..0000000 --- a/Drivers/BSP/160160D/ChineseLibrary12x12.h +++ /dev/null @@ -1,16165 +0,0 @@ -/* the following data and text is protected by Copyright law and international copyright treaty provisions! please don't copy or sale without Qinwenhao's authorization */ -/* @0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x10, 0x00,0x10, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x10, 0x00,0x20, 0x00,0x20, -0x00,0x10, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @3 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x03,0x00, 0x07,0x80, 0x07,0x80, -0x03,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @4 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x10,0x00, 0x10,0x00, 0x10,0x00, -0x10,0x00, 0x10,0x00, 0x10,0x00, 0x10,0x00, -0x10,0x00, 0x10,0x00, 0x10,0x00, 0x10,0x00, -/* @5 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x60,0x00, 0x18,0x00, 0x06,0x00, 0x01,0x00, -0x06,0x00, 0x18,0x00, 0x60,0x00, 0x00,0x00, -/* @6 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x18,0x00, 0x18,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x18,0x00, 0x18,0x00, 0x00,0x00, -/* @7 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x10, 0x00,0x20, -0x00,0xC0, 0x03,0x10, 0x0C,0x20, 0x00,0xC0, -0x03,0x00, 0x0C,0x00, 0x00,0x00, 0x00,0x00, -/* @8 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x01,0x00, 0x02,0x00, 0x04,0x00, -0x1C,0x40, 0xE4,0x20, 0x04,0x10, 0x04,0x00, -0x04,0x10, 0x04,0x20, 0x04,0x40, 0x05,0x80, -/* @9 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x01,0x00, 0x01,0x00, 0x01,0x00, -0x01,0x00, 0x01,0x00, 0x01,0x00, 0x01,0x00, -0x01,0x00, 0x01,0x00, 0x01,0x00, 0x01,0x00, -/* @10 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x80, 0x01,0x00, 0x01,0x00, -0x01,0x00, 0x01,0x00, 0x01,0x00, 0x01,0x00, -0x00,0x80, 0x00,0x80, 0x00,0x80, 0x00,0x80, -/* @11 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0xFF,0xF0, 0x00,0x00, -0xFF,0xF0, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @12 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x03,0x00, 0x03,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x03,0x00, 0x03,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x03,0x00, -/* @13 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @14 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x68,0x00, 0x70,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @15 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x1C,0x00, -0x2C,0x00, 0x40,0x00, 0x00,0x00, 0x1C,0x00, -/* @16 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x04,0x00, 0x68,0x00, -0x70,0x00, 0x00,0x00, 0x04,0x00, 0x68,0x00, -/* @17 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x1F,0xF0, -/* @18 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x40,0x00, 0x20,0x00, 0x1F,0xF0, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @19 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x01,0x00, 0x02,0x80, 0x04,0x40, 0x08,0x20, -/* @20 (12x12,V)@ [suki software]*/ -0x40,0x00, 0x20,0x00, 0x10,0x10, 0x08,0x20, -0x04,0x40, 0x02,0x80, 0x01,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @21 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x01,0x00, 0x02,0x80, 0x04,0x40, -0x09,0x20, 0x12,0x90, 0x24,0x40, 0x48,0x20, -/* @22 (12x12,V)@ [suki software]*/ -0x40,0x00, 0x20,0x00, 0x90,0x10, 0x48,0x20, -0x24,0x40, 0x12,0x90, 0x09,0x20, 0x04,0x40, -0x02,0x80, 0x01,0x00, 0x00,0x00, 0x00,0x00, -/* @23 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x7F,0xF0, -0x40,0x00, 0x40,0x00, 0x00,0x00, 0x00,0x00, -/* @24 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x7F,0xF0, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @25 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x7F,0xF0, 0x40,0x00, 0x5F,0xF0, -0x50,0x00, 0x70,0x00, 0x00,0x00, 0x00,0x00, -/* @26 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x10, 0x00,0x10, 0x7F,0xF0, -0x40,0x00, 0x7F,0xF0, 0x00,0x00, 0x00,0x00, -/* @27 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x7F,0xF0, 0x40,0x00, 0x40,0x00, 0x47,0xE0, -/* @28 (12x12,V)@ [suki software]*/ -0x40,0x00, 0x60,0x00, 0x58,0x10, 0x47,0xE0, -0x40,0x00, 0x40,0x00, 0x7F,0xF0, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @29 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x7F,0xF0, 0x7F,0xF0, 0x7F,0xF0, 0x7C,0x30, -/* @30 (12x12,V)@ [suki software]*/ -0x40,0x00, 0x60,0x00, 0x70,0x00, 0x7C,0x30, -0x7F,0xF0, 0x7F,0xF0, 0x7F,0xF0, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @31 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x02,0x10, 0x02,0x10, 0x02,0x10, 0x1F,0xD0, -0x02,0x10, 0x02,0x10, 0x02,0x10, 0x00,0x00, -/* @32 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x10,0x10, -0x08,0x20, 0x04,0x40, 0x02,0x80, 0x01,0x00, -0x02,0x80, 0x04,0x40, 0x08,0x20, 0x10,0x10, -/* @33 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x01,0x00, -0x01,0x00, 0x01,0x00, 0x01,0x00, 0x05,0x40, -0x01,0x00, 0x01,0x00, 0x01,0x00, 0x01,0x00, -/* @34 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x0C,0x60, 0x0C,0x60, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @35 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x30, 0x00,0xC0, -0x03,0x00, 0x0C,0x00, 0x30,0x00, 0x40,0x00, -0x30,0x00, 0x0C,0x00, 0x03,0x00, 0x00,0xC0, -/* @36 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x60,0x00, 0x1C,0x00, 0x03,0x00, -0x00,0xC0, 0x00,0x30, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x30, 0x00,0xC0, 0x03,0x00, -/* @37 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x40,0x00, 0x60,0x00, 0x50,0x10, -0x48,0x20, 0x44,0x40, 0x42,0x80, 0x41,0x00, -0x40,0x00, 0x40,0x00, 0x40,0x00, 0x40,0x00, -/* @38 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x40,0x00, 0x7F,0xF0, -0x40,0x00, 0x40,0x00, 0x40,0x00, 0x40,0x00, -0x40,0x00, 0x40,0x00, 0x40,0x00, 0x7F,0xF0, -/* @39 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @40 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x0F,0xF0, 0x10,0x00, -0x20,0x00, 0x40,0x00, 0x40,0x00, 0x40,0x00, -0x40,0x00, 0x40,0x00, 0x20,0x00, 0x10,0x00, -/* @41 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x07,0xE0, 0x19,0x10, 0x21,0x00, -0x21,0x00, 0x41,0x00, 0x41,0x00, 0x41,0x00, -0x41,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @42 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x18,0x30, -0x18,0x30, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x18,0x30, 0x18,0x30, -/* @43 (12x12,V)@ [suki software]*/ -0x00,0x10, 0x00,0x20, 0x00,0x10, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x10, 0x00,0x20, -0x00,0x40, 0x00,0x80, 0x01,0x00, 0x02,0x00, -/* @44 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x7F,0xF0, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @45 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x10, 0x03,0xE0, 0xFC,0x00, 0x00,0x10, -0x03,0xE0, 0xFC,0x00, 0x00,0x00, 0x00,0x00, -/* @46 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x10, -0x00,0x20, 0x00,0x40, 0x00,0x80, 0x01,0x00, -0x02,0x00, 0x04,0x00, 0x08,0x00, 0x10,0x00, -/* @47 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x01,0xC0, 0x06,0x00, 0x08,0x00, -0x08,0x00, 0x10,0x00, 0x10,0x00, 0x10,0x00, -0x10,0x00, 0x08,0x00, 0x08,0x00, 0x06,0x00, -/* @48 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x03,0xC0, 0x0C,0x30, 0x10,0x00, -0x10,0x00, 0x20,0x00, 0x21,0x80, 0x21,0x80, -0x20,0x00, 0x10,0x00, 0x10,0x00, 0x0C,0x30, -/* @49 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x3F,0xF0, -0x40,0x00, 0x40,0x00, 0x00,0x00, 0x00,0x00, -/* @50 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x03,0xC0, 0x04,0x20, 0x04,0xF0, 0x1F,0x20, -0x64,0x20, 0x83,0xC0, 0x80,0x00, 0x40,0x00, -/* @51 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x05,0x40, 0x05,0x40, 0x05,0x40, -0x05,0x40, 0x05,0x40, 0x05,0x40, 0x05,0x40, -0x05,0x40, 0x05,0x40, 0x05,0x40, 0x05,0x40, -/* @52 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x0E,0x20, 0x11,0x20, 0x20,0xA0, -0x20,0xA0, 0x00,0xA0, 0x03,0x20, 0x0C,0x20, -0x10,0x20, 0x20,0x20, 0x20,0xA0, 0x20,0xA0, -/* @53 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x02,0x40, 0x04,0x80, 0x04,0x80, -0x04,0x80, 0x02,0x40, 0x02,0x40, 0x02,0x40, -0x01,0x20, 0x01,0x20, 0x01,0x20, 0x01,0x20, -/* @54 (12x12,V)@ [suki software]*/ -0x01,0x80, 0x06,0x60, 0x08,0x10, 0x08,0x10, -0x08,0x10, 0x00,0x10, 0x00,0x20, 0x03,0xC0, -0x04,0x00, 0x08,0x00, 0x08,0x10, 0x08,0x10, -/* @55 (12x12,V)@ [suki software]*/ -0x01,0x80, 0x06,0x60, 0x08,0x10, 0x08,0x10, -0x08,0x10, 0x08,0x10, 0x04,0x20, 0x03,0xC0, -0x04,0x20, 0x08,0x10, 0x08,0x10, 0x08,0x10, -/* @56 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x04,0x40, 0x04,0x40, 0x04,0x40, -0x04,0x40, 0x04,0x70, 0x04,0xC0, 0x05,0x40, -0x06,0x40, 0x1C,0x40, 0x64,0x40, 0x84,0x40, -/* @57 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x02,0x80, 0x02,0x80, 0x04,0x40, -0x04,0x40, 0x7F,0xF0, 0x08,0x20, 0x10,0x10, -0x10,0x10, 0x20,0x00, 0x20,0x00, 0x40,0x00, -/* @58 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x40,0x00, 0x40,0x00, -0x20,0x00, 0x20,0x00, 0x10,0x10, 0x10,0x10, -0x08,0x20, 0x7F,0xF0, 0x04,0x40, 0x04,0x40, -/* @59 (12x12,V)@ [suki software]*/ -0x02,0x80, 0x05,0x40, 0x05,0x40, 0x08,0xA0, -0x08,0xA0, 0x10,0x50, 0x10,0x50, 0x20,0x20, -0x20,0x20, 0x40,0x10, 0x40,0x10, 0x80,0x00, -/* @60 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x80,0x00, 0x80,0x00, -0x40,0x10, 0x40,0x10, 0x20,0x20, 0x20,0x20, -0x10,0x50, 0x10,0x50, 0x08,0xA0, 0x08,0xA0, -/* @61 (12x12,V)@ [suki software]*/ -0x03,0x80, 0x04,0x40, 0x08,0x20, 0x08,0x20, -0x08,0x20, 0x08,0x20, 0x04,0x40, 0x03,0x80, -0x04,0x40, 0x08,0x20, 0x08,0x20, 0x08,0x20, -/* @62 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x30,0x00, 0x30,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x10, 0x00,0x10, -0x00,0x00, 0x00,0x00, 0x30,0x00, 0x30,0x00, -/* @63 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x10, 0x00,0x10, -0x00,0x00, 0x00,0x00, 0x18,0x00, 0x18,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x10, 0x00,0x10, -/* @64 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x04,0x00, -0x08,0x00, 0x10,0x10, 0x20,0x20, 0x7F,0xE0, -0x20,0x20, 0x10,0x10, 0x08,0x00, 0x04,0x00, -/* @65 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x80, 0x00,0x80, -0x00,0x80, 0x38,0x80, 0x44,0x80, 0x47,0xF0, -0x44,0x80, 0x38,0x80, 0x00,0x80, 0x00,0x80, -/* @66 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x18,0x00, 0x24,0x00, 0x24,0x00, -0x18,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @67 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x01,0x00, 0x0E,0x00, 0x70,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @68 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x01,0x00, 0x0E,0x00, 0x70,0x00, 0x00,0x00, -0x01,0x00, 0x0E,0x00, 0x70,0x00, 0x00,0x00, -/* @69 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x40,0x00, 0xA0,0x00, 0x47,0xE0, -0x18,0x10, 0x20,0x00, 0x40,0x00, 0x40,0x00, -0x40,0x00, 0x40,0x00, 0x40,0x00, 0x40,0x00, -/* @70 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x1C,0x10, 0x22,0x00, -0x41,0x00, 0x41,0x00, 0x41,0x00, 0xFF,0xF0, -0x40,0x80, 0x40,0x80, 0x40,0x80, 0x20,0x40, -/* @71 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x40,0x00, 0x27,0xE0, 0x18,0x10, -0x10,0x00, 0x20,0x00, 0x20,0x00, 0x20,0x00, -0x20,0x00, 0x20,0x00, 0x20,0x00, 0x10,0x00, -/* @72 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x07,0xE0, 0x08,0x10, 0x10,0x00, -0x20,0x00, 0x20,0x10, 0x20,0x60, 0x21,0x80, -0x26,0x00, 0x38,0x00, 0x60,0x00, 0x90,0x00, -/* @73 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x10, 0x02,0x20, 0x02,0x20, -0x02,0x20, 0x02,0x10, 0x7F,0xF0, 0x82,0x00, -0x82,0x00, 0x82,0x00, 0x62,0x00, 0x00,0x00, -/* @74 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x3C,0x10, 0x42,0x20, 0x42,0x40, -0x3C,0x80, 0x01,0x00, 0x02,0x30, 0x04,0x40, -0x08,0x40, 0x10,0x30, 0x20,0x00, 0x40,0x30, -/* @75 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x61,0x80, 0x92,0x40, 0x8C,0x20, 0x84,0x50, -0xA2,0x40, 0x61,0x80, 0x00,0x00, 0x00,0x00, -/* @76 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x80,0x00, 0xFF,0xF0, 0x30,0x00, -0x0F,0x00, 0x00,0xF0, 0x00,0x00, 0x7F,0xF0, -0x80,0x00, 0x40,0x00, 0x07,0xF0, 0x08,0x00, -/* @77 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x03,0x00, 0x02,0x80, 0x02,0x90, -0x02,0x60, 0x06,0x00, 0x38,0x00, 0xC0,0x10, -0x38,0x10, 0x06,0x00, 0x02,0x60, 0x02,0x90, -/* @78 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x02,0x00, 0x03,0x00, 0x03,0x90, -0x03,0xF0, 0x07,0xF0, 0x3F,0xF0, 0xFF,0xF0, -0x3F,0xF0, 0x07,0xF0, 0x03,0xF0, 0x03,0x90, -/* @79 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x07,0xC0, 0x18,0x30, 0x20,0x00, -0x20,0x00, 0x40,0x00, 0x40,0x00, 0x40,0x00, -0x40,0x00, 0x40,0x00, 0x20,0x00, 0x20,0x00, -/* @80 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x07,0xC0, 0x1F,0xF0, 0x3F,0xF0, -0x3F,0xF0, 0x7F,0xF0, 0x7F,0xF0, 0x7F,0xF0, -0x7F,0xF0, 0x7F,0xF0, 0x3F,0xF0, 0x3F,0xF0, -/* @81 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x07,0xC0, 0x18,0x30, 0x27,0xC0, -0x28,0x20, 0x50,0x10, 0x50,0x10, 0x50,0x10, -0x50,0x10, 0x50,0x10, 0x28,0x20, 0x27,0xC0, -/* @82 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x02,0x80, 0x04,0x40, 0x08,0x20, -0x10,0x10, 0x20,0x00, 0x40,0x00, 0x80,0x00, -0x40,0x00, 0x20,0x00, 0x10,0x10, 0x08,0x20, -/* @83 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x03,0x80, 0x07,0xC0, 0x0F,0xE0, -0x1F,0xF0, 0x3F,0xF0, 0x7F,0xF0, 0xFF,0xF0, -0x7F,0xF0, 0x3F,0xF0, 0x1F,0xF0, 0x0F,0xE0, -/* @84 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x40,0x00, 0x40,0x00, -0x40,0x00, 0x40,0x00, 0x40,0x00, 0x40,0x00, -0x40,0x00, 0x40,0x00, 0x40,0x00, 0x40,0x00, -/* @85 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x7F,0xF0, 0x7F,0xF0, -0x7F,0xF0, 0x7F,0xF0, 0x7F,0xF0, 0x7F,0xF0, -0x7F,0xF0, 0x7F,0xF0, 0x7F,0xF0, 0x7F,0xF0, -/* @86 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x10, 0x00,0x60, 0x01,0x80, -0x06,0x00, 0x18,0x00, 0x20,0x00, 0x40,0x00, -0x20,0x00, 0x18,0x00, 0x06,0x00, 0x01,0x80, -/* @87 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x10, 0x00,0x70, 0x01,0xF0, -0x07,0xF0, 0x1F,0xF0, 0x3F,0xF0, 0x7F,0xF0, -0x3F,0xF0, 0x1F,0xF0, 0x07,0xF0, 0x01,0xF0, -/* @88 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x41,0x80, 0x21,0x80, 0x10,0x10, -0x08,0x20, 0x04,0x40, 0x62,0x80, 0x61,0x00, -0x02,0x80, 0x04,0x40, 0x08,0x20, 0x10,0x10, -/* @89 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x01,0x00, 0x01,0x00, 0x01,0x00, -0x01,0x00, 0x01,0x00, 0x01,0x00, 0x01,0x00, -0x01,0x00, 0x01,0x00, 0x07,0xC0, 0x03,0x80, -/* @90 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x01,0x00, 0x03,0x80, 0x03,0x80, -0x07,0xC0, 0x01,0x00, 0x01,0x00, 0x01,0x00, -0x01,0x00, 0x01,0x00, 0x01,0x00, 0x01,0x00, -/* @91 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x08,0x00, 0x38,0x00, 0xFF,0xF0, -0x38,0x00, 0x08,0x00, 0x00,0x00, 0x00,0x00, -/* @92 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x10, 0x00,0x10, 0xFF,0xF0, -0x00,0x10, 0x00,0x10, 0x00,0x00, 0x00,0x00, -/* @93 (12x12,V)@ [suki software]*/ -0x3C,0x30, 0x3C,0x30, 0x3C,0x30, 0x3C,0x30, -0x3C,0x30, 0x3C,0x30, 0x3C,0x30, 0x3C,0x30, -0x3C,0x30, 0x3C,0x30, 0x3C,0x30, 0x3C,0x30, -/* @94 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x08,0x00, 0x5F,0xF0, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @95 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x08,0x00, 0x5F,0xF0, 0x00,0x00, 0x00,0x00, -0x08,0x00, 0x5F,0xF0, 0x00,0x00, 0x00,0x00, -/* @96 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x08,0x00, 0x5F,0xF0, -0x00,0x00, 0x00,0x00, 0x08,0x00, 0x5F,0xF0, -0x00,0x00, 0x00,0x00, 0x08,0x00, 0x5F,0xF0, -/* @97 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x08,0x00, 0x5F,0xF0, 0x00,0x00, -0x00,0x00, 0x10,0x00, 0x1E,0x00, 0x11,0xC0, -0x00,0x30, 0x00,0x00, 0x00,0x30, 0x11,0xC0, -/* @98 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x10,0x00, 0x1E,0x00, -0x11,0x80, 0x00,0x60, 0x00,0x10, 0x00,0x00, -0x00,0x10, 0x00,0x60, 0x11,0x80, 0x1E,0x00, -/* @99 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x10,0x00, 0x1E,0x00, 0x11,0xC0, -0x00,0x30, 0x00,0x00, 0x00,0x30, 0x11,0xC0, -0x1E,0x00, 0x10,0x00, 0x00,0x00, 0x08,0x00, -/* @100 (12x12,V)@ [suki software]*/ -0x10,0x00, 0x1E,0x00, 0x11,0xC0, 0x00,0x30, -0x00,0x00, 0x00,0x30, 0x11,0xC0, 0x1E,0x00, -0x10,0x00, 0x08,0x00, 0x5F,0xF0, 0x00,0x00, -/* @101 (12x12,V)@ [suki software]*/ -0x10,0x00, 0x1E,0x00, 0x11,0xC0, 0x00,0x30, -0x00,0x00, 0x00,0x30, 0x11,0xC0, 0x1E,0x00, -0x18,0x00, 0x5F,0xF0, 0x08,0x00, 0x5F,0xF0, -/* @102 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x5F,0xF0, 0x00,0x00, 0x00,0x00, -0x10,0x00, 0x1C,0x00, 0x12,0x00, 0x01,0x10, -0x00,0xA0, 0x00,0x40, 0x00,0xA0, 0x13,0x10, -/* @103 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x10,0x00, 0x18,0x00, -0x14,0x10, 0x02,0x20, 0x01,0x40, 0x00,0x80, -0x01,0x40, 0x02,0x20, 0x14,0x10, 0x18,0x00, -/* @104 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @105 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @106 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @107 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @108 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @109 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @110 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x10,0x00, 0x20,0x00, 0x7F,0xF0, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @111 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x30,0x30, -0x40,0x40, 0x40,0x80, 0x40,0x80, 0x41,0x00, -0x3E,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @112 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x30,0x10, -0x40,0x00, 0x41,0x00, 0x41,0x00, 0x42,0x80, -0x3C,0x70, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @113 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0xE0, -0x07,0x20, 0x38,0x20, 0x40,0x20, 0x7F,0xF0, -0x00,0x20, 0x00,0x20, 0x00,0x00, 0x00,0x00, -/* @114 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x7F,0xC0, -0x40,0x80, 0x41,0x00, 0x41,0x00, 0x41,0x00, -0x40,0xF0, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @115 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x3F,0xF0, -0x40,0x80, 0x41,0x00, 0x41,0x00, 0x41,0x00, -0x38,0xF0, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @116 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x70,0x00, -0x40,0x00, 0x40,0x00, 0x40,0xF0, 0x47,0x00, -0x48,0x00, 0x70,0x00, 0x00,0x00, 0x00,0x00, -/* @117 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x3C,0x70, -0x42,0x80, 0x41,0x00, 0x41,0x00, 0x42,0x80, -0x3C,0x70, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @118 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x3F,0x10, -0x40,0x80, 0x40,0x80, 0x40,0x80, 0x41,0x00, -0x3F,0xF0, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @119 (12x12,V)@ [suki software]*/ -0x10,0x00, 0x20,0x00, 0x7F,0xF0, 0x00,0x00, -0x00,0x00, 0x3F,0xF0, 0x40,0x00, 0x40,0x00, -0x40,0x00, 0x40,0x00, 0x3F,0xF0, 0x00,0x00, -/* @120 (12x12,V)@ [suki software]*/ -0x10,0x00, 0x20,0x00, 0x7F,0xF0, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x10,0x00, 0x20,0x00, -0x7F,0xF0, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @121 (12x12,V)@ [suki software]*/ -0x10,0x00, 0x20,0x00, 0x7F,0xF0, 0x00,0x00, -0x00,0x00, 0x30,0x30, 0x40,0x40, 0x40,0x80, -0x40,0x80, 0x41,0x00, 0x3E,0x00, 0x00,0x00, -/* @122 (12x12,V)@ [suki software]*/ -0x10,0x00, 0x20,0x00, 0x7F,0xF0, 0x00,0x00, -0x00,0x00, 0x30,0x10, 0x40,0x00, 0x41,0x00, -0x41,0x00, 0x42,0x80, 0x3C,0x70, 0x00,0x00, -/* @123 (12x12,V)@ [suki software]*/ -0x10,0x00, 0x20,0x00, 0x7F,0xF0, 0x00,0x00, -0x00,0x00, 0x00,0xE0, 0x07,0x20, 0x38,0x20, -0x40,0x20, 0x7F,0xF0, 0x00,0x20, 0x00,0x20, -/* @124 (12x12,V)@ [suki software]*/ -0x10,0x00, 0x20,0x00, 0x7F,0xF0, 0x00,0x00, -0x00,0x00, 0x7F,0xC0, 0x40,0x80, 0x41,0x00, -0x41,0x00, 0x41,0x00, 0x40,0xF0, 0x00,0x00, -/* @125 (12x12,V)@ [suki software]*/ -0x10,0x00, 0x20,0x00, 0x7F,0xF0, 0x00,0x00, -0x00,0x00, 0x3F,0xF0, 0x40,0x80, 0x41,0x00, -0x41,0x00, 0x41,0x00, 0x38,0xF0, 0x00,0x00, -/* @126 (12x12,V)@ [suki software]*/ -0x10,0x00, 0x20,0x00, 0x7F,0xF0, 0x00,0x00, -0x00,0x00, 0x70,0x00, 0x40,0x00, 0x40,0x00, -0x40,0xF0, 0x47,0x00, 0x48,0x00, 0x70,0x00, -/* @127 (12x12,V)@ [suki software]*/ -0x10,0x00, 0x20,0x00, 0x7F,0xF0, 0x00,0x00, -0x00,0x00, 0x3C,0x70, 0x42,0x80, 0x41,0x00, -0x41,0x00, 0x42,0x80, 0x3C,0x70, 0x00,0x00, -/* @128 (12x12,V)@ [suki software]*/ -0x10,0x00, 0x20,0x00, 0x7F,0xF0, 0x00,0x00, -0x00,0x00, 0x3F,0x10, 0x40,0x80, 0x40,0x80, -0x40,0x80, 0x41,0x00, 0x3F,0xF0, 0x00,0x00, -/* @129 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x30,0x70, 0x40,0x80, 0x41,0x00, -0x41,0x00, 0x3E,0x00, 0x00,0x00, 0x3F,0xF0, -0x40,0x00, 0x40,0x00, 0x40,0x00, 0x3F,0xF0, -/* @130 (12x12,V)@ [suki software]*/ -0x3F,0xF0, 0x40,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x3F,0xF0, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @131 (12x12,V)@ [suki software]*/ -0x3F,0xF0, 0x40,0x00, 0x00,0x00, 0x00,0x00, -0x18,0x10, 0x20,0x20, 0x20,0x40, 0x20,0x40, -0x20,0x80, 0x1F,0x10, 0x00,0x00, 0x00,0x00, -/* @132 (12x12,V)@ [suki software]*/ -0x3F,0xF0, 0x40,0x00, 0x00,0x00, 0x00,0x00, -0x18,0x10, 0x20,0x00, 0x21,0x00, 0x21,0x00, -0x22,0x80, 0x1C,0x70, 0x00,0x00, 0x00,0x00, -/* @133 (12x12,V)@ [suki software]*/ -0x3F,0xF0, 0x40,0x00, 0x00,0x00, 0x00,0x00, -0x01,0xC0, 0x06,0x40, 0x38,0x40, 0x40,0x40, -0x7F,0xF0, 0x00,0x40, 0x00,0x40, 0x00,0x00, -/* @134 (12x12,V)@ [suki software]*/ -0x3F,0xF0, 0x40,0x00, 0x00,0x00, 0x00,0x00, -0x3F,0x90, 0x21,0x00, 0x22,0x00, 0x22,0x00, -0x22,0x00, 0x21,0xF0, 0x00,0x00, 0x00,0x00, -/* @135 (12x12,V)@ [suki software]*/ -0x3F,0xF0, 0x40,0x00, 0x00,0x00, 0x00,0x00, -0x1F,0xF0, 0x20,0x80, 0x21,0x00, 0x21,0x00, -0x21,0x00, 0x18,0xF0, 0x00,0x00, 0x00,0x00, -/* @136 (12x12,V)@ [suki software]*/ -0x3F,0xF0, 0x40,0x00, 0x00,0x00, 0x00,0x00, -0x38,0x00, 0x20,0x00, 0x20,0x00, 0x20,0x70, -0x23,0x80, 0x24,0x00, 0x38,0x00, 0x00,0x00, -/* @137 (12x12,V)@ [suki software]*/ -0x3F,0xF0, 0x40,0x00, 0x00,0x00, 0x00,0x00, -0x1E,0xF0, 0x21,0x00, 0x21,0x00, 0x21,0x00, -0x21,0x00, 0x1E,0xF0, 0x00,0x00, 0x00,0x00, -/* @138 (12x12,V)@ [suki software]*/ -0x3F,0xF0, 0x40,0x00, 0x00,0x00, 0x00,0x00, -0x1F,0x10, 0x20,0x80, 0x20,0x80, 0x20,0x80, -0x21,0x00, 0x1F,0xF0, 0x00,0x00, 0x00,0x00, -/* @139 (12x12,V)@ [suki software]*/ -0x3F,0xF0, 0x40,0x00, 0x00,0x00, 0x00,0x00, -0x3F,0xF0, 0x00,0x00, 0x00,0x00, 0x1F,0xF0, -0x20,0x00, 0x20,0x00, 0x20,0x00, 0x1F,0xF0, -/* @140 (12x12,V)@ [suki software]*/ -0x3F,0xF0, 0x40,0x00, 0x00,0x00, 0x00,0x00, -0x3F,0xF0, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x3F,0xF0, 0x00,0x00, -/* @141 (12x12,V)@ [suki software]*/ -0x3F,0xF0, 0x40,0x00, 0x00,0x00, 0x3F,0xF0, -0x00,0x00, 0x00,0x00, 0x18,0x30, 0x20,0x40, -0x20,0x80, 0x20,0x80, 0x21,0x00, 0x1E,0x10, -/* @142 (12x12,V)@ [suki software]*/ -0x3F,0xF0, 0x40,0x00, 0x00,0x00, 0x3F,0xF0, -0x00,0x00, 0x00,0x00, 0x18,0x10, 0x20,0x00, -0x21,0x00, 0x21,0x00, 0x22,0x80, 0x1C,0x70, -/* @143 (12x12,V)@ [suki software]*/ -0x3F,0xF0, 0x40,0x00, 0x00,0x00, 0x3F,0xF0, -0x00,0x00, 0x00,0x00, 0x00,0xE0, 0x03,0x20, -0x1C,0x20, 0x20,0x20, 0x3F,0xF0, 0x00,0x20, -/* @144 (12x12,V)@ [suki software]*/ -0x3F,0xF0, 0x40,0x00, 0x00,0x00, 0x3F,0xF0, -0x00,0x00, 0x00,0x00, 0x3F,0x90, 0x21,0x00, -0x22,0x00, 0x22,0x00, 0x22,0x00, 0x21,0xF0, -/* @145 (12x12,V)@ [suki software]*/ -0x3F,0xF0, 0x40,0x00, 0x00,0x00, 0x3F,0xF0, -0x00,0x00, 0x00,0x00, 0x1F,0xF0, 0x20,0x80, -0x21,0x00, 0x21,0x00, 0x21,0x00, 0x18,0xF0, -/* @146 (12x12,V)@ [suki software]*/ -0x3F,0xF0, 0x40,0x00, 0x00,0x00, 0x3F,0xF0, -0x00,0x00, 0x00,0x00, 0x38,0x00, 0x20,0x00, -0x20,0x70, 0x23,0x80, 0x24,0x00, 0x38,0x00, -/* @147 (12x12,V)@ [suki software]*/ -0x3F,0xF0, 0x40,0x00, 0x00,0x00, 0x3F,0xF0, -0x00,0x00, 0x00,0x00, 0x1E,0xF0, 0x21,0x00, -0x21,0x00, 0x21,0x00, 0x21,0x00, 0x1E,0xF0, -/* @148 (12x12,V)@ [suki software]*/ -0x3F,0xF0, 0x40,0x00, 0x00,0x00, 0x3F,0xF0, -0x00,0x00, 0x00,0x00, 0x1F,0x10, 0x20,0x80, -0x20,0x80, 0x20,0x80, 0x21,0x00, 0x1F,0xF0, -/* @149 (12x12,V)@ [suki software]*/ -0x3F,0xF0, 0x40,0x00, 0x18,0x30, 0x20,0x40, -0x20,0x80, 0x21,0x00, 0x1E,0x10, 0x00,0x00, -0x1F,0xF0, 0x20,0x00, 0x20,0x00, 0x20,0x00, -/* @150 (12x12,V)@ [suki software]*/ -0x07,0xC0, 0x18,0x30, 0x20,0x00, 0x40,0x00, -0x40,0x00, 0x80,0x00, 0x80,0x00, 0x9F,0xF0, -0x80,0x00, 0x80,0x00, 0x40,0x00, 0x40,0x00, -/* @151 (12x12,V)@ [suki software]*/ -0x07,0xC0, 0x18,0x30, 0x20,0x00, 0x40,0x00, -0x40,0x00, 0x98,0x70, 0x90,0x90, 0x91,0x10, -0x91,0x10, 0x9E,0x30, 0x40,0x00, 0x40,0x00, -/* @152 (12x12,V)@ [suki software]*/ -0x07,0xC0, 0x18,0x30, 0x20,0x00, 0x40,0x00, -0x40,0x00, 0x98,0x30, 0x91,0x10, 0x91,0x10, -0x92,0x90, 0x9E,0xF0, 0x40,0x00, 0x40,0x00, -/* @153 (12x12,V)@ [suki software]*/ -0x07,0xC0, 0x18,0x30, 0x20,0x00, 0x40,0x00, -0x41,0xC0, 0x8E,0x40, 0x90,0x40, 0x9F,0xF0, -0x80,0x40, 0x80,0x40, 0x40,0x00, 0x40,0x00, -/* @154 (12x12,V)@ [suki software]*/ -0x07,0xC0, 0x18,0x30, 0x20,0x00, 0x40,0x00, -0x40,0x00, 0x9F,0x30, 0x91,0x10, 0x91,0x10, -0x91,0x10, 0x91,0xF0, 0x40,0x00, 0x40,0x00, -/* @155 (12x12,V)@ [suki software]*/ -0x07,0xC0, 0x18,0x30, 0x20,0x00, 0x40,0x00, -0x40,0x00, 0x9F,0xF0, 0x91,0x10, 0x91,0x10, -0x91,0x10, 0x99,0xF0, 0x40,0x00, 0x40,0x00, -/* @156 (12x12,V)@ [suki software]*/ -0x07,0xC0, 0x18,0x30, 0x20,0x00, 0x40,0x00, -0x40,0x00, 0x98,0x00, 0x90,0x00, 0x90,0xF0, -0x93,0x00, 0x9C,0x00, 0x40,0x00, 0x40,0x00, -/* @157 (12x12,V)@ [suki software]*/ -0x07,0xC0, 0x18,0x30, 0x20,0x00, 0x40,0x00, -0x40,0x00, 0x9E,0xF0, 0x91,0x10, 0x91,0x10, -0x91,0x10, 0x9E,0xF0, 0x40,0x00, 0x40,0x00, -/* @158 (12x12,V)@ [suki software]*/ -0x07,0xC0, 0x18,0x30, 0x20,0x00, 0x40,0x00, -0x40,0x00, 0x9F,0x30, 0x91,0x10, 0x91,0x10, -0x91,0x10, 0x9F,0xF0, 0x40,0x00, 0x40,0x00, -/* @159 (12x12,V)@ [suki software]*/ -0x07,0xC0, 0x18,0x30, 0x20,0x00, 0x40,0x00, -0x5F,0xF0, 0x80,0x00, 0x9F,0xF0, 0x90,0x10, -0x90,0x10, 0x90,0x10, 0x5F,0xF0, 0x40,0x00, -/* @160 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @161 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @162 (12x12,V)@ [suki software]*/ -0x1F,0xF0, 0x20,0x00, 0x41,0x00, 0x01,0x00, -0x01,0x00, 0x01,0x00, 0x01,0x00, 0x01,0x00, -0x01,0x00, 0x01,0x00, 0x01,0x00, 0x03,0x00, -/* @163 (12x12,V)@ [suki software]*/ -0x1F,0xF0, 0x20,0x00, 0x40,0x20, 0x08,0x20, -0x08,0x20, 0x08,0x20, 0x08,0x20, 0x08,0x20, -0x08,0x20, 0x08,0x20, 0x18,0x20, 0x08,0x60, -/* @164 (12x12,V)@ [suki software]*/ -0x1F,0xF0, 0x20,0x00, 0x40,0x10, 0x10,0x10, -0x11,0x10, 0x11,0x10, 0x11,0x10, 0x11,0x10, -0x11,0x10, 0x13,0x10, 0x31,0x10, 0x10,0x30, -/* @165 (12x12,V)@ [suki software]*/ -0x1F,0xF0, 0x20,0x00, 0x4F,0xE0, 0x08,0x20, -0x08,0x20, 0x0F,0xE0, 0x08,0x20, 0x08,0x20, -0x08,0x20, 0x0F,0xE0, 0x08,0x20, 0x08,0x20, -/* @166 (12x12,V)@ [suki software]*/ -0x1F,0xF0, 0x20,0x00, 0x40,0x00, 0x11,0x00, -0x11,0x00, 0x11,0xF0, 0x1F,0x00, 0x11,0x00, -0x11,0x00, 0x11,0x00, 0x33,0xF0, 0x11,0x00, -/* @167 (12x12,V)@ [suki software]*/ -0x1F,0xF0, 0x20,0x00, 0x42,0x00, 0x02,0x00, -0x02,0x10, 0x02,0x60, 0x12,0x00, 0x0A,0x00, -0x02,0x00, 0x02,0x40, 0x02,0x20, 0x06,0x10, -/* @168 (12x12,V)@ [suki software]*/ -0x1F,0xF0, 0x20,0x00, 0x40,0x80, 0x00,0x80, -0x00,0x80, 0x00,0x80, 0x3F,0xF0, 0x01,0x00, -0x01,0x00, 0x02,0x00, 0x02,0x10, 0x06,0x00, -/* @169 (12x12,V)@ [suki software]*/ -0x1F,0xF0, 0x20,0x00, 0x40,0x10, 0x00,0x20, -0x00,0xC0, 0x1F,0x00, 0x00,0x00, 0x00,0x00, -0x3F,0x00, 0x00,0x80, 0x00,0x40, 0x00,0x30, -/* @170 (12x12,V)@ [suki software]*/ -0x1F,0xF0, 0x20,0x00, 0x40,0x00, 0x04,0x00, -0x04,0x10, 0x04,0x60, 0x3F,0x80, 0x04,0x00, -0x04,0x00, 0x0F,0xF0, 0x04,0x00, 0x00,0x00, -/* @171 (12x12,V)@ [suki software]*/ -0x1F,0xF0, 0x20,0x00, 0x42,0x00, 0x02,0x00, -0x02,0x00, 0x02,0x00, 0x02,0x00, 0x3F,0xF0, -0x02,0x00, 0x02,0x00, 0x02,0x00, 0x06,0x00, -/* @172 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @173 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @174 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x40,0x00, 0x7F,0xF0, -0x40,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @175 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x40,0x00, 0x7F,0xF0, 0x40,0x00, 0x00,0x00, -0x40,0x00, 0x7F,0xF0, 0x40,0x00, 0x00,0x00, -/* @176 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x40,0x00, 0x7F,0xF0, -0x40,0x00, 0x00,0x00, 0x40,0x00, 0x7F,0xF0, -0x40,0x00, 0x00,0x00, 0x40,0x00, 0x7F,0xF0, -/* @177 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x40,0x00, 0x7F,0xF0, 0x40,0x00, -0x00,0x00, 0x40,0x00, 0x78,0x00, 0x47,0x80, -0x00,0x70, 0x00,0x00, 0x00,0x70, 0x47,0x80, -/* @178 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x40,0x00, 0x60,0x00, 0x58,0x00, -0x07,0x00, 0x00,0xE0, 0x00,0x10, 0x00,0x00, -0x00,0x10, 0x00,0xE0, 0x07,0x00, 0x58,0x00, -/* @179 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x40,0x00, 0x78,0x00, 0x47,0x80, -0x00,0x70, 0x00,0x00, 0x00,0x70, 0x47,0x80, -0x78,0x00, 0x40,0x00, 0x00,0x00, 0x40,0x00, -/* @180 (12x12,V)@ [suki software]*/ -0x40,0x00, 0x78,0x00, 0x47,0x80, 0x00,0x70, -0x00,0x00, 0x00,0x70, 0x47,0x80, 0x78,0x00, -0x40,0x00, 0x40,0x00, 0x7F,0xF0, 0x40,0x00, -/* @181 (12x12,V)@ [suki software]*/ -0x40,0x00, 0x78,0x00, 0x47,0x80, 0x00,0x70, -0x00,0x00, 0x00,0x70, 0x47,0x80, 0x78,0x00, -0x40,0x00, 0x7F,0xF0, 0x40,0x00, 0x7F,0xF0, -/* @182 (12x12,V)@ [suki software]*/ -0x40,0x00, 0x7F,0xF0, 0x40,0x00, 0x00,0x00, -0x40,0x00, 0x60,0x00, 0x58,0x00, 0x04,0x30, -0x02,0xC0, 0x01,0x00, 0x02,0xC0, 0x04,0x30, -/* @183 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x40,0x00, 0x60,0x00, 0x50,0x00, -0x08,0x10, 0x04,0x20, 0x02,0xC0, 0x01,0x00, -0x02,0xC0, 0x04,0x20, 0x08,0x10, 0x50,0x00, -/* @184 (12x12,V)@ [suki software]*/ -0x40,0x00, 0x60,0x00, 0x50,0x00, 0x08,0x30, -0x06,0xC0, 0x01,0x00, 0x06,0xC0, 0x08,0x30, -0x50,0x00, 0x60,0x00, 0x40,0x00, 0x00,0x00, -/* @185 (12x12,V)@ [suki software]*/ -0x40,0x00, 0x60,0x00, 0x50,0x00, 0x08,0x30, -0x06,0xC0, 0x01,0x00, 0x06,0xC0, 0x08,0x30, -0x50,0x00, 0x60,0x00, 0x40,0x00, 0x7F,0xF0, -/* @186 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @187 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @188 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x0F,0xF0, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @189 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0xE0, 0x07,0x00, 0x00,0x00, -0x00,0xE0, 0x07,0x00, 0x00,0x00, 0x00,0x00, -/* @190 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x04,0x20, 0x04,0x20, -0x04,0x20, 0x3F,0xF0, 0x04,0x20, 0x04,0x20, -0x04,0x20, 0x3F,0xF0, 0x08,0x40, 0x08,0x40, -/* @191 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x40,0x00, 0x60,0x00, -0x50,0x40, 0x08,0x40, 0x06,0x40, 0x01,0xF0, -0x06,0x40, 0x08,0x40, 0x50,0x40, 0x60,0x00, -/* @192 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x3E,0x00, 0x41,0x10, -0x41,0x20, 0x3E,0x40, 0x00,0x80, 0x01,0x00, -0x02,0x30, 0x04,0x40, 0x08,0x40, 0x10,0x30, -/* @193 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x30, 0x00,0x40, 0x3C,0x80, -0x42,0x80, 0x41,0x80, 0x42,0x40, 0x42,0x20, -0x3C,0x10, 0x00,0x40, 0x00,0x70, 0x00,0x40, -/* @194 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x04,0x00, 0x18,0x00, 0xE0,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @195 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x07,0xE0, 0x18,0x10, 0x20,0x00, 0x40,0x00, -/* @196 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x80,0x00, 0x80,0x00, 0x40,0x00, -0x20,0x00, 0x18,0x10, 0x07,0xE0, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @197 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x08,0x00, 0x04,0x00, -0x02,0x10, 0x01,0x20, 0x00,0x40, 0x3F,0x80, -0x00,0x40, 0x01,0x20, 0x02,0x10, 0x04,0x00, -/* @198 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x01,0x00, -0x01,0x00, 0x01,0x00, 0x01,0x00, 0x3F,0xF0, -0x01,0x00, 0x01,0x00, 0x01,0x00, 0x01,0x00, -/* @199 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x10, 0x00,0x10, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @200 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x01,0x00, -0x01,0x00, 0x01,0x00, 0x01,0x00, 0x01,0x00, -0x01,0x00, 0x01,0x00, 0x01,0x00, 0x01,0x00, -/* @201 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @202 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x10, 0x00,0x20, 0x00,0x40, 0x00,0x80, -0x01,0x00, 0x02,0x00, 0x04,0x00, 0x08,0x00, -/* @203 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x1F,0xF0, -0x20,0x00, 0x40,0x00, 0x40,0x00, 0x40,0x00, -0x40,0x00, 0x40,0x00, 0x20,0x00, 0x1F,0xF0, -/* @204 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x10,0x00, 0x20,0x00, 0x7F,0xF0, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @205 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x18,0x10, -0x20,0x20, 0x40,0x40, 0x40,0x80, 0x40,0x80, -0x41,0x00, 0x41,0x00, 0x21,0x00, 0x1E,0x00, -/* @206 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x30,0x00, -0x40,0x00, 0x40,0x00, 0x40,0x00, 0x41,0x00, -0x41,0x00, 0x42,0x80, 0x44,0x40, 0x38,0x30, -/* @207 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x30, 0x00,0x50, -0x01,0x90, 0x06,0x10, 0x38,0x10, 0x40,0x10, -0x7F,0xF0, 0x00,0x10, 0x00,0x10, 0x00,0x10, -/* @208 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x7F,0x80, -0x41,0x00, 0x42,0x00, 0x42,0x00, 0x42,0x00, -0x42,0x00, 0x42,0x00, 0x41,0x00, 0x40,0xF0, -/* @209 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x1F,0xF0, -0x20,0x80, 0x41,0x00, 0x41,0x00, 0x41,0x00, -0x41,0x00, 0x41,0x00, 0x20,0x80, 0x18,0x70, -/* @210 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x70,0x00, -0x40,0x00, 0x40,0x00, 0x40,0x00, 0x40,0x70, -0x41,0x80, 0x42,0x00, 0x4C,0x00, 0x70,0x00, -/* @211 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x1C,0x70, -0x22,0x80, 0x41,0x00, 0x41,0x00, 0x41,0x00, -0x41,0x00, 0x41,0x00, 0x22,0x80, 0x1C,0x70, -/* @212 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x1E,0x10, -0x21,0x00, 0x40,0x80, 0x40,0x80, 0x40,0x80, -0x40,0x80, 0x40,0x80, 0x21,0x00, 0x1F,0xF0, -/* @213 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x60, 0x00,0x60, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @214 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0xD0, 0x00,0xD0, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @215 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x01,0x00, 0x02,0x80, 0x02,0x80, -0x04,0x40, 0x04,0x40, 0x08,0x20, 0x08,0x20, -0x10,0x10, 0x10,0x10, 0x20,0x00, 0x20,0x00, -/* @216 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x02,0x40, -0x02,0x40, 0x02,0x40, 0x02,0x40, 0x02,0x40, -0x02,0x40, 0x02,0x40, 0x02,0x40, 0x02,0x40, -/* @217 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x40,0x00, 0x40,0x00, 0x20,0x00, -0x20,0x00, 0x10,0x10, 0x10,0x10, 0x08,0x20, -0x08,0x20, 0x04,0x40, 0x04,0x40, 0x02,0x80, -/* @218 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x06,0x00, 0x08,0x00, 0x10,0x00, -0x10,0xF0, 0x09,0x00, 0x06,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @219 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x0F,0xE0, 0x10,0x10, 0x20,0x00, -0x27,0xC0, 0x48,0x20, 0x48,0x20, 0x44,0x40, -0x4F,0xE0, 0x40,0x10, 0x20,0x10, 0x18,0x60, -/* @220 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x10, 0x00,0x30, 0x00,0xD0, -0x03,0x00, 0x0D,0x00, 0x31,0x00, 0x41,0x00, -0x31,0x00, 0x0D,0x00, 0x03,0x00, 0x00,0xD0, -/* @221 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x40,0x10, 0x7F,0xF0, 0x42,0x10, -0x42,0x10, 0x42,0x10, 0x42,0x10, 0x42,0x10, -0x42,0x10, 0x42,0x10, 0x45,0x10, 0x38,0xE0, -/* @222 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x1F,0xC0, 0x20,0x20, -0x40,0x10, 0x40,0x10, 0x40,0x10, 0x40,0x10, -0x40,0x10, 0x40,0x10, 0x40,0x10, 0x20,0x20, -/* @223 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x40,0x10, 0x7F,0xF0, 0x40,0x10, -0x40,0x10, 0x40,0x10, 0x40,0x10, 0x40,0x10, -0x40,0x10, 0x40,0x10, 0x40,0x10, 0x20,0x20, -/* @224 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x40,0x10, 0x7F,0xF0, 0x42,0x10, -0x42,0x10, 0x42,0x10, 0x42,0x10, 0x42,0x10, -0x42,0x10, 0x42,0x10, 0x47,0x10, 0x40,0x10, -/* @225 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x40,0x10, 0x7F,0xF0, 0x42,0x10, -0x42,0x00, 0x42,0x00, 0x42,0x00, 0x42,0x00, -0x42,0x00, 0x42,0x00, 0x47,0x00, 0x40,0x00, -/* @226 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x1F,0xC0, 0x20,0x20, 0x40,0x10, -0x40,0x10, 0x40,0x10, 0x40,0x10, 0x40,0x10, -0x40,0x10, 0x40,0x10, 0x21,0x10, 0x71,0xE0, -/* @227 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x40,0x10, 0x7F,0xF0, 0x42,0x10, -0x02,0x00, 0x02,0x00, 0x02,0x00, 0x02,0x00, -0x02,0x00, 0x02,0x00, 0x02,0x00, 0x42,0x10, -/* @228 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x40,0x10, 0x7F,0xF0, -0x40,0x10, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @229 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x60, 0x40,0x10, 0x7F,0xE0, -0x40,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @230 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x40,0x10, 0x7F,0xF0, 0x44,0x10, -0x04,0x00, 0x0A,0x00, 0x11,0x00, 0x60,0x80, -0x40,0x40, 0x40,0x30, 0x00,0x10, 0x00,0x10, -/* @231 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x40,0x10, 0x7F,0xF0, 0x40,0x10, -0x00,0x10, 0x00,0x10, 0x00,0x10, 0x00,0x10, -0x00,0x10, 0x00,0x10, 0x00,0x10, 0x00,0x10, -/* @232 (12x12,V)@ [suki software]*/ -0x40,0x10, 0x7F,0xF0, 0x20,0x10, 0x10,0x00, -0x08,0x00, 0x04,0x00, 0x02,0x00, 0x01,0x00, -0x02,0x00, 0x04,0x00, 0x08,0x00, 0x10,0x00, -/* @233 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x40,0x10, 0x7F,0xF0, 0x20,0x10, -0x10,0x00, 0x08,0x00, 0x04,0x00, 0x02,0x00, -0x01,0x00, 0x00,0x80, 0x00,0x40, 0x40,0x20, -/* @234 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x0F,0x80, 0x10,0x40, -0x20,0x20, 0x40,0x10, 0x40,0x10, 0x40,0x10, -0x40,0x10, 0x40,0x10, 0x20,0x20, 0x10,0x40, -/* @235 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x40,0x10, 0x7F,0xF0, 0x42,0x10, -0x42,0x00, 0x42,0x00, 0x42,0x00, 0x42,0x00, -0x42,0x00, 0x42,0x00, 0x24,0x00, 0x18,0x00, -/* @236 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x0F,0x80, 0x10,0x40, -0x20,0x20, 0x40,0x10, 0x40,0x10, 0x40,0x50, -0x40,0x50, 0x40,0x30, 0x20,0x20, 0x10,0x40, -/* @237 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x40,0x10, 0x7F,0xF0, 0x42,0x10, -0x42,0x00, 0x43,0x00, 0x42,0x80, 0x42,0x40, -0x42,0x20, 0x42,0x10, 0x24,0x10, 0x18,0x10, -/* @238 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x18,0x70, 0x24,0x20, -0x42,0x10, 0x42,0x10, 0x42,0x10, 0x42,0x10, -0x42,0x10, 0x42,0x10, 0x42,0x10, 0x21,0x20, -/* @239 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x60,0x00, 0x40,0x00, 0x40,0x00, -0x40,0x00, 0x40,0x00, 0x40,0x10, 0x7F,0xF0, -0x40,0x10, 0x40,0x00, 0x40,0x00, 0x40,0x00, -/* @240 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x40,0x00, 0x7F,0xC0, 0x40,0x20, -0x00,0x10, 0x00,0x10, 0x00,0x10, 0x00,0x10, -0x00,0x10, 0x00,0x10, 0x00,0x10, 0x40,0x20, -/* @241 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x40,0x00, 0x60,0x00, 0x58,0x00, -0x06,0x00, 0x01,0x80, 0x00,0x60, 0x00,0x10, -0x00,0x60, 0x01,0x80, 0x06,0x00, 0x58,0x00, -/* @242 (12x12,V)@ [suki software]*/ -0x40,0x00, 0x78,0x00, 0x47,0x00, 0x00,0xC0, -0x00,0x30, 0x00,0xC0, 0x47,0x00, 0x78,0x00, -0x47,0x00, 0x00,0xC0, 0x00,0x30, 0x00,0xC0, -/* @243 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x40,0x10, 0x40,0x10, 0x60,0x30, -0x10,0x40, 0x08,0x80, 0x05,0x00, 0x02,0x00, -0x05,0x00, 0x08,0x80, 0x10,0x40, 0x60,0x30, -/* @244 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x40,0x00, 0x60,0x00, 0x50,0x00, -0x08,0x00, 0x04,0x00, 0x02,0x10, 0x01,0xF0, -0x02,0x10, 0x04,0x00, 0x08,0x00, 0x50,0x00, -/* @245 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x70,0x10, 0x40,0x30, -0x40,0x50, 0x40,0x90, 0x41,0x10, 0x42,0x10, -0x44,0x10, 0x48,0x10, 0x50,0x10, 0x60,0x10, -/* @246 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @247 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x40,0x00, 0x20,0x00, 0x10,0x00, -0x08,0x00, 0x04,0x00, 0x02,0x00, 0x01,0x00, -0x00,0x80, 0x00,0x40, 0x00,0x20, 0x00,0x10, -/* @248 (12x12,V)@ [suki software]*/ -0x40,0x00, 0x40,0x00, 0x7F,0xF0, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @249 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x04,0x00, 0x18,0x00, 0x60,0x00, 0x80,0x00, -0x60,0x00, 0x18,0x00, 0x04,0x00, 0x00,0x00, -/* @250 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @251 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x60,0x00, 0x18,0x00, -/* @252 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x04,0xE0, -0x09,0x10, 0x09,0x10, 0x09,0x10, 0x09,0x10, -0x08,0x90, 0x07,0xE0, 0x00,0x10, 0x00,0x20, -/* @253 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x7F,0xF0, 0x02,0x20, 0x04,0x10, 0x04,0x10, -0x04,0x10, 0x04,0x10, 0x02,0x20, 0x01,0xC0, -/* @254 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x01,0xC0, -0x02,0x20, 0x04,0x10, 0x04,0x10, 0x04,0x10, -0x04,0x10, 0x04,0x10, 0x02,0x20, 0x00,0x40, -/* @255 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x01,0xC0, -0x02,0x20, 0x04,0x10, 0x04,0x10, 0x04,0x10, -0x04,0x10, 0x02,0x20, 0x7F,0xF0, 0x00,0x00, -/* @256 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x03,0xE0, -0x04,0x90, 0x04,0x90, 0x04,0x90, 0x04,0x90, -0x04,0x90, 0x03,0x90, 0x00,0x20, 0x00,0x00, -/* @257 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x02,0x00, 0x02,0x00, 0x3F,0xF0, 0x42,0x00, -0x32,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @258 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x03,0x80, -0x04,0x40, 0x08,0x20, 0x08,0x20, 0x08,0x20, -0x08,0x20, 0x04,0x40, 0x0F,0xF0, 0x00,0x00, -/* @259 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x7F,0xF0, 0x02,0x00, 0x04,0x00, 0x04,0x00, -0x04,0x00, 0x04,0x00, 0x03,0xF0, 0x00,0x00, -/* @260 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x6F,0xF0, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @261 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x6F,0xF0, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @262 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x7F,0xF0, 0x00,0x80, 0x01,0x00, 0x02,0x80, -0x04,0x40, 0x00,0x20, 0x00,0x10, 0x00,0x00, -/* @263 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x40,0x00, 0x7F,0xF0, -0x00,0x10, 0x00,0x20, 0x00,0x00, 0x00,0x00, -/* @264 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x04,0x00, -0x07,0xF0, 0x02,0x00, 0x04,0x00, 0x03,0xF0, -0x04,0x00, 0x04,0x00, 0x03,0xF0, 0x00,0x10, -/* @265 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x04,0x00, -0x07,0xF0, 0x02,0x00, 0x04,0x00, 0x04,0x00, -0x03,0xF0, 0x00,0x10, 0x00,0x00, 0x00,0x00, -/* @266 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x01,0xC0, -0x02,0x20, 0x04,0x10, 0x04,0x10, 0x04,0x10, -0x02,0x20, 0x01,0xC0, 0x00,0x00, 0x00,0x00, -/* @267 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x04,0x00, -0x07,0xF0, 0x02,0x20, 0x04,0x10, 0x04,0x10, -0x04,0x10, 0x02,0x20, 0x01,0xC0, 0x00,0x00, -/* @268 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x03,0x80, 0x04,0x40, 0x08,0x20, 0x08,0x20, -0x08,0x20, 0x04,0x40, 0x0F,0xF0, 0x00,0x00, -/* @269 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x04,0x00, 0x03,0xF0, 0x04,0x00, -0x06,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @270 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x03,0x20, 0x04,0x90, 0x04,0x90, 0x04,0x90, -0x04,0x90, 0x02,0x60, 0x00,0x00, 0x00,0x00, -/* @271 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x08,0x00, 0x08,0x00, 0x7F,0xE0, 0x08,0x10, -0x08,0x20, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @272 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x04,0x00, 0x07,0xE0, 0x00,0x10, 0x00,0x10, -0x00,0x20, 0x07,0xF0, 0x00,0x10, 0x00,0x00, -/* @273 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x06,0x00, 0x01,0x80, 0x00,0x60, 0x00,0x10, -0x00,0x60, 0x01,0x80, 0x06,0x00, 0x00,0x00, -/* @274 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x04,0x00, -0x03,0xC0, 0x00,0x30, 0x00,0xC0, 0x07,0x00, -0x00,0xC0, 0x00,0x30, 0x03,0xC0, 0x04,0x00, -/* @275 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x04,0x10, 0x02,0x20, 0x01,0x40, 0x00,0x80, -0x01,0x40, 0x02,0x20, 0x04,0x10, 0x00,0x00, -/* @276 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x04,0x00, 0x03,0x00, 0x00,0x90, 0x00,0x60, -0x00,0x80, 0x03,0x00, 0x04,0x00, 0x00,0x00, -/* @277 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x06,0x10, 0x04,0x30, 0x04,0x50, 0x04,0x90, -0x05,0x10, 0x06,0x30, 0x00,0x00, 0x00,0x00, -/* @278 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x01,0x00, 0x02,0x80, -/* @279 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x7F,0xF0, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @280 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x80,0x00, 0x7C,0x70, 0x02,0x80, -0x01,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @281 (12x12,V)@ [suki software]*/ -0x80,0x00, 0x80,0x00, 0x80,0x00, 0x80,0x00, -0x80,0x00, 0x80,0x00, 0x80,0x00, 0x80,0x00, -0x80,0x00, 0x80,0x00, 0x80,0x00, 0x80,0x00, -/* @282 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @283 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @284 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @285 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @a0 (12x12,V)@ [suki software]*/ -0x7F,0xE0, 0x40,0x40, 0x40,0x40, 0x7F,0xE0, -0x00,0x00, 0x7F,0xF0, 0x4C,0x20, 0x73,0xE0, -0x00,0x00, 0x4F,0xE0, 0x48,0x20, 0x4F,0xE0, -/* @a1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x48,0x40, 0x54,0x20, -0x63,0xC0, 0x00,0x00, 0x47,0xC0, 0x44,0x40, -0x44,0x40, 0x44,0x40, 0x47,0xC0, 0x40,0x00, -/* @ai0 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x04,0x00, 0x04,0x00, 0xFF,0xF0, -0x04,0x10, 0x04,0x90, 0x01,0x40, 0x16,0x40, -0x3A,0x40, 0xD2,0x50, 0x53,0xE0, 0x12,0x50, -/* @ai1 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x08,0x40, 0x08,0x80, 0xFF,0xF0, -0x09,0x00, 0x0A,0x40, 0x00,0x40, 0x11,0x40, -0x36,0x40, 0xD2,0x50, 0x13,0xF0, 0x12,0x40, -/* @ai2 (12x12,V)@ [suki software]*/ -0x3F,0xE0, 0x20,0x40, 0x20,0x40, 0x20,0x40, -0x3F,0xE0, 0x10,0x00, 0x10,0x00, 0xFB,0x00, -0x10,0xD0, 0x10,0x20, 0x10,0xD0, 0xFB,0x00, -/* @ai3 (12x12,V)@ [suki software]*/ -0x3F,0xE0, 0x20,0x80, 0x20,0x80, 0x3F,0xC0, -0x00,0x80, 0x01,0x40, 0x16,0x40, 0x3A,0x40, -0xD2,0x50, 0x13,0xE0, 0x12,0x50, 0x12,0x40, -/* @ai4 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x20,0x00, 0x20,0x00, 0x2F,0x90, -0x29,0x30, 0x29,0x40, 0x29,0x80, 0xA9,0x40, -0x69,0x20, 0x29,0x30, 0x29,0x60, 0x2F,0xC0, -/* @ai5 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x1F,0xF0, 0x31,0x10, 0xD1,0x10, -0x1F,0xF0, 0x00,0x00, 0x7A,0x70, 0x0A,0x40, -0x0A,0x40, 0xFA,0x40, 0x0A,0x40, 0x0A,0x40, -/* @ai6 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x04,0x80, 0x3F,0xF0, 0x20,0x00, -0x20,0xE0, 0x20,0xA0, 0x2E,0xA0, 0xAA,0xA0, -0x6A,0xE0, 0x2A,0x10, 0x2A,0xE0, 0x2A,0xA0, -/* @ai7 (12x12,V)@ [suki software]*/ -0x41,0x00, 0x41,0x00, 0x51,0xF0, 0x4C,0x10, -0x40,0x20, 0xE0,0xF0, 0x5F,0x40, 0x55,0x40, -0x55,0x50, 0x55,0x60, 0xF5,0x50, 0x55,0x40, -/* @ai8 (12x12,V)@ [suki software]*/ -0x06,0x00, 0xFA,0x10, 0x22,0x60, 0x3F,0x80, -0x22,0x60, 0x02,0x10, 0x51,0x40, 0x52,0x50, -0x54,0x70, 0x59,0xC0, 0x7F,0x40, 0x98,0x70, -/* @ai9 (12x12,V)@ [suki software]*/ -0x20,0x00, 0x20,0x00, 0x20,0x00, 0x20,0x00, -0x26,0x00, 0xF9,0x80, 0x20,0x50, 0x20,0x20, -0x20,0x50, 0xF8,0x80, 0x27,0x00, 0x22,0x00, -/* @ai10 (12x12,V)@ [suki software]*/ -0x40,0x80, 0x43,0x00, 0x4F,0xF0, 0x72,0x00, -0x43,0xF0, 0x40,0x00, 0x02,0x40, 0xFA,0x40, -0xAA,0x50, 0xAA,0x40, 0xAA,0x40, 0xAA,0x40, -/* @ai11 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x02,0x00, 0x4D,0x00, 0x69,0x00, -0x59,0x30, 0x49,0xE0, 0x6F,0x50, 0x59,0x50, -0xC9,0x40, 0x89,0x50, 0x99,0x60, 0xE9,0x40, -/* @ai12 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x4C,0x40, 0x52,0x20, -0x61,0xC0, 0x10,0x70, 0x91,0x40, 0x76,0x70, -0x10,0x40, 0x10,0x40, 0x30,0x70, 0xD4,0x40, -/* @an0 (12x12,V)@ [suki software]*/ -0x20,0x10, 0x23,0xD0, 0xFA,0x50, 0x2F,0xF0, -0xFA,0x50, 0x23,0xD0, 0x20,0x10, 0x31,0x00, -0x21,0x40, 0xA3,0xA0, 0x6D,0x10, 0x21,0x20, -/* @an1 (12x12,V)@ [suki software]*/ -0x00,0x10, 0x04,0xD0, 0x14,0x90, 0x24,0x90, -0xD6,0xB0, 0x55,0x90, 0x54,0x90, 0x54,0x90, -0x54,0xD0, 0x54,0x90, 0x54,0x00, 0x57,0xF0, -/* @an2 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x09,0x00, 0x31,0x00, 0x21,0x00, -0x21,0xE0, 0x2F,0x10, 0xA5,0x10, 0x61,0x00, -0x21,0x10, 0x21,0x20, 0x21,0xC0, 0x21,0x00, -/* @an3 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x1F,0xF0, 0xEA,0x00, -0x42,0x00, 0x27,0xF0, 0x2A,0x90, 0x32,0x90, -0xE7,0xF0, 0x22,0x90, 0x32,0x90, 0x2B,0xF0, -/* @an4 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x08,0x40, 0x08,0x80, 0xFF,0xF0, -0x09,0x00, 0x0A,0x00, 0x19,0x00, 0x11,0x60, -0x11,0xA0, 0x97,0x10, 0x71,0x10, 0x11,0x60, -/* @an5 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x3F,0xF0, 0x22,0x20, 0x22,0x20, -0x3F,0xF0, 0x02,0x00, 0x22,0x00, 0x32,0xF0, -0x2E,0xA0, 0xA2,0xA0, 0x66,0xA0, 0x3A,0xA0, -/* @an6 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x07,0xF0, 0x74,0x20, -0x15,0x20, 0x15,0x20, 0x15,0x20, 0x15,0x20, -0xF5,0xF0, 0x15,0x20, 0x15,0x20, 0x15,0x20, -/* @an7 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x44,0x80, 0x44,0x80, -0x7F,0xF0, 0x08,0x00, 0x31,0x00, 0x21,0x40, -0x2F,0xA0, 0xA5,0x10, 0x61,0x10, 0x21,0x20, -/* @an8 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x04,0x20, 0x34,0x20, 0x24,0xA0, -0x26,0xA0, 0x2E,0xA0, 0xB5,0xB0, 0x65,0x70, -0x27,0x20, 0x2C,0xB0, 0x24,0xE0, 0x24,0x20, -/* @ang0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x49,0x00, -0x49,0x00, 0x7F,0xF0, 0x10,0x00, 0x10,0x00, -0x17,0xF0, 0x94,0x00, 0x74,0x00, 0x17,0xF0, -/* @ang1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x01,0xF0, 0xF9,0x10, -0xA9,0x20, 0xAA,0x00, 0xAA,0x00, 0xA8,0x00, -0xA9,0xF0, 0xA9,0x00, 0xA9,0x00, 0xA9,0x10, -/* @ang2 (12x12,V)@ [suki software]*/ -0x04,0x20, 0x04,0x20, 0x04,0x40, 0x3C,0x70, -0x24,0xC0, 0x25,0x40, 0x26,0x70, 0xFC,0x40, -0x26,0x70, 0x25,0x40, 0x24,0xC0, 0x3C,0xF0, -/* @ao0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x40,0x00, 0x40,0x00, -0x40,0x00, 0x7F,0x00, 0x01,0x00, 0x01,0x00, -0x01,0x00, 0x7F,0x00, 0x40,0x00, 0x40,0x00, -/* @ao1 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x22,0x00, 0x2A,0x10, 0x2B,0xE0, -0xFE,0x40, 0x2A,0x40, 0x2A,0x70, 0x22,0x00, -0x04,0x00, 0x1F,0x00, 0xE8,0xC0, 0x48,0x30, -/* @ao2 (12x12,V)@ [suki software]*/ -0x04,0x10, 0x54,0x20, 0x55,0xC0, 0xFF,0x20, -0x55,0x30, 0x55,0xE0, 0x55,0x00, 0x06,0x10, -0x1C,0x20, 0xF2,0x40, 0x51,0x80, 0x13,0xC0, -/* @ao3 (12x12,V)@ [suki software]*/ -0x01,0x30, 0x7D,0x50, 0x55,0x90, 0xD7,0x30, -0x55,0x90, 0x7D,0x50, 0x09,0x30, 0x46,0x40, -0x40,0x80, 0x7F,0xF0, 0x08,0x20, 0x46,0x40, -/* @ao4 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x88,0x40, 0x68,0x80, 0x4B,0xF0, -0x0C,0x80, 0x01,0x60, 0x22,0x40, 0x22,0x10, -0x22,0xE0, 0x7F,0x00, 0x42,0xC0, 0x42,0x30, -/* @ao5 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x1F,0xF0, 0xE0,0x00, -0x42,0x00, 0x2B,0xF0, 0xFE,0x40, 0x2A,0x40, -0x2A,0x70, 0x22,0x00, 0x0E,0x00, 0xF9,0x90, -/* @ao6 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x20, 0x7F,0xA0, 0x44,0x20, -0x54,0xA0, 0x4D,0x20, 0xC6,0x30, 0x7F,0xE0, -0x46,0x30, 0x4D,0x20, 0x55,0xA0, 0x44,0x20, -/* @ao7 (12x12,V)@ [suki software]*/ -0x0E,0x00, 0x00,0x00, 0xFF,0xF0, 0x08,0x00, -0x04,0x20, 0x3F,0xA0, 0x24,0xA0, 0x35,0x20, -0x6E,0x20, 0xBF,0xF0, 0x2D,0x20, 0x34,0xA0, -/* @ao8 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x84,0x30, 0x61,0xC0, 0x06,0x20, -0x00,0x20, 0x3F,0xE0, 0x34,0xA0, 0x6D,0x20, -0xBF,0xF0, 0x2E,0x30, 0x35,0xA0, 0x24,0x20, -/* @ba0 (12x12,V)@ [suki software]*/ -0x20,0x00, 0x20,0x00, 0x20,0x00, 0x27,0xF0, -0x24,0x40, 0xFC,0x40, 0x24,0x40, 0x27,0xC0, -0x24,0x40, 0xFC,0x40, 0x24,0x40, 0x27,0xC0, -/* @ba1 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x08,0x80, 0xFF,0xF0, 0x09,0x00, -0x0A,0x00, 0x00,0x80, 0x7C,0x90, 0x47,0xE0, -0x44,0x80, 0x7C,0xF0, 0x00,0x00, 0x00,0x00, -/* @ba2 (12x12,V)@ [suki software]*/ -0x08,0x80, 0x08,0x80, 0x09,0x00, 0xFF,0xF0, -0x0A,0x00, 0x08,0x00, 0x00,0x10, 0x00,0xE0, -0x1F,0x00, 0x00,0x00, 0x00,0x00, 0x3F,0x80, -/* @ba3 (12x12,V)@ [suki software]*/ -0x3F,0xE0, 0x20,0x40, 0x20,0x40, 0x20,0x40, -0x3F,0xE0, 0x00,0x10, 0x00,0xE0, 0x3F,0x00, -0x00,0x00, 0xFC,0x00, 0x43,0x80, 0x00,0x60, -/* @ba4 (12x12,V)@ [suki software]*/ -0x7F,0xE0, 0x40,0x80, 0x40,0x80, 0x40,0x80, -0x7F,0xC0, 0x00,0x00, 0x7F,0xF0, 0x42,0x00, -0x42,0x00, 0x42,0x00, 0x7E,0x00, 0x42,0x00, -/* @ba5 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x30,0x00, 0xC7,0xF0, 0x44,0x40, -0x64,0x40, 0x5C,0x40, 0x44,0x40, 0x4C,0x40, -0x17,0xC0, 0xE4,0x40, 0x44,0x40, 0x64,0x40, -/* @ba6 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x10, 0x00,0x60, -0x01,0x80, 0x3E,0x00, 0x10,0x00, 0x00,0x00, -0x00,0x00, 0x7E,0x00, 0x21,0x80, 0x00,0x60, -/* @ba7 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x40, 0x00,0x90, 0x3F,0xE0, -0x20,0x00, 0x27,0xF0, 0x24,0x40, 0xA4,0x40, -0x64,0x40, 0x27,0xC0, 0x24,0x40, 0x24,0x40, -/* @ba8 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x42,0x00, -0x42,0x00, 0x42,0x00, 0x42,0x00, 0x7E,0x00, -0x42,0x00, 0x42,0x00, 0x42,0x00, 0x42,0x00, -/* @ba9 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x11,0x00, 0x12,0x00, 0x08,0x10, 0x08,0xE0, -0xFF,0x00, 0x0A,0xC0, 0x0A,0x30, 0x4A,0x60, -/* @ba10 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7C,0xF0, 0x44,0x00, 0x47,0xF0, -0x44,0x90, 0x7C,0x90, 0x08,0x00, 0x08,0x30, -0x0B,0xC0, 0xFE,0x60, 0x0A,0x10, 0x4A,0x20, -/* @ba11 (12x12,V)@ [suki software]*/ -0x20,0x10, 0x23,0xD0, 0xFA,0x50, 0x2F,0xF0, -0x2A,0x50, 0xFB,0xD0, 0x20,0x10, 0x00,0x00, -0x7F,0xF0, 0x42,0x00, 0x7E,0x00, 0x42,0x00, -/* @ba12 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x08,0x40, 0x08,0x80, 0xFF,0xF0, -0x09,0x00, 0x0A,0x00, 0x00,0x00, 0x7F,0xF0, -0x42,0x00, 0x42,0x00, 0x7E,0x00, 0x42,0x00, -/* @pa0 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x29,0x30, 0x29,0xC0, 0xFF,0xF0, -0x29,0x80, 0x29,0x70, 0x00,0x20, 0x3F,0xF0, -0x21,0x00, 0x21,0x00, 0x3F,0x00, 0x21,0x00, -/* @ba13 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x04,0x00, 0x04,0x00, 0xFF,0xF0, -0x04,0x10, 0x04,0x20, 0x00,0x00, 0x7F,0xC0, -0x40,0x00, 0x40,0x30, 0x5F,0xC0, 0x40,0x30, -/* @ba14 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x31,0x70, 0xB3,0xD0, 0xA9,0x50, -0xB1,0x70, 0xAB,0xD0, 0xA1,0x50, 0xF9,0x70, -0xA0,0x00, 0xB3,0xF0, 0xAA,0xA0, 0xB2,0xA0, -/* @ba15 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x00,0x40, 0xFA,0x40, 0x92,0x40, -0x92,0x40, 0xF2,0x50, 0x92,0x60, 0x9F,0xC0, -0x92,0x40, 0xF2,0x40, 0x92,0x50, 0x92,0x40, -/* @ba16 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x00,0x80, 0x11,0x00, 0x21,0xF0, -0x43,0x20, 0xA3,0x20, 0x15,0x20, 0x09,0xE0, -0x09,0x20, 0x15,0x20, 0xA5,0x20, 0x43,0xE0, -/* @bai0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x1F,0xF0, 0x10,0x80, -0x10,0x80, 0x30,0x80, 0xD0,0x80, 0x10,0x80, -0x10,0x80, 0x10,0x80, 0x10,0x80, 0x10,0x80, -/* @bai1 (12x12,V)@ [suki software]*/ -0x10,0x20, 0x10,0xC0, 0x17,0x00, 0xFF,0xF0, -0x12,0x00, 0x11,0x80, 0x00,0x00, 0x1F,0xF0, -0x10,0x80, 0x30,0x80, 0xD0,0x80, 0x10,0x80, -/* @bai2 (12x12,V)@ [suki software]*/ -0x40,0x00, 0x40,0x00, 0x40,0x00, 0x4F,0xF0, -0x48,0x80, 0x48,0x80, 0x78,0x80, 0x68,0x80, -0x48,0x80, 0x48,0x80, 0x48,0x80, 0x4F,0xF0, -/* @bai3 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x11,0x00, 0x12,0x20, 0x7D,0x20, 0x45,0x20, -0x7D,0x30, 0x47,0xE0, 0x45,0x20, 0x7D,0x20, -/* @bai4 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x1F,0xF0, 0xF0,0x00, -0x40,0x00, 0x00,0x00, 0x47,0xF0, 0x44,0x80, -0x4C,0x80, 0x74,0x80, 0x44,0x80, 0x44,0x80, -/* @bai5 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0x80, 0x40,0x30, -0x4F,0xC0, 0x40,0x20, 0x7F,0x90, 0x04,0x00, -0x1F,0x00, 0xE8,0xC0, 0x48,0x30, 0x08,0xC0, -/* @bai6 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x41,0x00, 0x49,0x00, 0x49,0x30, -0x7F,0xC0, 0x89,0x00, 0x89,0x00, 0x01,0x00, -0x40,0x40, 0x52,0x40, 0x52,0x40, 0x7F,0xF0, -/* @bai7 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x48,0xC0, 0x4B,0x00, 0x7F,0xF0, -0x8A,0x00, 0x89,0x90, 0x00,0x10, 0x3F,0xB0, -0x24,0xD0, 0x65,0x90, 0xBE,0xF0, 0x24,0x90, -/* @ban0 (12x12,V)@ [suki software]*/ -0x42,0x00, 0x42,0x00, 0x7F,0xF0, 0x42,0x00, -0x52,0x00, 0x1C,0x00, 0x53,0x30, 0x31,0xC0, -0x1E,0x70, 0x51,0x00, 0x41,0x00, 0x7F,0xF0, -/* @ban1 (12x12,V)@ [suki software]*/ -0x42,0x00, 0x42,0x00, 0x7F,0xF0, 0x42,0x10, -0x42,0x90, 0x07,0x00, 0x00,0x10, 0xFF,0xE0, -0x00,0x00, 0x42,0x00, 0x42,0x00, 0x7F,0xF0, -/* @ban2 (12x12,V)@ [suki software]*/ -0x10,0x80, 0x11,0x00, 0xFF,0xF0, 0x12,0x00, -0x15,0x00, 0x3F,0xF0, 0x69,0x40, 0xA5,0x20, -0x3F,0xF0, 0x03,0x00, 0x7D,0x80, 0x41,0x60, -/* @ban3 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x08,0x80, 0xFF,0xF0, 0x09,0x00, -0x0A,0x00, 0x00,0x10, 0x7F,0xE0, 0x46,0x00, -0x45,0x80, 0x44,0x50, 0x44,0x30, 0x44,0xC0, -/* @ban4 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x01,0x00, 0x3F,0xF0, 0x69,0x40, -0xA5,0x20, 0x3F,0xF0, 0x01,0x00, 0x02,0x80, -0x7C,0xE0, 0x40,0x90, 0x40,0x90, 0x40,0xA0, -/* @fen0 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x0C,0x00, 0x72,0x30, 0x83,0xC0, -0x42,0x00, 0x33,0xF0, 0x0C,0x00, 0x40,0x00, -0x4F,0xF0, 0x58,0x00, 0x6B,0xF0, 0x48,0x00, -/* @ban5 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x08,0xC0, 0x0B,0x00, 0xFF,0xF0, -0x0A,0x00, 0x09,0x80, 0x00,0x70, 0x7F,0x80, -0x46,0x00, 0x45,0x80, 0x44,0x50, 0x84,0x70, -/* @ban6 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x09,0x00, 0x09,0x00, -0x79,0xF0, 0x08,0x00, 0x08,0x10, 0x7F,0xE0, -0x47,0x00, 0x44,0xC0, 0x44,0x30, 0x84,0xD0, -/* @ban7 (12x12,V)@ [suki software]*/ -0x10,0x80, 0x10,0x80, 0x11,0x00, 0xFF,0xF0, -0x12,0x00, 0x15,0x00, 0x02,0x00, 0x0D,0x10, -0x11,0xE0, 0xE1,0x00, 0x31,0x00, 0x09,0x00, -/* @ban8 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x12,0x00, 0x10,0x40, 0x24,0x40, 0x1C,0x40, -0x04,0x40, 0xFF,0xF0, 0x04,0x40, 0x0C,0x40, -/* @ban9 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x0F,0xF0, 0x34,0x00, -0xC0,0x40, 0x24,0x40, 0x1C,0x40, 0x14,0x40, -0x04,0x40, 0xFF,0xF0, 0x04,0x40, 0x0C,0x40, -/* @ban10 (12x12,V)@ [suki software]*/ -0x22,0x00, 0xAA,0x40, 0x63,0xF0, 0x3E,0x40, -0x22,0x00, 0x1F,0xF0, 0x20,0x00, 0x3F,0xF0, -0x5C,0x00, 0x43,0xE0, 0x22,0x50, 0xAE,0x40, -/* @ban11 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x20, 0x42,0x20, 0x22,0x20, -0x3A,0x20, 0x12,0x20, 0x02,0x20, 0xFF,0xF0, -0x02,0x20, 0x0A,0x20, 0x12,0x20, 0x62,0x20, -/* @ban12 (12x12,V)@ [suki software]*/ -0x00,0x20, 0x10,0x40, 0x13,0x80, 0x10,0x00, -0x10,0x30, 0x11,0xC0, 0xFE,0x00, 0x10,0x00, -0x10,0x00, 0x10,0x00, 0x3F,0xF0, 0x12,0x00, -/* @ban13 (12x12,V)@ [suki software]*/ -0x02,0x20, 0x06,0x60, 0x1A,0xA0, 0xE3,0x20, -0x04,0x20, 0x00,0x00, 0x00,0x40, 0x24,0x40, -0x1C,0x40, 0x04,0x40, 0xFF,0xF0, 0x04,0x40, -/* @bang0 (12x12,V)@ [suki software]*/ -0x20,0x80, 0x24,0x80, 0x24,0x80, 0x24,0x90, -0xFF,0xE0, 0x24,0x80, 0x24,0x80, 0x20,0x80, -0x00,0x00, 0x7F,0xF0, 0x40,0x00, 0x44,0x10, -/* @bang1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x04,0x20, 0x54,0x40, 0x54,0x80, -0x55,0x70, 0xFE,0x40, 0x54,0x40, 0x54,0x40, -0x55,0xF0, 0x00,0x40, 0x7F,0xC0, 0x42,0x40, -/* @bang2 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x08,0xC0, 0x0B,0x00, 0xFF,0xF0, -0x0A,0x00, 0x19,0x40, 0x12,0x50, 0xFF,0xE0, -0x12,0x40, 0x12,0x40, 0x00,0x00, 0x7F,0xF0, -/* @bang3 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x11,0x80, 0x16,0x00, 0xFF,0xF0, -0x12,0x00, 0x11,0x00, 0x26,0x80, 0x24,0x80, -0x34,0x90, 0xAE,0xE0, 0x6D,0xA0, 0x34,0xA0, -/* @pang0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x48,0x80, 0x48,0x80, -0x7F,0xF0, 0x00,0x00, 0x26,0x80, 0x24,0x80, -0x34,0xF0, 0xAE,0xA0, 0x65,0xA0, 0x2C,0xA0, -/* @bang4 (12x12,V)@ [suki software]*/ -0x04,0x40, 0x0C,0xC0, 0x35,0x40, 0xC6,0x40, -0x08,0x00, 0x22,0x40, 0x22,0x40, 0xFF,0xF0, -0x22,0x40, 0x22,0x40, 0x00,0x40, 0x7F,0xF0, -/* @bang5 (12x12,V)@ [suki software]*/ -0x08,0xC0, 0x0B,0x00, 0xFF,0xF0, 0x0A,0x00, -0x09,0x40, 0x22,0x50, 0x2A,0x90, 0x2B,0x50, -0x2E,0x50, 0xFA,0xF0, 0x2B,0x50, 0x2A,0xD0, -/* @bang6 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x41,0x00, 0x47,0xF0, 0x7A,0x00, -0x42,0x00, 0x43,0xF0, 0x26,0x80, 0x34,0x80, -0x2C,0xF0, 0xA6,0xA0, 0x65,0xA0, 0x2C,0xA0, -/* @bang7 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x1F,0xC0, 0x11,0x00, 0xFF,0xF0, -0x11,0x00, 0x11,0x20, 0x1F,0xD0, 0x12,0x40, -0x12,0x40, 0x12,0x40, 0xFF,0xF0, 0x12,0x40, -/* @pang1 (12x12,V)@ [suki software]*/ -0x04,0x80, 0x08,0x80, 0x34,0x80, 0xE7,0xF0, -0x24,0x80, 0x20,0x80, 0x06,0x00, 0x24,0x80, -0x34,0x90, 0xAE,0xE0, 0x65,0xA0, 0x2C,0xA0, -/* @bang8 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x1F,0xF0, 0xE0,0x00, -0x41,0x00, 0x26,0x80, 0x34,0x80, 0x2C,0xF0, -0xA6,0xA0, 0x65,0xA0, 0x2C,0xA0, 0x34,0xA0, -/* @bang9 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x82,0x00, 0x73,0xF0, 0x20,0x00, -0x02,0x00, 0x24,0x80, 0x24,0x80, 0x34,0x90, -0xAE,0xE0, 0x65,0xA0, 0x24,0xA0, 0x2C,0xA0, -/* @bao0 (12x12,V)@ [suki software]*/ -0x20,0x00, 0x20,0x80, 0x23,0x00, 0x3C,0xF0, -0x24,0xA0, 0xF4,0xA0, 0x24,0xA0, 0x24,0xA0, -0x24,0xE0, 0xF4,0x00, 0x24,0x10, 0x24,0x00, -/* @bao1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x48,0x80, 0x48,0x80, -0x7F,0xF0, 0x04,0x00, 0x08,0x00, 0x33,0xF0, -0xD2,0x40, 0x52,0x40, 0x13,0xC0, 0x10,0x10, -/* @bao2 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x02,0x00, 0x04,0x00, 0x1B,0xF0, -0xF2,0x40, 0x52,0x40, 0x12,0x40, 0x12,0x40, -0x12,0x40, 0x13,0xC0, 0x10,0x10, 0x10,0x00, -/* @bao3 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x44,0x00, 0x4F,0xE0, 0x78,0x00, -0x51,0x20, 0x41,0x20, 0x5D,0x50, 0xD5,0x70, -0x55,0x80, 0x57,0xE0, 0x55,0x80, 0x5D,0x50, -/* @bao4 (12x12,V)@ [suki software]*/ -0x04,0x10, 0x44,0x10, 0x55,0x10, 0x54,0xA0, -0x54,0x40, 0x57,0xF0, 0x54,0x40, 0x7C,0xA0, -0x05,0x10, 0x00,0x00, 0x1F,0xF0, 0x00,0x00, -/* @bao5 (12x12,V)@ [suki software]*/ -0x42,0x10, 0x51,0x90, 0x4D,0x30, 0x49,0xC0, -0x40,0x00, 0xF8,0x00, 0x4B,0xF0, 0x4A,0xA0, -0x4A,0xA0, 0xFF,0xF0, 0x4A,0xA0, 0x6A,0xA0, -/* @bao6 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x30,0x20, 0x20,0x40, 0xAA,0xB0, -0xAB,0xA0, 0xAA,0xA0, 0xA0,0xA0, 0xFC,0xA0, -0xA0,0xB0, 0xAA,0x80, 0xAA,0x90, 0xAA,0x80, -/* @bao7 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x1F,0xF0, 0xE8,0x00, -0x41,0x00, 0x01,0x00, 0x7D,0x10, 0x45,0x60, -0x45,0x80, 0x47,0xF0, 0x45,0xC0, 0x45,0x30, -/* @bao8 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x08,0x00, 0x1F,0xD0, 0xE8,0x10, -0x44,0x10, 0x04,0x50, 0x74,0x90, 0x55,0x30, -0x56,0x10, 0x5F,0xD0, 0x56,0x10, 0x55,0x10, -/* @bao9 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x06,0x00, 0x38,0x00, 0xD3,0xF0, -0x14,0x00, 0x18,0x00, 0x14,0x00, 0x0B,0xF0, -0xF2,0x40, 0x12,0x40, 0x13,0xC0, 0x10,0x00, -/* @bao10 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x30,0x00, 0x24,0x00, 0x24,0x40, -0x24,0x40, 0x24,0x40, 0xA4,0x40, 0x67,0xF0, -0x24,0x40, 0x24,0x60, 0x24,0x50, 0x24,0x40, -/* @bao11 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x08,0x40, 0x08,0x80, 0xFF,0xF0, -0x09,0x00, 0x0A,0x00, 0x0F,0xF0, 0xF2,0x40, -0x12,0x40, 0x12,0x40, 0x13,0xC0, 0x10,0x20, -/* @bao12 (12x12,V)@ [suki software]*/ -0x10,0x80, 0x10,0x80, 0x11,0x00, 0xFF,0xF0, -0x12,0x00, 0x14,0x00, 0x00,0x00, 0xFF,0xF0, -0x83,0x00, 0x82,0xC0, 0x82,0x20, 0x92,0x30, -/* @bao13 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x02,0x80, 0x02,0x90, 0xFA,0x90, -0xAA,0xA0, 0xAF,0xD0, 0xAA,0x80, 0xAA,0xB0, -0xAA,0x80, 0xAF,0xD0, 0xAA,0xA0, 0xFA,0x90, -/* @bao14 (12x12,V)@ [suki software]*/ -0x09,0x20, 0x09,0x20, 0x12,0x40, 0x2C,0x90, -0xC7,0x20, 0x49,0x40, 0x10,0xF0, 0x12,0x00, -0x0C,0x00, 0xF2,0x00, 0x51,0xC0, 0x10,0x80, -/* @bao15 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x1F,0xE0, 0xE9,0x20, 0x4F,0xE0, -0x59,0x20, 0x6F,0xE0, 0x02,0x00, 0x04,0x00, -0x1F,0xF0, 0xF4,0x80, 0x14,0x80, 0x17,0xA0, -/* @bao16 (12x12,V)@ [suki software]*/ -0x0F,0x00, 0x00,0x10, 0xFF,0xE0, 0x08,0x40, -0x30,0xB0, 0x02,0xA0, 0xFA,0xC0, 0xAA,0xA0, -0xAF,0x90, 0xAA,0xF0, 0xAA,0x90, 0xAF,0xA0, -/* @bei0 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x11,0x80, 0x16,0x00, 0xFF,0xF0, -0x12,0x00, 0x51,0x20, 0x40,0x40, 0x40,0x80, -0x43,0x00, 0x4F,0xF0, 0x70,0x00, 0x41,0x00, -/* @bei1 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x41,0x00, 0x47,0xF0, 0x7A,0x00, -0x42,0x00, 0x43,0xF0, 0x40,0x10, 0x3F,0xB0, -0x24,0xD0, 0x65,0x90, 0xBE,0xF0, 0x24,0x90, -/* @bei2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x22,0x00, 0x2A,0x10, 0x2A,0x00, -0x2A,0x30, 0xFF,0x80, 0x00,0x00, 0x00,0x40, -0x00,0x30, 0xFF,0x80, 0x2A,0x00, 0x2A,0x00, -/* @bei3 (12x12,V)@ [suki software]*/ -0x00,0x20, 0x00,0x20, 0x3F,0xA0, 0x29,0x20, -0x29,0x60, 0x29,0x60, 0x69,0xA0, 0xBF,0x20, -0x29,0x70, 0x29,0x20, 0x29,0x20, 0x29,0x20, -/* @bei4 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x04,0x00, 0x04,0x10, 0x04,0x10, -0x04,0x20, 0xFF,0xF0, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0xFF,0xF0, 0x02,0x00, 0x04,0x00, -/* @bei5 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x44,0x80, 0x54,0x80, 0x54,0x80, -0x54,0xA0, 0xFE,0xE0, 0x01,0xA0, 0x02,0xA0, -0x00,0xF0, 0xFE,0xA0, 0x54,0xA0, 0x54,0xA0, -/* @bei6 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x26,0x00, 0x24,0x00, 0x29,0xF0, -0x29,0x40, 0xFD,0x40, 0x01,0x40, 0x01,0x40, -0xF9,0x40, 0x25,0x40, 0x25,0x40, 0x45,0xF0, -/* @bei7 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x7F,0xE0, -0x40,0x00, 0x40,0x00, 0x40,0x10, 0x4F,0xE0, -0x40,0x10, 0x40,0x00, 0x40,0x00, 0x7F,0xE0, -/* @bei8 (12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0xF7,0xF0, 0x24,0x80, -0x24,0x80, 0x24,0x90, 0x00,0x00, 0x7F,0xE0, -0x40,0x00, 0x40,0x10, 0x47,0xE0, 0x40,0x10, -/* @bei9 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x04,0x00, 0x08,0x00, 0x3F,0xF0, -0xC0,0x00, 0x21,0x00, 0x31,0x70, 0x2F,0x40, -0xA5,0x40, 0x61,0x40, 0x23,0x40, 0x3D,0x40, -/* @bei10 (12x12,V)@ [suki software]*/ -0x02,0x20, 0x44,0x40, 0x28,0x80, 0x19,0x00, -0x27,0xF0, 0xC0,0x00, 0x00,0x00, 0x7F,0xE0, -0x40,0x00, 0x40,0x30, 0x5F,0xC0, 0x40,0x10, -/* @bei11 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x04,0x40, 0x08,0x80, 0x10,0xF0, -0xE1,0x50, 0x51,0x50, 0x4A,0x50, 0x44,0x70, -0x44,0x50, 0x4A,0x50, 0x71,0x50, 0x41,0xF0, -/* @bei12 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x02,0x00, 0x02,0x00, 0x12,0x00, -0x23,0xE0, 0xE6,0xA0, 0x56,0xA0, 0x4B,0xF0, -0x4A,0xA0, 0x56,0xA0, 0x66,0xA0, 0x43,0xE0, -/* @bei13 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x06,0x00, 0x00,0x10, 0xFF,0xE0, -0x04,0x20, 0x09,0x10, 0x21,0x00, 0x29,0x70, -0x25,0x40, 0xA3,0x40, 0x61,0x40, 0x23,0x40, -/* @bei14 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x80, 0x91,0x00, 0x73,0xF0, -0x1C,0x80, 0x11,0x40, 0x1F,0xF0, 0x10,0x00, -0x13,0x80, 0x12,0x60, 0xFE,0x10, 0x12,0x60, -/* @ben0 (12x12,V)@ [suki software]*/ -0x01,0x20, 0x21,0x20, 0x22,0x20, 0x24,0x20, -0x2A,0xF0, 0x32,0x20, 0xE2,0x20, 0x2F,0xA0, -0x22,0x20, 0x32,0x20, 0x2A,0xF0, 0x24,0x20, -/* @ben1 (12x12,V)@ [suki software]*/ -0x20,0x00, 0x24,0x00, 0x24,0x10, 0x24,0x20, -0x24,0x50, 0xF5,0x90, 0x26,0x10, 0x2F,0xF0, -0x26,0x10, 0x25,0x10, 0xF4,0x90, 0x24,0x50, -/* @ben2 (12x12,V)@ [suki software]*/ -0x10,0x10, 0x10,0x10, 0x10,0x20, 0x10,0x40, -0x10,0xA0, 0x13,0x20, 0x1C,0x20, 0xFF,0xF0, -0x18,0x20, 0x16,0x20, 0x11,0x20, 0x10,0xC0, -/* @ben3 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x32,0x00, 0xC2,0x10, 0x62,0x20, -0x5A,0x50, 0x43,0x90, 0x42,0x10, 0x1F,0xF0, -0x22,0x10, 0xC3,0x10, 0x42,0xD0, 0x62,0x20, -/* @beng0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x6F,0xF0, 0x2A,0x40, -0x2A,0x40, 0x2A,0x40, 0x2F,0xF0, 0xE0,0x00, -0x20,0x00, 0x2F,0xF0, 0x29,0x20, 0x29,0x20, -/* @beng1 (12x12,V)@ [suki software]*/ -0x04,0x40, 0x0C,0xC0, 0x35,0x50, 0xC6,0x50, -0x0C,0x40, 0x00,0x30, 0x7F,0xC0, 0x48,0x80, -0x7F,0xF0, 0x00,0x00, 0x7F,0xF0, 0x48,0x80, -/* @beng2 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x48,0x00, 0x4B,0xF0, 0x4A,0xA0, -0x52,0xA0, 0x52,0xA0, 0x52,0xA0, 0x7F,0xF0, -0x62,0xA0, 0x52,0xA0, 0x52,0xA0, 0x4A,0xA0, -/* @beng3 (12x12,V)@ [suki software]*/ -0x84,0x00, 0x84,0x80, 0x88,0x80, 0x88,0x80, -0x90,0xB0, 0xBE,0xC0, 0xD2,0x00, 0x93,0xF0, -0x92,0x40, 0x92,0x20, 0x92,0x50, 0x9E,0x40, -/* @beng4 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7C,0xF0, 0x44,0x00, 0x47,0xF0, -0x7C,0x80, 0x00,0x80, 0x77,0xF0, 0x15,0x20, -0x17,0xF0, 0x10,0x00, 0xF0,0x00, 0x17,0xF0, -/* @peng0 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x82,0x00, 0x72,0x00, 0x23,0xF0, -0x01,0x00, 0x11,0x00, 0x91,0x30, 0x7F,0xC0, -0x51,0x00, 0x11,0x00, 0x11,0x00, 0x3F,0xF0, -/* @bi0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x02,0x00, 0x42,0x00, 0x33,0xF0, -0x00,0x00, 0x41,0xF0, 0x5D,0x50, 0x55,0x50, -0x55,0x50, 0x55,0xF0, 0x55,0x50, 0x55,0x50, -/* @bi1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x03,0xE0, 0x7A,0xA0, -0x6A,0xA0, 0x5A,0xA0, 0xCA,0xA0, 0x4B,0xE0, -0x6A,0xA0, 0x5A,0xA0, 0x4A,0xA0, 0x7A,0xA0, -/* @bi2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0xFF,0xF0, 0x04,0x00, -0x04,0x00, 0x04,0x10, 0x04,0x00, 0x00,0x00, -0xFF,0xF0, 0x02,0x00, 0x02,0x00, 0x02,0x00, -/* @bi3 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x05,0xF0, 0xF5,0x00, 0x95,0x70, -0x9F,0x50, 0x95,0x50, 0x95,0x70, 0xF5,0x00, -0x05,0xF0, 0x00,0x00, 0x7F,0xF0, 0x40,0x20, -/* @bi4 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x12,0x40, 0xE2,0x40, 0x32,0x40, -0x2A,0x40, 0x22,0x40, 0x2B,0xF0, 0x14,0x90, -0x24,0x90, 0xE4,0x90, 0x34,0x90, 0x2C,0x90, -/* @bi5 (12x12,V)@ [suki software]*/ -0x08,0x80, 0x11,0x00, 0x23,0xF0, 0xCE,0x00, -0x44,0x00, 0x00,0x00, 0x1F,0xF0, 0x10,0x00, -0x13,0x80, 0x12,0x60, 0xFE,0x10, 0x12,0x60, -/* @bi6 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x42,0x80, 0x52,0x80, 0x52,0x90, -0x7E,0xB0, 0x52,0xD0, 0x42,0x90, 0x00,0x90, -0x7E,0x90, 0x52,0x90, 0xD2,0x90, 0x52,0x90, -/* @bi7 (12x12,V)@ [suki software]*/ -0x40,0x00, 0x40,0x00, 0x4F,0xF0, 0x48,0x90, -0x58,0x90, 0xED,0x90, 0x4A,0x90, 0x4A,0x80, -0x4A,0xF0, 0xED,0x90, 0x48,0x90, 0x48,0xA0, -/* @bi8 (12x12,V)@ [suki software]*/ -0x40,0x00, 0x4B,0xF0, 0x46,0x30, 0x42,0xC0, -0x5F,0xF0, 0xE2,0x80, 0x46,0x60, 0x4B,0xF0, -0x40,0x80, 0xF3,0x80, 0x5E,0x60, 0x4A,0x10, -/* @bi9 (12x12,V)@ [suki software]*/ -0x00,0x20, 0x00,0x20, 0xFF,0x20, 0x11,0x20, -0x12,0x20, 0x14,0x20, 0x10,0x20, 0x01,0xF0, -0xFE,0x20, 0x11,0x20, 0x11,0x20, 0x11,0x20, -/* @bi10 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x01,0x10, 0xFD,0x20, 0x25,0xF0, -0x25,0x40, 0x29,0x50, 0x29,0x60, 0x01,0x40, -0xF9,0x00, 0x25,0xF0, 0x25,0x20, 0x45,0x20, -/* @bi11 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0xFF,0x30, 0x21,0x00, -0x22,0x70, 0x24,0x00, 0x21,0x00, 0x00,0xC0, -0xFC,0x10, 0x12,0x20, 0x12,0xC0, 0x12,0x00, -/* @bi12 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x40,0x00, 0x4F,0xF0, 0x48,0x00, -0x48,0x00, 0x48,0x00, 0x48,0x00, 0x7F,0xF0, -0x88,0x00, 0x88,0x00, 0x88,0x10, 0x88,0x00, -/* @bi13 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x3F,0xF0, 0x20,0x00, -0x20,0x00, 0x2F,0xF0, 0x21,0x00, 0xA1,0x00, -0x60,0x00, 0x2F,0xF0, 0x20,0x80, 0x20,0x80, -/* @bi14 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x40, 0x00,0x80, 0x3F,0xF0, -0x20,0x20, 0x2F,0xA0, 0x2A,0xA0, 0x2A,0xB0, -0xAA,0xA0, 0x6F,0xA0, 0x2A,0xA0, 0x2A,0xB0, -/* @bi15 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x9F,0xF0, 0x40,0x00, -0x62,0x20, 0x02,0x20, 0x42,0x40, 0x42,0x80, -0x5F,0xF0, 0x42,0x00, 0x42,0x00, 0x42,0x00, -/* @bi16 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x27,0xF0, 0x14,0x40, 0x0D,0x80, -0x7F,0xF0, 0x0C,0xC0, 0x14,0x40, 0x37,0xF0, -0x02,0x00, 0x0F,0x00, 0x78,0xC0, 0x28,0x30, -/* @bi17 (12x12,V)@ [suki software]*/ -0x00,0x20, 0x5F,0xA0, 0x32,0x20, 0x14,0x20, -0xFF,0x70, 0x14,0x20, 0x32,0xA0, 0x5F,0xA0, -0x08,0x20, 0x31,0x20, 0xEA,0x70, 0x24,0x20, -/* @bi18 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x60, 0x03,0x80, 0x00,0x00, -0x0F,0xF0, 0x88,0x10, 0x40,0x20, 0x30,0x40, -0x20,0x80, 0x03,0x00, 0x0C,0x00, 0x72,0x00, -/* @pi0 (12x12,V)@ [suki software]*/ -0x00,0x30, 0x7F,0xC0, 0x44,0xF0, 0x44,0x80, -0x44,0x80, 0x7C,0xF0, 0x00,0x00, 0x21,0x20, -0x29,0x20, 0xA5,0x20, 0x61,0xF0, 0x21,0x20, -/* @bi19 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x7F,0x80, 0x4B,0xD0, 0x4A,0x90, -0x4A,0x90, 0x7B,0xD0, 0x04,0x10, 0x25,0x30, -0x35,0x10, 0xAD,0x10, 0x67,0xD0, 0x2D,0x10, -/* @bi20 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x08,0x00, 0xFE,0x00, 0xAA,0xF0, -0xAA,0xA0, 0xEE,0xA0, 0x00,0xA0, 0x54,0xA0, -0x74,0xA0, 0x54,0xA0, 0xDF,0xA0, 0x54,0xF0, -/* @bi21 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x42,0x00, 0x33,0xF0, 0x00,0x20, -0x7F,0xC0, 0x49,0xF0, 0x49,0x10, 0x79,0xF0, -0x02,0x00, 0x32,0x40, 0xAA,0x40, 0x67,0xF0, -/* @bi22 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x44,0x40, 0x5A,0x20, -0x61,0xC0, 0x00,0x00, 0xFF,0x20, 0x12,0x20, -0x14,0x20, 0x00,0xF0, 0xFE,0x20, 0x11,0x20, -/* @bian0 (12x12,V)@ [suki software]*/ -0x20,0x10, 0xFB,0x90, 0x2A,0x90, 0x2F,0xF0, -0xFA,0x90, 0x23,0x90, 0x24,0x00, 0x1F,0xF0, -0xE0,0x00, 0x4F,0x90, 0x4A,0x80, 0x7F,0xF0, -/* @bian1 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x82,0x00, 0x72,0x00, 0x23,0xF0, -0x00,0x00, 0x08,0x10, 0x08,0x20, 0x08,0xC0, -0xFF,0x00, 0x08,0x10, 0x08,0x10, 0x08,0x10, -/* @bian2 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x0C,0x80, 0x35,0x90, 0xC6,0x90, -0x4C,0x80, 0x00,0x30, 0x3F,0xC0, 0x25,0xF0, -0xA5,0x20, 0x65,0xF0, 0x25,0x20, 0x25,0xF0, -/* @bian3 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xE0, 0x40,0x10, 0x5F,0xE0, -0x40,0x10, 0x7F,0xE0, 0x00,0x00, 0x22,0x00, -0x22,0x10, 0x32,0x20, 0x4E,0x40, 0x4A,0x80, -/* @bian4 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x70, 0x3F,0x80, -0x29,0xF0, 0x29,0x20, 0x29,0x20, 0xA9,0xF0, -0x69,0x20, 0x29,0x20, 0x29,0xF0, 0x29,0x20, -/* @bian5 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x0F,0xF0, 0x38,0x00, -0xE0,0x00, 0x5F,0xC0, 0x54,0xA0, 0x54,0x90, -0x54,0x90, 0x7F,0xE0, 0x54,0x80, 0x54,0x80, -/* @bian6 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x21,0x00, 0x22,0x00, 0x2C,0x80, -0x24,0x80, 0x20,0xE0, 0xBF,0x90, 0x60,0x80, -0x60,0x80, 0x3F,0x90, 0x20,0xE0, 0x28,0x80, -/* @bian7 (12x12,V)@ [suki software]*/ -0x10,0x00, 0x10,0x00, 0x10,0x00, 0x10,0x00, -0x10,0x00, 0x10,0x00, 0x90,0x00, 0x7F,0xF0, -0x50,0x00, 0x11,0x00, 0x10,0x80, 0x10,0x70, -/* @bian8 (12x12,V)@ [suki software]*/ -0x22,0x00, 0x2A,0x40, 0xA6,0x50, 0x63,0xE0, -0x26,0x40, 0x2A,0x40, 0x2F,0x00, 0x00,0x30, -0xFF,0xC0, 0x29,0x20, 0x25,0x20, 0xA1,0xF0, -/* @bian9 (12x12,V)@ [suki software]*/ -0x22,0x00, 0x32,0x40, 0xAE,0x40, 0x63,0xF0, -0x2E,0x40, 0x22,0x40, 0x88,0x00, 0x6F,0xF0, -0x40,0x20, 0x29,0x00, 0x27,0x20, 0xA5,0x20, -/* @bian10 (12x12,V)@ [suki software]*/ -0x02,0x40, 0x2A,0x40, 0xA6,0x40, 0x63,0xF0, -0x3E,0x40, 0x22,0xC0, 0x0D,0x80, 0x36,0x90, -0x0C,0x90, 0x20,0x10, 0x2A,0x40, 0xA6,0x40, -/* @bian11 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x42,0x00, 0x33,0xF0, 0x00,0x10, -0x00,0x60, 0x3F,0x80, 0x2B,0xF0, 0x2A,0x80, -0xAB,0xF0, 0x6A,0x80, 0x2B,0xF0, 0x2A,0x80, -/* @biao0 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x08,0xC0, 0x0B,0x00, 0xFF,0xF0, -0x0A,0x00, 0x09,0x90, 0x04,0x20, 0x44,0xC0, -0x44,0x00, 0x44,0x00, 0x47,0xF0, 0x44,0x00, -/* @biao1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x1F,0xF0, 0x12,0x00, 0x12,0x00, -0xFF,0x30, 0x54,0xA0, 0x54,0xA0, 0x51,0xB0, -0x58,0x00, 0x04,0x40, 0x08,0x80, 0x11,0x10, -/* @biao2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x48,0x80, 0x48,0x80, -0x7F,0xF0, 0x00,0x00, 0x5C,0x40, 0x55,0x50, -0x7D,0x40, 0x55,0x40, 0x55,0x70, 0x7D,0x40, -/* @biao3 (12x12,V)@ [suki software]*/ -0x00,0x10, 0x02,0x10, 0x22,0x20, 0x2A,0x20, -0x2A,0x70, 0x2A,0xC0, 0x2B,0x80, 0xFF,0x00, -0x2A,0xC0, 0x2A,0x20, 0x2A,0x10, 0x2A,0x20, -/* @bie0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0xBF,0x20, 0x64,0x40, 0x28,0x70, -0xFE,0xD0, 0x29,0x50, 0x65,0x50, 0xBF,0x70, -0x09,0xD0, 0x19,0x50, 0xE6,0x50, 0x24,0x70, -/* @bie1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x5F,0xC0, 0x31,0x10, 0x16,0x00, -0xFF,0xD0, 0x14,0x00, 0x32,0x40, 0x5F,0xD0, -0x04,0x00, 0x18,0x40, 0xF4,0x80, 0x13,0x00, -/* @bie2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x80, 0x7E,0x80, 0x44,0xB0, -0x47,0xC0, 0x44,0x80, 0x44,0x80, 0x7E,0xF0, -0x00,0x00, 0x00,0x00, 0x3F,0xE0, 0x00,0x00, -/* @bie3 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x08,0x80, 0x7F,0xF0, 0x40,0x10, -0x40,0x10, 0x5F,0xA0, 0x51,0x30, 0xD5,0x40, -0x73,0x80, 0x59,0x50, 0x55,0x50, 0x51,0x20, -/* @bin0 (12x12,V)@ [suki software]*/ -0x00,0x20, 0x08,0xC0, 0x0B,0x00, 0xFF,0xF0, -0x09,0x00, 0x00,0xE0, 0x0B,0x00, 0xFF,0xF0, -0x0A,0x00, 0x09,0xE0, 0x00,0x40, 0x08,0x80, -/* @bin1 (12x12,V)@ [suki software]*/ -0x10,0x00, 0x12,0x00, 0x51,0x90, 0x30,0x60, -0x17,0x90, 0x18,0x00, 0x2B,0xF0, 0x28,0x00, -0x2F,0xF0, 0x28,0x80, 0x08,0x80, 0xFF,0xE0, -/* @bin2 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x84,0xF0, 0x63,0x00, 0x04,0x40, -0x3D,0x80, 0x04,0x00, 0xFF,0xC0, 0x14,0x30, -0x14,0xC0, 0x4F,0xE0, 0x58,0x00, 0x6B,0xF0, -/* @bin3 (12x12,V)@ [suki software]*/ -0x10,0x20, 0x88,0x30, 0x60,0xC0, 0x03,0x00, -0x00,0x00, 0x30,0x20, 0x20,0x20, 0x27,0xE0, -0x25,0x20, 0xA5,0x20, 0x69,0x20, 0x29,0xE0, -/* @bin4 (12x12,V)@ [suki software]*/ -0x00,0x20, 0x18,0x20, 0x20,0x20, 0x20,0x20, -0x2F,0xE0, 0x29,0x30, 0x29,0x20, 0xA9,0x20, -0x69,0x20, 0x29,0xF0, 0x29,0x20, 0x21,0x20, -/* @bin5 (12x12,V)@ [suki software]*/ -0x10,0x80, 0x10,0x80, 0x11,0x00, 0xFF,0xF0, -0x12,0x00, 0x14,0x20, 0x38,0x20, 0x27,0xF0, -0x25,0x20, 0xA5,0x20, 0x69,0x20, 0x29,0xF0, -/* @bing0 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x00,0x40, 0x00,0x40, 0x00,0x40, -0x7F,0xC0, 0x48,0x70, 0x48,0x50, 0x48,0x40, -0x48,0x40, 0x8F,0xC0, 0x88,0x60, 0x88,0x50, -/* @bing1 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x40,0x70, 0x33,0x80, 0x00,0x00, -0x08,0x30, 0x08,0xC0, 0x0F,0x00, 0x08,0x00, -0x00,0x00, 0xFF,0xF0, 0x03,0x00, 0x04,0xC0, -/* @bing2 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x11,0x80, 0x16,0x00, 0xFF,0xF0, -0x12,0x00, 0x11,0x00, 0x47,0xF0, 0x44,0x10, -0x44,0x20, 0x44,0x40, 0x7F,0x80, 0x44,0x40, -/* @bing3 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x40,0x00, 0x4F,0xF0, 0x48,0x00, -0x48,0x10, 0x48,0x20, 0x48,0xC0, 0x7F,0x00, -0x48,0x80, 0x48,0x40, 0x48,0x30, 0x48,0x20, -/* @bing4 (12x12,V)@ [suki software]*/ -0x11,0x00, 0x11,0x00, 0x55,0x40, 0x55,0x40, -0x55,0x40, 0x55,0x50, 0x55,0x60, 0x7F,0xF0, -0x55,0x60, 0x55,0x50, 0x55,0x40, 0xD5,0x40, -/* @bing5 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x0C,0x00, 0xF3,0xF0, 0x10,0x00, -0x14,0x00, 0x18,0x10, 0x00,0x80, 0x90,0x80, -0x5F,0xF0, 0x30,0x80, 0x10,0x80, 0x10,0x80, -/* @bing6 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x0E,0x00, 0x00,0x30, 0xFF,0xC0, -0x08,0x40, 0x30,0x20, 0x47,0xF0, 0x44,0x10, -0x44,0x60, 0x47,0x80, 0x7C,0x80, 0x44,0x60, -/* @bing7 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x40, 0x00,0x90, 0x3F,0xE0, -0x28,0x00, 0x29,0xF0, 0x29,0x00, 0xA9,0x10, -0x69,0x60, 0x2F,0x80, 0x29,0x60, 0x29,0x10, -/* @bing8 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x08,0x80, 0x08,0x80, 0x88,0x80, -0x48,0x80, 0x3F,0xF0, 0x28,0x80, 0x08,0x80, -0x08,0x80, 0x08,0x80, 0x1F,0xF0, 0xE8,0x80, -/* @bo0 (12x12,V)@ [suki software]*/ -0x20,0x10, 0x22,0x10, 0x22,0x10, 0x3F,0xF0, -0x22,0x20, 0x22,0x10, 0x00,0xE0, 0x1F,0x00, -0x11,0xC0, 0x11,0x20, 0xFF,0x10, 0x11,0x20, -/* @bo1 (12x12,V)@ [suki software]*/ -0x20,0x10, 0x22,0x10, 0x29,0x90, 0x25,0x60, -0x20,0x00, 0xF7,0xF0, 0x24,0x80, 0x24,0xE0, -0x24,0x90, 0xFF,0x80, 0x24,0x90, 0x24,0xE0, -/* @bo2 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x80, 0xFF,0xF0, 0x11,0x00, -0x12,0x80, 0x48,0x80, 0x69,0xF0, 0x5A,0x90, -0x4C,0x90, 0x7F,0xF0, 0x8C,0x90, 0x9A,0x90, -/* @bo3 (12x12,V)@ [suki software]*/ -0x10,0x80, 0x10,0x80, 0xFF,0xF0, 0x11,0x00, -0x12,0x00, 0x00,0x00, 0x78,0x10, 0x08,0x60, -0x0B,0x80, 0xFD,0x60, 0x09,0x10, 0x09,0x60, -/* @bo4 (12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0xF7,0xF0, 0x24,0x80, -0x24,0x80, 0x24,0x80, 0x28,0x10, 0x08,0x60, -0x09,0xA0, 0x0A,0x20, 0xFF,0xF0, 0x0B,0x20, -/* @bo5 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x20, 0x80,0xF0, 0x67,0x00, -0x00,0x00, 0x1F,0xF0, 0x11,0x00, 0x11,0x80, -0x11,0x60, 0xFF,0x10, 0x11,0x10, 0x11,0x60, -/* @bo6 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x04,0x00, 0xFF,0xF0, 0x04,0x00, -0x04,0x20, 0x20,0x20, 0x2F,0xF0, 0x2A,0xA0, -0x2A,0xA0, 0xFF,0xE0, 0x2A,0xA0, 0xAA,0xF0, -/* @bo7 (12x12,V)@ [suki software]*/ -0x02,0x10, 0x2D,0x10, 0x29,0x10, 0x29,0x20, -0xF9,0x70, 0x29,0xA0, 0x2B,0x40, 0x2C,0x40, -0x00,0x00, 0x08,0x30, 0xFF,0xC0, 0x08,0x00, -/* @bo8 (12x12,V)@ [suki software]*/ -0x10,0x80, 0x10,0x80, 0x11,0x00, 0xFF,0xF0, -0x12,0x00, 0x44,0x20, 0x5F,0xA0, 0x55,0x30, -0x55,0x20, 0xFF,0xA0, 0x55,0x20, 0x55,0x20, -/* @bo9 (12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0x34,0x80, 0xD7,0xF0, -0x14,0x80, 0x14,0x80, 0x10,0x90, 0x00,0x00, -0x1F,0xF0, 0x11,0x00, 0x31,0x00, 0xD1,0x00, -/* @bo10 (12x12,V)@ [suki software]*/ -0x12,0x00, 0x21,0x80, 0xC8,0x10, 0x46,0x60, -0x60,0x80, 0x50,0x00, 0x43,0xF0, 0x42,0x20, -0x16,0x20, 0xEA,0x20, 0x42,0x20, 0x62,0x20, -/* @bo11 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x01,0x00, 0x06,0x00, 0x1F,0xF0, -0xF0,0x00, 0x40,0x00, 0x1F,0xF0, 0x10,0x80, -0x30,0x80, 0xD0,0x80, 0x50,0x80, 0x10,0x80, -/* @bo12 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x70, 0x3F,0x40, -0x2A,0x40, 0x2A,0x40, 0x6A,0x40, 0xAB,0xF0, -0x2A,0x40, 0x2A,0x40, 0x2A,0x40, 0x2A,0x40, -/* @bo13 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x02,0x00, 0x3F,0xF0, 0x6A,0x80, -0xA6,0x60, 0x22,0x40, 0x3F,0xF0, 0x00,0x00, -0x1F,0xF0, 0x31,0x00, 0xD1,0x00, 0x11,0x00, -/* @bo14 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x48,0x80, 0x48,0x80, -0x7F,0xF0, 0x02,0x00, 0x2C,0x20, 0x29,0x20, -0x29,0x20, 0x29,0x20, 0xF9,0x70, 0x29,0xA0, -/* @bo15 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x44,0x40, 0x44,0x40, -0x7F,0xF0, 0x00,0x00, 0x20,0x10, 0x2F,0xD0, -0x2A,0x90, 0x2A,0x90, 0xFF,0xD0, 0x2A,0xB0, -/* @bo16 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x86,0x70, 0x61,0x80, 0x06,0x10, -0x25,0x10, 0x25,0x10, 0xFD,0x70, 0x25,0xA0, -0x25,0x20, 0x06,0x00, 0x08,0x30, 0xFF,0xC0, -/* @bo17 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x8C,0x40, 0x60,0xF0, 0x03,0x00, -0x0C,0x00, 0x00,0x00, 0x1F,0xF0, 0x10,0x80, -0x30,0x80, 0xD0,0x80, 0x10,0x80, 0x10,0x80, -/* @bo18 (12x12,V)@ [suki software]*/ -0x40,0x10, 0x5F,0x10, 0x41,0x20, 0x41,0x20, -0x7F,0x00, 0x41,0xF0, 0x04,0x00, 0x44,0x80, -0x28,0x40, 0x10,0x20, 0x30,0x10, 0x48,0x60, -/* @bu0 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x08,0x40, 0x08,0x80, 0xFF,0xF0, -0x09,0x00, 0x0A,0x00, 0x17,0xF0, 0x15,0x20, -0x15,0x20, 0x15,0x20, 0xFF,0xF0, 0x15,0x20, -/* @bu1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0xFF,0xF0, 0x04,0x00, -0x02,0x00, 0x02,0x00, 0x01,0x00, 0x01,0x80, -/* @bu2 (12x12,V)@ [suki software]*/ -0x3F,0xE0, 0x20,0x40, 0x20,0x40, 0x3F,0xE0, -0x20,0x00, 0x2F,0xF0, 0x29,0x20, 0x29,0x20, -0x29,0x20, 0xFF,0xF0, 0x29,0x20, 0xA9,0x20, -/* @bu3 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x80, 0x91,0x00, 0x73,0xF0, -0x54,0x80, 0x19,0x40, 0x12,0x20, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0xFF,0xF0, 0x04,0x00, -/* @bu4 (12x12,V)@ [suki software]*/ -0x08,0x10, 0x08,0x10, 0xFF,0xF0, 0x08,0x20, -0x08,0x20, 0x00,0x00, 0x3F,0xE0, 0x25,0x20, -0x65,0x20, 0xA5,0x30, 0x25,0x20, 0x25,0x20, -/* @bu5 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x40,0x10, 0x40,0x20, 0x40,0x40, -0x40,0x80, 0x41,0x00, 0x42,0x00, 0x7F,0xF0, -0x60,0x00, 0x42,0x00, 0x43,0x00, 0x41,0x80, -/* @bu6 (12x12,V)@ [suki software]*/ -0x10,0x20, 0x10,0x40, 0x10,0x80, 0x11,0x00, -0x13,0xF0, 0x1D,0x00, 0xF1,0x00, 0x51,0x00, -0x1F,0xF0, 0x11,0x00, 0x11,0x00, 0x11,0x00, -/* @bu7 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x04,0x20, 0x04,0x20, 0x04,0x40, -0x3D,0x80, 0x04,0x00, 0x04,0x00, 0x04,0x00, -0xFF,0xE0, 0x24,0x00, 0x24,0x10, 0x24,0x20, -/* @bu8 (12x12,V)@ [suki software]*/ -0x12,0x00, 0x21,0x80, 0xD0,0x30, 0x4C,0xC0, -0x61,0x10, 0x58,0x10, 0x4B,0xF0, 0x5A,0x50, -0x2A,0x50, 0xCF,0xF0, 0x5A,0x90, 0x6A,0x90, -/* @bu9 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x22,0x00, 0x32,0x70, 0xAE,0x40, -0x62,0x40, 0x26,0x40, 0x3A,0x40, 0x22,0x70, -0x02,0x00, 0x7F,0xF0, 0x40,0x00, 0x42,0x10, -/* @bu10 (12x12,V)@ [suki software]*/ -0x0E,0x00, 0x00,0x00, 0xFF,0xF0, 0x10,0x20, -0x0C,0x40, 0x20,0x80, 0x23,0xF0, 0x26,0x00, -0x3A,0x00, 0xE2,0x00, 0x2F,0xF0, 0x22,0x00, -/* @ca0 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x08,0x80, 0xFF,0xF0, 0x0A,0x00, -0x09,0x20, 0x32,0x40, 0x25,0xA0, 0x3B,0x20, -0x2A,0xA0, 0xAC,0xB0, 0x64,0xA0, 0x2A,0xA0, -/* @cai0 (12x12,V)@ [suki software]*/ -0x04,0x20, 0x88,0x40, 0x50,0x80, 0x31,0x00, -0xCF,0xF0, 0x04,0x00, 0x55,0xF0, 0x55,0x50, -0x55,0x50, 0xFD,0x50, 0x55,0x50, 0x55,0x50, -/* @cai1 (12x12,V)@ [suki software]*/ -0x08,0x10, 0x09,0x10, 0x29,0x20, 0x2D,0x70, -0xFB,0x80, 0x29,0x40, 0x29,0x30, 0x29,0x40, -0x08,0x00, 0xFF,0x00, 0x08,0xF0, 0x48,0x60, -/* @cai2 (12x12,V)@ [suki software]*/ -0x08,0x10, 0x08,0x60, 0x0B,0x80, 0x7F,0xF0, -0x0A,0x00, 0x09,0x80, 0x00,0x00, 0x08,0x10, -0x08,0x20, 0x08,0xC0, 0x0B,0x00, 0x7F,0xF0, -/* @cai3 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x08,0x00, 0x08,0x00, 0x08,0x10, -0x08,0x20, 0x08,0x40, 0x08,0x80, 0x0B,0x00, -0x0C,0x00, 0xFF,0xF0, 0x08,0x00, 0x08,0x00, -/* @cai4 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xC0, 0x40,0x00, 0x40,0x10, -0x5F,0xE0, 0x40,0x10, 0x7F,0xC0, 0x00,0x00, -0x08,0x10, 0x08,0x60, 0x09,0x80, 0x0E,0x00, -/* @cai5 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x44,0x80, 0x44,0x80, -0x7F,0xF0, 0x41,0x00, 0x51,0x00, 0x4D,0x30, -0x61,0xC0, 0x57,0xF0, 0x81,0x80, 0x85,0x60, -/* @cai6 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7C,0xF0, 0x44,0x00, 0x47,0xF0, -0x44,0x90, 0x7C,0x90, 0x51,0x00, 0x4D,0x30, -0x61,0xC0, 0x5B,0xF0, 0x4D,0xC0, 0x81,0x20, -/* @cai7 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x21,0x00, 0x21,0x00, 0x29,0x00, -0x25,0x10, 0x21,0x20, 0x21,0x40, 0x4B,0xF0, -0x45,0x80, 0x41,0x40, 0x45,0x20, 0x59,0x10, -/* @cai8 (12x12,V)@ [suki software]*/ -0x41,0x00, 0x51,0x00, 0x4D,0x10, 0x61,0x60, -0xDB,0xF0, 0x85,0x40, 0x89,0x20, 0xB1,0x10, -0x11,0x10, 0x04,0x00, 0x08,0x40, 0x10,0x80, -/* @cai9 (12x12,V)@ [suki software]*/ -0x40,0x00, 0x40,0x40, 0x4C,0x40, 0x4A,0x40, -0x49,0x40, 0xF8,0x50, 0x4C,0x60, 0x4A,0xF0, -0x48,0x60, 0xF8,0x50, 0x49,0x40, 0x4A,0x40, -/* @cai10 (12x12,V)@ [suki software]*/ -0x41,0x20, 0x42,0x20, 0x45,0x40, 0x5A,0xA0, -0x49,0x20, 0xEA,0xA0, 0x4C,0xA0, 0x40,0xB0, -0x4C,0xA0, 0xEA,0xA0, 0x49,0x20, 0x4A,0xA0, -/* @can0 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x0A,0x40, 0x32,0x80, 0x1A,0x80, -0xF5,0xF0, 0x59,0x90, 0x52,0xD0, 0x45,0xB0, -0x02,0x90, 0x66,0x90, 0x59,0xF0, 0x51,0x00, -/* @can1 (12x12,V)@ [suki software]*/ -0x04,0x40, 0x04,0x40, 0x14,0xA0, 0x34,0xA0, -0x55,0x40, 0xD6,0x50, 0x1C,0x90, 0x35,0x20, -0x24,0x20, 0x26,0x40, 0x65,0x40, 0x34,0x90, -/* @can2 (12x12,V)@ [suki software]*/ -0x10,0x80, 0x10,0x80, 0x91,0x00, 0x91,0xF0, -0x92,0xA0, 0x94,0xA0, 0x98,0xA0, 0xF3,0xF0, -0x90,0xA0, 0x98,0xA0, 0x94,0xA0, 0x92,0xF0, -/* @can3 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x43,0x00, 0x4D,0x00, 0x78,0x90, -0x48,0x60, 0x49,0x80, 0x4E,0x00, 0x49,0x00, -0x09,0x00, 0xFF,0x00, 0x09,0xF0, 0x49,0x30, -/* @can4 (12x12,V)@ [suki software]*/ -0x0E,0x00, 0x00,0x00, 0xFF,0xF0, 0x10,0x00, -0x2A,0x10, 0x26,0x10, 0x3A,0x20, 0xEF,0xF0, -0x22,0x40, 0x00,0x00, 0x3F,0xF0, 0x24,0x00, -/* @can5 (12x12,V)@ [suki software]*/ -0x0E,0x00, 0x00,0x00, 0xFF,0xF0, 0x10,0x40, -0x0C,0x60, 0x04,0xA0, 0x25,0x40, 0x66,0x50, -0xBC,0x90, 0x24,0x20, 0x26,0x40, 0x65,0x00, -/* @can6 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x06,0x00, 0x00,0x70, 0xFF,0x80, -0x04,0x40, 0x18,0x30, 0x00,0x00, 0x0F,0xF0, -0x00,0x00, 0x00,0x00, 0xFF,0xF0, 0x40,0x00, -/* @cang0 (12x12,V)@ [suki software]*/ -0x40,0x80, 0x40,0x80, 0x40,0x80, 0x41,0x00, -0xF2,0xF0, 0x46,0x80, 0x5C,0x80, 0x48,0x80, -0x44,0x90, 0x42,0x80, 0xF2,0xF0, 0x41,0x00, -/* @cang1 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x01,0x00, 0x3F,0xF0, 0x69,0x40, -0xA5,0x20, 0x3F,0xF0, 0x04,0x00, 0x08,0x00, -0x13,0xF0, 0x22,0x00, 0xC2,0x20, 0x22,0x30, -/* @cang2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x01,0x00, 0x02,0x00, 0x04,0x00, -0x0B,0xF0, 0x12,0x00, 0x22,0x00, 0xC2,0x00, -0x22,0x10, 0x12,0x10, 0x0B,0xF0, 0x0C,0x00, -/* @cang3 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x20, 0x80,0x70, 0x61,0x80, -0x06,0x00, 0x04,0x00, 0x0B,0xF0, 0x12,0x00, -0x22,0x00, 0xC2,0x20, 0x22,0x10, 0x13,0xE0, -/* @cang4 (12x12,V)@ [suki software]*/ -0x40,0x00, 0x47,0x70, 0x41,0x40, 0x4F,0xF0, -0x48,0x00, 0xFB,0xF0, 0x4A,0xA0, 0x4B,0xB0, -0x4A,0xE0, 0xE8,0x00, 0x5F,0xC0, 0x68,0x30, -/* @cao0 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x80, 0xFF,0xF0, 0x11,0x00, -0x12,0x00, 0x00,0x40, 0x0F,0x40, 0xE9,0x40, -0xAF,0x50, 0xA0,0xF0, 0xAF,0x60, 0xA9,0x50, -/* @cao1 (12x12,V)@ [suki software]*/ -0x24,0x10, 0x1C,0xE0, 0x07,0x00, 0xFF,0xF0, -0x0C,0x80, 0x35,0x40, 0x01,0xF0, 0x06,0x00, -0x7A,0xF0, 0x12,0x90, 0x12,0x90, 0xFE,0x90, -/* @cao2 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x11,0x80, 0x16,0x00, 0xFF,0xF0, -0x14,0x00, 0x02,0x00, 0x5F,0x00, 0x55,0x70, -0x55,0x50, 0xFF,0x50, 0x55,0x50, 0xFF,0x50, -/* @cao3 (12x12,V)@ [suki software]*/ -0x40,0x00, 0x40,0x00, 0x5F,0x00, 0x55,0x70, -0x55,0x50, 0x55,0x50, 0xFF,0x50, 0x55,0x50, -0x55,0x50, 0xFF,0x50, 0x55,0x50, 0x55,0x50, -/* @cao4 (12x12,V)@ [suki software]*/ -0x20,0x10, 0x20,0x10, 0x20,0x10, 0x27,0xD0, -0x25,0x50, 0xFD,0x50, 0x25,0x50, 0x25,0x70, -0x25,0x50, 0xFD,0x50, 0x25,0x50, 0x27,0xD0, -/* @ce0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x10, 0x7F,0xE0, 0x40,0x00, -0x5F,0xE0, 0x50,0x00, 0x57,0xF0, 0x50,0x00, -0x5F,0xE0, 0x40,0x00, 0x40,0x00, 0x4F,0xE0, -/* @ce1 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x14,0x00, 0xE5,0xF0, 0x25,0x00, -0x35,0x00, 0x2D,0x10, 0x25,0x20, 0x1F,0xF0, -0x25,0x20, 0xE5,0x10, 0x25,0x20, 0x35,0x10, -/* @ce2 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x1F,0xF0, 0xE8,0x00, -0x40,0x00, 0x7F,0xC0, 0x40,0x30, 0x4F,0xC0, -0x40,0x20, 0x7F,0xD0, 0x00,0x00, 0x1F,0xE0, -/* @ce3 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x02,0x00, 0xFF,0xF0, 0x82,0x00, -0x82,0x00, 0xFF,0xF0, 0x02,0x00, 0x02,0x00, -0x02,0x10, 0xFF,0xE0, 0x82,0x00, 0x82,0x00, -/* @ce4 (12x12,V)@ [suki software]*/ -0x10,0x20, 0x8C,0x30, 0x61,0xC0, 0x06,0x00, -0x00,0x00, 0x7F,0xE0, 0x40,0x00, 0x4F,0xF0, -0x40,0x00, 0x7F,0xE0, 0x00,0x00, 0x1F,0xE0, -/* @ceng0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x48,0x40, -0x48,0x40, 0x4A,0x40, 0x4A,0x70, 0x4A,0x40, -0x4A,0x40, 0x4A,0x40, 0x4A,0x40, 0x4A,0x50, -/* @ceng1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7D,0xF0, 0x44,0x00, 0x47,0xF0, -0x7C,0x80, 0x00,0x80, 0x1F,0x00, 0x99,0x70, -0x55,0x50, 0x33,0x50, 0x1F,0x50, 0x33,0x50, -/* @cha0 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x11,0x00, 0x12,0x00, 0x49,0xF0, 0x49,0x20, -0x4A,0x20, 0x48,0x00, 0x7F,0xF0, 0x88,0x00, -/* @cha1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x40,0x00, -0x78,0x00, 0x47,0x00, 0x50,0x90, 0x4E,0x60, -0x44,0x60, 0x41,0x90, 0x46,0x00, 0x78,0x00, -/* @cha2 (12x12,V)@ [suki software]*/ -0x20,0x00, 0x22,0x10, 0x22,0x20, 0x22,0x70, -0x22,0x80, 0xF3,0x20, 0x2E,0x20, 0x22,0x20, -0x22,0x20, 0xFA,0xF0, 0x22,0x20, 0x22,0x20, -/* @cha3 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x20,0x40, 0x20,0x80, 0x21,0x00, -0x21,0xB0, 0xFA,0x90, 0x24,0x80, 0x29,0xF0, -0x24,0x80, 0x22,0xA0, 0xFA,0x90, 0x21,0x80, -/* @cha4 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x11,0x00, 0x12,0x00, 0x13,0xF0, -0x15,0x40, 0x19,0x40, 0x11,0x40, 0xFF,0x40, -0x11,0x40, 0x19,0x40, 0x15,0x40, 0x15,0xF0, -/* @cha5 (12x12,V)@ [suki software]*/ -0x20,0x40, 0x23,0x80, 0x3D,0xF0, 0x21,0x00, -0x21,0x00, 0x21,0xF0, 0x02,0x00, 0x24,0x00, -0x29,0xF0, 0x31,0x40, 0xFF,0x40, 0x31,0x40, -/* @cha6 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x80, 0xFF,0xF0, 0x11,0x00, -0x12,0x80, 0x20,0x80, 0x21,0x50, 0xF2,0x40, -0x24,0x40, 0x29,0xF0, 0x24,0x40, 0xF2,0x50, -/* @cha7 (12x12,V)@ [suki software]*/ -0x09,0x20, 0x32,0x20, 0x25,0x40, 0x2A,0xA0, -0x39,0x20, 0x2A,0xA0, 0xAC,0xA0, 0x60,0xB0, -0x2C,0xA0, 0x2A,0xB0, 0x2B,0x20, 0x2C,0xA0, -/* @cha8 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x04,0x00, 0x04,0x30, 0x08,0x40, -0x18,0x80, 0xE9,0x00, 0x4E,0x00, 0x08,0x70, -0x08,0x80, 0x48,0x40, 0x2F,0x80, 0x10,0x00, -/* @cha9 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x11,0x00, 0x15,0x00, 0x15,0x10, -0x95,0x60, 0x75,0xA0, 0x57,0x20, 0x1D,0x20, -0x15,0x30, 0x35,0x20, 0xD5,0x20, 0x55,0x20, -/* @cha10 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x02,0x00, 0x42,0x00, 0x33,0xF0, -0x20,0x00, 0x08,0x50, 0x12,0x40, 0x12,0x40, -0x92,0x40, 0x53,0xF0, 0x54,0x40, 0x14,0x80, -/* @chai0 (12x12,V)@ [suki software]*/ -0x10,0x80, 0x10,0x80, 0x11,0x00, 0xFF,0xF0, -0x12,0x00, 0x14,0x00, 0x00,0x10, 0x7F,0xE0, -0x44,0x00, 0x44,0x00, 0x44,0x80, 0x87,0xF0, -/* @chai1 (12x12,V)@ [suki software]*/ -0x02,0x40, 0x03,0x40, 0x3E,0x40, 0x02,0x40, -0xFE,0x40, 0x14,0x50, 0x14,0x60, 0x15,0xF0, -0x00,0x60, 0xFE,0x50, 0x11,0x40, 0x11,0x40, -/* @chai2 (12x12,V)@ [suki software]*/ -0x20,0x40, 0x32,0x40, 0x4A,0x50, 0x64,0x90, -0x5B,0x20, 0x84,0xF0, 0x98,0x00, 0x08,0x10, -0x08,0x20, 0x08,0x40, 0x09,0x80, 0x0E,0x00, -/* @chan0 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x11,0x20, 0x10,0x20, 0x3E,0x40, 0xD2,0x40, -0x53,0x80, 0x5E,0x20, 0x73,0x90, 0x52,0x50, -/* @chan1 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x08,0x40, 0x08,0x80, 0xFF,0xF0, -0x09,0x40, 0x0A,0x80, 0x0A,0xA0, 0x13,0x20, -0x36,0x50, 0xDA,0x90, 0x12,0x20, 0x33,0x00, -/* @chan2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x1F,0x80, 0x11,0x00, 0xFF,0xF0, -0x11,0x50, 0x1F,0x30, 0x00,0x10, 0x9F,0x90, -0x54,0x90, 0x74,0x90, 0x1F,0xF0, 0x34,0x90, -/* @chan3 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x0C,0x00, 0xF3,0xF0, 0x10,0x00, -0x14,0x00, 0x18,0x00, 0x08,0x20, 0x3F,0x20, -0xE9,0x40, 0x29,0xA0, 0x2F,0x10, 0x39,0xD0, -/* @chan4 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x82,0x00, 0x73,0xF0, 0x22,0x00, -0x08,0x00, 0x10,0x20, 0x3E,0x40, 0xD2,0x80, -0x53,0x20, 0x5E,0x20, 0x53,0xD0, 0x72,0x40, -/* @chan5 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x1C,0x80, 0xE5,0x90, 0x06,0x90, -0x0C,0x80, 0x00,0x10, 0x3F,0xE0, 0x20,0x10, -0x2F,0xD0, 0xAA,0x50, 0x6F,0xF0, 0x2A,0x50, -/* @chan6 (12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0xF7,0xF0, 0x24,0x80, -0x24,0x80, 0x00,0x00, 0x23,0xF0, 0x32,0x00, -0x2E,0x00, 0xA2,0x00, 0x62,0x00, 0x26,0x00, -/* @chan7 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x20,0x00, 0x27,0xF0, 0x22,0x00, -0x32,0x00, 0x2E,0x00, 0x2A,0x00, 0xA2,0x00, -0x62,0x00, 0x26,0x00, 0x2A,0x00, 0x32,0x00, -/* @chan8 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x3F,0xF0, 0x00,0x00, 0x80,0x10, -0x47,0xD0, 0x15,0x50, 0x4D,0x50, 0x47,0xF0, -0x4D,0x50, 0x55,0x50, 0x47,0xD0, 0x40,0x10, -/* @chan9 (12x12,V)@ [suki software]*/ -0x20,0x00, 0x2F,0x80, 0x28,0xF0, 0xAE,0xA0, -0x6A,0xA0, 0x2E,0xA0, 0x28,0xF0, 0x2F,0x80, -0x00,0x00, 0x4F,0xE0, 0x58,0x00, 0x6B,0xF0, -/* @chang0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0xF0, 0x7E,0xA0, -0x52,0xA0, 0x52,0xA0, 0x52,0xA0, 0x52,0xA0, -0x52,0xA0, 0x52,0xA0, 0x52,0xA0, 0x7E,0xA0, -/* @chang1 (12x12,V)@ [suki software]*/ -0x04,0x40, 0x88,0x80, 0x51,0x00, 0x32,0x00, -0xCF,0xF0, 0x00,0x00, 0x00,0xF0, 0x7E,0xA0, -0x52,0xA0, 0x52,0xA0, 0x52,0xA0, 0x52,0xA0, -/* @chang2 (12x12,V)@ [suki software]*/ -0x08,0x10, 0x08,0x10, 0x08,0x10, 0xFF,0xE0, -0x08,0x20, 0x08,0x40, 0x40,0x50, 0x42,0x20, -0x46,0x40, 0x4B,0x90, 0x52,0x60, 0x63,0x80, -/* @chang3 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x0C,0x40, 0x08,0x40, 0x49,0x40, -0x39,0x40, 0x09,0x50, 0x09,0x60, 0xF9,0x40, -0x09,0x40, 0x19,0x50, 0x69,0x40, 0x29,0x40, -/* @chang4 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x18,0x00, 0x10,0x70, 0x90,0x40, -0x77,0x40, 0x55,0x40, 0x15,0x40, 0xF5,0xF0, -0x15,0x40, 0x15,0x40, 0x37,0x40, 0xD0,0x40, -/* @chang5 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x01,0x00, 0x01,0x00, 0x01,0x00, -0xFF,0xF0, 0x05,0x00, 0x05,0x80, 0x09,0x40, -0x09,0x20, 0x11,0x10, 0x21,0x00, 0x41,0x00, -/* @chang6 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x1F,0xF0, 0xE4,0x00, -0x40,0x00, 0x0C,0x40, 0x49,0x40, 0x39,0x50, -0x09,0x70, 0xF9,0x40, 0x09,0x40, 0x19,0x50, -/* @chang7 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x48,0x80, -0x48,0x80, 0x7F,0xF0, 0x00,0x10, 0x42,0x20, -0x46,0x40, 0x4B,0x90, 0x52,0x20, 0x63,0xC0, -/* @chang8 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x40,0x00, -0x40,0x00, 0x40,0x00, 0x40,0x00, 0x40,0x00, -0x40,0x00, 0x40,0x00, 0x40,0x00, 0x40,0x00, -/* @chang9 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x27,0xF0, 0x14,0x00, 0x0D,0xF0, -0xFD,0x10, 0x0D,0xF0, 0x14,0x00, 0x27,0xF0, -0x02,0x00, 0x0F,0x00, 0xF8,0xC0, 0x48,0x30, -/* @chang10 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x1F,0xE0, 0x12,0x40, 0xFF,0xF0, -0x12,0x40, 0x1F,0xE0, 0x40,0x10, 0x42,0x20, -0x44,0xC0, 0x4F,0x10, 0x54,0x60, 0x67,0x80, -/* @chang11 (12x12,V)@ [suki software]*/ -0x7F,0xE0, 0x40,0x40, 0x40,0x40, 0x7F,0xE0, -0x00,0x00, 0x01,0xF0, 0x7D,0x20, 0x55,0x20, -0x55,0x20, 0x55,0x20, 0x55,0x20, 0x55,0x20, -/* @chang12 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x1F,0xF0, 0xF0,0x00, -0x40,0x00, 0x00,0xF0, 0x7E,0xA0, 0x54,0xA0, -0x54,0xA0, 0x54,0xA0, 0x54,0xA0, 0x54,0xA0, -/* @chao0 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x12,0xF0, 0x12,0x00, 0x12,0x00, -0xFF,0xF0, 0x12,0x40, 0x12,0x40, 0x41,0x00, -0x43,0xF0, 0x7D,0x10, 0x41,0x10, 0x45,0x10, -/* @chao1 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x11,0x00, 0x12,0x00, 0x01,0x00, 0x02,0x00, -0x0C,0x00, 0x00,0x80, 0xFF,0xD0, 0x00,0x20, -/* @chao2 (12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0xF7,0xF0, 0x24,0x80, -0x24,0x80, 0x24,0x90, 0x21,0x00, 0x06,0x00, -0x18,0x00, 0x00,0x80, 0x7F,0xC0, 0x00,0x10, -/* @chao3 (12x12,V)@ [suki software]*/ -0x00,0x20, 0x20,0x20, 0x2F,0xA0, 0x2A,0xA0, -0xFA,0xF0, 0x2A,0xA0, 0x2F,0xA0, 0x20,0x20, -0x00,0x00, 0x7F,0xF0, 0x44,0x80, 0x44,0x80, -/* @chao4 (12x12,V)@ [suki software]*/ -0x3F,0xE0, 0x20,0x80, 0x20,0x80, 0x3F,0xC0, -0x00,0x00, 0x2F,0xA0, 0x2A,0xA0, 0xFA,0xF0, -0x2A,0xA0, 0x2F,0xA0, 0x00,0x00, 0x7F,0xF0, -/* @chao5 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x84,0x70, 0x63,0x80, 0x0C,0x10, -0x2F,0x90, 0x2A,0x90, 0xFA,0xF0, 0x2A,0x90, -0x2F,0x90, 0x00,0x00, 0x7F,0xF0, 0x44,0x80, -/* @chao6 (12x12,V)@ [suki software]*/ -0x00,0x20, 0x00,0x20, 0x2F,0xA0, 0x5A,0xA0, -0x8A,0xA0, 0x0A,0xA0, 0x2A,0xB0, 0x5F,0xF0, -0x8A,0xB0, 0x0A,0xA0, 0x2A,0xA0, 0x5A,0xA0, -/* @chao7 (12x12,V)@ [suki software]*/ -0x7F,0xE0, 0x40,0x40, 0x40,0x40, 0x7F,0xE0, -0x01,0x00, 0x02,0x00, 0x1C,0x00, 0x08,0x00, -0x00,0x00, 0xFF,0xC0, 0x00,0x10, 0x10,0x20, -/* @chao8 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x0C,0x00, 0x00,0x70, 0xFF,0x80, -0x08,0x40, 0x31,0x30, 0x02,0x00, 0x0C,0x00, -0x00,0x00, 0x00,0x00, 0xFF,0xC0, 0x00,0x10, -/* @che0 (12x12,V)@ [suki software]*/ -0x00,0x20, 0x20,0x20, 0x21,0x20, 0x23,0x20, -0x25,0x20, 0x39,0x20, 0xE1,0x20, 0x21,0x20, -0x2F,0xF0, 0x21,0x20, 0x21,0x20, 0x21,0x20, -/* @che1 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x12,0x00, 0x14,0x00, 0x10,0x00, 0x07,0xF0, -0x00,0x00, 0x00,0x00, 0xFF,0xF0, 0x02,0x00, -/* @che2 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x80, 0xFF,0xF0, 0x11,0x00, -0x26,0x00, 0x2D,0xF0, 0xB5,0x50, 0x65,0x50, -0x2D,0xF0, 0x26,0x00, 0x19,0xC0, 0xE8,0x30, -/* @che3 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x20,0x00, 0xD7,0x00, 0x54,0x20, -0xFF,0xA0, 0x54,0xA0, 0x55,0xA0, 0x57,0xA0, -0x00,0xF0, 0x00,0xA0, 0x3C,0xA0, 0x00,0xA0, -/* @che4 (12x12,V)@ [suki software]*/ -0x08,0x80, 0x11,0x00, 0x23,0xF0, 0xCC,0x00, -0x42,0x00, 0x02,0x00, 0x7F,0xF0, 0x04,0x20, -0x24,0x40, 0x20,0x10, 0x3F,0xE0, 0x20,0x00, -/* @che5 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x84,0x30, 0x63,0xC0, 0x00,0x00, -0x25,0xF0, 0xAD,0x50, 0x75,0x50, 0x2D,0x50, -0x25,0xF0, 0x01,0x00, 0x0F,0x00, 0xF8,0xE0, -/* @chen0 (12x12,V)@ [suki software]*/ -0x10,0xC0, 0x13,0x00, 0xFF,0xF0, 0x12,0x00, -0x01,0x40, 0x10,0x80, 0x13,0x00, 0xFF,0xF0, -0x12,0x00, 0x11,0x00, 0x7F,0xF0, 0x40,0x10, -/* @chen1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x44,0x40, -0x44,0x40, 0x44,0x40, 0x44,0x40, 0x7C,0x70, -0x44,0x40, 0x44,0x40, 0x44,0x40, 0x44,0x40, -/* @chen2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x42,0x00, -0x4A,0x00, 0x4B,0xF0, 0x4A,0x00, 0x4B,0x80, -0x4A,0x60, 0x4A,0x10, 0x4A,0x20, 0x4A,0x40, -/* @chen3 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x08,0x20, 0x30,0x20, -0x10,0x20, 0x00,0x20, 0x00,0x20, 0xFE,0xF0, -0x00,0x20, 0x00,0x20, 0x20,0x20, 0x10,0x20, -/* @chen4 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x03,0xF0, 0xFA,0x20, -0xAA,0xA0, 0xAA,0xB0, 0xAA,0xA0, 0xAA,0xA0, -0xAA,0xB0, 0xAA,0xA0, 0xAA,0xA0, 0xAA,0xB0, -/* @chen5 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x0C,0x00, 0x00,0x00, 0xFF,0xF0, -0x08,0x00, 0x04,0x00, 0x18,0x00, 0x10,0x30, -0x11,0xC0, 0xFE,0x00, 0x11,0xF0, 0x10,0x00, -/* @chen6 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x86,0x40, 0x60,0xF0, 0x03,0x00, -0x0C,0x00, 0x60,0x00, 0x40,0x00, 0x47,0xF0, -0x44,0x00, 0x44,0x00, 0x47,0xF0, 0x40,0x00, -/* @chen7 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x44,0x40, 0x4A,0x20, -0x71,0xC0, 0x00,0x00, 0x23,0x30, 0x2D,0x00, -0x31,0x00, 0xE7,0xF0, 0x21,0x00, 0x21,0x40, -/* @chen8 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x12,0x70, 0x12,0x00, 0xFF,0xF0, -0x12,0x40, 0x12,0x40, 0x02,0x00, 0x09,0x40, -0x12,0x40, 0x22,0x90, 0xC4,0x90, 0x29,0x20, -/* @chen9 (12x12,V)@ [suki software]*/ -0x10,0x20, 0x10,0x40, 0x90,0x80, 0x73,0xF0, -0x54,0x80, 0x1B,0x70, 0x01,0x20, 0x08,0x00, -0x0A,0x00, 0x09,0xC0, 0x08,0x80, 0x08,0x00, -/* @cheng0 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x11,0x00, 0x02,0x00, 0x30,0x00, 0xA0,0xA0, -0x6E,0xA0, 0x2A,0xA0, 0xEA,0xF0, 0x2A,0xA0, -/* @cheng1 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x49,0x80, 0x4E,0x00, 0x7F,0xF0, -0x89,0x00, 0x88,0x80, 0x02,0x10, 0x0C,0x60, -0xF1,0xC0, 0x20,0x00, 0x2F,0xF0, 0x21,0x00, -/* @cheng2 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x08,0x30, 0xFF,0xE0, 0x08,0x40, -0x08,0x40, 0x1F,0xF0, 0x12,0x10, 0x12,0x10, -0x13,0xF0, 0x10,0x00, 0xFF,0xC0, 0x10,0x30, -/* @cheng3 (12x12,V)@ [suki software]*/ -0x08,0xC0, 0x0B,0x00, 0xFF,0xF0, 0x0A,0x00, -0x09,0x00, 0x62,0x00, 0x54,0xE0, 0x5A,0xA0, -0x62,0xA0, 0xC2,0xA0, 0x32,0xA0, 0x2A,0xA0, -/* @cheng4 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x1F,0xF0, 0x12,0x00, -0x12,0x10, 0x12,0x00, 0x13,0xF0, 0x10,0x00, -0xFF,0x00, 0x10,0xD0, 0x90,0x30, 0x50,0x40, -/* @cheng5 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x01,0x00, 0x01,0x00, 0x7D,0x20, -0x45,0x20, 0x45,0x20, 0x45,0x20, 0x45,0xF0, -0x45,0x20, 0x45,0x20, 0x45,0x20, 0x7D,0x20, -/* @cheng6 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x14,0x40, 0x54,0x80, 0x54,0x80, -0x5F,0xD0, 0x50,0x30, 0x50,0x60, 0x7F,0xF0, -0x50,0x40, 0x90,0x20, 0x9F,0xB0, 0x92,0x90, -/* @cheng7 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x48,0xC0, 0x4B,0x00, 0x7F,0xF0, -0x89,0x00, 0x88,0x80, 0x01,0x20, 0xFD,0x20, -0x85,0x20, 0x85,0xF0, 0x85,0x20, 0x85,0x20, -/* @cheng8 (12x12,V)@ [suki software]*/ -0x12,0x00, 0x12,0x00, 0x24,0x10, 0xCF,0xC0, -0x10,0x90, 0x00,0x80, 0x4F,0x80, 0x40,0xA0, -0x40,0x90, 0x7F,0x80, 0x48,0x80, 0x48,0x80, -/* @cheng9 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x86,0x30, 0x40,0xC0, 0x0F,0x00, -0x01,0x00, 0x52,0x00, 0x4D,0xE0, 0x75,0x20, -0x05,0x20, 0xC5,0x20, 0x35,0x20, 0x2D,0xE0, -/* @cheng10 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x84,0x00, 0x67,0xF0, 0x40,0x00, -0x10,0x10, 0x1F,0xF0, 0x11,0x00, 0x11,0x00, -0x11,0xF0, 0x10,0x00, 0xFF,0x00, 0x10,0xF0, -/* @cheng11 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x08,0x10, 0x08,0x60, 0x49,0x80, -0x4E,0x20, 0x45,0x20, 0x45,0x20, 0x4F,0xF0, -0x55,0x20, 0x55,0x20, 0x66,0x20, 0x45,0x80, -/* @cheng12 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x42,0x00, 0x33,0xF0, 0x00,0x00, -0x00,0x10, 0x7A,0x90, 0x4A,0x90, 0x4A,0x90, -0x4B,0xF0, 0x4A,0x90, 0x4A,0x90, 0x7A,0x90, -/* @cheng13 (12x12,V)@ [suki software]*/ -0x40,0x20, 0x5F,0x20, 0x41,0x40, 0x41,0x40, -0x7D,0x00, 0x01,0xF0, 0x00,0x80, 0x7E,0x80, -0x52,0x80, 0x52,0xE0, 0xFE,0xA0, 0x52,0xA0, -/* @cheng14 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x48,0xC0, 0x4B,0x00, 0x7F,0xF0, -0x89,0x00, 0x88,0x80, 0x00,0x00, 0x48,0x80, -0x46,0x80, 0x40,0x80, 0x7F,0xF0, 0x40,0x80, -/* @chi0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x3F,0xF0, 0x20,0x40, 0x20,0x40, -0x3F,0xE0, 0x04,0x00, 0x1A,0x00, 0xF2,0x10, -0x52,0x20, 0x12,0x40, 0x12,0x80, 0x13,0x00, -/* @chi1 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x40, 0x00,0x90, 0x3F,0xE0, -0x22,0x80, 0x3C,0x90, 0x27,0xE0, 0x24,0x90, -0xA4,0x80, 0x60,0x00, 0x27,0xF0, 0x24,0x00, -/* @chi2 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x11,0x00, 0x16,0x80, 0x24,0x80, 0x24,0xA0, -0x24,0x90, 0xFC,0x90, 0x24,0x80, 0x27,0xF0, -/* @shi0 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x01,0x00, 0x7D,0x70, 0x55,0x00, -0x55,0x00, 0x55,0xF0, 0x55,0x20, 0x7D,0x20, -0x01,0x00, 0x00,0x00, 0x7F,0xE0, 0x04,0x10, -/* @chi3 (12x12,V)@ [suki software]*/ -0x08,0x10, 0x06,0x10, 0x40,0x30, 0x31,0xC0, -0x06,0x00, 0x01,0x00, 0x1F,0xF0, 0x02,0x00, -0x02,0x00, 0x7F,0xF0, 0x04,0x00, 0x04,0x40, -/* @chi4 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x82,0x00, 0x73,0xF0, 0x20,0x00, -0x00,0x10, 0x00,0x60, 0x7F,0x80, 0x44,0x00, -0x44,0x00, 0x45,0x00, 0x44,0x80, 0x44,0x40, -/* @chi5 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x4F,0x80, 0x48,0x80, 0x48,0x80, -0x78,0xF0, 0x04,0x00, 0x04,0x00, 0x3F,0xF0, -0x04,0x00, 0x04,0x00, 0x7F,0xC0, 0x08,0x00, -/* @chi6 (12x12,V)@ [suki software]*/ -0x00,0x10, 0x40,0x10, 0x5F,0x20, 0x41,0x20, -0x7F,0x00, 0x01,0xF0, 0x02,0x00, 0x3F,0xF0, -0x04,0x00, 0x04,0x00, 0xFF,0xF0, 0x08,0x00, -/* @chi7 (12x12,V)@ [suki software]*/ -0x40,0x00, 0x7F,0xF0, 0x49,0x10, 0x49,0x10, -0x49,0x10, 0x7F,0xF0, 0x40,0x20, 0x00,0x00, -0x0F,0xF0, 0x00,0x00, 0x00,0x00, 0xFF,0xF0, -/* @chi8 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x04,0x00, 0x05,0xF0, 0x3C,0x00, -0x04,0x00, 0x04,0x10, 0x04,0x60, 0xFF,0x80, -0x24,0x40, 0x24,0x20, 0x24,0x10, 0x24,0x00, -/* @chi9 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x02,0x00, 0x0C,0x00, 0x3F,0xF0, -0xE0,0x00, 0x44,0x90, 0x09,0x20, 0x31,0x40, -0xEA,0xA0, 0x47,0x90, 0x44,0x80, 0x48,0x80, -/* @chi10 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x30, 0x7F,0xC0, -0x44,0x00, 0x44,0x00, 0x44,0x00, 0x47,0x00, -0x44,0xC0, 0x44,0x20, 0x44,0x10, 0x44,0x00, -/* @chi11 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x04,0x10, 0x24,0x20, 0x25,0xC0, -0x24,0x80, 0x24,0x30, 0x27,0xC0, 0xFC,0x00, -0x24,0x00, 0x27,0xF0, 0x24,0x00, 0x25,0x00, -/* @chi12 (12x12,V)@ [suki software]*/ -0x20,0x00, 0x27,0x80, 0x24,0x60, 0xFC,0x10, -0x24,0x60, 0x27,0x80, 0x50,0x40, 0x4C,0x90, -0x41,0x00, 0x7F,0xF0, 0x10,0x40, 0x4C,0x90, -/* @chi13 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x10, 0x7F,0xE0, -0x44,0x00, 0x44,0x00, 0x44,0x00, 0x44,0x80, -0x44,0x80, 0x87,0xF0, 0x84,0x40, 0x84,0x20, -/* @chi14 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x0E,0x00, 0x00,0x70, 0xFF,0x80, -0x08,0x40, 0x30,0x30, 0x00,0x00, 0x7F,0x90, -0x41,0x70, 0x41,0x00, 0x41,0x00, 0x41,0x40, -/* @chong0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x20,0x00, 0x21,0x00, 0x23,0x00, -0x25,0x10, 0x2D,0xE0, 0xB9,0x00, 0x69,0x00, -0x21,0xF0, 0x29,0x00, 0x25,0x00, 0x23,0x80, -/* @chong1 (12x12,V)@ [suki software]*/ -0x00,0x20, 0x40,0x20, 0x38,0x70, 0x13,0x80, -0x00,0x00, 0x1F,0xC0, 0x10,0x80, 0x10,0x80, -0x10,0x80, 0xFF,0xF0, 0x10,0x80, 0x10,0x80, -/* @chong2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x1F,0xC0, 0x10,0x80, -0x10,0x80, 0x10,0x80, 0x10,0x80, 0xFF,0xF0, -0x10,0x80, 0x10,0x80, 0x10,0x80, 0x10,0x90, -/* @chong3 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x01,0x40, 0x06,0x40, 0x64,0x50, -0x25,0x40, 0x25,0x40, 0x25,0x40, 0x35,0x40, -0xED,0x70, 0x25,0x40, 0x25,0x40, 0x25,0x50, -/* @chong4 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x0A,0x00, 0x32,0x00, 0x22,0x00, -0x22,0x10, 0x22,0x60, 0x3F,0x80, 0xA2,0x00, -0x62,0x10, 0x2B,0xF0, 0x26,0x20, 0x22,0x40, -/* @chou0 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x80, 0xFF,0xF0, 0x11,0x00, -0x12,0x00, 0x00,0x00, 0x0F,0xF0, 0x08,0x80, -0x08,0x80, 0x08,0x80, 0xFF,0xF0, 0x08,0x80, -/* @chou1 (12x12,V)@ [suki software]*/ -0x8F,0xF0, 0x88,0xA0, 0xFF,0x20, 0x88,0x20, -0xFF,0x20, 0x89,0x20, 0x8F,0xF0, 0x84,0x00, -0x7F,0xF0, 0x04,0x00, 0x02,0x00, 0x7F,0xF0, -/* @chou2 (12x12,V)@ [suki software]*/ -0x7F,0xF0, 0x42,0x20, 0x7F,0xE0, 0x42,0x20, -0x7F,0xF0, 0x20,0x80, 0x24,0xB0, 0x24,0xC0, -0x27,0xA0, 0xFC,0xB0, 0x24,0xA0, 0x24,0xA0, -/* @chou3 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7C,0xF0, 0x44,0x00, 0x47,0xF0, -0x44,0x80, 0x7C,0x80, 0x21,0x00, 0x29,0x30, -0x29,0xC0, 0xFF,0x30, 0x29,0x20, 0x29,0x20, -/* @chou4 (12x12,V)@ [suki software]*/ -0x00,0x20, 0x48,0xC0, 0x4B,0x00, 0x7F,0xF0, -0x8A,0x00, 0x89,0x80, 0x00,0x00, 0x7F,0xF0, -0x4A,0x00, 0x4A,0xF0, 0x7E,0x90, 0x4A,0x90, -/* @chou5 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x48,0x80, 0x4B,0x00, 0x4C,0x00, -0xFF,0xD0, 0x8C,0x00, 0x8A,0x40, 0x08,0x50, -0x10,0x80, 0x09,0x00, 0xFE,0x00, 0x09,0x00, -/* @chou6 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x10,0x80, 0x28,0x80, 0xCA,0xA0, -0x6A,0xB0, 0x5A,0xE0, 0x4B,0xB0, 0x5E,0xA0, -0x2A,0xA0, 0xCA,0xA0, 0x4A,0xA0, 0x6A,0xF0, -/* @chou7 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x0F,0xF0, 0x30,0x00, -0xC0,0x00, 0x10,0x00, 0x10,0x30, 0x11,0xC0, -0xFE,0x00, 0x10,0x00, 0x10,0x00, 0x3F,0xF0, -/* @chou8 (12x12,V)@ [suki software]*/ -0x08,0x80, 0x19,0x80, 0x2A,0x90, 0xCC,0x90, -0x58,0x90, 0x00,0x00, 0x7F,0xF0, 0x4A,0x00, -0x4A,0xF0, 0x7E,0x90, 0x4A,0x90, 0x4A,0xF0, -/* @chou9 (12x12,V)@ [suki software]*/ -0x7F,0xF0, 0x44,0x80, 0x44,0x80, 0x7F,0xF0, -0x04,0x20, 0x24,0xC0, 0x27,0x00, 0x3F,0xF0, -0x44,0xC0, 0x4F,0x00, 0x00,0x70, 0xFF,0x80, -/* @chou10 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x41,0x00, 0x41,0x00, -0x41,0x00, 0x41,0xF0, 0x7F,0x00, 0x41,0x00, -0x41,0x00, 0x41,0x00, 0x41,0x00, 0xFF,0xF0, -/* @chou11 (12x12,V)@ [suki software]*/ -0x00,0x20, 0x00,0x20, 0x00,0x20, 0x7F,0x20, -0x55,0x20, 0x55,0x20, 0xD5,0x30, 0x55,0xE0, -0x55,0x30, 0x55,0x20, 0x55,0xA0, 0x7F,0x60, -/* @chu0 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x10,0x80, 0x11,0x00, 0x93,0xF0, -0x74,0x80, 0x19,0x40, 0x12,0x20, 0x00,0x00, -0x10,0x00, 0x10,0x30, 0x1F,0xC0, 0x10,0x00, -/* @chu1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x3F,0x70, 0x02,0x00, -0x02,0x00, 0x02,0x00, 0x02,0x00, 0xFF,0xF0, -0x02,0x00, 0x02,0x00, 0x02,0x00, 0x02,0x00, -/* @chu2 (12x12,V)@ [suki software]*/ -0x11,0x80, 0x16,0x00, 0xFF,0xF0, 0x14,0x00, -0x02,0x00, 0x7F,0xF0, 0x50,0x00, 0x53,0xD0, -0x52,0x40, 0x53,0xF0, 0x50,0x00, 0x42,0x80, -/* @chu3 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x50,0x20, -0x57,0x90, 0x54,0x80, 0x54,0x90, 0x57,0xA0, -0x50,0x00, 0x45,0x00, 0x44,0xE0, 0x44,0x40, -/* @chu4 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7D,0xF0, 0x44,0x00, 0x47,0xF0, -0x44,0x80, 0x7C,0x90, 0x21,0x10, 0x25,0x20, -0xF5,0x70, 0x25,0x50, 0x2F,0xD0, 0x25,0x50, -/* @chu5 (12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0xF7,0xF0, 0x24,0x80, -0x24,0x80, 0x00,0x00, 0x3F,0xF0, 0x24,0x80, -0x24,0x80, 0x3F,0xF0, 0x08,0x00, 0x08,0x70, -/* @chu6 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x0A,0x40, 0x32,0x40, 0xE6,0x40, -0x2A,0x40, 0x32,0x40, 0x27,0xF0, 0x18,0x00, -0xFF,0xF0, 0x12,0x40, 0x92,0x40, 0x7F,0xF0, -/* @chu7 (12x12,V)@ [suki software]*/ -0x08,0x10, 0x84,0x30, 0x61,0xC0, 0x06,0x00, -0x7F,0xF0, 0x44,0x40, 0x5A,0x20, 0x61,0xC0, -0x08,0xB0, 0x34,0x80, 0xC7,0xF0, 0x24,0x80, -/* @chu8 (12x12,V)@ [suki software]*/ -0x7F,0xF0, 0x40,0x40, 0x4C,0x20, 0x53,0xC0, -0x62,0x00, 0x04,0x80, 0x0C,0xB0, 0x34,0x80, -0xC7,0xF0, 0x24,0x80, 0x14,0xA0, 0x08,0x90, -/* @chu9 (12x12,V)@ [suki software]*/ -0x20,0x00, 0x24,0x00, 0x29,0x00, 0x31,0x30, -0xFF,0x00, 0x31,0x00, 0x29,0x00, 0x05,0xF0, -0x25,0x20, 0x29,0x20, 0xFF,0x20, 0x31,0xA0, -/* @chu10 (12x12,V)@ [suki software]*/ -0x40,0x80, 0x41,0x00, 0x4F,0xF0, 0x72,0x00, -0x42,0x00, 0x43,0xF0, 0x40,0x00, 0x3F,0x70, -0x02,0x00, 0x02,0x00, 0xFF,0xF0, 0x02,0x00, -/* @chu11 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x1B,0xF0, 0xE4,0x00, -0x44,0x00, 0x37,0xF0, 0x00,0x40, 0x24,0x80, -0x24,0xF0, 0x25,0xA0, 0xFE,0xA0, 0x24,0xA0, -/* @chu12 (12x12,V)@ [suki software]*/ -0x01,0x40, 0x41,0x50, 0x41,0x50, 0x5F,0xF0, -0x51,0x50, 0x59,0x50, 0x75,0x40, 0xD3,0x00, -0x59,0x50, 0x55,0x50, 0x53,0xF0, 0x5F,0x50, -/* @chu13 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x80, 0xFF,0xF0, 0x11,0x00, -0x12,0x00, 0x20,0x00, 0x25,0x70, 0x25,0x50, -0xAF,0x50, 0x75,0x70, 0x35,0x50, 0x29,0x50, -/* @chu14 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x1F,0xF0, 0xEA,0x40, 0x4A,0x40, -0x4F,0xF0, 0x4A,0x40, 0x5A,0x40, 0x6F,0xF0, -0x00,0x00, 0x0F,0xC0, 0x08,0x40, 0xFF,0xF0, -/* @chu15 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x03,0x00, 0x1E,0x00, 0xE9,0xD0, -0x48,0x20, 0x08,0xD0, 0x0F,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0xFF,0xF0, 0x04,0x00, -/* @chuai0 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x08,0x40, 0x08,0x80, 0xFF,0xF0, -0x0A,0x00, 0x00,0x00, 0x7A,0x70, 0x0A,0x40, -0x0A,0xC0, 0x0B,0x70, 0xFA,0x40, 0x0A,0x70, -/* @chuan0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0xFF,0xF0, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x7F,0xF0, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @chuan1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x30,0x00, 0x24,0x00, 0x28,0x40, -0x35,0xC0, 0x24,0x40, 0xA4,0x50, 0x64,0x60, -0x24,0x40, 0x27,0xF0, 0x34,0x40, 0x28,0x40, -/* @chuan2 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x08,0xC0, 0x0B,0x00, 0xFF,0xF0, -0x0A,0x00, 0x09,0xA0, 0x04,0xA0, 0x15,0x40, -0x36,0x90, 0xD5,0x20, 0x5C,0xF0, 0x54,0x60, -/* @chuan3 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x1F,0xF0, 0xE0,0x00, -0x42,0x00, 0x22,0x00, 0x22,0x40, 0x22,0xD0, -0x2F,0x40, 0xF2,0x40, 0x22,0x40, 0x22,0x50, -/* @chuan4 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x01,0x00, 0x3F,0xF0, 0x69,0x40, -0xA5,0x20, 0x3F,0xF0, 0x01,0x00, 0x02,0x00, -0x7C,0x70, 0x40,0x40, 0x40,0x40, 0x40,0x40, -/* @chuan5 (12x12,V)@ [suki software]*/ -0x3F,0xE0, 0x20,0x40, 0x20,0x40, 0x20,0x40, -0x3F,0xE0, 0x02,0x00, 0x7A,0x70, 0x0A,0x40, -0x0A,0xF0, 0x0B,0x40, 0xFA,0x40, 0x0A,0x70, -/* @chuan6 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x01,0xF0, 0x3D,0x10, -0x25,0x10, 0x25,0x10, 0x25,0x10, 0xFF,0xF0, -0x25,0x10, 0x25,0x10, 0x25,0x10, 0x3D,0x10, -/* @chuang0 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x04,0x80, 0x01,0x10, 0x3F,0xE0, -0x21,0x00, 0x22,0x00, 0x25,0xF0, 0xA9,0x00, -0x71,0x20, 0x29,0x10, 0x25,0xE0, 0x22,0x00, -/* @chuang1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x32,0x00, 0x22,0x00, 0x27,0xF0, -0x2A,0x20, 0x22,0x40, 0x26,0xA0, 0xAB,0x90, -0x62,0xA0, 0x22,0xC0, 0x32,0x80, 0x2A,0x00, -/* @zhuang0 (12x12,V)@ [suki software]*/ -0x1F,0xF0, 0x10,0x00, 0xFF,0xF0, 0x10,0x10, -0x1F,0xF0, 0x04,0x00, 0x24,0x00, 0x35,0xF0, -0x2D,0x50, 0xA5,0x50, 0x65,0xF0, 0x2D,0x50, -/* @chuang2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x3F,0xF0, 0x22,0x00, -0x22,0x00, 0x22,0x10, 0x22,0x60, 0xA3,0x80, -0x7F,0xF0, 0x22,0x80, 0x22,0x40, 0x22,0x20, -/* @chuang3 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x1F,0xF0, 0x80,0x00, -0x60,0x40, 0x0F,0x40, 0x09,0x40, 0x49,0x40, -0x49,0x40, 0x4F,0x50, 0x41,0x00, 0x41,0xF0, -/* @chuang4 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x0B,0xF0, 0x32,0x00, -0xC2,0x00, 0x22,0x40, 0x12,0x20, 0x1B,0xC0, -0x0C,0x10, 0x08,0x00, 0x00,0x00, 0x3F,0xE0, -/* @chui0 (12x12,V)@ [suki software]*/ -0x3F,0xF0, 0x20,0x40, 0x20,0x40, 0x3F,0xE0, -0x02,0x00, 0x04,0x00, 0x18,0x00, 0xF0,0x10, -0x50,0x60, 0x1F,0x80, 0x10,0x60, 0x12,0x10, -/* @chui1 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x0E,0x00, 0x00,0x30, 0xFF,0xC0, -0x08,0x20, 0x11,0x10, 0x06,0x00, 0x18,0x10, -0xF0,0x60, 0x17,0x80, 0x10,0x60, 0x10,0x10, -/* @chui2 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x80, 0xFF,0xF0, 0x11,0x00, -0x13,0x10, 0x29,0x10, 0x2F,0xD0, 0x29,0x10, -0x29,0x10, 0x3F,0xF0, 0x49,0x10, 0x49,0x10, -/* @chui3 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x0E,0x40, 0x72,0x40, 0x13,0xF0, -0x12,0x40, 0x12,0x40, 0x29,0x10, 0x2F,0xF0, -0x29,0x10, 0x7F,0xF0, 0x49,0x10, 0x49,0x10, -/* @chui4 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x09,0x20, 0x29,0x20, 0x29,0x20, -0x2F,0xE0, 0x29,0x20, 0x29,0x20, 0x7F,0xF0, -0x49,0x20, 0x49,0x20, 0x4F,0xE0, 0xC9,0x20, -/* @chun0 (12x12,V)@ [suki software]*/ -0x02,0x20, 0x02,0x20, 0x22,0x40, 0x2A,0x40, -0x2A,0xF0, 0x2B,0x50, 0x2E,0x50, 0xFA,0x50, -0x2A,0x50, 0x2A,0x50, 0x2B,0x70, 0x2A,0x80, -/* @chun1 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x11,0x80, 0x16,0x00, 0xFF,0xF0, -0x14,0x40, 0x22,0x40, 0x2A,0x80, 0x2B,0x70, -0x2E,0x50, 0xFA,0x50, 0x2A,0x50, 0x2B,0x50, -/* @chun2 (12x12,V)@ [suki software]*/ -0x4F,0xF0, 0x48,0x50, 0x7F,0x90, 0x48,0x10, -0x7F,0x90, 0x48,0x90, 0x4F,0xF0, 0x20,0x10, -0x2E,0x90, 0xAA,0x90, 0x6A,0xB0, 0x2A,0xD0, -/* @chun3 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x40,0x00, 0x44,0x10, -0x57,0xF0, 0x54,0x50, 0x54,0x90, 0x56,0x90, -0x55,0x10, 0x54,0x90, 0x55,0x90, 0x56,0x50, -/* @chun4 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x86,0x30, 0x61,0xC0, 0x0E,0x00, -0x00,0x10, 0x20,0x10, 0x2E,0x90, 0x2A,0x90, -0xAA,0x90, 0x6A,0xB0, 0x2A,0xD0, 0x2A,0x90, -/* @chun5 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x04,0x40, 0x0C,0xC0, 0x35,0x40, -0xC6,0x50, 0x0C,0x50, 0x10,0x00, 0x13,0xE0, -0x10,0x20, 0x10,0x20, 0xFF,0xF0, 0x10,0x20, -/* @chun6 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x44,0xB0, 0x55,0x20, 0x55,0x70, -0x56,0x20, 0x57,0xF0, 0x5D,0x40, 0xF5,0x40, -0x55,0x40, 0x55,0x70, 0x57,0xE0, 0x54,0x70, -/* @chuo0 (12x12,V)@ [suki software]*/ -0x88,0x40, 0xD0,0x80, 0xA3,0xF0, 0xFD,0x50, -0x01,0x50, 0xCB,0xF0, 0xB1,0x50, 0xFD,0x50, -0x04,0x00, 0x04,0x00, 0xFF,0x90, 0x08,0x70, -/* @chao9 (12x12,V)@ [suki software]*/ -0x04,0x40, 0x0C,0xC0, 0x15,0x40, 0xE6,0x40, -0x4C,0x40, 0x00,0x10, 0x0F,0xD0, 0x0A,0x50, -0x0A,0x50, 0xFA,0x70, 0x2A,0x50, 0x2A,0x50, -/* @ci0 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x06,0x80, 0x01,0x30, 0x3F,0xC0, -0x20,0x00, 0x23,0xF0, 0x20,0x00, 0xBF,0xF0, -0x61,0x00, 0x21,0x00, 0x3F,0xF0, 0x21,0x00, -/* @ci1 (12x12,V)@ [suki software]*/ -0x20,0x20, 0x28,0x20, 0x26,0x30, 0x24,0xC0, -0x23,0x00, 0xF0,0x80, 0x21,0x00, 0x2E,0x00, -0x24,0x30, 0xF5,0xC0, 0x24,0x30, 0x25,0x00, -/* @ci2 (12x12,V)@ [suki software]*/ -0x41,0x00, 0x47,0xF0, 0x7A,0x00, 0x42,0x00, -0x43,0xF0, 0x50,0x40, 0x10,0xD0, 0x93,0x60, -0x7C,0x50, 0x50,0x80, 0x10,0x40, 0x31,0xD0, -/* @ci3 (12x12,V)@ [suki software]*/ -0x07,0xF0, 0x00,0x00, 0x7F,0xF0, 0x04,0x10, -0x04,0x00, 0xFF,0xF0, 0x04,0x10, 0x14,0x00, -0x3F,0xF0, 0xD2,0x40, 0x52,0x40, 0x3F,0xF0, -/* @ci4 (12x12,V)@ [suki software]*/ -0x24,0x00, 0x24,0x70, 0x24,0x40, 0x3F,0xC0, -0x44,0x40, 0x44,0x70, 0x05,0x00, 0x21,0x20, -0x29,0x20, 0xA5,0x20, 0x61,0xF0, 0x21,0x20, -/* @ci5 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x20,0x00, 0x22,0x50, 0x26,0xC0, -0xBB,0x50, 0x62,0xC0, 0x24,0x40, 0x20,0x10, -0x22,0x40, 0x66,0xC0, 0xBB,0x40, 0x26,0xC0, -/* @ci6 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x84,0x80, 0x44,0x80, 0x6F,0x80, -0x10,0xF0, 0x28,0xA0, 0x11,0xB0, 0xE2,0xA0, -0x44,0xA0, 0x78,0xA0, 0x44,0xB0, 0x44,0x80, -/* @ci7 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x82,0x00, 0x72,0x00, 0x23,0xF0, -0x00,0x00, 0x00,0x00, 0x48,0x00, 0x49,0xF0, -0x49,0x10, 0x49,0x10, 0x49,0xF0, 0x48,0x00, -/* @ci8 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x0F,0xF0, 0x00,0x00, -0x00,0x00, 0xFF,0xF0, 0x04,0x10, 0x04,0x10, -0x00,0x00, 0xFF,0xF0, 0x02,0x00, 0x04,0x00, -/* @ci9 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x27,0xC0, 0x24,0x30, 0x24,0x40, -0xFF,0xF0, 0x24,0x40, 0x24,0x20, 0x27,0xD0, -0x00,0x00, 0x00,0x00, 0x3F,0xF0, 0x00,0x00, -/* @ci10 (12x12,V)@ [suki software]*/ -0x7F,0xC0, 0x40,0x00, 0x5F,0xF0, 0x40,0x00, -0x7F,0xC0, 0x00,0x40, 0x00,0x80, 0x7F,0x10, -0x55,0x20, 0x55,0xC0, 0x55,0x10, 0x55,0xE0, -/* @ci11 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x40,0x70, 0x38,0xC0, 0x03,0x00, -0x0C,0x00, 0x32,0x00, 0x0C,0x10, 0xF0,0x20, -0x10,0xC0, 0x1F,0x80, 0x10,0x60, 0x10,0x10, -/* @cong0 (12x12,V)@ [suki software]*/ -0x40,0x00, 0x7F,0xF0, 0x49,0x10, 0x49,0x10, -0x7F,0xF0, 0x40,0x20, 0x00,0x10, 0x4F,0x00, -0x39,0x30, 0x29,0x00, 0x09,0x40, 0x19,0x20, -/* @cong1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x21,0x00, 0x22,0xA0, 0x3C,0xA0, -0x29,0x20, 0xFB,0x40, 0x2E,0x60, 0x29,0x90, -0x29,0x10, 0xFE,0x80, 0x28,0x40, 0x28,0x20, -/* @cong2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x3F,0xF0, 0x20,0x80, 0x21,0x00, -0x66,0x10, 0xBD,0x10, 0x25,0x20, 0x24,0xC0, -0x24,0xC0, 0x27,0x20, 0x24,0x10, 0x20,0x00, -/* @cong3 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x02,0x10, 0x04,0x10, 0x18,0x20, -0xF4,0x40, 0x52,0x80, 0x13,0x00, 0x1D,0x10, -0x10,0xE0, 0x11,0xC0, 0x1E,0x70, 0x10,0x20, -/* @cong4 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x10, 0x00,0xE0, -0xFF,0x00, 0x00,0x80, 0x00,0x60, 0x00,0x10, -0x01,0xE0, 0xFE,0x00, 0x01,0x80, 0x00,0x60, -/* @cong5 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x30, 0x00,0xC0, -0x7F,0x00, 0x00,0x80, 0x00,0x60, 0x00,0x30, -0x00,0xC0, 0x7F,0x00, 0x01,0x00, 0x00,0xC0, -/* @cou0 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x40,0x70, 0x3B,0xA0, 0x12,0x40, -0x22,0x60, 0x2A,0xA0, 0x2B,0xA0, 0x3E,0xA0, -0xEA,0xF0, 0x2A,0xA0, 0x2A,0xA0, 0x2B,0x20, -/* @cu0 (12x12,V)@ [suki software]*/ -0x24,0x10, 0x1C,0xE0, 0x07,0x00, 0xFF,0xF0, -0x0D,0x00, 0x34,0xC0, 0x00,0x00, 0x7F,0xF0, -0x44,0x40, 0x44,0x40, 0x44,0x40, 0x44,0x40, -/* @cu1 (12x12,V)@ [suki software]*/ -0x4F,0xF0, 0x48,0xA0, 0x7F,0x20, 0x48,0x20, -0x7F,0xA0, 0x48,0xA0, 0x4F,0xF0, 0x42,0x00, -0x12,0xF0, 0xFE,0x90, 0x12,0x90, 0x12,0x90, -/* @cu2 (12x12,V)@ [suki software]*/ -0x12,0x00, 0x22,0x00, 0xCA,0x30, 0x47,0xC0, -0x62,0x80, 0x52,0xF0, 0x41,0x00, 0x02,0x60, -0x2D,0xA0, 0xC4,0xA0, 0x64,0xF0, 0x54,0xA0, -/* @cu3 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x08,0x00, 0x3F,0xF0, 0xE0,0x00, -0x40,0x00, 0x00,0x00, 0x7E,0xF0, 0x44,0x00, -0x44,0x00, 0x47,0xF0, 0x44,0x40, 0x44,0x40, -/* @cuan0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7D,0xF0, 0x44,0x00, 0x47,0xF0, -0x7C,0x80, 0x00,0x80, 0x34,0x30, 0x2B,0xA0, -0x32,0xA0, 0xA2,0xA0, 0x6F,0xF0, 0x32,0xA0, -/* @cuan1 (12x12,V)@ [suki software]*/ -0x10,0x10, 0x20,0x10, 0xC0,0x10, 0x5F,0xD0, -0x75,0x50, 0x55,0x50, 0x55,0x70, 0x35,0x50, -0xD5,0x50, 0x55,0x50, 0x75,0x50, 0x5F,0xD0, -/* @cuan2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x30,0x00, 0x24,0x30, 0x27,0xA0, -0x2A,0xA0, 0x32,0xA0, 0xA2,0xA0, 0x6F,0xF0, -0x22,0xA0, 0x22,0xA0, 0x32,0xA0, 0x2B,0xA0, -/* @cui0 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x08,0x80, 0xFF,0xF0, 0x09,0x00, -0x0A,0x80, 0x01,0x00, 0x73,0xF0, 0x1E,0x50, -0x12,0x50, 0x1A,0x50, 0xF7,0xF0, 0x12,0x50, -/* @cui1 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x00,0x80, 0x01,0x00, 0x73,0xF0, -0x1E,0xA0, 0x12,0xA0, 0x12,0xA0, 0x1A,0xA0, -0xF7,0xF0, 0x12,0xA0, 0x12,0xA0, 0x12,0xA0, -/* @cui2 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x1F,0xF0, 0xE0,0x00, -0x41,0x00, 0x72,0x00, 0x1F,0xF0, 0x12,0xA0, -0x12,0xA0, 0xFA,0xA0, 0x17,0xF0, 0x12,0xA0, -/* @cui3 (12x12,V)@ [suki software]*/ -0x00,0x00, 0xFF,0xF0, 0x88,0x80, 0x88,0x80, -0xFF,0xF0, 0x04,0x00, 0x08,0x00, 0x17,0xF0, -0xE4,0x00, 0x25,0xF0, 0x25,0x00, 0x25,0x20, -/* @cui4 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x0C,0x80, 0x01,0x30, 0x3F,0xC0, -0x24,0x50, 0x24,0x90, 0x27,0x10, 0xB4,0x90, -0x6C,0x70, 0x24,0x50, 0x27,0x90, 0x24,0x90, -/* @cui5 (12x12,V)@ [suki software]*/ -0x24,0x10, 0x1C,0x60, 0x05,0x80, 0xFF,0xF0, -0x0D,0x00, 0x34,0xA0, 0x25,0x20, 0x22,0x20, -0x3C,0x20, 0xA2,0x20, 0x61,0xF0, 0x22,0x20, -/* @cui6 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x86,0x20, 0x60,0xF0, 0x07,0x00, -0x09,0x20, 0x22,0x20, 0x2C,0x20, 0x22,0x20, -0xA1,0x20, 0x61,0xF0, 0x22,0x20, 0x2C,0x20, -/* @cui7 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x82,0x10, 0xC6,0x10, 0xAA,0x30, -0x92,0x50, 0x83,0x90, 0xFA,0x50, 0x0A,0x30, -0x86,0x10, 0xCA,0x50, 0xB3,0x90, 0x82,0x50, -/* @cun0 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x08,0xC0, 0x0B,0x00, 0xFF,0xF0, -0x0A,0x00, 0x09,0x80, 0x00,0x00, 0x09,0x00, -0x08,0xC0, 0x08,0x00, 0x08,0x00, 0xFF,0xF0, -/* @cun1 (12x12,V)@ [suki software]*/ -0x00,0x20, 0x20,0x40, 0x20,0x80, 0x23,0xF0, -0x26,0x00, 0x38,0x40, 0xE4,0x40, 0xA4,0x40, -0x24,0x40, 0x24,0x40, 0x25,0xF0, 0x26,0x40, -/* @cun2 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x08,0x00, 0x08,0x00, 0x0A,0x00, -0x09,0x80, 0x08,0xE0, 0x08,0x00, 0x08,0x00, -0x08,0x00, 0xFF,0xF0, 0x08,0x00, 0x08,0x00, -/* @cuo0 (12x12,V)@ [suki software]*/ -0x40,0x40, 0x43,0x80, 0x7D,0xF0, 0x41,0x00, -0x41,0xF0, 0x40,0x80, 0x24,0x90, 0xA4,0xE0, -0x67,0xA0, 0x3C,0xA0, 0x24,0xB0, 0x24,0xA0, -/* @cuo1 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x08,0x80, 0xFF,0xF0, 0x09,0x00, -0x08,0x00, 0x02,0x00, 0x03,0xF0, 0xFA,0xA0, -0xAA,0xA0, 0xAB,0xF0, 0xAA,0x80, 0xAA,0xE0, -/* @cuo2 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x11,0x00, 0x12,0x10, 0x01,0x20, 0x95,0x60, -0x75,0xA0, 0x17,0x20, 0x1D,0x30, 0x35,0x20, -/* @cuo3 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x12,0x00, 0x02,0x00, 0x12,0xF0, 0x7E,0x90, -0x12,0x90, 0x12,0x90, 0x12,0x90, 0x7E,0x90, -/* @cuo4 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x08,0x80, 0xFF,0xF0, 0x09,0x00, -0x0A,0x80, 0x01,0x20, 0x3E,0x20, 0x12,0x20, -0x01,0xA0, 0xFF,0xF0, 0x00,0xA0, 0x03,0x20, -/* @cuo5 (12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0x34,0x80, 0xE7,0xF0, -0x24,0x80, 0x24,0x80, 0x02,0x00, 0x12,0xF0, -0xFE,0x90, 0x12,0x90, 0x12,0x90, 0xFE,0x90, -/* @da0 (12x12,V)@ [suki software]*/ -0x10,0x80, 0x10,0x80, 0xFF,0xF0, 0x11,0x00, -0x12,0x40, 0x20,0x40, 0x20,0xB0, 0xF9,0xA0, -0x22,0xA0, 0x2C,0xA0, 0x22,0xA0, 0xF9,0x20, -/* @da1 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x41,0x00, 0x21,0xF0, 0x30,0x00, -0x08,0x00, 0x08,0x10, 0x08,0x20, 0x08,0xC0, -0x7F,0x00, 0x08,0x80, 0x08,0x40, 0x08,0x20, -/* @da2 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x08,0x80, 0x31,0x00, 0xC1,0x00, -0x62,0xB0, 0x5A,0xA0, 0x44,0xA0, 0x58,0xA0, -0x28,0xA0, 0xC4,0xA0, 0x42,0xA0, 0x62,0xB0, -/* @da3 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x0C,0x80, 0x01,0x30, 0x7F,0xC0, -0x48,0x40, 0x48,0x90, 0x7D,0x50, 0xCA,0x50, -0x4C,0x50, 0x4A,0x50, 0x7D,0x50, 0x48,0x90, -/* @da4 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x08,0x40, 0x08,0x80, 0xFF,0xF0, -0x09,0x00, 0x0A,0x00, 0x28,0x00, 0x20,0x00, -0x20,0x00, 0x20,0x00, 0x3F,0xF0, 0x20,0x00, -/* @da5 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x04,0x00, 0x04,0x00, 0x04,0x00, -0x04,0x00, 0x04,0x30, 0x05,0xC0, 0xFE,0x00, -0x05,0x80, 0x04,0x60, 0x04,0x10, 0x04,0x00, -/* @dai0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x80, 0x00,0x80, 0x7E,0x80, -0x44,0x90, 0x44,0xA0, 0x44,0xC0, 0x47,0xF0, -0x44,0xC0, 0x44,0xA0, 0x44,0x90, 0x7E,0x80, -/* @dai1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x40,0x40, 0x40,0x40, 0x40,0x80, -0x43,0x00, 0x4D,0x00, 0x78,0x80, 0x48,0xD0, -0x48,0x10, 0x48,0x20, 0x48,0x40, 0x49,0x80, -/* @dai2 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x1F,0xF0, 0xE0,0x20, -0x42,0x20, 0x2A,0x40, 0x2A,0xC0, 0x2B,0x20, -0xFE,0x10, 0x2A,0xF0, 0x2B,0x10, 0x2A,0xA0, -/* @dai3 (12x12,V)@ [suki software]*/ -0x10,0x00, 0x57,0xD0, 0x55,0x50, 0x55,0x70, -0xF7,0xD0, 0x55,0x50, 0x55,0x70, 0x57,0xD0, -0x10,0x10, 0x10,0x00, 0xFF,0x80, 0x50,0x70, -/* @dai4 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x26,0x00, 0x24,0x00, 0x24,0xF0, -0xFC,0x80, 0x24,0x80, 0x24,0x80, 0xFF,0xF0, -0x24,0x80, 0x24,0x80, 0x24,0x80, 0xFC,0xF0, -/* @dai5 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x43,0x00, 0x4D,0x00, 0x78,0xB0, -0x48,0xC0, 0x4B,0x00, 0x4C,0x00, 0x02,0x70, -0x06,0x40, 0x1A,0x40, 0xE2,0x40, 0x02,0x40, -/* @dai6 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x02,0x00, 0x0C,0x00, 0xF7,0xF0, -0x44,0x00, 0x04,0x00, 0x04,0x00, 0xFC,0x00, -0x0B,0x80, 0x08,0x60, 0x48,0x10, 0x28,0x00, -/* @dai7 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x08,0x00, 0x10,0x00, 0x3F,0xF0, -0xC1,0x00, 0x51,0x00, 0x11,0x00, 0x11,0x70, -0xE1,0x00, 0x31,0x00, 0xA9,0x00, 0x65,0xF0, -/* @dai8 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x08,0x80, 0x10,0x80, 0x3F,0x80, -0xC0,0x90, 0x50,0xA0, 0x12,0xC0, 0x11,0x80, -0xF0,0xE0, 0x18,0x90, 0x24,0x90, 0xA2,0xE0, -/* @dai9 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x08,0x40, 0x10,0x80, 0xE3,0xF0, -0x5C,0x00, 0x0A,0x40, 0x22,0x40, 0x22,0x50, -0x22,0x40, 0xFE,0x40, 0x22,0x40, 0x23,0xF0, -/* @dai10 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x42,0x00, 0x33,0xF0, 0x00,0x00, -0x08,0x00, 0x08,0x10, 0x2A,0x90, 0x2A,0x60, -0x2A,0x40, 0xFF,0xF0, 0x2A,0x40, 0x2A,0xA0, -/* @dai11 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x10, 0x10,0x00, -0x37,0xB0, 0x54,0x80, 0x94,0x80, 0x14,0xA0, -0x14,0x90, 0x14,0x80, 0x54,0x80, 0x37,0x80, -/* @dan0 (12x12,V)@ [suki software]*/ -0x40,0x00, 0x7F,0xF0, 0x48,0x80, 0x48,0x90, -0x48,0x90, 0x7F,0xF0, 0x44,0x20, 0x18,0x00, -0x10,0x10, 0x10,0xE0, 0xFF,0x00, 0x10,0xF0, -/* @dan1 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x12,0x00, 0x14,0x00, 0x00,0x00, 0x7F,0xC0, -0x44,0x40, 0x44,0x40, 0x44,0x40, 0x44,0x40, -/* @dan2 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x01,0x00, 0x01,0x00, 0x01,0x30, -0x7F,0xC0, 0x41,0x00, 0x51,0x00, 0x49,0x00, -0x4F,0x00, 0x45,0x00, 0x41,0x00, 0x7F,0xF0, -/* @dan3 (12x12,V)@ [suki software]*/ -0x00,0x10, 0x00,0x10, 0x1F,0xD0, 0x14,0x90, -0x94,0x90, 0x74,0x90, 0x54,0x90, 0x1F,0xF0, -0x14,0x90, 0x34,0x90, 0xD4,0x90, 0x54,0x90, -/* @dan4 (12x12,V)@ [suki software]*/ -0x00,0x20, 0x3F,0xA0, 0xA4,0xA0, 0x64,0xA0, -0x3F,0xF0, 0x64,0xA0, 0xA4,0xA0, 0x3F,0xA0, -0x00,0x20, 0x00,0x00, 0x7F,0xF0, 0x44,0x00, -/* @dan5 (12x12,V)@ [suki software]*/ -0x10,0x80, 0x10,0x80, 0x11,0x00, 0xFF,0xF0, -0x12,0x00, 0x14,0x10, 0x9F,0x90, 0x54,0x90, -0x34,0x90, 0x1F,0xF0, 0x34,0x90, 0x54,0x90, -/* @dan6 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x48,0x80, 0x48,0x80, -0x7F,0xF0, 0x00,0x00, 0x00,0x00, 0x7F,0xE0, -0x44,0x20, 0x44,0x20, 0x44,0x20, 0x44,0x20, -/* @dan7 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x7F,0xE0, -0x44,0x20, 0x44,0x20, 0x44,0x20, 0x44,0x20, -0x44,0x20, 0x44,0x20, 0x44,0x20, 0x7F,0xE0, -/* @dan8 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x14,0x00, 0x24,0x20, 0xD5,0x30, -0x54,0xA0, 0x54,0x40, 0x57,0xB0, 0x54,0x80, -0x55,0x50, 0x55,0x20, 0x54,0x00, 0x57,0xF0, -/* @dan9 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x1F,0xF0, 0xE4,0x00, -0x40,0x00, 0x00,0x00, 0x7F,0xF0, 0x44,0x40, -0x44,0x40, 0x44,0x40, 0x44,0x40, 0x44,0x40, -/* @dan10 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x0E,0x00, 0x00,0x00, 0xFF,0xF0, -0x10,0x00, 0x08,0x20, 0x9F,0xA0, 0x74,0xA0, -0x14,0xA0, 0x14,0xA0, 0x1F,0xF0, 0x34,0xA0, -/* @dan11 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x86,0x30, 0x61,0xC0, 0x0E,0x00, -0x00,0x10, 0x09,0x60, 0x31,0x00, 0x02,0x10, -0xFD,0xE0, 0x08,0x30, 0x08,0x40, 0x14,0x40, -/* @dan12 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x84,0x00, 0x77,0xF0, 0x20,0x00, -0x42,0x50, 0x4E,0x20, 0x72,0x10, 0x03,0xE0, -0x00,0x00, 0x27,0xE0, 0x20,0x20, 0x3F,0xE0, -/* @dan13 (12x12,V)@ [suki software]*/ -0x40,0x80, 0x4F,0xC0, 0x48,0x80, 0x48,0x80, -0x78,0xF0, 0x00,0x10, 0x9F,0xD0, 0x54,0x90, -0x34,0x90, 0x1F,0xF0, 0x14,0x90, 0x34,0x90, -/* @dan14 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x41,0x00, 0x42,0x00, 0x5C,0x70, -0x42,0x40, 0x41,0x40, 0x41,0x40, 0x7F,0xF0, -0x49,0x40, 0x49,0x40, 0x49,0x40, 0x49,0x70, -/* @dang0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x02,0x00, 0x42,0x40, -0x3A,0x40, 0x12,0x40, 0x02,0x40, 0x02,0x40, -0xFE,0x40, 0x02,0x40, 0x0A,0x40, 0x72,0x40, -/* @dang1 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x08,0x40, 0x08,0x80, 0xFF,0xF0, -0x09,0x00, 0x0A,0x00, 0x28,0x00, 0x12,0x40, -0x0E,0x40, 0x02,0x40, 0xFE,0x40, 0x06,0x40, -/* @dang2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x04,0x00, 0x18,0x00, 0x50,0x00, -0x33,0xC0, 0x12,0x70, 0x12,0x40, 0xF2,0x40, -0x12,0x40, 0x12,0x70, 0x33,0xC0, 0x50,0x00, -/* @dang3 (12x12,V)@ [suki software]*/ -0x02,0x10, 0x41,0x90, 0x51,0x10, 0x4C,0x60, -0x4B,0x80, 0xE0,0x00, 0x48,0x10, 0x49,0x20, -0x49,0xC0, 0xEB,0x10, 0x4D,0xE0, 0x49,0x00, -/* @dang4 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x08,0xC0, 0x0B,0x00, 0xFF,0xF0, -0x0A,0x00, 0x09,0x80, 0x2A,0x00, 0x12,0x40, -0x0E,0x40, 0x02,0x40, 0x7E,0x40, 0x06,0x40, -/* @dao0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x40,0x00, 0x40,0x00, -0x40,0x30, 0x40,0xC0, 0x7F,0x00, 0x40,0x00, -0x40,0x00, 0x40,0x00, 0x40,0x00, 0x40,0x00, -/* @dao1 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x08,0x40, 0x08,0x80, 0xFF,0xF0, -0x09,0x00, 0x0A,0x30, 0x00,0x00, 0x3F,0x80, -0x20,0xF0, 0x68,0x80, 0xA4,0x80, 0x21,0xB0, -/* @dao2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7E,0xF0, 0x44,0x00, 0x47,0xF0, -0x44,0x80, 0x7E,0x80, 0x00,0x00, 0x49,0xF0, -0x45,0x20, 0x52,0x20, 0x4C,0x00, 0x80,0x20, -/* @dao3 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x1F,0xF0, 0xE8,0x00, -0x46,0x40, 0x4A,0x40, 0x73,0xF0, 0x42,0x40, -0x47,0x40, 0x42,0x40, 0x00,0x00, 0x0F,0xF0, -/* @dao4 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x10, 0x00,0x00, 0x3F,0x80, -0x20,0x80, 0x68,0xF0, 0xA6,0x80, 0x24,0x80, -0x20,0x80, 0x22,0x90, 0x21,0x80, 0x3E,0x80, -/* @dao5 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x80, 0x91,0xF0, 0x76,0x80, -0x1A,0x40, 0x22,0x00, 0x2A,0x10, 0x2A,0x60, -0x2B,0xC0, 0xFE,0x60, 0x2A,0x50, 0x2A,0x40, -/* @dao6 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x00,0x40, 0x00,0x40, 0x7C,0x40, -0x52,0x60, 0x52,0x50, 0x52,0x40, 0x52,0x40, -0x52,0x40, 0x52,0x40, 0x53,0xF0, 0x72,0x40, -/* @dao7 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x44,0x40, 0x4E,0x40, 0x54,0x40, -0x64,0x40, 0x47,0xF0, 0x54,0x40, 0x4E,0x40, -0x44,0x40, 0x00,0x00, 0x1F,0xF0, 0x00,0x00, -/* @dao8 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x48,0xC0, 0x4B,0x00, 0x7F,0xF0, -0x89,0x00, 0x88,0xC0, 0x10,0x00, 0x4D,0xF0, -0x41,0x20, 0x52,0x20, 0x4C,0x00, 0x81,0x20, -/* @dao9 (12x12,V)@ [suki software]*/ -0x07,0x00, 0x00,0x00, 0xFF,0xF0, 0x08,0x00, -0x06,0x10, 0x00,0x10, 0x0F,0x90, 0x0A,0x90, -0x0A,0x90, 0xFA,0xF0, 0x2A,0x90, 0x2A,0x90, -/* @dao10 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x42,0x00, 0x33,0xF0, 0x00,0x00, -0x20,0x00, 0x20,0x00, 0xA7,0xF0, 0x6D,0x50, -0x35,0x50, 0x25,0x50, 0x65,0x50, 0xA7,0xF0, -/* @dao11 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x82,0x00, 0x63,0xC0, 0x0C,0x70, -0x30,0x40, 0x04,0xC0, 0x18,0xF0, 0xE1,0x40, -0x26,0x40, 0x3C,0x70, 0x22,0x40, 0x21,0x40, -/* @de0 (12x12,V)@ [suki software]*/ -0x08,0x80, 0x11,0x00, 0x27,0xF0, 0xDC,0x00, -0x48,0x40, 0x20,0x50, 0x2F,0x40, 0x29,0x50, -0x2F,0x40, 0xF9,0x50, 0x29,0x40, 0x2F,0x40, -/* @de1 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x10,0x80, 0x21,0x00, 0xC7,0xF0, -0x58,0x00, 0x00,0x40, 0xFA,0x40, 0xAA,0x50, -0xAA,0x40, 0xAA,0x40, 0xAA,0x40, 0xAB,0xF0, -/* @de2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x1F,0xF0, 0x31,0x00, 0xD1,0x00, -0x11,0x00, 0x1F,0xF0, 0x02,0x00, 0x0C,0x00, -0xF1,0x00, 0x10,0xC0, 0x10,0x60, 0x10,0x00, -/* @deng0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7C,0xF0, 0x44,0x00, 0x47,0xF0, -0x7C,0x80, 0x22,0x80, 0x5C,0x00, 0x4A,0xF0, -0x72,0x90, 0x02,0x90, 0x62,0x90, 0x1A,0x90, -/* @deng1 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x0E,0x00, 0x00,0x30, 0xFF,0xC0, -0x02,0x40, 0x0C,0x20, 0x00,0x10, 0x20,0x00, -0x20,0x00, 0x20,0x00, 0x20,0x00, 0x3F,0xF0, -/* @deng2 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x00,0x80, 0x51,0x00, 0x4A,0x00, -0x46,0xF0, 0x5A,0x90, 0x62,0x90, 0x02,0x90, -0xE2,0x90, 0x1A,0x90, 0x26,0xF0, 0x4A,0x00, -/* @deng3 (12x12,V)@ [suki software]*/ -0x09,0x00, 0x11,0x20, 0xE5,0x20, 0x45,0x20, -0x65,0x20, 0x5D,0x30, 0x45,0x20, 0x1F,0x20, -0xE5,0x20, 0x45,0x20, 0x65,0xF0, 0x5D,0x20, -/* @deng4 (12x12,V)@ [suki software]*/ -0x7F,0xF0, 0x44,0x80, 0x44,0x80, 0x7F,0xF0, -0x21,0x00, 0x52,0x00, 0x4C,0xE0, 0x5A,0xA0, -0x62,0xA0, 0x02,0xA0, 0xE2,0xA0, 0x38,0xE0, -/* @deng5 (12x12,V)@ [suki software]*/ -0x04,0x40, 0x48,0x40, 0xA8,0x40, 0x90,0x40, -0xA7,0x50, 0xD5,0xD0, 0x95,0x50, 0x15,0x50, -0x95,0x50, 0x55,0xD0, 0x67,0x40, 0x90,0x40, -/* @deng6 (12x12,V)@ [suki software]*/ -0x40,0x00, 0x50,0x10, 0x48,0x20, 0x44,0xC0, -0x43,0x00, 0x4D,0x80, 0x70,0x60, 0x00,0x00, -0x80,0x00, 0xFF,0xF0, 0x80,0x00, 0x84,0x10, -/* @di0 (12x12,V)@ [suki software]*/ -0x08,0x10, 0x08,0x10, 0xFF,0xF0, 0x08,0x20, -0x08,0x20, 0x09,0x20, 0x01,0x00, 0x7D,0x70, -0x55,0x00, 0x55,0x00, 0x55,0xF0, 0x55,0x20, -/* @di1 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x0F,0xF0, 0x30,0x00, -0xE0,0x00, 0x40,0x00, 0x3F,0xF0, 0x22,0x00, -0x22,0x00, 0x42,0x10, 0x7F,0xC0, 0xC2,0x30, -/* @di2 (12x12,V)@ [suki software]*/ -0x08,0x10, 0x86,0x10, 0x60,0xE0, 0x07,0x00, -0x00,0x00, 0x4F,0xF0, 0x49,0x00, 0x69,0x70, -0xD9,0x50, 0x4F,0xD0, 0x59,0x50, 0x69,0x70, -/* @di3 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x82,0x00, 0x73,0xF0, 0x20,0x00, -0x00,0x00, 0x0F,0xF0, 0x09,0x10, 0x09,0x10, -0x09,0x10, 0xFF,0xF0, 0x09,0x10, 0x09,0x10, -/* @di4 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x24,0x70, 0x24,0x40, 0x3F,0xC0, -0x44,0x40, 0x44,0x40, 0x44,0x70, 0x00,0x80, -0x07,0x80, 0xF8,0x60, 0x48,0x10, 0x08,0x60, -/* @di5 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x08,0x00, 0x31,0xF0, 0xE1,0x20, -0x31,0x20, 0x2D,0x20, 0x21,0x20, 0x2F,0xF0, -0x11,0x20, 0xE1,0x20, 0x21,0x20, 0x31,0x20, -/* @di6 (12x12,V)@ [suki software]*/ -0x44,0x20, 0x28,0x40, 0x10,0x80, 0x19,0x00, -0x27,0xF0, 0xC1,0x00, 0x0E,0x00, 0x00,0x30, -0x01,0xC0, 0xFE,0x00, 0x01,0xC0, 0x04,0x30, -/* @di7 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x20, 0x40,0xF0, 0x37,0x00, -0x00,0x80, 0x04,0x80, 0x09,0x50, 0x31,0x40, -0xEA,0x40, 0x25,0xF0, 0x2A,0x40, 0x32,0x50, -/* @zhai0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x80,0x20, 0xC4,0x40, 0xA9,0xF0, -0x97,0x50, 0x83,0x50, 0xF9,0x50, 0x05,0x50, -0x83,0xF0, 0xC5,0x50, 0xA9,0x50, 0x91,0x50, -/* @di8 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x08,0xC0, 0xFF,0x50, 0x48,0x60, -0x0F,0x90, 0x00,0x00, 0x27,0xF0, 0x34,0x00, -0x2C,0xB0, 0xA4,0xA0, 0x67,0xE0, 0x2C,0xA0, -/* @di9 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x12,0x00, 0x00,0x00, 0x3F,0xF0, 0x22,0x00, -0x22,0x00, 0x22,0x00, 0x7F,0x80, 0x42,0x70, -/* @di10 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x3F,0xF0, 0x20,0x00, -0x20,0x00, 0x27,0xF0, 0x24,0x80, 0xA4,0x80, -0x64,0x80, 0x27,0xE0, 0x28,0x90, 0x28,0x80, -/* @di11 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x08,0x00, 0x08,0x00, 0x7F,0xF0, -0x08,0x10, 0x0A,0x10, 0x02,0x00, 0x7F,0xF0, -0x04,0x00, 0x04,0x00, 0xFF,0xF0, 0x08,0x40, -/* @di12 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x20,0x40, 0x29,0x80, 0x29,0x70, -0x29,0x40, 0xFD,0x40, 0x2B,0x40, 0x39,0xF0, -0x29,0x40, 0xFB,0x40, 0x2D,0x40, 0x29,0x70, -/* @di13 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x10,0x00, 0x20,0x00, 0xCB,0xC0, -0x6A,0x40, 0x5A,0x40, 0x4A,0x50, 0x5A,0x60, -0x2F,0xF0, 0xCA,0x40, 0x6A,0x40, 0x5A,0x40, -/* @di14 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x26,0x00, 0x24,0x00, 0x24,0xF0, -0x34,0x80, 0x2C,0x80, 0xA4,0x80, 0x67,0xF0, -0x24,0x80, 0x24,0x80, 0x2C,0x80, 0x34,0xF0, -/* @di15 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x10,0x00, 0x13,0xC0, 0x12,0x40, -0x92,0x40, 0x52,0x50, 0x32,0x60, 0x1F,0xF0, -0x12,0x40, 0x32,0x40, 0x52,0x40, 0x92,0x40, -/* @di16 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x42,0x00, 0x33,0xF0, 0x00,0x00, -0x00,0x10, 0x17,0x10, 0x95,0x20, 0x75,0x40, -0x15,0x80, 0x1F,0xF0, 0x35,0x00, 0xD5,0x10, -/* @di17 (12x12,V)@ [suki software]*/ -0x04,0x40, 0x1C,0xC0, 0x65,0x40, 0x06,0x40, -0x08,0x00, 0x26,0x00, 0x34,0xF0, 0x2C,0x80, -0xA4,0x80, 0x67,0xF0, 0x24,0x80, 0x2C,0x80, -/* @dian0 (12x12,V)@ [suki software]*/ -0x00,0x10, 0x40,0x10, 0x5F,0xF0, 0x55,0x50, -0xF5,0x50, 0x55,0x50, 0x5F,0xF0, 0x00,0x10, -0x40,0x00, 0x4F,0xE0, 0x58,0x10, 0x6B,0xE0, -/* @dian1 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x11,0x00, 0x12,0x00, 0x3F,0xF0, 0x20,0x00, -0x20,0x70, 0xA0,0x40, 0x7F,0xC0, 0x22,0x40, -/* @dian2 (12x12,V)@ [suki software]*/ -0x04,0x10, 0x02,0x10, 0x40,0x70, 0x33,0x80, -0x00,0x00, 0x20,0x00, 0x2F,0xF0, 0x2A,0xA0, -0x3A,0xA0, 0xEA,0xA0, 0x2A,0xA0, 0x2A,0xA0, -/* @dian3 (12x12,V)@ [suki software]*/ -0x40,0x80, 0x43,0x00, 0x4F,0xF0, 0x72,0x00, -0x43,0xF0, 0x40,0x20, 0x3F,0xE0, 0x22,0x20, -0xFF,0xE0, 0x22,0x20, 0xFF,0xE0, 0x22,0x20, -/* @dian4 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x07,0xE0, -0x04,0x40, 0x04,0x40, 0x04,0x40, 0xFC,0x50, -0x24,0x40, 0x24,0x40, 0x24,0x40, 0x2F,0xF0, -/* @dian5 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x20, 0x00,0x20, 0x1F,0xE0, -0x12,0x20, 0x12,0x30, 0xFF,0xE0, 0x12,0x20, -0x12,0x20, 0xFF,0xE0, 0x12,0x30, 0x12,0x20, -/* @dian6 (12x12,V)@ [suki software]*/ -0x44,0x00, 0x55,0xF0, 0x55,0x50, 0xFD,0x50, -0x55,0x50, 0x55,0xF0, 0x44,0x00, 0x30,0x00, -0x24,0xF0, 0xA4,0x00, 0x67,0xF0, 0x24,0x40, -/* @dian7 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x13,0x40, 0x12,0x20, 0xFF,0xD0, -0x14,0x10, 0x14,0x50, 0x00,0x90, 0x15,0x70, -0xFE,0x10, 0x12,0x10, 0x11,0x10, 0x1E,0x10, -/* @dian8 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x1F,0xF0, 0x12,0x20, -0x12,0x20, 0x12,0x20, 0x12,0x20, 0xFF,0xF0, -0x12,0x20, 0x12,0x20, 0x12,0x20, 0x12,0x20, -/* @dian9 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x0F,0xF0, 0x34,0x00, -0xE0,0x00, 0x40,0x00, 0x3F,0xF0, 0x21,0x00, -0x21,0x00, 0x21,0x00, 0x3F,0xF0, 0x21,0x00, -/* @dian10 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x18,0x00, 0xE7,0xF0, -0x24,0x90, 0x24,0x90, 0x24,0x90, 0x27,0xF0, -0x24,0x90, 0x24,0x90, 0x24,0x90, 0x27,0xF0, -/* @dian11 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x3F,0xF0, 0x20,0x00, -0x20,0x00, 0x20,0x70, 0x20,0x40, 0xA0,0x40, -0x7F,0xC0, 0x22,0x40, 0x22,0x40, 0x22,0x40, -/* @dian12 (12x12,V)@ [suki software]*/ -0x0E,0x00, 0x00,0x00, 0xFF,0xF0, 0x10,0x00, -0x08,0x00, 0x3F,0xF0, 0x20,0x00, 0x20,0x70, -0xA0,0x40, 0x60,0x40, 0x3F,0xC0, 0x22,0x40, -/* @dian13 (12x12,V)@ [suki software]*/ -0x00,0x10, 0x20,0x10, 0x20,0x10, 0x2F,0xD0, -0xAB,0x50, 0x6D,0x50, 0x39,0x50, 0x29,0x70, -0x3D,0x50, 0x2B,0x50, 0x6B,0x50, 0xAB,0x50, -/* @dian14 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x86,0x20, 0x60,0x70, 0x01,0x80, -0x06,0x00, 0x30,0x10, 0x24,0xE0, 0x24,0x10, -0xA4,0x00, 0x67,0xF0, 0x24,0x40, 0x24,0x40, -/* @dian15 (12x12,V)@ [suki software]*/ -0x00,0x00, 0xFF,0xF0, 0x91,0x20, 0x97,0xE0, -0x91,0x20, 0x91,0x20, 0x97,0xE0, 0xF1,0x20, -0x04,0x20, 0xF9,0x80, 0x81,0x60, 0x81,0x10, -/* @diao0 (12x12,V)@ [suki software]*/ -0x41,0x00, 0x42,0x00, 0x4F,0xF0, 0x74,0x10, -0x44,0x10, 0x47,0xF0, 0x00,0x10, 0x7F,0xE0, -0x4A,0x00, 0x4A,0xF0, 0x7E,0x90, 0x4A,0x90, -/* @diao1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x3F,0xE0, 0x20,0x40, 0x20,0x40, -0x20,0x40, 0x3F,0xE0, 0x40,0x00, 0x40,0x40, -0x40,0x80, 0x41,0x00, 0x46,0x00, 0x48,0x00, -/* @diao2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x52,0x00, 0x52,0xE0, -0x7E,0xA0, 0x52,0xA0, 0x7F,0xF0, 0x04,0x00, -0x1F,0xF0, 0xF2,0x40, 0x12,0x40, 0x9F,0xF0, -/* @diao3 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x80,0x40, 0x71,0xF0, 0x26,0x00, -0x00,0x00, 0x7F,0xF0, 0x42,0x00, 0x52,0xF0, -0x52,0x90, 0x7E,0x90, 0x52,0x90, 0x52,0xF0, -/* @diao4 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x40,0x40, 0x40,0x60, -0x40,0xC0, 0x40,0x80, 0x41,0x00, 0x41,0x00, -0x42,0x00, 0x42,0x00, 0x44,0x00, 0x40,0x00, -/* @diao5 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x11,0x00, 0x12,0x10, 0x0F,0x90, 0x0A,0x90, -0x0A,0x90, 0xFA,0xF0, 0x2A,0x90, 0x2A,0x90, -/* @diao6 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0xF0, 0x7E,0x80, -0x44,0x80, 0x44,0x80, 0x44,0x80, 0x47,0xF0, -0x44,0x80, 0x44,0x80, 0x44,0x80, 0x7E,0x80, -/* @diao7 (12x12,V)@ [suki software]*/ -0x01,0x80, 0x06,0x80, 0x3C,0x80, 0xD7,0xF0, -0x14,0x80, 0x14,0x80, 0x12,0x90, 0x04,0x00, -0x18,0x00, 0xF1,0x00, 0x10,0x80, 0x10,0x60, -/* @diao8 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x84,0x00, 0x77,0xF0, 0x20,0x10, -0x00,0x20, 0x00,0x00, 0xFF,0xF0, 0x94,0x00, -0x95,0xF0, 0xFD,0x20, 0x95,0x20, 0x95,0xF0, -/* @die0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7E,0xF0, 0x42,0x00, 0x43,0xF0, -0x42,0x40, 0x7E,0x40, 0x05,0x00, 0x79,0x00, -0x11,0x00, 0x11,0x30, 0xFF,0xC0, 0x11,0x30, -/* @die1 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x24,0x00, 0x25,0x20, 0x49,0x20, -0x4A,0x50, 0xCB,0x50, 0x34,0xA0, 0x1C,0xC0, -0x15,0x40, 0x2D,0x40, 0xAA,0x40, 0x44,0x50, -/* @die2 (12x12,V)@ [suki software]*/ -0x40,0x80, 0x43,0x00, 0x7F,0xF0, 0x42,0x00, -0x43,0xF0, 0x20,0x00, 0x20,0x40, 0x7F,0x40, -0x21,0x50, 0xFD,0x60, 0x25,0xF0, 0x25,0x50, -/* @die3 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x1F,0x80, 0x10,0x80, 0xFF,0xF0, -0x10,0x90, 0x1F,0xB0, 0x20,0x50, 0x7F,0x40, -0x21,0x50, 0xFD,0x60, 0x25,0xF0, 0x25,0x60, -/* @die4 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x82,0x00, 0x73,0xF0, 0x20,0x00, -0x02,0x00, 0x0D,0x00, 0x71,0x10, 0x11,0x20, -0x11,0x40, 0xFF,0x80, 0x11,0x40, 0x11,0x20, -/* @die5 (12x12,V)@ [suki software]*/ -0x44,0x00, 0x34,0x00, 0x27,0xF0, 0x00,0x00, -0x20,0x10, 0x20,0x40, 0xFF,0x40, 0x21,0x50, -0x21,0x60, 0xFD,0xF0, 0x25,0x60, 0x25,0x50, -/* @die6 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0xC0, 0x08,0x80, 0x8D,0x80, -0x8A,0xB0, 0xCD,0xA0, 0xA8,0xA0, 0x90,0xA0, -0x90,0xA0, 0xAD,0xA0, 0xCA,0xA0, 0x8A,0xB0, -/* @ding0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x40,0x00, 0x40,0x00, 0x40,0x00, -0x40,0x00, 0x40,0x00, 0x40,0x00, 0x7F,0xF0, -0x40,0x00, 0x40,0x00, 0x40,0x00, 0x40,0x00, -/* @ding1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x48,0x80, 0x48,0x80, -0x48,0x80, 0x7F,0xF0, 0x20,0x00, 0x20,0x00, -0x20,0x00, 0x20,0x00, 0x3F,0xF0, 0x20,0x00, -/* @ding2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xE0, 0x40,0x40, 0x40,0x40, -0x40,0x40, 0x7F,0xE0, 0x40,0x00, 0x40,0x00, -0x40,0x00, 0x40,0x00, 0x7F,0xF0, 0x40,0x00, -/* @ding3 (12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0x34,0x80, 0xD7,0xF0, -0x14,0x80, 0x14,0x80, 0x10,0x90, 0x20,0x00, -0x20,0x00, 0x20,0x00, 0x3F,0xF0, 0x20,0x00, -/* @ding4 (12x12,V)@ [suki software]*/ -0x20,0x00, 0x20,0x00, 0x20,0x00, 0x3F,0xF0, -0x20,0x00, 0x20,0x00, 0x40,0x00, 0x4F,0xF0, -0x58,0x00, 0x68,0x00, 0x4B,0xF0, 0x48,0x00, -/* @ding5 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x20, 0x1F,0xA0, 0x00,0xB0, -0x00,0xA0, 0x7E,0xA0, 0x4A,0xF0, 0x66,0x00, -0x52,0x00, 0x4A,0xF0, 0x7E,0xA0, 0x00,0xA0, -/* @ding6 (12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0xF7,0xF0, 0x14,0x80, -0x14,0x80, 0x00,0x90, 0x30,0x00, 0x24,0xF0, -0x24,0x00, 0xA4,0x00, 0x67,0xF0, 0x24,0x40, -/* @ding7 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x08,0x00, 0x30,0x10, 0x25,0xE0, -0x24,0x10, 0x24,0x00, 0xA4,0x00, 0x67,0xF0, -0x24,0x40, 0x24,0x40, 0x24,0x40, 0x24,0x40, -/* @ding8 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x84,0x00, 0x44,0x00, 0x27,0xF0, -0x00,0x00, 0x00,0x00, 0x20,0x10, 0x20,0x00, -0x20,0x00, 0x20,0x00, 0x20,0x00, 0x3F,0xF0, -/* @diu0 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x00,0x80, 0x24,0x80, 0x24,0x80, -0x24,0x80, 0x24,0x90, 0x44,0xB0, 0x7F,0xE0, -0x44,0x80, 0x44,0x80, 0x44,0xA0, 0xC4,0x90, -/* @dong0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x20,0x00, 0x20,0x00, 0x23,0x10, -0x2D,0x70, 0x31,0x20, 0xE1,0x00, 0x21,0x00, -0x2F,0xF0, 0x21,0x00, 0x21,0x40, 0x21,0x20, -/* @dong1 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x08,0x40, 0x08,0x80, 0x10,0x80, -0x21,0x10, 0xD1,0x00, 0x2A,0x80, 0x26,0x40, -0x26,0x30, 0x29,0x20, 0x31,0x00, 0x20,0x80, -/* @dong2 (12x12,V)@ [suki software]*/ -0x40,0x00, 0x44,0x00, 0x54,0x00, 0x55,0xF0, -0x55,0x50, 0xF5,0x50, 0x55,0x50, 0x5F,0xF0, -0x55,0x50, 0xF5,0x50, 0x55,0x50, 0x55,0xF0, -/* @dong3 (12x12,V)@ [suki software]*/ -0x0E,0x00, 0x00,0x00, 0xFF,0xF0, 0x10,0x00, -0x4C,0x00, 0x44,0x00, 0x55,0xF0, 0xF5,0x50, -0x55,0x50, 0x5F,0xF0, 0x55,0x50, 0xF5,0x50, -/* @dong4 (12x12,V)@ [suki software]*/ -0x04,0x10, 0x24,0x30, 0x24,0xD0, 0x27,0x10, -0x24,0x30, 0x24,0xA0, 0x24,0x70, 0x04,0x20, -0x08,0x00, 0x08,0x30, 0xFF,0xC0, 0x08,0x00, -/* @dong5 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x11,0x80, 0x16,0x00, 0xFF,0xF0, -0x12,0x00, 0x11,0x00, 0x20,0x10, 0x23,0x60, -0x2D,0x00, 0xF1,0x00, 0x27,0xF0, 0x21,0x00, -/* @dong6 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x1F,0xF0, 0xF0,0x00, -0x40,0x00, 0x7F,0xF0, 0x40,0x00, 0x53,0xF0, -0x52,0x20, 0x52,0x20, 0x52,0x20, 0x52,0x20, -/* @tong0 (12x12,V)@ [suki software]*/ -0x0E,0x00, 0x00,0x00, 0xFF,0xF0, 0x10,0x00, -0x0C,0x00, 0x00,0x00, 0x7F,0xF0, 0x50,0x00, -0x53,0xE0, 0x52,0x20, 0x52,0x20, 0x53,0xE0, -/* @dong7 (12x12,V)@ [suki software]*/ -0x40,0x40, 0x20,0x70, 0x33,0x80, 0x0C,0x00, -0x21,0x00, 0x23,0x00, 0x25,0x70, 0x39,0x20, -0xE1,0x00, 0x2F,0xF0, 0x21,0x00, 0x21,0x40, -/* @dong8 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x86,0x20, 0x60,0x70, 0x03,0x80, -0x0C,0x00, 0x7F,0xF0, 0x40,0x00, 0x4B,0xE0, -0x4A,0x20, 0x4A,0x20, 0x4A,0x20, 0x4B,0xE0, -/* @dou0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x3F,0x00, 0x41,0x00, 0xC1,0x00, -0x00,0x70, 0x3F,0x00, 0x69,0x00, 0xA9,0x00, -0x29,0x00, 0x3F,0x70, 0x00,0x00, 0x41,0x00, -/* @dou1 (12x12,V)@ [suki software]*/ -0x10,0x80, 0x10,0x80, 0x11,0x00, 0xFF,0xF0, -0x12,0x00, 0x14,0x40, 0x00,0x40, 0x44,0x40, -0x33,0x40, 0x00,0x40, 0x00,0x40, 0xFF,0xF0, -/* @dou2 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x00,0x40, 0x00,0x40, 0x08,0x40, -0x46,0x40, 0x33,0x40, 0x18,0x40, 0x00,0x40, -0x00,0x40, 0xFF,0xF0, 0x00,0x80, 0x00,0x80, -/* @dou3 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x48,0x40, 0x54,0x20, -0x63,0xC0, 0x04,0x10, 0x24,0xF0, 0x24,0x00, -0x24,0x00, 0xFF,0xF0, 0x24,0x40, 0x24,0x40, -/* @dou4 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x40,0x00, 0x40,0x00, 0x4F,0xA0, -0x48,0x90, 0x48,0x80, 0x48,0x80, 0x48,0x80, -0x48,0x80, 0x48,0x80, 0x48,0xF0, 0x4F,0xA0, -/* @dou5 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x42,0x00, 0x33,0xF0, 0x00,0x00, -0x00,0x00, 0x40,0x10, 0x5E,0x90, 0x52,0x70, -0x52,0x10, 0x52,0x10, 0x52,0x30, 0x5E,0xD0, -/* @dou6 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x40, 0x00,0x80, 0x3F,0xF0, -0x20,0x00, 0x28,0x00, 0x2B,0xD0, 0xAA,0x40, -0x6A,0x40, 0x2A,0x40, 0x2A,0x40, 0x2A,0x40, -/* @dou7 (12x12,V)@ [suki software]*/ -0x04,0x20, 0x24,0x40, 0x24,0xF0, 0x25,0xA0, -0xFE,0xA0, 0x24,0xA0, 0x2C,0xA0, 0x14,0xF0, -0x24,0x00, 0x00,0x00, 0x7F,0xF0, 0x44,0x10, -/* @du0 (12x12,V)@ [suki software]*/ -0x12,0x00, 0x14,0x00, 0x19,0x00, 0x10,0xF0, -0xFF,0xA0, 0x58,0xA0, 0x55,0xA0, 0x51,0xA0, -0x62,0xA0, 0x5A,0xA0, 0x44,0xA0, 0x4C,0xF0, -/* @du1 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x04,0x40, 0x44,0x40, 0x55,0xF0, -0x55,0x40, 0x55,0x40, 0x55,0x40, 0xFD,0xE0, -0x55,0x50, 0x55,0x40, 0x55,0x40, 0x55,0xF0, -/* @du2 (12x12,V)@ [suki software]*/ -0x04,0x40, 0x78,0x40, 0x10,0x80, 0xFF,0xF0, -0x11,0x00, 0x12,0x20, 0x08,0xA0, 0x2A,0x60, -0x29,0x20, 0x28,0x30, 0xFB,0xE0, 0x28,0x20, -/* @du3 (12x12,V)@ [suki software]*/ -0x42,0x10, 0x24,0x20, 0x18,0x40, 0x19,0x80, -0x67,0xF0, 0x00,0x00, 0x0F,0xC0, 0x08,0x80, -0x08,0x80, 0xFF,0xF0, 0x08,0x80, 0x08,0xA0, -/* @du4 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x42,0x00, 0x33,0xF0, 0x20,0x00, -0x00,0x00, 0x0A,0x40, 0x29,0xC0, 0x2C,0x40, -0x2B,0x40, 0xF8,0x50, 0x2B,0xE0, 0x28,0x50, -/* @du5 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x08,0x00, 0x08,0x00, 0xFF,0xF0, -0x08,0x10, 0x0C,0x50, 0x24,0x40, 0x24,0xF0, -0x25,0x90, 0xFD,0x90, 0x26,0x90, 0x24,0x90, -/* @du6 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x44,0x80, 0x44,0x80, -0x7F,0xF0, 0x04,0x20, 0x24,0x40, 0x24,0xF0, -0x25,0x90, 0xFE,0x90, 0x24,0x90, 0x2C,0x90, -/* @du7 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xE0, 0x40,0x00, 0x4F,0xF0, -0x40,0x00, 0x7F,0xE0, 0x04,0x20, 0x24,0x40, -0x24,0xF0, 0x25,0x90, 0xFE,0x90, 0x24,0x90, -/* @du8 (12x12,V)@ [suki software]*/ -0x04,0x10, 0x04,0x60, 0x05,0x80, 0x7F,0xF0, -0x05,0x00, 0x04,0xC0, 0x05,0x00, 0x01,0x00, -0x01,0x00, 0x7F,0xF0, 0x01,0x00, 0x01,0x00, -/* @du9 (12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0xF7,0xF0, 0x24,0x80, -0x24,0x80, 0x00,0x00, 0x3F,0xF0, 0x24,0x00, -0x24,0x40, 0x3F,0x60, 0xA5,0x50, 0x65,0x40, -/* @du10 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x48,0x80, -0x48,0x80, 0x7F,0xF0, 0x00,0x00, 0x04,0x00, -0x04,0x00, 0x04,0x00, 0xFF,0xF0, 0x04,0x00, -/* @du11 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x3F,0xF0, 0x20,0x00, -0x24,0x00, 0x24,0x40, 0x3F,0x60, 0xA5,0x50, -0x65,0x40, 0x25,0x40, 0x3F,0x50, 0x24,0x60, -/* @du12 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x86,0x30, 0x61,0xC0, 0x0E,0x00, -0x00,0x10, 0x3F,0xE0, 0x24,0x00, 0x24,0x60, -0xBF,0x50, 0x65,0x40, 0x25,0x50, 0x3F,0x60, -/* @du13 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x09,0x80, 0x0E,0x40, 0xF8,0x50, -0x08,0x20, 0x0F,0xD0, 0x08,0x00, 0x00,0x00, -0x1F,0xF0, 0x91,0x00, 0x51,0x00, 0x31,0x00, -/* @duan0 (12x12,V)@ [suki software]*/ -0x0A,0x00, 0x89,0xC0, 0x68,0x00, 0x08,0xF0, -0x0F,0x10, 0x08,0x10, 0x02,0xF0, 0x7A,0x80, -0x0A,0x80, 0x0A,0xF0, 0xFB,0x80, 0x0A,0xF0, -/* @duan1 (12x12,V)@ [suki software]*/ -0x06,0x00, 0x0A,0x00, 0xF2,0x10, 0x1F,0xE0, -0x12,0x20, 0x12,0x10, 0x52,0x00, 0x40,0x20, -0x4F,0x90, 0x48,0x80, 0x48,0x80, 0x48,0x80, -/* @duan2 (12x12,V)@ [suki software]*/ -0x02,0x80, 0x1C,0x80, 0xE7,0xF0, 0x24,0x80, -0x24,0x80, 0x00,0x00, 0x7F,0xF0, 0x48,0x90, -0x88,0xA0, 0x05,0x80, 0x79,0x60, 0x41,0x10, -/* @duan3 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x49,0x10, -0x49,0x20, 0x89,0x20, 0x82,0x00, 0x05,0x80, -0xF9,0x40, 0x81,0x20, 0x81,0x10, 0x81,0x60, -/* @duan4 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x22,0x20, 0x1A,0xC0, -0x03,0x00, 0xFF,0xF0, 0x0A,0x80, 0x32,0x40, -0x00,0x10, 0x3F,0xE0, 0x22,0x00, 0x22,0x00, -/* @duan5 (12x12,V)@ [suki software]*/ -0x0C,0x80, 0x35,0x80, 0xC6,0x90, 0x0C,0x90, -0x00,0x00, 0x7F,0xF0, 0x48,0x90, 0x48,0x90, -0x02,0x00, 0x7D,0x80, 0x41,0x60, 0x41,0x10, -/* @dui0 (12x12,V)@ [suki software]*/ -0x08,0x10, 0x08,0x10, 0xFF,0xF0, 0x08,0x20, -0x0A,0x20, 0x04,0x00, 0x1F,0xF0, 0xF2,0x40, -0x52,0x40, 0x92,0x40, 0x7F,0xF0, 0x52,0x40, -/* @dui1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x9F,0x80, -0x50,0x80, 0x70,0xF0, 0x10,0x80, 0x10,0x80, -0x30,0x80, 0xD0,0xF0, 0x50,0x80, 0x1F,0x80, -/* @dui2 (12x12,V)@ [suki software]*/ -0x7F,0xF0, 0x40,0x00, 0x48,0x40, 0x54,0x20, -0x63,0xC0, 0x40,0x00, 0x00,0x00, 0x00,0x30, -0x00,0xC0, 0xFF,0x00, 0x00,0xC0, 0x00,0x30, -/* @dui3 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x24,0x00, 0x22,0x30, 0x21,0x40, -0x21,0x80, 0x3E,0x60, 0x00,0x10, 0x09,0x00, -0x08,0xE0, 0x08,0x40, 0x08,0x00, 0xFF,0xF0, -/* @dun0 (12x12,V)@ [suki software]*/ -0x04,0x10, 0x04,0x10, 0xFF,0xF0, 0x04,0x20, -0x20,0xA0, 0xAE,0x90, 0x6A,0xB0, 0x2E,0xD0, -0x22,0xA0, 0x0C,0x00, 0xFB,0xC0, 0x48,0x30, -/* @dun1 (12x12,V)@ [suki software]*/ -0x3F,0xF0, 0x20,0x40, 0x20,0x40, 0x20,0x40, -0x3F,0xE0, 0x10,0x00, 0x17,0xE0, 0x10,0x40, -0x10,0x40, 0xFF,0xF0, 0x10,0x40, 0x10,0x40, -/* @dun2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7C,0xF0, 0x44,0x00, 0x47,0xF0, -0x44,0x80, 0x7C,0x80, 0x20,0x00, 0xAF,0xD0, -0x6A,0x50, 0x3D,0x50, 0x29,0x50, 0x7F,0x50, -/* @dun3 (12x12,V)@ [suki software]*/ -0x20,0x10, 0x2E,0x90, 0x2A,0x90, 0xAA,0x90, -0x6A,0xB0, 0x2A,0xE0, 0x2E,0xA0, 0x22,0x20, -0x0F,0x00, 0xF8,0xC0, 0x48,0x30, 0x08,0xC0, -/* @dun4 (12x12,V)@ [suki software]*/ -0x10,0x00, 0x17,0x80, 0x10,0x80, 0xFF,0xF0, -0x10,0x80, 0x17,0x80, 0x10,0x10, 0x80,0x00, -0x9F,0xE0, 0xB0,0x00, 0xD3,0xF0, 0x90,0x10, -/* @dun5 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x40,0x00, 0x48,0x00, -0x4B,0xC0, 0x48,0x40, 0x48,0x40, 0x7F,0xF0, -0x48,0x40, 0x48,0x40, 0x4B,0xC0, 0x48,0x10, -/* @dun6 (12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0x34,0x80, 0xD7,0xF0, -0x14,0x80, 0x14,0x80, 0x00,0x10, 0x13,0xC0, -0x10,0x40, 0x10,0x40, 0xFF,0xF0, 0x10,0x40, -/* @dun7 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x48,0x00, -0x48,0x00, 0x49,0xF0, 0x49,0x50, 0x49,0x50, -0xFF,0x50, 0x89,0x50, 0x89,0x50, 0x89,0x50, -/* @dun8 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x82,0x00, 0x63,0xF0, 0x00,0x00, -0x00,0x30, 0x7F,0xC0, 0x50,0x00, 0x57,0xF0, -0x55,0x50, 0x7D,0x50, 0x95,0x50, 0x95,0x50, -/* @duo0 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x80, 0xFF,0xF0, 0x11,0x00, -0x12,0x00, 0xA5,0x40, 0x99,0x20, 0xB9,0x30, -0xC7,0xD0, 0x03,0x00, 0xE5,0x60, 0x99,0x10, -/* @duo1 (12x12,V)@ [suki software]*/ -0x3F,0xF0, 0x20,0x40, 0x20,0x40, 0x3F,0xE0, -0x08,0x00, 0x08,0x90, 0x12,0xA0, 0x31,0x40, -0xCA,0xB0, 0x47,0x20, 0x49,0x10, 0x51,0x30, -/* @duo2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x80, 0x00,0x90, 0x04,0x90, -0x09,0x20, 0x11,0x20, 0x2A,0x40, 0xCA,0xA0, -0x45,0x90, 0x44,0x80, 0x48,0x80, 0x50,0x90, -/* @duo3 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x20,0x80, 0x21,0x00, 0x21,0x80, -0x22,0xC0, 0x24,0xB0, 0x38,0x90, 0xE0,0x80, -0x30,0x80, 0x28,0x80, 0x25,0xF0, 0x22,0x80, -/* @duo4 (12x12,V)@ [suki software]*/ -0x08,0x10, 0x08,0x10, 0xFF,0xF0, 0x08,0x20, -0x08,0xA0, 0x02,0x80, 0x04,0x90, 0x78,0xA0, -0x40,0xC0, 0x43,0xF0, 0x40,0xC0, 0x7C,0xA0, -/* @duo5 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x3F,0x80, 0x6A,0x80, 0xAA,0xB0, -0x2A,0xC0, 0x3F,0xF0, 0x02,0x00, 0x04,0x80, -0x78,0x90, 0x40,0xE0, 0x43,0xF0, 0x40,0xE0, -/* @duo6 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x80, 0x02,0x80, 0x02,0x80, -0x0C,0x90, 0xF0,0xA0, 0x80,0xC0, 0x83,0xF0, -0x80,0xC0, 0xF8,0xA0, 0x04,0x90, 0x04,0x90, -/* @duo7 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7C,0xF0, 0x44,0x00, 0x47,0xF0, -0x44,0x80, 0x7C,0x50, 0x01,0x40, 0x06,0x50, -0x78,0x60, 0x41,0xF0, 0x40,0x60, 0x7C,0x50, -/* @duo8 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x01,0x00, 0x3F,0xF0, 0x69,0x40, -0xA5,0x20, 0x3F,0xF0, 0x04,0x00, 0x18,0x00, -0x10,0x00, 0x97,0xF0, 0x70,0x40, 0x10,0x80, -/* @duo9 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x02,0x80, 0x7C,0xB0, 0x40,0xC0, -0x43,0xF0, 0x40,0xC0, 0x7C,0xA0, 0x04,0x90, -0x04,0x80, 0x00,0x00, 0x3F,0xE0, 0x00,0x00, -/* @duo10 (12x12,V)@ [suki software]*/ -0x0E,0x00, 0x00,0x00, 0xFF,0xF0, 0x10,0x00, -0x0D,0x00, 0x22,0x00, 0x26,0x00, 0x2A,0xF0, -0x3A,0xA0, 0xEA,0xA0, 0x2E,0xA0, 0x2A,0xA0, -/* @duo11 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xE0, 0x42,0x00, 0x51,0x00, -0x6E,0x00, 0x02,0x00, 0x24,0x00, 0x2F,0xF0, -0x3A,0x80, 0xEA,0x80, 0x2A,0x80, 0x2A,0xA0, -/* @e0 (12x12,V)@ [suki software]*/ -0x1F,0xC0, 0x10,0x80, 0xFF,0xF0, 0x10,0x80, -0x1F,0xA0, 0x24,0x10, 0x24,0x40, 0x3F,0xF0, -0x44,0x80, 0x45,0x00, 0x04,0x10, 0xFF,0xF0, -/* @e1 (12x12,V)@ [suki software]*/ -0x0F,0xF0, 0x00,0x00, 0xFF,0xF0, 0x00,0x10, -0x0F,0xF0, 0x24,0x20, 0x24,0x40, 0x3F,0xF0, -0x44,0x80, 0x45,0x00, 0x04,0x10, 0xFF,0xE0, -/* @e2 (12x12,V)@ [suki software]*/ -0x24,0x20, 0x24,0x40, 0x3F,0xF0, 0x44,0x90, -0xFF,0xA0, 0x24,0x70, 0x14,0x80, 0x00,0x10, -0x3F,0x90, 0x30,0x90, 0x6C,0x90, 0xA0,0x90, -/* @e3 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x1F,0xF0, 0xE8,0x00, -0x48,0x20, 0x28,0x40, 0x3F,0xF0, 0x48,0x80, -0x49,0x00, 0x08,0x00, 0xFF,0xD0, 0x08,0x30, -/* @e4 (12x12,V)@ [suki software]*/ -0x00,0x20, 0x32,0x20, 0x24,0x70, 0xBA,0xC0, -0x69,0x40, 0x2B,0x40, 0x2C,0xF0, 0x30,0x00, -0x6F,0xF0, 0x48,0x00, 0x58,0x10, 0x69,0xE0, -/* @e5 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x82,0x00, 0x73,0xF0, 0x20,0x00, -0x02,0x00, 0x04,0x00, 0x1F,0xF0, 0xE0,0x00, -0x00,0x80, 0x01,0x00, 0xFF,0xF0, 0x02,0x00, -/* @e6 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x09,0xE0, 0xFE,0x10, 0x48,0xF0, -0x0F,0x00, 0x04,0x00, 0x24,0x20, 0x24,0x40, -0x7F,0xF0, 0x44,0x80, 0x04,0x10, 0x7F,0xE0, -/* @e7 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x80, 0x50,0x90, 0x48,0x80, -0x46,0xB0, 0x40,0x80, 0x7F,0x80, 0x40,0xA0, -0x40,0x90, 0x7F,0x80, 0x42,0x80, 0x44,0x80, -/* @e8 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x10, 0x7F,0xE0, 0x40,0x00, -0x40,0x00, 0x4F,0xF0, 0x48,0x00, 0x48,0x00, -0x48,0x00, 0x48,0x40, 0x48,0x20, 0x4F,0xC0, -/* @e9 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x80, 0xFF,0xF0, 0x11,0x00, -0x12,0x00, 0x00,0x30, 0x7F,0xC0, 0x40,0x00, -0x48,0x00, 0x4F,0xF0, 0x48,0x40, 0x48,0x20, -/* @e10 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x82,0x00, 0x63,0xF0, 0x00,0x00, -0x00,0x80, 0xF9,0xE0, 0xAE,0x20, 0xAA,0x60, -0xAB,0xA0, 0xAA,0xA0, 0xAA,0x60, 0xAA,0x20, -/* @e11 (12x12,V)@ [suki software]*/ -0x01,0x00, 0xF5,0x00, 0x95,0x00, 0xF5,0xC0, -0x05,0x40, 0xF5,0x40, 0x95,0x40, 0x95,0x70, -0xF1,0x00, 0x00,0x00, 0x7F,0xF0, 0x44,0x20, -/* @e12 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x0C,0x00, 0xF3,0xF0, 0x10,0x00, -0x14,0x00, 0x18,0x00, 0x48,0x40, 0x48,0x80, -0x7F,0xF0, 0x89,0x00, 0x88,0x10, 0xFF,0xE0, -/* @en0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x30, 0xFF,0x00, -0x81,0x30, 0x91,0x00, 0x93,0x00, 0x95,0x40, -0xF9,0x30, 0x95,0x00, 0x93,0x00, 0x91,0x00, -/* @er0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x40,0x00, 0x4F,0xF0, 0x48,0x00, -0x48,0x00, 0x5F,0xF0, 0x68,0x00, 0x48,0x00, -0x48,0x00, 0x4F,0xF0, 0x48,0x00, 0x48,0x00, -/* @er1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x30, 0xFF,0xC0, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0xFF,0xF0, 0x00,0x00, 0x00,0x00, -/* @er2 (12x12,V)@ [suki software]*/ -0x00,0x10, 0x40,0x10, 0x40,0x10, 0x40,0x10, -0x7F,0xF0, 0x49,0x10, 0x49,0x10, 0x49,0x10, -0x49,0x30, 0x49,0x20, 0x49,0x20, 0x7F,0xF0, -/* @er3 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x02,0x00, 0x04,0x10, 0x08,0x20, -0x30,0x40, 0xD3,0x80, 0x51,0x00, 0x18,0x00, -0x17,0xF0, 0x10,0x00, 0x11,0x00, 0x10,0x80, -/* @er4 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x0C,0x00, 0xF0,0x00, 0x13,0xF0, -0x14,0x00, 0x18,0x10, 0x50,0x20, 0x7F,0xE0, -0x49,0x20, 0x49,0x20, 0x49,0x20, 0x49,0x20, -/* @er5 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x86,0x30, 0x61,0xC0, 0x0E,0x00, -0x40,0x20, 0x40,0x20, 0x7F,0xE0, 0x49,0x20, -0x49,0x20, 0x49,0x20, 0x49,0x20, 0x7F,0xF0, -/* @er6 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x20,0x00, 0x20,0x00, -0x20,0x00, 0x20,0x00, 0x20,0x00, 0x20,0x00, -0x20,0x00, 0x20,0x00, 0x20,0x00, 0x60,0x00, -/* @er7 (12x12,V)@ [suki software]*/ -0x20,0x00, 0x22,0x00, 0x2A,0xF0, 0x2A,0x80, -0x2A,0x80, 0x2A,0xB0, 0x2A,0x80, 0x2A,0x80, -0x2A,0xF0, 0x22,0x00, 0xFF,0xF0, 0x20,0x00, -/* @fa0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x08,0x00, 0x7C,0x00, 0x08,0x10, -0x08,0xE0, 0x0F,0x80, 0xF9,0x60, 0x09,0x10, -0x09,0x00, 0x49,0x10, 0x29,0xE0, 0x38,0x00, -/* @fa1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x80, 0xF4,0x80, 0x92,0x80, -0x93,0xF0, 0xF0,0x00, 0x90,0x00, 0x90,0x00, -0x90,0x00, 0xF3,0xF0, 0x90,0x00, 0x90,0x00, -/* @fa2 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x10,0x80, 0xE1,0xF0, 0x4E,0x00, -0x61,0x00, 0x51,0x00, 0x49,0x00, 0x11,0x00, -0xEF,0xC0, 0x42,0x30, 0x6A,0x10, 0x56,0x20, -/* @fa3 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x02,0x00, 0x0C,0x00, 0xFF,0xF0, -0x60,0x00, 0x44,0x00, 0x04,0x00, 0x04,0x00, -0xFF,0xC0, 0x48,0x30, 0x08,0x70, 0x7B,0xC0, -/* @fa4 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x22,0x00, 0x22,0x00, 0x22,0x00, -0x22,0x10, 0x32,0x20, 0x2E,0x20, 0x4A,0x40, -0x42,0x40, 0x42,0x80, 0xC3,0x00, 0xC6,0x00, -/* @fa5 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x1F,0xF0, 0x81,0x00, -0x62,0x00, 0x07,0xF0, 0x1A,0x20, 0x42,0x20, -0x5F,0xC0, 0x54,0x70, 0x4C,0x80, 0x45,0x30, -/* @fa6 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x20, 0x80,0x70, 0x63,0x80, -0x0C,0x00, 0x00,0x80, 0x08,0x80, 0x08,0x80, -0x08,0xB0, 0xFF,0xC0, 0x08,0x80, 0x08,0x80, -/* @fa7 (12x12,V)@ [suki software]*/ -0x21,0x00, 0x21,0x00, 0x3F,0xF0, 0x21,0x00, -0x21,0x00, 0x00,0x00, 0x00,0x80, 0x08,0x80, -0x08,0x90, 0x08,0xE0, 0xFF,0x80, 0x08,0x90, -/* @fan0 (12x12,V)@ [suki software]*/ -0x42,0x20, 0x51,0xA0, 0x4C,0x30, 0x49,0xC0, -0x42,0x40, 0xF6,0x70, 0x4A,0xA0, 0x4B,0x20, -0x4F,0xF0, 0xEB,0x20, 0x4A,0xA0, 0x4E,0xA0, -/* @fan1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x1F,0xE0, 0x10,0x00, 0xFF,0xF0, -0x10,0x20, 0x1F,0xE0, 0x00,0x00, 0x7F,0xF0, -0x42,0x00, 0x41,0xC0, 0x40,0x80, 0x7F,0xF0, -/* @fan2 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x08,0x80, 0x49,0x00, 0x49,0xF0, -0x6A,0x90, 0x5A,0x90, 0x4C,0x90, 0x7F,0xF0, -0x88,0x90, 0x8C,0x90, 0x9A,0x90, 0xA9,0xF0, -/* @fan3 (12x12,V)@ [suki software]*/ -0x49,0xF0, 0x6A,0x90, 0x5C,0x90, 0x7F,0xF0, -0x8C,0x90, 0x9A,0x90, 0xA9,0xF0, 0x48,0x20, -0x46,0x40, 0x40,0x80, 0x7F,0xF0, 0x48,0x20, -/* @fan4 (12x12,V)@ [suki software]*/ -0x01,0x40, 0x12,0x40, 0x14,0x40, 0xFF,0xC0, -0x14,0x40, 0x40,0x40, 0x35,0x50, 0x22,0xE0, -0x55,0x50, 0x00,0x40, 0x12,0x40, 0x14,0x40, -/* @fan5 (12x12,V)@ [suki software]*/ -0x40,0x80, 0x43,0x00, 0x4F,0xF0, 0x74,0x20, -0x44,0x20, 0x47,0xF0, 0x00,0x00, 0xFF,0xF0, -0x84,0x00, 0x83,0x00, 0x80,0x00, 0xFF,0xF0, -/* @fan6 (12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0xF7,0xF0, 0x24,0x80, -0x24,0x80, 0x24,0x80, 0x00,0x00, 0x00,0x10, -0x7F,0xE0, 0x42,0x00, 0x41,0x80, 0x40,0x00, -/* @fan7 (12x12,V)@ [suki software]*/ -0x24,0x00, 0xDF,0x00, 0x55,0x00, 0x5D,0x20, -0x57,0x20, 0x55,0x60, 0x5F,0xB0, 0x09,0xA0, -0x10,0x20, 0xE8,0xC0, 0x25,0x10, 0x22,0x00, -/* @fan8 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x7F,0xF0, 0x40,0x00, 0x44,0x00, 0x42,0x00, -0x41,0x80, 0x40,0x00, 0x7F,0xF0, 0x00,0x00, -/* @fan9 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x0E,0x00, 0x00,0x10, 0xFF,0xE0, -0x08,0x20, 0x10,0x10, 0x40,0x00, 0x4F,0xF0, -0x48,0x00, 0x58,0x10, 0x6B,0xE0, 0x48,0x10, -/* @fan10 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x48,0x00, -0x4E,0x00, 0x49,0x80, 0x48,0x40, 0x48,0x30, -0x48,0x30, 0x88,0x40, 0x89,0x80, 0x8E,0x00, -/* @fan11 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x42,0x00, 0x3B,0xF0, 0x10,0x00, -0x00,0x10, 0x00,0x60, 0x7F,0x80, 0x4A,0x00, -0x49,0x10, 0x48,0xA0, 0x48,0x40, 0x49,0xA0, -/* @fan12 (12x12,V)@ [suki software]*/ -0x22,0x10, 0x29,0x90, 0x25,0x10, 0x26,0x20, -0x20,0xC0, 0xF0,0x00, 0x20,0x00, 0x27,0xF0, -0x24,0x00, 0x34,0x00, 0xF4,0x40, 0x24,0x60, -/* @fan13 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xE0, 0x40,0x10, 0x5F,0xE0, -0x40,0x10, 0x7F,0xE0, 0x00,0x10, 0x3F,0xE0, -0x26,0x00, 0x25,0xC0, 0x64,0x30, 0x44,0x40, -/* @fan14 (12x12,V)@ [suki software]*/ -0x00,0x10, 0x42,0x20, 0x24,0x40, 0x18,0x80, -0x6D,0x00, 0x03,0xF0, 0x00,0x00, 0x00,0x00, -0x7F,0xF0, 0x40,0x00, 0x40,0x00, 0x40,0x80, -/* @fan15 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x0C,0x00, 0x70,0x00, 0x11,0xF0, -0x14,0x00, 0x18,0x00, 0x10,0x00, 0x3F,0xF0, -0x23,0x00, 0x22,0xC0, 0x22,0x30, 0x42,0x20, -/* @fan16 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x86,0x20, 0x60,0xF0, 0x07,0x00, -0x18,0x00, 0x44,0x00, 0x44,0x00, 0x44,0x10, -0x64,0x20, 0x5C,0x40, 0x84,0x80, 0x85,0x00, -/* @fang0 (12x12,V)@ [suki software]*/ -0x04,0x10, 0x04,0x10, 0x04,0x10, 0x7F,0xE0, -0x04,0x20, 0x14,0x40, 0x10,0x40, 0x10,0x10, -0x9F,0xE0, 0x51,0x00, 0x71,0x00, 0x11,0x00, -/* @fang1 (12x12,V)@ [suki software]*/ -0x22,0x00, 0x22,0x00, 0x22,0x00, 0x22,0x00, -0x22,0x10, 0xFB,0xE0, 0x22,0x40, 0x2A,0x40, -0x26,0x40, 0x22,0x40, 0xFA,0x40, 0x22,0x70, -/* @fang2 (12x12,V)@ [suki software]*/ -0x10,0x00, 0x10,0x00, 0x10,0x00, 0x10,0x00, -0x10,0x30, 0x10,0xC0, 0x9F,0x00, 0x52,0x00, -0x32,0x00, 0x12,0x00, 0x12,0x00, 0x13,0xF0, -/* @fang3 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x10, 0x7F,0xE0, 0x48,0x80, -0x48,0x80, 0x7F,0xF0, 0x10,0x00, 0x10,0x00, -0x10,0x30, 0x9F,0xC0, 0x52,0x00, 0x32,0x00, -/* @fang4 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x3F,0xF0, 0x29,0x00, -0x29,0x00, 0x29,0x00, 0x29,0xF0, 0xA9,0x20, -0x6D,0x20, 0x2B,0x20, 0x29,0x20, 0x29,0x20, -/* @fang5 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x44,0x20, 0x5A,0x10, -0x61,0xE0, 0x40,0x00, 0x10,0x10, 0x10,0xE0, -0x9F,0x00, 0x71,0x00, 0x11,0x00, 0x11,0x00, -/* @fang6 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x08,0x80, 0x0F,0x40, 0xF8,0x30, -0x08,0xE0, 0x0F,0x10, 0x00,0x00, 0x10,0x00, -0x10,0x30, 0x9F,0xC0, 0x72,0x00, 0x52,0x00, -/* @fang7 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x08,0x00, 0x37,0xF0, -0xE0,0x00, 0x50,0x00, 0x10,0x10, 0x10,0x60, -0x9F,0x80, 0x51,0x00, 0x71,0x00, 0x11,0x00, -/* @fang8 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x82,0x00, 0x72,0x00, 0x23,0xF0, -0x00,0x00, 0x10,0x10, 0x10,0x00, 0x10,0x10, -0x90,0xE0, 0x7F,0x00, 0x52,0x00, 0x12,0x00, -/* @fang9 (12x12,V)@ [suki software]*/ -0x04,0x40, 0x0C,0xC0, 0x75,0x40, 0x26,0x40, -0x08,0x40, 0x10,0x00, 0x10,0x00, 0x10,0x00, -0x10,0x70, 0x9F,0x80, 0x72,0x00, 0x52,0x00, -/* @fang10 (12x12,V)@ [suki software]*/ -0x10,0x00, 0x10,0x00, 0x1F,0xF0, 0x92,0x00, -0x72,0x00, 0x13,0xF0, 0x11,0x00, 0x02,0x00, -0x1C,0x00, 0xF3,0x00, 0x50,0xD0, 0x10,0x70, -/* @fei0 (12x12,V)@ [suki software]*/ -0x20,0x10, 0x24,0x90, 0x24,0x90, 0x24,0x90, -0x24,0x90, 0xFF,0xF0, 0x20,0x00, 0x20,0x00, -0x20,0x00, 0xFF,0xF0, 0x24,0x90, 0x24,0x90, -/* @fei1 (12x12,V)@ [suki software]*/ -0x00,0x10, 0x11,0x10, 0x11,0x10, 0x11,0x10, -0x11,0x10, 0xFF,0xF0, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0xFF,0xF0, 0x11,0x10, 0x11,0x10, -/* @fei2 (12x12,V)@ [suki software]*/ -0x3F,0xF0, 0x20,0x40, 0x20,0x40, 0x3F,0xE0, -0x00,0x20, 0x12,0x20, 0x12,0x20, 0xFF,0xF0, -0x00,0x00, 0x00,0x00, 0xFF,0xF0, 0x12,0x20, -/* @fei3 (12x12,V)@ [suki software]*/ -0x40,0x00, 0x40,0x00, 0x40,0x00, 0x40,0x00, -0x40,0x00, 0x40,0x00, 0x40,0x00, 0x40,0x00, -0x40,0x00, 0x7F,0xC0, 0x06,0x30, 0x09,0x00, -/* @fei4 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x48,0x80, -0x48,0x80, 0x7F,0xF0, 0x00,0x00, 0x7F,0xF0, -0x42,0x00, 0x42,0x00, 0x7E,0x00, 0x42,0x00, -/* @fei5 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x40,0x20, 0x49,0x20, -0x49,0x20, 0x49,0x20, 0x7F,0xF0, 0x40,0x00, -0x40,0x00, 0x7F,0xF0, 0x49,0x20, 0x49,0x20, -/* @fei6 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x82,0x00, 0x73,0xF0, 0x22,0x00, -0x10,0x20, 0x12,0x20, 0x12,0x20, 0xFF,0xF0, -0x00,0x00, 0x00,0x00, 0xFF,0xF0, 0x12,0x20, -/* @fei7 (12x12,V)@ [suki software]*/ -0x7F,0xE0, 0x40,0x40, 0x40,0x40, 0x7F,0xE0, -0x00,0x00, 0x04,0x00, 0x04,0x00, 0x04,0x30, -0x04,0xC0, 0xFF,0x00, 0x04,0xE0, 0x44,0x10, -/* @fei8 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x48,0x80, -0x48,0x80, 0x7F,0xF0, 0x20,0x00, 0x27,0xF0, -0x24,0x00, 0x24,0x00, 0xFF,0xF0, 0x24,0x10, -/* @fei9 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x3F,0xF0, 0x20,0x00, -0x2E,0x00, 0x22,0x10, 0x22,0x60, 0xBF,0xA0, -0x62,0x90, 0x22,0x80, 0x2A,0x90, 0x26,0xE0, -/* @fei10 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x86,0x40, 0x60,0xF0, 0x03,0x00, -0x0C,0x00, 0x13,0xC0, 0x12,0x50, 0xFF,0xE0, -0x12,0x40, 0x12,0x40, 0xFF,0xF0, 0x12,0x40, -/* @fei11 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x40, 0x5C,0x40, 0x54,0x80, -0x55,0xF0, 0x56,0x80, 0xFC,0x80, 0x54,0xB0, -0x54,0x80, 0xFF,0x80, 0x54,0x80, 0x54,0xF0, -/* @fen1 (12x12,V)@ [suki software]*/ -0x20,0x00, 0x20,0x20, 0x20,0x40, 0x20,0x80, -0x27,0x00, 0xFA,0x90, 0x20,0xE0, 0x20,0x80, -0x20,0x80, 0xF8,0x80, 0x24,0xF0, 0x22,0x00, -/* @fen2 (12x12,V)@ [suki software]*/ -0x4F,0xF0, 0x48,0xA0, 0x7F,0x20, 0x48,0x20, -0x7F,0x20, 0x49,0x20, 0x4F,0xF0, 0x04,0x00, -0x39,0x10, 0x01,0xE0, 0x81,0x00, 0x61,0x00, -/* @fen3 (12x12,V)@ [suki software]*/ -0x3F,0xE0, 0x20,0x40, 0x20,0x40, 0x20,0x40, -0x3F,0xE0, 0x02,0x00, 0x0D,0x00, 0x71,0x10, -0x21,0xE0, 0x01,0x00, 0xE1,0x00, 0x19,0x00, -/* @fen4 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x14,0x20, 0x24,0x40, 0xD5,0xC0, -0x54,0x70, 0x54,0x40, 0x56,0x40, 0x55,0x70, -0x54,0x80, 0x54,0x40, 0x54,0x00, 0x57,0xE0, -/* @fen5 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x02,0x00, 0x04,0x00, 0x19,0x00, -0xE1,0x00, 0x41,0xF0, 0x01,0x00, 0x01,0x00, -0xC1,0x00, 0x21,0x00, 0x19,0xF0, 0x0C,0x00, -/* @fen6 (12x12,V)@ [suki software]*/ -0x04,0x80, 0x1C,0xC0, 0xE5,0x80, 0x06,0x90, -0x08,0x90, 0x02,0x00, 0x05,0x00, 0x79,0x10, -0x21,0xE0, 0x01,0x00, 0xE1,0x00, 0x19,0xF0, -/* @fen7 (12x12,V)@ [suki software]*/ -0x04,0x10, 0x04,0x10, 0x04,0x10, 0xFF,0xE0, -0x04,0x20, 0x14,0x40, 0x14,0x40, 0x1E,0x00, -0x91,0x80, 0x70,0x70, 0x50,0x70, 0x11,0x80, -/* @fen8 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x22,0x00, 0x24,0x00, 0x38,0x10, -0xFF,0x60, 0x28,0x00, 0x26,0x10, 0x02,0xE0, -0x24,0x20, 0x28,0x10, 0x30,0x20, 0xFF,0x40, -/* @fen9 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x06,0x40, 0x40,0xF0, 0x37,0x00, -0x01,0x00, 0x02,0x00, 0x0D,0x00, 0xF1,0x10, -0x01,0xE0, 0x01,0x00, 0xE1,0x00, 0x19,0xF0, -/* @fen10 (12x12,V)@ [suki software]*/ -0x24,0x10, 0x1C,0xE0, 0x07,0x00, 0xFF,0xF0, -0x0C,0x80, 0x35,0x40, 0x03,0x00, 0x0D,0x00, -0x71,0xF0, 0x01,0x00, 0x01,0x00, 0xF1,0x00, -/* @fen11 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x20,0x80, 0x21,0x00, 0x23,0xF0, -0x25,0x20, 0x29,0x20, 0x31,0x20, 0xE1,0xF0, -0x31,0x20, 0x29,0x20, 0x25,0x20, 0x23,0xF0, -/* @fen12 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x02,0x00, 0x07,0xF0, 0x19,0x00, -0xE2,0x00, 0x45,0x00, 0x19,0x00, 0xE1,0x10, -0x41,0xE0, 0x01,0x00, 0xE1,0x00, 0x91,0x00, -/* @fen13 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x04,0x50, 0x08,0x40, 0x18,0x80, -0x29,0x30, 0xCA,0x00, 0x0C,0x00, 0x08,0x40, -0x08,0x30, 0x09,0x00, 0xC8,0x90, 0x2F,0x00, -/* @fen14 (12x12,V)@ [suki software]*/ -0x0E,0x00, 0x00,0x00, 0xFF,0xF0, 0x10,0x00, -0x0C,0x00, 0x08,0x00, 0x49,0xF0, 0x5D,0x00, -0x49,0x00, 0xF9,0x70, 0x49,0x00, 0x5D,0x00, -/* @fen15 (12x12,V)@ [suki software]*/ -0x01,0x10, 0x11,0x10, 0x92,0x90, 0x52,0x90, -0x34,0x90, 0x19,0xF0, 0x10,0x90, 0xFE,0x90, -0x10,0x90, 0x19,0xF0, 0x34,0x90, 0x54,0x90, -/* @feng0 (12x12,V)@ [suki software]*/ -0x00,0x20, 0x00,0x20, 0x12,0x20, 0x12,0x20, -0x12,0x20, 0x12,0x20, 0x12,0x20, 0xFF,0xF0, -0x12,0x20, 0x12,0x20, 0x12,0x20, 0x16,0x20, -/* @feng1 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x24,0x40, 0x24,0x40, 0x24,0x40, -0xFF,0xF0, 0x24,0x40, 0x24,0x40, 0x24,0x40, -0x04,0x00, 0x09,0x00, 0x08,0xC0, 0x08,0x00, -/* @feng2 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x13,0x80, 0xFF,0xF0, 0x14,0x00, -0x13,0x00, 0x00,0x10, 0x7F,0xE0, 0x44,0x20, -0x42,0x40, 0x41,0x80, 0x4E,0x40, 0x40,0x20, -/* @feng3 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x1F,0x80, 0x10,0x80, 0xFF,0xF0, -0x10,0x90, 0x1F,0xB0, 0x09,0x10, 0x12,0xA0, -0xE2,0xA0, 0x54,0xA0, 0x49,0xF0, 0x54,0xA0, -/* @feng4 (12x12,V)@ [suki software]*/ -0x1F,0xF0, 0x00,0x10, 0xFF,0xF0, 0x00,0x20, -0x1F,0xF0, 0x04,0x00, 0x09,0x50, 0x11,0x50, -0xF2,0x50, 0x4B,0xF0, 0x44,0x50, 0x4A,0x50, -/* @feng5 (12x12,V)@ [suki software]*/ -0x02,0x80, 0x1C,0x80, 0xE7,0xF0, 0x24,0x80, -0x24,0x80, 0x20,0x00, 0x0A,0xA0, 0x32,0xA0, -0xF4,0xA0, 0x2B,0xF0, 0x28,0xA0, 0x34,0xA0, -/* @feng6 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x10, 0x7F,0xE0, -0x40,0x00, 0x48,0x10, 0x44,0x20, 0x42,0x40, -0x41,0x80, 0x5E,0x60, 0x48,0x30, 0x40,0x00, -/* @feng7 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x40, 0x00,0xB0, 0x3F,0xC0, -0x20,0x10, 0x2F,0xE0, 0x28,0x00, 0xAA,0x10, -0x69,0x20, 0x28,0xC0, 0x2B,0x30, 0x28,0x00, -/* @feng8 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x0E,0x00, 0x00,0x30, 0xFF,0xC0, -0x09,0x20, 0x11,0x10, 0x0A,0x10, 0x13,0x50, -0x65,0x50, 0xD5,0x50, 0x4B,0xF0, 0x55,0x50, -/* @feng9 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x42,0x00, 0x33,0xF0, 0x00,0x00, -0x00,0x10, 0x25,0x50, 0xC5,0x50, 0x69,0x50, -0x57,0xF0, 0x51,0x50, 0x69,0x50, 0x45,0x50, -/* @feng10 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x40,0x40, 0x30,0xF0, 0x03,0x00, -0x1C,0x20, 0x40,0x20, 0x41,0x20, 0x5F,0xA0, -0x41,0x20, 0x41,0x20, 0x41,0x20, 0x4F,0x20, -/* @feng11 (12x12,V)@ [suki software]*/ -0x04,0x80, 0x1D,0x80, 0xE6,0x90, 0x48,0x90, -0x00,0x90, 0x22,0x00, 0x1B,0xF0, 0x00,0x10, -0x23,0x50, 0xD5,0x50, 0x4B,0xF0, 0x49,0x50, -/* @feng12 (12x12,V)@ [suki software]*/ -0x84,0x00, 0x74,0x00, 0x27,0xF0, 0x00,0x00, -0x00,0x10, 0x00,0x00, 0x7F,0xF0, 0x48,0x20, -0x44,0xC0, 0x43,0x00, 0x4C,0xC0, 0x40,0x00, -/* @feng13 (12x12,V)@ [suki software]*/ -0x02,0x20, 0x42,0x20, 0x52,0x40, 0x52,0x40, -0x52,0xC0, 0x53,0x40, 0x56,0x40, 0xFA,0xF0, -0x52,0x40, 0x52,0x40, 0x53,0x40, 0x52,0x80, -/* @feng14 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x30, 0x7F,0xC0, -0x48,0x10, 0x4A,0x20, 0x49,0x40, 0x48,0x80, -0x4B,0x40, 0x4C,0x30, 0x40,0x10, 0x7F,0xC0, -/* @fo0 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x02,0x00, 0x0C,0x00, 0x3F,0xF0, -0xC0,0x00, 0x27,0x80, 0x24,0x80, 0x24,0x90, -0xFF,0xE0, 0x24,0x80, 0x24,0x80, 0xFF,0xF0, -/* @fou0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x41,0x00, 0x41,0x00, 0x42,0x70, -0x46,0x40, 0x44,0x40, 0x48,0x40, 0x5F,0xC0, -0x70,0x40, 0x40,0x40, 0x48,0x40, 0x44,0x70, -/* @fu0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x01,0x00, 0x11,0x00, 0x11,0x00, -0x11,0x00, 0x11,0x10, 0x11,0x60, 0xFF,0x80, -0x11,0x40, 0x11,0x20, 0x11,0x10, 0x11,0x00, -/* @fu1 (12x12,V)@ [suki software]*/ -0x40,0x20, 0x5F,0xA0, 0x55,0x20, 0x55,0x30, -0xFF,0xA0, 0x55,0x60, 0xD5,0x20, 0x5F,0xA0, -0x42,0x20, 0x0C,0x00, 0xFB,0xC0, 0x48,0x30, -/* @fu2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x48,0x80, -0x48,0x80, 0x7F,0xF0, 0x11,0x00, 0x11,0x00, -0x11,0x30, 0xFF,0xC0, 0x11,0x30, 0x11,0x00, -/* @fu3 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x3F,0xE0, 0x42,0x20, 0xBF,0xF0, -0x00,0x00, 0x3F,0xF0, 0x22,0x40, 0x3F,0xE0, -0x40,0x20, 0x5A,0x20, 0x42,0x20, 0x5A,0xF0, -/* @fu4 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x08,0x80, 0xFF,0xF0, 0x09,0x00, -0x0A,0x00, 0x01,0x00, 0x11,0x00, 0x11,0x00, -0x11,0x30, 0xFF,0xC0, 0x11,0x30, 0x11,0x00, -/* @fu5 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x08,0x40, 0x08,0x80, 0xFF,0xF0, -0x0A,0x00, 0x08,0x00, 0x27,0x80, 0x24,0x90, -0xFF,0xE0, 0x24,0x80, 0xFF,0xF0, 0x24,0x80, -/* @fu6 (12x12,V)@ [suki software]*/ -0x21,0x10, 0x27,0x10, 0x39,0x10, 0xE7,0xF0, -0x21,0x20, 0x21,0x20, 0x21,0x00, 0x40,0xF0, -0x5E,0xA0, 0x52,0xA0, 0x52,0xF0, 0x52,0xA0, -/* @fu7 (12x12,V)@ [suki software]*/ -0x1F,0xF0, 0x10,0x00, 0xFF,0xF0, 0x10,0x10, -0x1F,0xF0, 0x00,0x00, 0x40,0xF0, 0x5E,0xA0, -0x52,0xA0, 0x52,0xA0, 0x52,0xF0, 0x52,0xA0, -/* @fu8 (12x12,V)@ [suki software]*/ -0x10,0x00, 0x24,0x00, 0xD4,0xB0, 0x54,0xA0, -0x55,0xF0, 0x54,0xA0, 0x54,0xA0, 0x55,0xF0, -0x54,0xA0, 0x54,0xE0, 0x54,0x00, 0x47,0xF0, -/* @fu9 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x30,0x40, 0xC0,0x80, 0x43,0xF0, -0x6C,0x00, 0x52,0x00, 0x42,0x80, 0x4A,0x60, -0x12,0x30, 0xE2,0x00, 0x42,0x00, 0x6F,0xF0, -/* @fu10 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x02,0x00, 0x0F,0xF0, 0xF0,0x00, -0x44,0x00, 0x04,0x00, 0x04,0x10, 0x04,0x60, -0xFF,0x80, 0x44,0x40, 0x04,0x30, 0x44,0x10, -/* @fu11 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x1F,0xF0, 0xF0,0x00, -0x40,0x40, 0x64,0x40, 0x5C,0x40, 0x44,0x40, -0x64,0x40, 0xDC,0xF0, 0x85,0x40, 0x8D,0x40, -/* @fu12 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0xFF,0xF0, 0x89,0x00, -0x89,0x00, 0xFF,0xF0, 0x00,0x00, 0x00,0x00, -0xFF,0xF0, 0x83,0x80, 0x82,0x60, 0x92,0x10, -/* @fu13 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x20, 0x80,0xF0, 0x63,0x00, -0x0C,0x40, 0x50,0x40, 0x4A,0x40, 0x42,0x40, -0x52,0x40, 0x4A,0xF0, 0x83,0x40, 0x8A,0x40, -/* @fu14 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x20, 0x80,0xF0, 0x63,0x00, -0x0C,0x00, 0x01,0x00, 0x21,0x70, 0x29,0x40, -0x27,0x40, 0xA1,0x40, 0x63,0x40, 0x25,0x40, -/* @fu15 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x80, 0x91,0x00, 0x73,0xF0, -0x14,0x80, 0x18,0x40, 0x40,0xF0, 0x5E,0x90, -0x52,0x90, 0x52,0x90, 0x52,0xF0, 0x52,0x90, -/* @fu16 (12x12,V)@ [suki software]*/ -0x10,0x80, 0x90,0x80, 0x71,0x00, 0x53,0xF0, -0x1C,0x40, 0x15,0xA0, 0x08,0x10, 0x1F,0xF0, -0xE0,0x00, 0x48,0x00, 0x08,0x70, 0xFF,0x80, -/* @fu17 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x20,0x00, 0x27,0x80, 0x24,0x80, -0x24,0x90, 0xFF,0xE0, 0x24,0x80, 0x24,0x80, -0x24,0x80, 0xFF,0xF0, 0x24,0x80, 0x24,0x90, -/* @fu18 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x20,0x00, 0x20,0x00, 0x2F,0xF0, -0x29,0x20, 0x29,0x20, 0x29,0x20, 0xFF,0xF0, -0x29,0x20, 0x29,0x20, 0xA9,0x20, 0x69,0x20, -/* @fu19 (12x12,V)@ [suki software]*/ -0x10,0x80, 0x10,0x80, 0x11,0x00, 0xFF,0xF0, -0x12,0x00, 0x14,0x00, 0x42,0x00, 0x42,0x10, -0x42,0x60, 0x7F,0x80, 0x43,0xF0, 0x42,0x00, -/* @fu20 (12x12,V)@ [suki software]*/ -0x11,0x10, 0x13,0x10, 0x1D,0x20, 0xF1,0x20, -0x17,0xF0, 0x11,0x20, 0x10,0x00, 0x17,0xF0, -0x14,0x90, 0x14,0x90, 0xFF,0xF0, 0x14,0x90, -/* @fu21 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x1F,0xF0, 0xF0,0x00, -0x40,0x00, 0x3F,0xF0, 0x20,0x80, 0x23,0xF0, -0xBC,0x00, 0x6A,0x80, 0x22,0x60, 0x22,0x00, -/* @fu22 (12x12,V)@ [suki software]*/ -0x11,0x00, 0x11,0x00, 0x21,0x00, 0x22,0x10, -0xE3,0x20, 0x55,0x20, 0x0D,0x20, 0x09,0xF0, -0x15,0x20, 0x25,0x20, 0x83,0x20, 0x42,0x00, -/* @fu23 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x24,0x00, 0x24,0x00, 0x44,0x10, -0x45,0xE0, 0xA9,0x40, 0x29,0x40, 0x11,0x40, -0x11,0x40, 0x2A,0x70, 0xAA,0x40, 0x44,0x40, -/* @pu0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x48,0x80, -0x48,0x80, 0x7F,0xF0, 0x10,0x00, 0x17,0xF0, -0x15,0x20, 0x15,0x20, 0xFF,0xF0, 0x15,0x20, -/* @fu24 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x48,0x40, 0x48,0x40, -0x7F,0xF0, 0x00,0x00, 0x3F,0xF0, 0x21,0x00, -0x22,0x00, 0xBF,0xF0, 0x6A,0x80, 0x22,0x60, -/* @fu25 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x3F,0xF0, 0x20,0x80, -0x21,0x00, 0x3F,0xF0, 0x28,0x00, 0xA2,0x80, -0x62,0x70, 0x22,0x20, 0x22,0x00, 0x3F,0xF0, -/* @fu26 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x3F,0xF0, 0x22,0x00, -0x24,0x70, 0x3F,0xC0, 0x28,0x50, 0xA8,0x60, -0x6E,0xD0, 0x29,0x60, 0x28,0xD0, 0x3F,0x40, -/* @fu27 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x12,0x00, 0x12,0xF0, 0x12,0x00, -0x12,0x00, 0xFF,0xF0, 0x12,0x40, 0x12,0x40, -0x12,0x40, 0x00,0x00, 0xFF,0xF0, 0x04,0x00, -/* @fu28 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x40,0xF0, 0x5E,0xA0, 0x52,0xA0, -0x52,0xA0, 0x52,0xF0, 0x52,0xA0, 0x52,0xA0, -0x5E,0xA0, 0x40,0xF0, 0x00,0x00, 0x3F,0xF0, -/* @fu29 (12x12,V)@ [suki software]*/ -0x80,0x90, 0xB9,0x20, 0xAA,0x40, 0xAC,0xF0, -0xAB,0x80, 0xF9,0x00, 0xAE,0xE0, 0xAA,0xB0, -0xAA,0xA0, 0xFA,0xE0, 0xAA,0xA0, 0xAA,0xA0, -/* @fu30 (12x12,V)@ [suki software]*/ -0x7F,0xE0, 0x40,0x00, 0x4F,0xF0, 0x40,0x00, -0x7F,0xE0, 0x08,0x00, 0x29,0xF0, 0x28,0x00, -0x2F,0xF0, 0x28,0x80, 0x28,0x80, 0xFF,0xC0, -/* @fu31 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x08,0x00, 0x10,0x00, 0x20,0x10, -0xDF,0x20, 0x55,0xE0, 0x55,0x50, 0x55,0x40, -0x55,0x40, 0x55,0x50, 0x55,0x50, 0x55,0x60, -/* @fu32 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x02,0x00, 0x0F,0xF0, 0xF2,0x00, -0x60,0x10, 0x2F,0xD0, 0x2A,0x90, 0x2A,0x90, -0x2A,0x90, 0xFF,0xD0, 0x2A,0x90, 0xAA,0xB0, -/* @fu33 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x02,0x00, 0x0C,0x00, 0x37,0xF0, -0xC0,0x00, 0x4A,0x00, 0x09,0x00, 0x08,0xE0, -0x08,0x40, 0x08,0x00, 0x08,0x00, 0xFF,0xF0, -/* @fu34 (12x12,V)@ [suki software]*/ -0x00,0x10, 0x00,0x10, 0x00,0x10, 0x3F,0x90, -0x2A,0x90, 0x2A,0x90, 0x6A,0x90, 0xAA,0xF0, -0x2A,0x90, 0x2A,0x90, 0x2A,0x90, 0x3B,0x90, -/* @fu35 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x04,0x00, 0x08,0x00, 0x10,0x00, -0x34,0x00, 0xE3,0x00, 0x40,0x90, 0x00,0x60, -0x00,0x60, 0x81,0x90, 0x4E,0x00, 0x24,0x00, -/* @fu36 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x48,0x80, -0x48,0x80, 0x7F,0xF0, 0x10,0x00, 0xFF,0x10, -0x55,0xE0, 0x55,0x50, 0x55,0x40, 0x55,0x50, -/* @fu37 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x04,0x00, 0x08,0x00, 0x1F,0xF0, -0x28,0x00, 0xC8,0x00, 0x48,0x10, 0x49,0xE0, -0x48,0x10, 0x58,0x00, 0x68,0x00, 0x0F,0xF0, -/* @fu38 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x30,0x00, 0x28,0x30, 0x2B,0xA0, -0x2A,0xA0, 0x2A,0xA0, 0xAA,0xA0, 0x6A,0xB0, -0x2A,0xA0, 0x2A,0xA0, 0x2A,0xA0, 0x2B,0xA0, -/* @fu39 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x42,0x00, 0x32,0x00, 0x23,0xF0, -0x00,0x00, 0x00,0x00, 0x00,0x10, 0x00,0x00, -0x00,0x00, 0xFF,0xF0, 0x04,0x00, 0x02,0x00, -/* @fu40 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x44,0x20, 0x4A,0x10, -0x71,0xE0, 0x04,0x00, 0x1F,0xF0, 0xE0,0x00, -0x09,0x00, 0x08,0xC0, 0x08,0x00, 0x08,0x00, -/* @fu41 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x08,0x80, 0x0B,0x40, 0xFC,0x20, -0x08,0x30, 0x09,0xC0, 0x0E,0x00, 0x10,0x00, -0x10,0x80, 0x10,0x80, 0x10,0x80, 0x10,0x80, -/* @fu42 (12x12,V)@ [suki software]*/ -0x04,0x80, 0x1D,0x80, 0xE6,0x80, 0x44,0x90, -0x08,0x90, 0x20,0x00, 0x2F,0xD0, 0x2A,0x90, -0x2A,0x90, 0xFF,0xD0, 0x2A,0x90, 0xAA,0xB0, -/* @fu43 (12x12,V)@ [suki software]*/ -0x3F,0xF0, 0x20,0x40, 0x20,0x40, 0x3F,0xE0, -0x02,0x00, 0x04,0x00, 0x1F,0xF0, 0xE0,0x00, -0x49,0x00, 0x08,0xE0, 0x08,0x40, 0x08,0x00, -/* @ga0 (12x12,V)@ [suki software]*/ -0x3F,0xE0, 0x20,0x80, 0x20,0x80, 0x3F,0xD0, -0x40,0x20, 0x5F,0x70, 0x55,0xE0, 0xF5,0x40, -0x55,0x40, 0x55,0x70, 0xF5,0x40, 0x55,0x40, -/* @ga1 (12x12,V)@ [suki software]*/ -0x3F,0xC0, 0x20,0x80, 0x20,0x80, 0x3F,0xC0, -0x00,0x00, 0x40,0x10, 0x5F,0x90, 0x54,0x90, -0x74,0x90, 0x52,0xA0, 0x52,0xF0, 0x52,0xA0, -/* @gai0 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x84,0x00, 0x64,0x00, 0x47,0xF0, -0x00,0x00, 0x20,0x10, 0x21,0x10, 0x23,0x20, -0xA5,0x20, 0x79,0x40, 0x21,0x90, 0x23,0x30, -/* @gai1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x23,0xF0, 0x22,0x00, 0x22,0x00, -0x22,0x10, 0x3E,0x20, 0x01,0x00, 0x02,0x00, -0x0F,0x00, 0xF8,0xD0, 0x48,0x30, 0x08,0xC0, -/* @gai2 (12x12,V)@ [suki software]*/ -0x11,0x80, 0x16,0x00, 0xFF,0xF0, 0x14,0x00, -0x12,0x00, 0x7F,0xF0, 0x49,0x00, 0x49,0x50, -0x7F,0x30, 0x00,0x00, 0x5E,0x10, 0x42,0xE0, -/* @gai3 (12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0x34,0x80, 0xD7,0xF0, -0x14,0x80, 0x14,0x80, 0x00,0x00, 0x47,0x80, -0x40,0x80, 0x40,0x80, 0x7F,0x80, 0x48,0x80, -/* @gai4 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x20,0x80, 0x24,0xB0, 0x24,0xA0, -0xA4,0xA0, 0x64,0xB0, 0x24,0xA0, 0x3F,0xA0, -0x24,0xA0, 0x64,0xB0, 0xA4,0xA0, 0x2C,0xA0, -/* @gai5 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x86,0x30, 0x60,0xC0, 0x03,0x00, -0x7F,0xF0, 0x49,0x00, 0x49,0x50, 0x7F,0x30, -0x00,0x00, 0x4E,0x10, 0x42,0x60, 0x7F,0x80, -/* @gan0 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x02,0x00, 0x42,0x00, 0x42,0x00, -0x42,0x00, 0x42,0x00, 0x42,0x00, 0x7F,0xF0, -0x42,0x00, 0x42,0x00, 0x42,0x00, 0x42,0x00, -/* @gan1 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x08,0x00, 0x08,0x00, 0x08,0x00, -0xFF,0xF0, 0x08,0x40, 0x08,0x40, 0x08,0x40, -0x08,0x40, 0x08,0x40, 0xFF,0xF0, 0x08,0x00, -/* @gan2 (12x12,V)@ [suki software]*/ -0x10,0x20, 0x10,0xC0, 0x17,0x00, 0xFF,0xF0, -0x12,0x00, 0x11,0x80, 0x02,0x00, 0x42,0x00, -0x42,0x00, 0x42,0x00, 0x7F,0xF0, 0x42,0x00, -/* @gan3 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x08,0xC0, 0x0B,0x00, 0xFF,0xF0, -0x0A,0x00, 0x09,0x80, 0x00,0x00, 0x08,0x00, -0xFF,0xF0, 0x08,0x80, 0x08,0x80, 0x08,0x80, -/* @gan4 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x10,0x40, 0xE4,0x40, 0x44,0x40, -0x64,0x40, 0x5C,0x40, 0x44,0x40, 0x4F,0xF0, -0x14,0x40, 0xE4,0x40, 0x44,0x40, 0x64,0x40, -/* @gan5 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x44,0x80, -0x44,0x80, 0x7F,0xF0, 0x01,0x00, 0x21,0x00, -0x21,0x00, 0x21,0x00, 0x3F,0xF0, 0x21,0x00, -/* @gan6 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x12,0xF0, 0x12,0x00, 0x12,0x00, -0xFF,0xF0, 0x12,0x40, 0x12,0x40, 0x02,0x40, -0x21,0x00, 0x21,0x00, 0x21,0x00, 0x3F,0xF0, -/* @gan7 (12x12,V)@ [suki software]*/ -0x00,0x20, 0x00,0xC0, 0x3F,0x00, 0x28,0x00, -0x2B,0x90, 0x2A,0x80, 0x2A,0x80, 0x2B,0x90, -0x20,0x00, 0xFC,0x40, 0x23,0x80, 0xA2,0x80, -/* @gan8 (12x12,V)@ [suki software]*/ -0x48,0x40, 0x49,0x80, 0x4E,0x00, 0x7F,0xF0, -0x89,0x00, 0x98,0x80, 0x09,0x00, 0x41,0x00, -0x41,0x00, 0x41,0x00, 0x7F,0xF0, 0x41,0x00, -/* @gan9 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x48,0x00, 0x4F,0xF0, 0x4A,0x90, -0x4A,0x90, 0x7F,0xF0, 0x09,0x20, 0x02,0x20, -0x0F,0x00, 0xF8,0xC0, 0x48,0x30, 0x08,0xD0, -/* @gan10 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x2B,0xE0, 0x3A,0xA0, 0xAA,0xB0, -0x2A,0xA0, 0x3B,0xE0, 0x28,0x00, 0x14,0xB0, -0x26,0xA0, 0xEA,0xA0, 0x53,0xB0, 0x52,0xA0, -/* @gang0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x40,0x10, -0x48,0x20, 0x44,0x40, 0x42,0x80, 0x41,0x00, -0x42,0x80, 0x5C,0xC0, 0x48,0x60, 0x40,0x30, -/* @gang1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x50,0x20, 0x4C,0xC0, -0x43,0x00, 0x4C,0xC0, 0x50,0x20, 0x7F,0xF0, -0x00,0x00, 0x00,0x00, 0x3F,0xF0, 0x00,0x00, -/* @gang2 (12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0xF7,0xF0, 0x24,0x80, -0x24,0x80, 0x24,0x80, 0x20,0x00, 0x7F,0xF0, -0x48,0x20, 0x44,0xC0, 0x43,0x00, 0x44,0x80, -/* @gang3 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x0A,0xF0, 0xF2,0x00, 0x52,0x00, -0x1F,0xF0, 0x12,0x00, 0x12,0x00, 0x12,0xF0, -0x20,0x00, 0x20,0x00, 0x20,0x00, 0x3F,0xF0, -/* @gang4 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x10, 0x7F,0xE0, 0x48,0x80, -0x48,0x80, 0x7F,0xF0, 0x20,0x00, 0x20,0x00, -0x20,0x00, 0x20,0x00, 0x3F,0xF0, 0x20,0x00, -/* @gang5 (12x12,V)@ [suki software]*/ -0x04,0x40, 0x0C,0xC0, 0x35,0x40, 0xC6,0x40, -0x0C,0x40, 0x00,0x00, 0x7F,0xF0, 0x40,0x10, -0x48,0x20, 0x44,0x40, 0x42,0x80, 0x43,0x80, -/* @gang6 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x77,0xF0, 0x14,0x00, -0x15,0x00, 0x15,0x10, 0x14,0xA0, 0xF4,0x40, -0x14,0x40, 0x14,0xA0, 0x17,0x10, 0x14,0x00, -/* @gang7 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x86,0x70, 0x61,0x80, 0x0E,0x20, -0x04,0x40, 0x24,0x80, 0x25,0xF0, 0xFE,0xA0, -0x24,0xA0, 0x24,0xA0, 0xFE,0xE0, 0x25,0x00, -/* @gang8 (12x12,V)@ [suki software]*/ -0x10,0x20, 0x10,0xC0, 0x17,0x00, 0xFF,0xF0, -0x12,0x00, 0x11,0x80, 0x20,0x00, 0x20,0x00, -0x20,0x00, 0x3F,0xF0, 0x20,0x00, 0x20,0x00, -/* @gao0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x18,0x00, 0x28,0xF0, 0xC8,0x80, -0x68,0x80, 0x5E,0xB0, 0x4A,0xA0, 0x5A,0xA0, -0x2A,0xA0, 0xCA,0xA0, 0x4E,0xB0, 0x68,0x80, -/* @gao1 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x00,0x80, 0x00,0x90, 0x7E,0xA0, -0x54,0xC0, 0x54,0x80, 0x55,0x80, 0xD6,0xB0, -0x54,0x80, 0x54,0x80, 0x54,0xC0, 0x7E,0xA0, -/* @gao2 (12x12,V)@ [suki software]*/ -0x20,0x00, 0x20,0xF0, 0x20,0x80, 0x20,0x80, -0x2E,0xB0, 0x2A,0xA0, 0xAA,0xA0, 0x6A,0xA0, -0x2A,0xA0, 0x2A,0xA0, 0x2E,0xB0, 0x20,0x80, -/* @gao3 (12x12,V)@ [suki software]*/ -0x40,0x00, 0x47,0x00, 0x44,0x00, 0x77,0x70, -0x55,0x50, 0x55,0x50, 0x55,0x50, 0xD5,0x50, -0x55,0x50, 0x55,0x50, 0x55,0x50, 0x77,0x70, -/* @gao4 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x10,0x40, 0x10,0x50, 0x12,0x40, -0x92,0x50, 0x52,0x40, 0x32,0x40, 0x1F,0xC0, -0x12,0x50, 0x32,0x40, 0xD2,0x40, 0x52,0x50, -/* @gao5 (12x12,V)@ [suki software]*/ -0x12,0x00, 0x0E,0x70, 0x03,0x80, 0xFF,0xF0, -0x06,0x80, 0x0A,0x40, 0x10,0x50, 0x92,0x40, -0x72,0x50, 0x12,0x40, 0x1F,0xD0, 0x32,0x40, -/* @gao6 (12x12,V)@ [suki software]*/ -0x10,0x80, 0x10,0x80, 0x11,0x00, 0xFF,0xF0, -0x12,0x00, 0x14,0x00, 0x20,0xF0, 0x2E,0x80, -0x2A,0xB0, 0xAA,0xA0, 0x6A,0xA0, 0x2A,0xB0, -/* @hao0 (12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0xF7,0xF0, 0x24,0x80, -0x24,0x80, 0x00,0x00, 0x20,0xF0, 0x2E,0x80, -0x2A,0xB0, 0xAA,0xA0, 0x6A,0xA0, 0x2A,0xB0, -/* @gao7 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x48,0xC0, 0x4B,0x00, 0x7F,0xF0, -0x8A,0x00, 0x89,0x00, 0x28,0xF0, 0x20,0x80, -0x2E,0xB0, 0xAA,0xA0, 0x6A,0xA0, 0x2A,0xB0, -/* @gao8 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x05,0x00, 0x09,0x00, 0xF1,0x70, -0x51,0x40, 0x11,0x40, 0x11,0x40, 0xFF,0x40, -0x11,0x40, 0x11,0x40, 0x11,0x40, 0x11,0x70, -/* @ge0 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x40,0x80, 0x40,0x80, 0x5E,0xB0, -0x54,0xA0, 0x54,0xA0, 0x54,0xA0, 0x54,0xA0, -0x5E,0xB0, 0x40,0x80, 0x40,0x80, 0x7E,0xF0, -/* @ge1 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x5D,0x70, 0x55,0x40, 0x55,0x40, -0x5D,0x70, 0x41,0x00, 0x7F,0xF0, 0x45,0x00, -0x09,0x00, 0x30,0x10, 0xD7,0xE0, 0x10,0x10, -/* @ge2 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x08,0x80, 0xFF,0xF0, 0x09,0x00, -0x0A,0x00, 0x3F,0xF0, 0x82,0x40, 0x44,0x40, -0x1C,0xF0, 0x4B,0x40, 0x49,0x40, 0x4B,0x40, -/* @ge3 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x08,0x00, 0x08,0x00, 0x08,0x00, -0x08,0x00, 0x08,0x00, 0xFE,0x10, 0x09,0x90, -0x08,0x60, 0x48,0x50, 0x28,0x80, 0x0F,0x00, -/* @ge4 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x06,0x70, 0x1A,0x40, 0x22,0x40, -0xE2,0x40, 0x12,0x70, 0x0A,0x00, 0x00,0x10, -0x3F,0x90, 0x70,0x90, 0xAA,0x90, 0x21,0x90, -/* @ge5 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x48,0x80, 0x48,0x80, -0x7F,0xF0, 0x00,0x20, 0x08,0x40, 0x10,0x70, -0xF8,0xA0, 0x25,0x20, 0x22,0x20, 0x25,0x20, -/* @ge6 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x40, 0x00,0x80, 0x3F,0xF0, -0x21,0x00, 0x22,0x00, 0x3C,0x80, 0x24,0x80, -0xA4,0x90, 0x64,0xA0, 0x24,0xC0, 0x24,0x80, -/* @ge7 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x30,0x80, 0x2A,0xB0, 0x2A,0xA0, -0xBF,0xA0, 0x6A,0xA0, 0x2A,0xA0, 0x2A,0xB0, -0x30,0x80, 0x00,0x00, 0x1F,0xE0, 0x00,0x00, -/* @ge8 (12x12,V)@ [suki software]*/ -0x20,0x10, 0x20,0x10, 0x20,0x10, 0x23,0xD0, -0x22,0x50, 0xFA,0x50, 0x2A,0x50, 0x2F,0xF0, -0x2A,0x50, 0xFA,0x50, 0x22,0x50, 0x23,0xD0, -/* @ge9 (12x12,V)@ [suki software]*/ -0x40,0x00, 0x40,0x00, 0x40,0x10, 0x5F,0x30, -0x55,0xC0, 0xF5,0x40, 0x55,0x50, 0x55,0x60, -0x55,0x50, 0xF5,0x40, 0x55,0x40, 0x5F,0x40, -/* @ge10 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x11,0x80, 0x16,0x00, 0xFF,0xF0, -0x12,0x00, 0x15,0x80, 0x08,0x80, 0x30,0xF0, -0xE9,0x40, 0x25,0x40, 0x22,0x40, 0x2D,0x40, -/* @ha0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x1F,0x80, 0x10,0x80, 0xFF,0xF0, -0x10,0xA0, 0x1F,0x90, 0x02,0x00, 0x04,0x70, -0x0A,0x40, 0x32,0x40, 0xC2,0x40, 0x32,0x40, -/* @ge11 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x1F,0xF0, 0x80,0x80, 0x40,0x80, -0x04,0x80, 0x49,0x70, 0x75,0x40, 0x52,0x40, -0x55,0x40, 0x59,0x70, 0x50,0x80, 0x40,0x80, -/* @ge12 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x44,0x40, 0x5A,0x20, -0x61,0xC0, 0x01,0xF0, 0x41,0x00, 0x5D,0xA0, -0x55,0x60, 0x55,0x30, 0x55,0x60, 0x55,0xA0, -/* @ge13 (12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0x34,0x80, 0xD7,0xF0, -0x14,0x80, 0x14,0x80, 0x04,0x40, 0x18,0x70, -0xE8,0xA0, 0x25,0x20, 0x22,0x20, 0x25,0x20, -/* @ge14 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x01,0x00, 0x01,0x00, 0x02,0x00, -0x04,0x00, 0x08,0x00, 0x30,0x00, 0xC7,0xF0, -0x20,0x00, 0x10,0x00, 0x08,0x00, 0x04,0x00, -/* @ge15 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x04,0x40, 0x04,0x40, 0x08,0x80, -0x10,0xF0, 0xF1,0x40, 0x2D,0x40, 0x22,0x40, -0x22,0x40, 0x25,0x40, 0x39,0x40, 0x20,0xF0, -/* @gei0 (12x12,V)@ [suki software]*/ -0x04,0x40, 0x0C,0xC0, 0x35,0x40, 0xC6,0x40, -0x08,0x40, 0x02,0x00, 0x04,0x00, 0x0A,0x70, -0x32,0x40, 0xC2,0x40, 0x22,0x40, 0x12,0x40, -/* @gen0 (12x12,V)@ [suki software]*/ -0x10,0x20, 0x10,0xC0, 0x13,0x00, 0xFF,0xF0, -0x12,0x00, 0x11,0x00, 0x00,0x00, 0x7F,0xF0, -0x49,0x80, 0x49,0x40, 0x49,0x20, 0x49,0x30, -/* @gen1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7E,0xF0, 0x42,0x00, 0x43,0xF0, -0x42,0x40, 0x7E,0x40, 0x00,0x00, 0x7F,0xF0, -0x49,0x00, 0x49,0x00, 0x49,0xC0, 0x49,0x30, -/* @geng0 (12x12,V)@ [suki software]*/ -0x21,0x00, 0x29,0x10, 0x29,0x60, 0xFF,0xF0, -0x29,0x40, 0x29,0x30, 0x20,0x90, 0x08,0x80, -0xFF,0xF0, 0x08,0x80, 0x08,0x80, 0x08,0x80, -/* @geng1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x40,0x00, 0x40,0x00, 0x5F,0x80, -0x54,0xC0, 0x54,0xA0, 0x54,0x90, 0x7F,0xE0, -0x54,0x80, 0x54,0x80, 0x54,0x80, 0x54,0x80, -/* @geng2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x3F,0xF0, 0x22,0x00, -0x2A,0x40, 0x2A,0x40, 0x2A,0x40, 0xAA,0x50, -0x7F,0xE0, 0x2A,0x50, 0x2A,0x40, 0x2A,0x40, -/* @geng3 (12x12,V)@ [suki software]*/ -0x04,0x10, 0x46,0x10, 0x45,0x50, 0x55,0x50, -0x55,0x50, 0xD7,0x50, 0x55,0x50, 0x7D,0xF0, -0x55,0x50, 0x55,0x50, 0xD7,0x50, 0x55,0x50, -/* @geng4 (12x12,V)@ [suki software]*/ -0x08,0x10, 0x08,0x10, 0xFF,0xF0, 0x08,0x20, -0x08,0x20, 0x40,0x20, 0x5F,0xC0, 0x52,0x60, -0x52,0x50, 0x52,0x40, 0x7F,0xF0, 0x52,0x40, -/* @geng5 (12x12,V)@ [suki software]*/ -0x40,0x10, 0x7F,0xF0, 0x49,0x10, 0x49,0x10, -0x49,0x20, 0x7F,0xF0, 0x40,0x20, 0x01,0x00, -0x0E,0x00, 0x00,0x30, 0xFF,0xC0, 0x00,0x20, -/* @geng6 (12x12,V)@ [suki software]*/ -0x11,0x80, 0x16,0x00, 0xFF,0xF0, 0x14,0x00, -0x13,0x00, 0x10,0x00, 0x40,0x40, 0x4F,0xA0, -0x4A,0x90, 0x4A,0x90, 0x7F,0xE0, 0x4A,0x80, -/* @gong0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x40,0x00, 0x40,0x00, -0x40,0x00, 0x40,0x00, 0x40,0x00, 0x7F,0xF0, -0x40,0x00, 0x40,0x00, 0x40,0x00, 0x40,0x00, -/* @gong1 (12x12,V)@ [suki software]*/ -0x10,0x00, 0x10,0x00, 0x10,0x10, 0x1F,0xE0, -0x11,0x20, 0x12,0x40, 0x0C,0x00, 0xFF,0x00, -0x48,0xC0, 0x08,0x30, 0x08,0x30, 0x08,0xC0, -/* @gong2 (12x12,V)@ [suki software]*/ -0x00,0x20, 0x20,0x30, 0x20,0x20, 0x20,0x20, -0x3F,0xC0, 0x20,0x40, 0x28,0x40, 0x28,0x80, -0x08,0x30, 0x09,0xC0, 0xFE,0x00, 0x08,0x00, -/* @gong3 (12x12,V)@ [suki software]*/ -0x00,0x20, 0x04,0x20, 0x24,0x40, 0x24,0x90, -0x25,0x00, 0xFE,0x00, 0x24,0x00, 0x24,0xF0, -0x24,0x00, 0xFE,0x10, 0x25,0x00, 0x24,0x90, -/* @gong4 (12x12,V)@ [suki software]*/ -0x21,0x00, 0x21,0x20, 0x22,0xA0, 0x22,0xA0, -0x24,0xA0, 0x3B,0xE0, 0xE4,0xA0, 0x24,0xA0, -0x3C,0xA0, 0xAB,0xF0, 0x6A,0xA0, 0x32,0xA0, -/* @gong5 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x1F,0xF0, 0xE8,0x00, -0x40,0x40, 0x08,0x40, 0x08,0x50, 0x7F,0xF0, -0x08,0x40, 0x08,0x40, 0x08,0x60, 0x7F,0xD0, -/* @gong6 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x80, 0x3F,0x80, 0x6A,0x90, -0xAA,0xA0, 0x2A,0xC0, 0x3F,0xF0, 0x00,0x00, -0x40,0x00, 0x47,0x80, 0x44,0x80, 0x44,0x80, -/* @gong7 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x80, 0x01,0x00, 0x02,0x00, -0x0C,0x10, 0x70,0x20, 0x21,0xC0, 0x00,0x80, -0x00,0x00, 0x70,0x00, 0x08,0x20, 0x06,0x10, -/* @gong8 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x08,0x00, 0x30,0x00, 0x20,0x30, -0x2F,0xA0, 0x29,0x20, 0x29,0x20, 0xA9,0x20, -0x69,0x20, 0x29,0x20, 0x29,0x20, 0x2F,0xA0, -/* @gong9 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x40,0x00, 0x4F,0x80, -0x48,0x80, 0x48,0x80, 0x48,0x80, 0x48,0x80, -0x48,0x80, 0x48,0x80, 0x48,0x80, 0x48,0x80, -/* @gong10 (12x12,V)@ [suki software]*/ -0x20,0x20, 0x20,0x20, 0x20,0x40, 0x3F,0xC0, -0x20,0x80, 0x20,0x80, 0x00,0x30, 0x7F,0xC0, -0x44,0x00, 0x42,0x00, 0x41,0x80, 0x40,0x00, -/* @gong11 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x09,0x00, 0x49,0x00, 0x49,0x10, -0x49,0x60, 0x49,0x80, 0x48,0x00, 0x7F,0xF0, -0x48,0x80, 0x48,0xC0, 0x49,0x20, 0x4A,0x10, -/* @gong12 (12x12,V)@ [suki software]*/ -0x10,0x80, 0x10,0x80, 0xFF,0xF0, 0x11,0x00, -0x12,0x00, 0x10,0x40, 0x08,0x40, 0x08,0x50, -0xFF,0xC0, 0x08,0x40, 0x08,0x40, 0xFF,0xD0, -/* @gong13 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x10,0x00, 0x90,0x00, 0x97,0xF0, -0x94,0x00, 0x94,0x00, 0x94,0x10, 0xF5,0xE0, -0x94,0x10, 0x94,0x00, 0x94,0x00, 0x97,0xE0, -/* @gong14 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x08,0x40, 0x08,0x40, 0x08,0x40, -0x08,0x40, 0x7F,0xF0, 0x08,0x50, 0x08,0x40, -0x08,0x40, 0x08,0x60, 0x7F,0xD0, 0x08,0x40, -/* @gou0 (12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0x34,0x80, 0xD7,0xF0, -0x14,0x80, 0x14,0x80, 0x12,0x80, 0x04,0x20, -0x18,0xE0, 0xEB,0x20, 0x08,0x20, 0x08,0x60, -/* @gou1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x02,0x00, 0x04,0x00, 0x08,0x30, -0xF0,0x50, 0x21,0x90, 0x2E,0x20, 0x24,0x20, -0x21,0x20, 0x20,0xA0, 0x20,0x70, 0x20,0x20, -/* @gou2 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x20, 0x80,0x70, 0x63,0x80, -0x0C,0x00, 0x04,0x20, 0x18,0x60, 0xF0,0xA0, -0x13,0x20, 0x10,0x20, 0x10,0x60, 0x10,0x30, -/* @gou3 (12x12,V)@ [suki software]*/ -0x20,0x40, 0x20,0x80, 0x21,0x00, 0x2E,0x00, -0x24,0xF0, 0xFC,0x80, 0x24,0x80, 0x24,0x80, -0x24,0x80, 0xFC,0xF0, 0x24,0x00, 0x24,0x00, -/* @gou4 (12x12,V)@ [suki software]*/ -0x02,0x20, 0x44,0x40, 0x28,0x80, 0x19,0x00, -0x27,0xF0, 0xC4,0x00, 0x18,0x00, 0xF3,0xF0, -0x12,0x20, 0x12,0x20, 0x12,0x20, 0x13,0xE0, -/* @gou5 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x08,0x30, 0x08,0x20, 0xFF,0xE0, -0x08,0x40, 0x08,0x50, 0x7F,0xE0, 0x44,0x00, -0x44,0xF0, 0x44,0x80, 0x84,0x80, 0x84,0x80, -/* @gou6 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x11,0x80, 0x16,0x00, 0xFF,0xF0, -0x12,0x00, 0x11,0x80, 0x14,0x20, 0x08,0x60, -0x31,0xA0, 0xD6,0x20, 0x10,0xA0, 0x10,0x70, -/* @gou7 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xC0, 0x40,0x10, 0x5F,0xE0, -0x40,0x10, 0x7F,0xC0, 0x02,0x00, 0x0C,0x60, -0xF0,0xA0, 0x53,0x20, 0x10,0xA0, 0x10,0x70, -/* @gou8 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x17,0xF0, 0xE4,0x20, 0x27,0xE0, -0x20,0x00, 0x3F,0xF0, 0x04,0x10, 0x09,0x20, -0x11,0x40, 0xEA,0xA0, 0x27,0x90, 0x24,0x80, -/* @gu0 (12x12,V)@ [suki software]*/ -0x00,0x20, 0x40,0x20, 0x41,0x20, 0x5D,0x20, -0x55,0xA0, 0x55,0x60, 0x55,0x20, 0xF7,0x30, -0x55,0x20, 0x55,0x60, 0x55,0xA0, 0x5D,0x20, -/* @gu1 (12x12,V)@ [suki software]*/ -0x22,0x00, 0x22,0x60, 0x3F,0x90, 0x2A,0x10, -0x22,0x60, 0xF3,0x80, 0x20,0x00, 0x22,0x70, -0x22,0x40, 0xF2,0x40, 0x2F,0xC0, 0x22,0x40, -/* @gu2 (12x12,V)@ [suki software]*/ -0x3F,0xF0, 0x20,0x40, 0x20,0x40, 0x20,0x40, -0x3F,0xE0, 0x08,0x00, 0x08,0xF0, 0x08,0x80, -0x08,0x80, 0xFF,0x80, 0x08,0x80, 0x08,0x80, -/* @gu3 (12x12,V)@ [suki software]*/ -0x0A,0x20, 0x12,0x30, 0x22,0x20, 0xCF,0xF0, -0x62,0x40, 0x5A,0x80, 0x47,0xF0, 0x54,0x00, -0x25,0xF0, 0xC5,0x00, 0x47,0xF0, 0x65,0x10, -/* @gu4 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x02,0x00, 0x0F,0xF0, 0x34,0x00, -0xC0,0x00, 0x48,0x00, 0x08,0xF0, 0x08,0x80, -0x08,0x80, 0xFF,0x80, 0x08,0x80, 0x08,0x80, -/* @gu5 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x20, 0x80,0x70, 0x63,0x80, -0x0C,0x00, 0x08,0x00, 0x08,0xF0, 0x08,0x80, -0x08,0x80, 0xFF,0x80, 0x08,0x80, 0x08,0x80, -/* @gu6 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x40,0xC0, 0x41,0x00, 0x4F,0xF0, -0x52,0x00, 0x64,0x00, 0x40,0x00, 0x3F,0xF0, -0x20,0x00, 0x3F,0xF0, 0x40,0x10, 0x7F,0x80, -/* @gu7 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x08,0xC0, 0x0F,0x20, 0xF8,0x10, -0x48,0x60, 0x0F,0x80, 0x00,0x00, 0x10,0xF0, -0x10,0x80, 0x10,0x80, 0xFF,0x80, 0x10,0x80, -/* @gu8 (12x12,V)@ [suki software]*/ -0x20,0x00, 0x2B,0xE0, 0x2A,0x50, 0xFA,0x40, -0x2A,0x50, 0x2A,0x60, 0x2B,0xC0, 0x20,0x00, -0x13,0x80, 0x12,0x60, 0xFE,0x10, 0x12,0x60, -/* @gu9 (12x12,V)@ [suki software]*/ -0x10,0x00, 0x10,0x00, 0x10,0x00, 0x10,0xF0, -0x10,0x80, 0x10,0x80, 0x10,0x80, 0xFF,0x80, -0x10,0x80, 0x10,0x80, 0x10,0x80, 0x10,0xF0, -/* @gu10 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0xB0, 0x3C,0xA0, -0x24,0xA0, 0x24,0xB0, 0x24,0xA0, 0xFF,0xA0, -0x25,0x20, 0x25,0x30, 0x25,0x20, 0x25,0x20, -/* @gu11 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x06,0x00, 0x04,0x00, 0xFC,0x00, -0xA5,0xF0, 0xA5,0x50, 0xA5,0x50, 0xBD,0x50, -0x85,0x50, 0x85,0x50, 0x85,0x50, 0xFD,0xF0, -/* @gu12 (12x12,V)@ [suki software]*/ -0x00,0x20, 0x08,0x20, 0x10,0x40, 0x20,0x80, -0xE1,0x70, 0x42,0x40, 0x04,0x40, 0x38,0x40, -0x04,0x40, 0x82,0x40, 0x41,0x40, 0x20,0xF0, -/* @gu13 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0xFF,0xF0, 0x89,0x00, -0x89,0x00, 0xFF,0xF0, 0x04,0x00, 0x09,0x00, -0xF1,0xC0, 0x81,0x30, 0x81,0x00, 0xF9,0x30, -/* @gu14 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x09,0xF0, 0x09,0x00, 0xFF,0x00, -0x09,0x00, 0x09,0xF0, 0x08,0x80, 0x01,0x00, -0x0F,0x00, 0xF8,0xC0, 0x48,0x30, 0x08,0xC0, -/* @gu15 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x40,0x00, 0x4F,0xF0, -0x48,0x00, 0x48,0x90, 0x4F,0xA0, 0x00,0x00, -0x4F,0xF0, 0x48,0x00, 0x58,0x00, 0x6B,0xF0, -/* @gu16 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x40,0x00, 0x48,0x00, -0x49,0xF0, 0x49,0x10, 0x49,0x10, 0x7F,0x10, -0x49,0x10, 0x49,0x10, 0x49,0xF0, 0x48,0x00, -/* @gu17 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x3F,0xF0, 0x28,0x40, -0x28,0x80, 0x2B,0xF0, 0x2D,0x50, 0xA9,0x50, -0x6D,0x50, 0x2B,0xF0, 0x29,0x50, 0x29,0x50, -/* @gua0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x24,0x00, 0x24,0xF0, 0x24,0x80, -0x44,0x80, 0x7F,0x80, 0x44,0x80, 0x44,0xF0, -0x44,0x00, 0x00,0x00, 0x1F,0xE0, 0x00,0x00, -/* @gua1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x10, 0x3F,0xE0, -0x20,0x00, 0x20,0x00, 0x3F,0xF0, 0x40,0x00, -0x40,0x20, 0x78,0x10, 0x47,0x80, 0xC0,0x70, -/* @gua2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x01,0xF0, 0x7D,0x10, 0x49,0x60, -0x4F,0x80, 0x49,0x40, 0x49,0x30, 0x7D,0x00, -0x01,0xF0, 0x00,0x00, 0x1F,0xE0, 0x00,0x00, -/* @gua3 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x10,0x40, 0x68,0x50, 0x48,0x50, -0x4B,0xF0, 0x4B,0x50, 0x4E,0xD0, 0xCA,0x50, -0x4B,0x50, 0x4A,0xD0, 0x4A,0x70, 0x4B,0xD0, -/* @gua4 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x08,0x40, 0x08,0x80, 0xFF,0xF0, -0x09,0x00, 0x0A,0x00, 0x12,0x20, 0x12,0x20, -0x12,0x20, 0xFF,0xF0, 0x12,0x20, 0x12,0x20, -/* @gua5 (12x12,V)@ [suki software]*/ -0x10,0x80, 0x91,0x00, 0x73,0xF0, 0x14,0x80, -0x1B,0x60, 0x02,0x00, 0x12,0x40, 0xFF,0xF0, -0x12,0x40, 0x12,0x40, 0x12,0x40, 0x00,0x00, -/* @guai0 (12x12,V)@ [suki software]*/ -0x10,0x10, 0x12,0x10, 0x52,0x20, 0x52,0x20, -0x57,0xF0, 0x50,0x00, 0x50,0x00, 0x7F,0xF0, -0x50,0x00, 0x90,0x00, 0x97,0xF0, 0x91,0x10, -/* @guai1 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x11,0x00, 0x12,0x00, 0x10,0x00, 0x00,0x80, -0x7C,0x80, 0x44,0x90, 0x47,0xE0, 0x44,0x80, -/* @guai2 (12x12,V)@ [suki software]*/ -0x0E,0x00, 0x00,0x00, 0xFF,0xF0, 0x10,0x00, -0x0C,0x80, 0x40,0xA0, 0x61,0x20, 0x51,0x20, -0x4A,0x20, 0x45,0xF0, 0x4A,0x20, 0x52,0x20, -/* @guan0 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x11,0x80, 0x16,0x00, 0xFF,0xF0, -0x12,0x00, 0x01,0x00, 0x30,0x00, 0x27,0xF0, -0x24,0xA0, 0xA4,0xA0, 0x64,0xA0, 0x24,0xA0, -/* @guan1 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x08,0x80, 0x08,0x80, 0x08,0x80, -0x88,0x80, 0x78,0x90, 0x28,0xA0, 0x0F,0xC0, -0x08,0xA0, 0x18,0x90, 0xE8,0x80, 0x48,0x80, -/* @guan2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x08,0x00, 0x30,0x00, 0x20,0x00, -0x2F,0xF0, 0x29,0x20, 0xA9,0x20, 0x69,0x20, -0x29,0x20, 0x29,0x20, 0x2F,0x20, 0x20,0x30, -/* @guan3 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x11,0x00, 0x69,0x10, 0x49,0xE0, -0x49,0x00, 0x49,0x00, 0x49,0xF0, 0x41,0x00, -0x42,0x00, 0x42,0x80, 0x42,0x50, 0x42,0x00, -/* @guan4 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x2C,0x30, 0x22,0xC0, 0x21,0x00, -0x22,0x80, 0x3C,0x70, 0x00,0x20, 0x7F,0xC0, -0x40,0x10, 0x40,0x60, 0x5F,0x80, 0x40,0x70, -/* @guan5 (12x12,V)@ [suki software]*/ -0x10,0x00, 0x26,0x00, 0xC4,0x00, 0x65,0xF0, -0x55,0x50, 0x45,0x50, 0x55,0x50, 0x2D,0x50, -0xC5,0x50, 0x45,0x50, 0x65,0xD0, 0x54,0x10, -/* @guan6 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x1C,0x00, 0xF3,0xF0, 0x10,0x00, -0x14,0x00, 0x18,0x10, 0x00,0x00, 0x18,0x00, -0x17,0xF0, 0x94,0xA0, 0x74,0xA0, 0x14,0xA0, -/* @guan7 (12x12,V)@ [suki software]*/ -0x0A,0x00, 0xF2,0x70, 0x22,0x00, 0x3F,0xF0, -0x22,0x00, 0x62,0x70, 0x5C,0x80, 0x57,0xF0, -0xFD,0x50, 0x45,0x50, 0x43,0xF0, 0xFD,0x50, -/* @guan8 (12x12,V)@ [suki software]*/ -0x07,0x00, 0x00,0x00, 0xFF,0xF0, 0x08,0x00, -0x16,0x00, 0x10,0x00, 0x7E,0xF0, 0x52,0x80, -0x52,0x80, 0x7E,0xF0, 0x52,0x80, 0x52,0x80, -/* @guan9 (12x12,V)@ [suki software]*/ -0x10,0x20, 0x8C,0x20, 0x41,0xF0, 0x1E,0x00, -0x40,0x40, 0x5C,0x80, 0x57,0xF0, 0xF5,0x50, -0x5D,0x50, 0x43,0x50, 0x5D,0xF0, 0xF5,0x50, -/* @guan10 (12x12,V)@ [suki software]*/ -0x10,0x00, 0x10,0x00, 0x10,0x00, 0x7D,0xF0, -0x55,0x00, 0x55,0x00, 0x55,0x00, 0x7D,0x70, -0x55,0x00, 0x55,0x00, 0x55,0x00, 0x7D,0xF0, -/* @guang0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x02,0x00, 0x42,0x00, 0x22,0x00, -0x3A,0x10, 0x13,0xE0, 0x02,0x00, 0xFE,0x00, -0x02,0x00, 0x03,0xF0, 0x0A,0x00, 0x72,0x00, -/* @guang1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x3F,0xF0, 0x20,0x00, -0x20,0x00, 0x20,0x00, 0x20,0x00, 0xA0,0x00, -0x60,0x00, 0x20,0x00, 0x20,0x00, 0x20,0x00, -/* @guang2 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x42,0x00, 0x33,0xF0, 0x08,0x00, -0x48,0x80, 0x31,0x10, 0x32,0x00, 0x4F,0xF0, -0x22,0x10, 0x22,0x10, 0x3F,0xF0, 0x22,0x10, -/* @gui0 (12x12,V)@ [suki software]*/ -0x22,0x00, 0x22,0x00, 0x3F,0xF0, 0x22,0x10, -0x22,0x20, 0x00,0x00, 0x3F,0x80, 0x24,0x90, -0x64,0xE0, 0xBF,0x80, 0x24,0xF0, 0x24,0xB0, -/* @gui1 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x11,0x00, 0x11,0x70, 0xFF,0x80, -0x11,0x40, 0x11,0x30, 0x01,0x10, 0x7F,0x80, -0x40,0x10, 0x40,0x60, 0x5F,0x80, 0x40,0x70, -/* @gui2 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x02,0x40, 0x22,0x40, 0x22,0x40, -0x22,0x40, 0x22,0x40, 0x22,0x40, 0xFF,0xF0, -0x22,0x40, 0x22,0x40, 0x22,0x40, 0x22,0x40, -/* @gui3 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x41,0x00, 0x4F,0xF0, 0x72,0x00, -0x42,0x00, 0x43,0xF0, 0x40,0x00, 0x12,0x20, -0x12,0x20, 0x12,0x20, 0xFE,0xF0, 0x12,0x20, -/* @gui4 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x1F,0xE0, 0x00,0x00, 0x00,0x00, -0xFF,0xF0, 0x00,0x00, 0x20,0x00, 0x21,0x00, -0x21,0x00, 0x21,0x00, 0x21,0x00, 0x21,0x00, -/* @gui5 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x08,0x00, 0x3F,0xE0, -0xC9,0x20, 0x49,0x20, 0x49,0x20, 0x4F,0xF0, -0x49,0x20, 0x59,0x20, 0x69,0x20, 0x09,0x20, -/* @gui6 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x3F,0xF0, 0x80,0x00, 0x42,0x00, -0x6A,0x40, 0x0A,0x40, 0x4A,0x40, 0x7F,0xF0, -0x4A,0x40, 0x4A,0x40, 0x4A,0x40, 0x42,0x00, -/* @gui7 (12x12,V)@ [suki software]*/ -0x21,0x10, 0x27,0x10, 0x39,0x10, 0xE1,0x20, -0x2F,0xF0, 0x21,0x20, 0x21,0x20, 0x08,0x00, -0x08,0x30, 0xFF,0xC0, 0x08,0x00, 0x08,0x00, -/* @gui8 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x3F,0x00, 0x29,0x00, -0x29,0x00, 0x69,0x30, 0xA9,0xC0, 0x3F,0x00, -0x29,0xF0, 0x29,0x10, 0x29,0x30, 0x29,0x50, -/* @gui9 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x84,0x00, 0x77,0xF0, 0x20,0x00, -0x00,0x10, 0x00,0x00, 0x0F,0xF0, 0x18,0x00, -0xE8,0x00, 0x49,0xF0, 0x49,0x00, 0x49,0x10, -/* @gui10 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x01,0x40, 0x52,0x40, 0x4A,0x40, -0x44,0x40, 0x5A,0x40, 0x62,0x50, 0x03,0xE0, -0xE2,0x40, 0x1A,0x50, 0x24,0x40, 0x4A,0x40, -/* @gui11 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x0B,0x80, 0xFF,0xF0, 0x0A,0x00, -0x09,0x80, 0x0A,0x00, 0x12,0x20, 0x12,0x20, -0x12,0x20, 0xFE,0xF0, 0x12,0x20, 0x12,0x20, -/* @gui12 (12x12,V)@ [suki software]*/ -0x10,0x20, 0x10,0xC0, 0x13,0x00, 0xFF,0xF0, -0x12,0x00, 0x11,0x80, 0x00,0x00, 0x7F,0xF0, -0x44,0x40, 0x44,0x40, 0x44,0x40, 0x44,0x40, -/* @gui13 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7C,0xF0, 0x44,0x00, 0x47,0xF0, -0x7C,0x80, 0x00,0x00, 0x1F,0xF0, 0x28,0x00, -0xC9,0xF0, 0x49,0x00, 0x49,0x20, 0x59,0x10, -/* @gui14 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x04,0x00, 0x04,0x00, 0x75,0xF0, -0x55,0x00, 0x55,0x00, 0x55,0x00, 0xFD,0x70, -0x55,0x00, 0x55,0x00, 0x55,0x00, 0x75,0xF0, -/* @gui15 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x80, 0x08,0x80, 0x14,0x90, -0x24,0xE0, 0xC4,0x80, 0x24,0x80, 0x14,0xA0, -0x0C,0x90, 0x08,0x00, 0x1F,0xE0, 0x00,0x00, -/* @gun0 (12x12,V)@ [suki software]*/ -0x21,0x10, 0x27,0x10, 0xF9,0x10, 0x27,0xF0, -0x21,0x20, 0x21,0x20, 0x00,0x00, 0x7E,0xF0, -0x52,0x40, 0x52,0x40, 0x52,0x00, 0x52,0xF0, -/* @gun1 (12x12,V)@ [suki software]*/ -0x08,0x10, 0x86,0x10, 0x60,0x70, 0x03,0x80, -0x20,0x00, 0x24,0x10, 0x29,0x30, 0x33,0x40, -0xA5,0xC0, 0x61,0x20, 0x33,0x10, 0x29,0xA0, -/* @gun2 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x11,0x80, 0x16,0x00, 0xFF,0xF0, -0x14,0x00, 0x12,0x00, 0x00,0x00, 0x7E,0xF0, -0x52,0x20, 0x52,0x00, 0x52,0xF0, 0x52,0x20, -/* @guo0 (12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0xF7,0xF0, 0x24,0x80, -0x24,0x80, 0x24,0x00, 0x01,0xF0, 0x7D,0x00, -0x45,0x10, 0x45,0x60, 0x47,0x80, 0x45,0x40, -/* @guo1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x20,0x00, 0x2E,0x80, 0xAA,0x80, -0x6A,0x80, 0x2A,0xB0, 0x2E,0xD0, 0x20,0x90, -0x00,0x00, 0x7F,0xF0, 0x40,0x00, 0x44,0x10, -/* @guo2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x40,0x00, 0x50,0x10, -0x51,0x10, 0x51,0x10, 0x51,0x10, 0x5F,0xF0, -0x51,0x10, 0x51,0x90, 0x51,0x70, 0x50,0x10, -/* @guo3 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x00,0x80, 0x00,0x80, 0x7C,0x80, -0x54,0x90, 0x54,0xA0, 0x54,0xC0, 0x7F,0xF0, -0x54,0xC0, 0x54,0xA0, 0x54,0x90, 0x7C,0x90, -/* @guo4 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x41,0x20, 0x41,0x20, 0x7D,0x40, -0x55,0x40, 0x55,0x90, 0x55,0xA0, 0xFF,0xC0, -0x55,0xA0, 0x55,0x90, 0x55,0x40, 0x7D,0x50, -/* @guo5 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x81,0x00, 0x71,0xF0, 0x20,0x00, -0x00,0x00, 0x08,0x00, 0x0A,0x00, 0x09,0xC0, -0x08,0x80, 0x08,0x10, 0x08,0x00, 0xFF,0xF0, -/* @ha1 (12x12,V)@ [suki software]*/ -0x3F,0xE0, 0x20,0x80, 0x20,0x80, 0x3F,0xC0, -0x04,0x00, 0x04,0x00, 0x0A,0xF0, 0x12,0x80, -0x22,0x80, 0xC2,0x80, 0x22,0x80, 0x12,0x80, -/* @hai0 (12x12,V)@ [suki software]*/ -0x06,0x00, 0x7D,0xF0, 0x55,0x50, 0x5D,0x50, -0x45,0x50, 0x7D,0xF0, 0x06,0x00, 0x11,0x20, -0x13,0x20, 0x9D,0x40, 0x71,0x80, 0x11,0x10, -/* @hai1 (12x12,V)@ [suki software]*/ -0x40,0x80, 0x40,0xC0, 0x40,0x80, 0x4F,0xF0, -0x51,0x00, 0x60,0x10, 0x22,0x10, 0x26,0x20, -0x2A,0x20, 0xB2,0x40, 0x62,0x90, 0x23,0x30, -/* @hai2 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x20, 0x80,0xF0, 0x6F,0x00, -0x00,0x80, 0x08,0x80, 0x1F,0xF0, 0xE8,0x80, -0x2C,0xC0, 0x2A,0xA0, 0x28,0x80, 0x28,0x80, -/* @hai3 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x14,0x00, 0x24,0x80, 0xD4,0xA0, -0x54,0xE0, 0x56,0xA0, 0x55,0xB0, 0x54,0xA0, -0x54,0xC0, 0x54,0x90, 0x54,0x00, 0x57,0xF0, -/* @hai4 (12x12,V)@ [suki software]*/ -0x20,0x00, 0x20,0x10, 0x20,0x10, 0x21,0x10, -0x23,0xA0, 0x25,0x20, 0xA9,0x40, 0x71,0x80, -0x61,0x10, 0x23,0x30, 0x2E,0x70, 0x24,0xC0, -/* @hai5 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x30,0x40, 0x24,0x40, 0x25,0x50, -0x25,0x50, 0x25,0x50, 0xA5,0x50, 0x6F,0xF0, -0x25,0x50, 0x25,0x50, 0x25,0x50, 0x25,0x50, -/* @hai6 (12x12,V)@ [suki software]*/ -0x40,0x20, 0x5F,0x20, 0x41,0x40, 0x41,0x40, -0x7F,0x00, 0x01,0xF0, 0x20,0x20, 0x22,0x20, -0x26,0x40, 0xBA,0x40, 0x62,0x80, 0x23,0x10, -/* @han0 (12x12,V)@ [suki software]*/ -0x4F,0xF0, 0x48,0xA0, 0x7F,0x20, 0x48,0x20, -0x7F,0xA0, 0x48,0xA0, 0x4F,0xF0, 0x00,0x00, -0x08,0x00, 0x7F,0xF0, 0x08,0x80, 0x08,0x80, -/* @han1 (12x12,V)@ [suki software]*/ -0x20,0x40, 0x20,0x40, 0xBF,0x90, 0xAA,0x80, -0xAA,0x90, 0xEB,0x00, 0xBF,0xC0, 0x25,0x10, -0x18,0x40, 0xFC,0x40, 0x12,0x80, 0x13,0x00, -/* @han2 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x08,0x00, 0xFF,0xF0, 0x08,0x80, -0x08,0x80, 0x08,0x80, 0xFF,0xF0, 0x08,0x00, -0x08,0x00, 0x00,0x00, 0x7F,0xF0, 0x44,0x10, -/* @han3 (12x12,V)@ [suki software]*/ -0x20,0x20, 0x2F,0xA0, 0x2A,0xA0, 0xFA,0xF0, -0x2A,0xA0, 0x2F,0xA0, 0x00,0x20, 0x20,0x80, -0x24,0x80, 0x24,0x80, 0xFF,0xF0, 0x24,0x80, -/* @han4 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x02,0x00, 0x04,0x00, 0x04,0x30, -0x0A,0x20, 0x12,0x20, 0x32,0x20, 0xCE,0x20, -0x22,0x60, 0x12,0xA0, 0x0B,0x20, 0x0C,0x30, -/* @han5 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x20, 0x80,0xF0, 0x67,0x00, -0x18,0x00, 0x07,0xF0, 0x40,0x20, 0x42,0x50, -0x41,0x80, 0x4F,0xF0, 0x50,0x80, 0x61,0x40, -/* @han6 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x08,0x80, 0x38,0x80, 0x2A,0x90, -0x2A,0xA0, 0x3F,0xC0, 0x2A,0xA0, 0xAA,0xA0, -0x6A,0x90, 0x3F,0xD0, 0x2A,0xA0, 0x2A,0x90, -/* @han7 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x07,0xF0, 0x40,0x00, 0x48,0x20, -0x47,0x20, 0x42,0x50, 0x40,0x80, 0x4F,0xF0, -0x48,0x80, 0x51,0x40, 0x66,0x20, 0xE2,0x30, -/* @han8 (12x12,V)@ [suki software]*/ -0x1F,0xF0, 0x10,0x20, 0x10,0x20, 0x1F,0xE0, -0x00,0x10, 0x1F,0xE0, 0x12,0xF0, 0x12,0x90, -0x12,0x90, 0x12,0xF0, 0xFF,0x00, 0x10,0xF0, -/* @han9 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x10,0x40, 0x62,0x40, 0x46,0x40, -0x4A,0x40, 0x72,0x40, 0x52,0x40, 0x43,0xF0, -0x42,0x40, 0x62,0x40, 0x52,0x40, 0x5A,0x40, -/* @han10 (12x12,V)@ [suki software]*/ -0x20,0x20, 0x2F,0xA0, 0x2A,0xA0, 0xFA,0xF0, -0x2A,0xA0, 0x2F,0xA0, 0x25,0x20, 0x0C,0xD0, -0x14,0x20, 0x27,0xF0, 0xC5,0x10, 0x24,0xA0, -/* @han11 (12x12,V)@ [suki software]*/ -0x10,0x80, 0x10,0x80, 0xFF,0xF0, 0x12,0x10, -0x04,0x60, 0x3F,0x80, 0x2B,0xC0, 0x2A,0x40, -0x2B,0xC0, 0x20,0x10, 0xFC,0x40, 0x23,0x80, -/* @han12 (12x12,V)@ [suki software]*/ -0x10,0x80, 0x10,0x80, 0x11,0x00, 0xFF,0xF0, -0x12,0x00, 0x14,0x20, 0x01,0x20, 0x7D,0x20, -0x55,0x20, 0x55,0x20, 0x55,0xF0, 0x55,0x20, -/* @han13 (12x12,V)@ [suki software]*/ -0x00,0x20, 0x00,0x20, 0x01,0x20, 0x7D,0x20, -0x55,0x20, 0x55,0x20, 0x55,0x20, 0x55,0xF0, -0x55,0x20, 0x55,0x20, 0x55,0x20, 0x55,0x20, -/* @han14 (12x12,V)@ [suki software]*/ -0x07,0x00, 0x00,0x00, 0xFF,0xF0, 0x08,0x10, -0x04,0x60, 0x3F,0x80, 0x2A,0x80, 0x2A,0x90, -0x2B,0x80, 0x20,0x10, 0xFE,0x40, 0x21,0x80, -/* @han15 (12x12,V)@ [suki software]*/ -0x0E,0x00, 0x00,0x00, 0xFF,0xF0, 0x10,0x00, -0x0C,0x20, 0x01,0x20, 0x7D,0x20, 0x55,0x20, -0x55,0x20, 0x55,0xF0, 0x55,0x20, 0x55,0x20, -/* @han16 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x06,0x00, 0x00,0x30, 0xFF,0xC0, -0x04,0x20, 0x18,0x10, 0x00,0x90, 0xFE,0x90, -0x92,0x90, 0x92,0x90, 0x92,0xF0, 0x92,0x90, -/* @han17 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x0C,0x40, 0x80,0xF0, 0x43,0x00, -0x0C,0x00, 0x01,0x00, 0x41,0x00, 0x41,0x00, -0x41,0x00, 0x7F,0xF0, 0x41,0x00, 0x41,0x00, -/* @han18 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x20, 0x80,0x70, 0x61,0x80, -0x06,0x00, 0x20,0x00, 0x38,0x00, 0x27,0x00, -0x20,0xD0, 0x20,0x20, 0x20,0xD0, 0x27,0x00, -/* @hang0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x20,0x40, 0x20,0x80, 0x21,0x40, -0x22,0x40, 0x24,0x40, 0x38,0x50, 0xE3,0xE0, -0x30,0x40, 0x28,0x40, 0x26,0x40, 0x23,0x70, -/* @hang1 (12x12,V)@ [suki software]*/ -0x10,0x20, 0x10,0xC0, 0x17,0x00, 0xFF,0xF0, -0x12,0x00, 0x01,0x00, 0x10,0x00, 0x13,0xF0, -0x92,0x00, 0x72,0x00, 0x12,0x00, 0x13,0xF0, -/* @hang2 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x01,0x00, 0x3F,0xF0, 0x69,0x40, -0xA5,0x20, 0x3F,0xF0, 0x00,0x00, 0x10,0x00, -0x17,0xF0, 0x94,0x00, 0x54,0x00, 0x17,0xF0, -/* @hao1 (12x12,V)@ [suki software]*/ -0x08,0x10, 0x08,0x10, 0xFF,0xF0, 0x08,0x20, -0x08,0x80, 0x41,0x20, 0x5D,0x20, 0x55,0x50, -0x55,0xE0, 0xD5,0x50, 0x55,0x20, 0x55,0x50, -/* @hao2 (12x12,V)@ [suki software]*/ -0x3F,0xF0, 0x20,0x40, 0x20,0x40, 0x3F,0xE0, -0x40,0x90, 0x41,0x50, 0x5D,0x50, 0x55,0x60, -0x55,0x70, 0xD5,0x50, 0x55,0x50, 0x55,0x50, -/* @hao3 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x23,0x10, 0x22,0x90, 0x22,0x90, -0x3A,0xA0, 0x2A,0xC0, 0xAA,0xD0, 0x6A,0xB0, -0x2A,0x80, 0x2A,0x80, 0x3A,0x90, 0x22,0xA0, -/* @hao4 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x41,0x80, 0x41,0x00, 0x41,0x10, -0x5D,0x50, 0x55,0x50, 0x55,0x50, 0xD5,0x70, -0x55,0x50, 0x55,0x50, 0x55,0x50, 0x5D,0x10, -/* @hao5 (12x12,V)@ [suki software]*/ -0x04,0x20, 0x24,0xC0, 0x24,0x10, 0x27,0xE0, -0xFC,0x00, 0x24,0x00, 0x27,0xF0, 0x24,0x80, -0x04,0x60, 0x00,0x00, 0x7F,0xF0, 0x40,0x10, -/* @hao6 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x08,0xC0, 0x0F,0x40, 0xF8,0x20, -0x08,0x30, 0x0F,0xC0, 0x01,0x00, 0x41,0x00, -0x41,0x00, 0x41,0x00, 0x4F,0xF0, 0x51,0x00, -/* @hao7 (12x12,V)@ [suki software]*/ -0x21,0x00, 0x29,0x10, 0x29,0x60, 0xFF,0xF0, -0x29,0x40, 0x29,0x30, 0x01,0x50, 0x24,0x40, -0x24,0x40, 0x24,0x40, 0x3F,0xF0, 0x48,0x80, -/* @hao8 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x02,0x00, 0x02,0x00, 0xFA,0x40, -0x8B,0xE0, 0x8A,0x40, 0x8A,0x40, 0x8A,0x40, -0x8A,0x40, 0x8A,0x40, 0x8A,0x40, 0xFA,0x70, -/* @hao9 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x20, 0x80,0x70, 0x63,0x80, -0x0C,0x00, 0x05,0x00, 0x39,0x30, 0x11,0x20, -0x11,0x20, 0xFF,0x20, 0x11,0x20, 0x11,0x20, -/* @he0 (12x12,V)@ [suki software]*/ -0x3F,0xF0, 0x20,0x40, 0x20,0x40, 0x20,0x40, -0x3F,0xE0, 0x40,0x00, 0x4F,0xE0, 0x48,0x40, -0x48,0x40, 0x48,0x40, 0x4F,0xE0, 0x40,0x00, -/* @he1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xC0, 0x40,0x80, 0x40,0x80, -0x7F,0xA0, 0x00,0x40, 0x7D,0xF0, 0x57,0x00, -0x55,0x10, 0x55,0x20, 0x55,0xC0, 0x55,0x20, -/* @he2 (12x12,V)@ [suki software]*/ -0x20,0x40, 0x20,0x80, 0x23,0x00, 0x3F,0xF0, -0x28,0x00, 0xF4,0x00, 0x25,0xF0, 0x25,0x10, -0x25,0x10, 0x25,0xF0, 0xF4,0x00, 0x24,0x00, -/* @he3 (12x12,V)@ [suki software]*/ -0x22,0x10, 0x29,0x90, 0x26,0x10, 0x25,0xE0, -0x20,0x00, 0xFC,0x00, 0x24,0xF0, 0x24,0x90, -0x24,0x90, 0xFC,0xF0, 0x24,0x00, 0x24,0x00, -/* @he4 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x08,0xC0, 0x0B,0x00, 0xFF,0xF0, -0x0A,0x00, 0x09,0x00, 0x10,0x10, 0x11,0x10, -0x13,0x20, 0x9D,0x40, 0x71,0x80, 0x11,0x10, -/* @he5 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x04,0x00, 0x24,0x10, 0x24,0x20, -0x24,0x40, 0x25,0x80, 0x26,0x00, 0x3F,0xF0, -0x46,0x00, 0x45,0x80, 0x44,0x40, 0xC4,0x30, -/* @he6 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x24,0x10, 0x24,0x60, 0x25,0x80, -0x3F,0xF0, 0x44,0x80, 0x44,0x70, 0x44,0x20, -0x00,0x00, 0x1F,0xF0, 0x10,0x00, 0x10,0x00, -/* @he7 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x02,0x00, 0x0F,0xF0, 0x38,0x00, -0xE0,0x00, 0x47,0xE0, 0x24,0x40, 0x24,0x40, -0x24,0x40, 0x27,0xE0, 0x20,0x00, 0x20,0x00, -/* @he8 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x02,0x00, 0x04,0x00, 0x0A,0x70, -0x12,0x40, 0x22,0x40, 0x42,0x40, 0x82,0x40, -0x42,0x40, 0x22,0x40, 0x16,0x40, 0x0A,0x70, -/* @he9 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x04,0x00, 0x08,0x00, 0x08,0x30, -0x13,0xA0, 0x2A,0xA0, 0x4A,0xB0, 0x8A,0xA0, -0x4A,0xB0, 0x2A,0xA0, 0x13,0xA0, 0x18,0x30, -/* @mo0 (12x12,V)@ [suki software]*/ -0x22,0x40, 0x34,0x40, 0x48,0x90, 0x75,0x20, -0x8A,0x40, 0x91,0xF0, 0x04,0x80, 0x08,0xF0, -0xF1,0x40, 0x2D,0x40, 0x22,0x40, 0x25,0x40, -/* @he10 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x3F,0xF0, 0x00,0x00, 0x80,0x20, -0x68,0x20, 0x09,0x40, 0x2B,0x50, 0x5D,0x90, -0x49,0x20, 0x4A,0x50, 0x48,0x90, 0x48,0x00, -/* @he11 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x20, 0x80,0xF0, 0x63,0x00, -0x0C,0x00, 0x40,0x00, 0x47,0xE0, 0x44,0x40, -0x44,0x40, 0x47,0xE0, 0x40,0x00, 0x40,0x00, -/* @he12 (12x12,V)@ [suki software]*/ -0x10,0x20, 0x0C,0x20, 0x80,0x70, 0x61,0x80, -0x06,0x00, 0x7F,0xF0, 0x48,0x00, 0x49,0xF0, -0x49,0x10, 0x7F,0x10, 0x49,0x10, 0x49,0xF0, -/* @he13 (12x12,V)@ [suki software]*/ -0x04,0xE0, 0x24,0x00, 0x27,0xF0, 0xFC,0x00, -0x27,0xF0, 0x24,0x80, 0x24,0x70, 0x00,0x20, -0x24,0xC0, 0x27,0xF0, 0x24,0x00, 0xFC,0x00, -/* @he14 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x80, 0x91,0x00, 0x73,0xF0, -0x55,0x20, 0x1A,0xC0, 0x00,0xF0, 0x7F,0x00, -0x55,0x10, 0x55,0x20, 0x55,0xC0, 0x55,0x20, -/* @he15 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x31,0x00, 0x27,0xF0, 0xFA,0x50, -0x2B,0xF0, 0x26,0x50, 0x32,0x50, 0x20,0x00, -0x3F,0x90, 0x70,0x90, 0xAC,0x90, 0x20,0x90, -/* @he16 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x42,0x00, 0x44,0x00, 0x48,0x00, -0xF1,0xF0, 0x45,0x00, 0x43,0x00, 0x7D,0x00, -0x01,0x70, 0x7D,0x00, 0x49,0x00, 0x49,0xF0, -/* @hei0 (12x12,V)@ [suki software]*/ -0x3F,0xE0, 0x20,0x40, 0x20,0x40, 0x3F,0xE0, -0x00,0x20, 0x7E,0xA0, 0x64,0xA0, 0x5C,0xA0, -0x44,0xA0, 0x7F,0xE0, 0x4C,0xA0, 0x74,0xA0, -/* @hei1 (12x12,V)@ [suki software]*/ -0x00,0x20, 0x00,0x20, 0xFC,0xA0, 0x84,0xA0, -0xA4,0xA0, 0x9C,0xA0, 0x84,0xA0, 0xFF,0xE0, -0x8C,0xA0, 0x94,0xA0, 0xA4,0xA0, 0x84,0xA0, -/* @hen0 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x40, 0x00,0x90, 0x3F,0xE0, -0x20,0x00, 0x2F,0xF0, 0x2A,0x80, 0xAA,0x80, -0x6A,0xE0, 0x2A,0x90, 0x2A,0x80, 0x2A,0x90, -/* @hen1 (12x12,V)@ [suki software]*/ -0x08,0x80, 0x11,0x00, 0x23,0xF0, 0xC4,0x00, -0x58,0x00, 0x00,0x00, 0x7F,0xF0, 0x52,0x00, -0x52,0x00, 0x53,0xC0, 0x52,0x20, 0x52,0x50, -/* @hen2 (12x12,V)@ [suki software]*/ -0x44,0x20, 0x28,0x40, 0x10,0x80, 0x29,0x00, -0x47,0xF0, 0x00,0x00, 0x7F,0xF0, 0x49,0x00, -0x49,0x00, 0x49,0xC0, 0x49,0x30, 0x49,0x10, -/* @hen3 (12x12,V)@ [suki software]*/ -0x0E,0x00, 0x00,0x00, 0xFF,0xF0, 0x10,0x00, -0x0C,0x00, 0x00,0x00, 0x7F,0xF0, 0x49,0x00, -0x49,0x00, 0x49,0xC0, 0x49,0x30, 0x49,0x20, -/* @heng0 (12x12,V)@ [suki software]*/ -0x3F,0xE0, 0x20,0x40, 0x20,0x40, 0x3F,0xE0, -0x20,0x00, 0x20,0x00, 0x2E,0x80, 0x2A,0x80, -0xAA,0x80, 0x6A,0x80, 0x2A,0xB0, 0x2A,0xC0, -/* @heng1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x20,0x00, 0x20,0x00, 0x20,0x80, -0x2E,0x80, 0x2A,0x80, 0xAA,0x80, 0x6A,0x80, -0x2A,0x90, 0x2A,0xA0, 0x2A,0xC0, 0x2E,0xC0, -/* @heng2 (12x12,V)@ [suki software]*/ -0x08,0xC0, 0x0B,0x00, 0xFF,0xF0, 0x0A,0x00, -0x09,0x00, 0x04,0x00, 0x24,0x00, 0x25,0xF0, -0xFD,0x50, 0x25,0x50, 0x27,0xF0, 0xFD,0x50, -/* @heng3 (12x12,V)@ [suki software]*/ -0x09,0x00, 0x32,0x00, 0xC7,0xF0, 0x58,0x00, -0x10,0x20, 0x2F,0xA0, 0xCA,0xA0, 0x4F,0xF0, -0x5A,0xA0, 0x6F,0xA0, 0x00,0x20, 0x44,0x00, -/* @heng4 (12x12,V)@ [suki software]*/ -0x0E,0x00, 0x00,0x00, 0xFF,0xF0, 0x10,0x00, -0x0C,0x00, 0x40,0x00, 0x4F,0xE0, 0x49,0x20, -0x49,0x20, 0x49,0x20, 0x49,0x20, 0x49,0x20, -/* @hong0 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x42,0x00, 0x42,0xA0, 0x4A,0xA0, -0x5A,0x90, 0x6A,0xA0, 0xCA,0xC0, 0x5F,0x80, -0x4A,0x60, 0x4A,0x90, 0x4A,0x80, 0x4A,0x90, -/* @hong1 (12x12,V)@ [suki software]*/ -0x3F,0xE0, 0x20,0x40, 0x20,0x40, 0x20,0x40, -0x3F,0xE0, 0x10,0x40, 0x10,0x40, 0xFF,0xF0, -0x10,0x50, 0x10,0x40, 0x10,0x40, 0xFF,0xD0, -/* @hong2 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x07,0x00, 0x00,0x30, 0xFF,0xC0, -0x08,0x20, 0x10,0x50, 0x08,0x40, 0x08,0x40, -0xFF,0xD0, 0x48,0x40, 0x08,0x60, 0xFF,0xD0, -/* @hong3 (12x12,V)@ [suki software]*/ -0x1F,0xC0, 0x10,0x80, 0x10,0x80, 0xFF,0xF0, -0x10,0x80, 0x10,0x90, 0x1F,0xC0, 0x20,0x00, -0x20,0x00, 0x20,0x00, 0x3F,0xF0, 0x20,0x00, -/* @hong4 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x86,0x30, 0x61,0xC0, 0x06,0x20, -0x10,0x20, 0x1F,0xC0, 0x10,0x50, 0x00,0x10, -0x3F,0x90, 0x70,0x90, 0xAC,0x90, 0x20,0x90, -/* @hong5 (12x12,V)@ [suki software]*/ -0x10,0x20, 0x0C,0x20, 0x80,0xF0, 0x67,0x00, -0x18,0x40, 0x00,0x40, 0x08,0x40, 0x7F,0xF0, -0x08,0x40, 0x08,0x40, 0x08,0x60, 0x7F,0xD0, -/* @hong6 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x0A,0x00, 0x32,0x00, 0x22,0x10, -0x22,0x20, 0x22,0xC0, 0x3F,0x00, 0xAA,0x30, -0x62,0xC0, 0x22,0x00, 0x22,0x00, 0x22,0x10, -/* @hong7 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x40,0x80, 0x4F,0xC0, 0x48,0x80, -0x48,0x80, 0x48,0x80, 0x78,0xF0, 0x00,0x00, -0x00,0x30, 0x01,0xC0, 0x0E,0x00, 0xF0,0x00, -/* @hong8 (12x12,V)@ [suki software]*/ -0x04,0x40, 0x0C,0x60, 0x34,0xC0, 0xC5,0x40, -0x06,0x40, 0x18,0x40, 0x00,0x00, 0x10,0x00, -0x10,0x00, 0x10,0x00, 0x1F,0xF0, 0x10,0x00, -/* @hou0 (12x12,V)@ [suki software]*/ -0x3F,0xE0, 0x20,0x80, 0x20,0x80, 0x3F,0xC0, -0x04,0x00, 0x1F,0xF0, 0xE0,0xC0, 0x51,0x40, -0x16,0x40, 0x52,0x50, 0x53,0xE0, 0x52,0x50, -/* @hou1 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x1F,0xF0, 0xE0,0x00, -0x48,0x40, 0x08,0xC0, 0x4F,0x40, 0x4A,0x40, -0x4A,0x50, 0x4B,0xE0, 0x4A,0x50, 0x7A,0x40, -/* @hou2 (12x12,V)@ [suki software]*/ -0x84,0x40, 0x48,0x80, 0x31,0x00, 0x2A,0x00, -0xC7,0xF0, 0x04,0x00, 0x1F,0xF0, 0xF1,0x40, -0x1E,0x40, 0x52,0x70, 0x53,0xC0, 0x52,0x70, -/* @hou3 (12x12,V)@ [suki software]*/ -0x3F,0xF0, 0x20,0x40, 0x20,0x40, 0x3F,0xE0, -0x00,0x00, 0x41,0x00, 0x41,0x00, 0x5F,0xF0, -0x62,0x00, 0x42,0x00, 0x00,0x00, 0xFF,0xF0, -/* @hou4 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0xFF,0xF0, 0x80,0x00, -0xBE,0x90, 0xAA,0x90, 0xAA,0x90, 0xAA,0x90, -0xAA,0xB0, 0xAA,0xB0, 0xAA,0xD0, 0xAA,0xD0, -/* @hou5 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x1F,0xF0, 0xE0,0x00, -0x4F,0xF0, 0x10,0x40, 0x50,0xC0, 0x5F,0x40, -0x52,0x70, 0x53,0xC0, 0x52,0x60, 0x72,0x50, -/* @hou6 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x70, 0x7F,0x80, -0x48,0x00, 0x48,0xF0, 0x48,0x80, 0x48,0x80, -0x48,0x80, 0x88,0x80, 0x88,0x80, 0x88,0x80, -/* @hu0 (12x12,V)@ [suki software]*/ -0x3F,0xE0, 0x20,0x40, 0x20,0x40, 0x20,0x40, -0x3F,0xE0, 0x20,0x80, 0x28,0x80, 0x26,0x80, -0x20,0x80, 0x3F,0xF0, 0x40,0x80, 0x42,0x80, -/* @hu1 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x21,0x00, 0x21,0x00, 0x31,0x00, -0x2D,0x00, 0x27,0x00, 0x21,0x00, 0x7F,0xF0, -0x41,0x00, 0x41,0x00, 0x43,0x00, 0x5D,0x00, -/* @hu2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x04,0x00, 0x09,0x50, 0x11,0x40, -0xE2,0x50, 0x24,0x80, 0x38,0x80, 0x21,0x20, -0x22,0x10, 0x3C,0x00, 0x20,0x80, 0x20,0xC0, -/* @hu3 (12x12,V)@ [suki software]*/ -0x42,0x00, 0x42,0x00, 0x7F,0xF0, 0x42,0x10, -0x42,0x20, 0x11,0xF0, 0x11,0x20, 0xFF,0x20, -0x11,0xF0, 0x10,0x00, 0x7F,0xF0, 0x44,0x40, -/* @hu4 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x23,0x00, 0x2A,0x60, 0x2A,0x10, -0x2A,0x00, 0x2B,0xF0, 0x2A,0x00, 0xFA,0x00, -0x2A,0x00, 0x2B,0xF0, 0x2A,0x00, 0x2A,0x30, -/* @hu5 (12x12,V)@ [suki software]*/ -0x20,0x00, 0x21,0x00, 0x21,0x30, 0x21,0x20, -0x2F,0xE0, 0xF1,0x20, 0x21,0x30, 0x21,0x00, -0x27,0xF0, 0xF5,0x20, 0x25,0x20, 0x25,0x20, -/* @hu6 (12x12,V)@ [suki software]*/ -0x10,0x00, 0x11,0xF0, 0x11,0x00, 0x11,0x00, -0xFF,0x00, 0x11,0x00, 0x11,0xF0, 0x10,0x00, -0x00,0x00, 0x7F,0xF0, 0x48,0x80, 0x48,0x80, -/* @hu7 (12x12,V)@ [suki software]*/ -0x0F,0xC0, 0x08,0x40, 0xFF,0xF0, 0x08,0x50, -0x0F,0xC0, 0x10,0x00, 0x11,0xF0, 0xFF,0x10, -0x11,0xF0, 0x10,0x00, 0x00,0x10, 0x7F,0xE0, -/* @hu8 (12x12,V)@ [suki software]*/ -0x44,0x20, 0x28,0x40, 0x10,0x80, 0x2D,0x00, -0xC3,0xF0, 0x00,0x00, 0x7F,0xF0, 0x40,0x00, -0x40,0x00, 0xFF,0xF0, 0x80,0x00, 0xFF,0x90, -/* @hu9 (12x12,V)@ [suki software]*/ -0x24,0x10, 0x1C,0x60, 0x05,0x80, 0xFF,0xF0, -0x15,0x00, 0x24,0x80, 0x11,0xF0, 0xFF,0x10, -0x11,0x10, 0x11,0xF0, 0x00,0x00, 0x7F,0xF0, -/* @hu10 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x84,0x30, 0x61,0xC0, 0x06,0x00, -0x09,0xF0, 0x09,0x00, 0xFF,0x00, 0x09,0x00, -0x09,0xF0, 0x00,0x00, 0x7F,0xF0, 0x49,0x00, -/* @hu11 (12x12,V)@ [suki software]*/ -0x40,0x80, 0x47,0xC0, 0x44,0x80, 0x44,0x80, -0x7C,0xF0, 0x00,0x00, 0x3F,0xF0, 0x20,0x00, -0x20,0x00, 0x3F,0xF0, 0x40,0x00, 0x7F,0x10, -/* @hu12 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x1F,0xF0, 0x10,0x00, -0x12,0x00, 0x12,0x70, 0x12,0x40, 0xFF,0x40, -0x55,0x40, 0x55,0x70, 0x55,0x00, 0x51,0x00, -/* @hu13 (12x12,V)@ [suki software]*/ -0x3F,0xE0, 0x20,0x80, 0x20,0x80, 0x3F,0xC0, -0x00,0x00, 0x1F,0xF0, 0x12,0x00, 0x12,0x00, -0x1F,0x30, 0xF4,0xA0, 0x54,0xA0, 0x54,0xB0, -/* @hu14 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x08,0x40, 0x08,0x80, 0xFF,0xF0, -0x09,0x00, 0x0A,0x00, 0x08,0x00, 0x00,0x10, -0x1F,0xE0, 0x91,0x00, 0x51,0x00, 0x71,0x00, -/* @hu15 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x40,0x00, 0x40,0x00, 0x40,0x20, -0x43,0xF0, 0x7C,0x20, 0x44,0x20, 0x44,0x20, -0x44,0x20, 0x44,0x20, 0x4F,0xF0, 0x44,0x00, -/* @hu16 (12x12,V)@ [suki software]*/ -0x00,0x20, 0x08,0x20, 0x86,0x70, 0x61,0x80, -0x06,0x00, 0x00,0x00, 0x1F,0xF0, 0x11,0x00, -0x11,0x00, 0x91,0x00, 0x71,0x00, 0x11,0x00, -/* @hu17 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x1F,0xF0, -0x11,0x00, 0x11,0x00, 0x11,0x00, 0x91,0x00, -0x51,0x00, 0x71,0x00, 0x11,0x00, 0x11,0x00, -/* @hua0 (12x12,V)@ [suki software]*/ -0x20,0x00, 0x20,0x40, 0x20,0x80, 0x21,0x00, -0x2F,0xF0, 0xF4,0x00, 0x20,0x10, 0x20,0x20, -0x27,0xF0, 0xF0,0x40, 0x20,0x80, 0x23,0x00, -/* @hua1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x3F,0xE0, 0x20,0x40, 0x20,0x40, -0x3F,0xC0, 0x04,0x20, 0x18,0x20, 0xFF,0x20, -0x44,0x20, 0x08,0xF0, 0xFE,0x20, 0x11,0x20, -/* @hua2 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x08,0x20, 0x10,0x20, 0x3F,0xA0, -0xC0,0x20, 0x40,0x20, 0x08,0x20, 0x08,0xF0, -0xFE,0x20, 0x11,0x20, 0x11,0x20, 0x21,0x20, -/* @hua3 (12x12,V)@ [suki software]*/ -0x44,0x20, 0x28,0x40, 0x11,0x80, 0x2E,0x00, -0xC3,0xF0, 0x06,0x00, 0x04,0x00, 0x7D,0xF0, -0x55,0x50, 0x55,0x50, 0x5D,0x50, 0x45,0x50, -/* @hua4 (12x12,V)@ [suki software]*/ -0x10,0x10, 0x0C,0x10, 0x80,0x70, 0x63,0x80, -0x00,0x00, 0x06,0x00, 0x7D,0xF0, 0x55,0x50, -0x55,0x50, 0x5D,0x50, 0x45,0x50, 0x45,0x50, -/* @hua5 (12x12,V)@ [suki software]*/ -0x40,0x00, 0x4F,0xF0, 0x40,0x00, 0x40,0x00, -0x5F,0xF0, 0x52,0x20, 0x52,0x20, 0x5F,0xE0, -0x52,0x20, 0x52,0x20, 0x5F,0xF0, 0x40,0x00, -/* @hua6 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x08,0x00, 0x08,0x10, 0xFF,0xB0, -0x08,0x60, 0x48,0xD0, 0x2F,0x00, 0x0A,0x10, -0x08,0x00, 0x00,0x00, 0x1F,0xF0, 0x00,0x00, -/* @hua7 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x02,0x00, 0x04,0x00, 0x1F,0xF0, -0xE0,0x00, 0x40,0x20, 0x00,0x40, 0x00,0x80, -0xFF,0xF0, 0x03,0x00, 0x06,0x00, 0x0C,0x00, -/* @hua8 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x82,0x00, 0x72,0x00, 0x23,0xF0, -0x00,0x00, 0x04,0x00, 0x24,0x00, 0x24,0x70, -0x24,0x40, 0x24,0x40, 0x3F,0xC0, 0x44,0x40, -/* @huai0 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x11,0x80, 0x16,0x00, 0xFF,0xF0, -0x14,0x00, 0x12,0x00, 0x3F,0x00, 0x25,0x00, -0x65,0x30, 0xBF,0xC0, 0x25,0xF0, 0x25,0x10, -/* @huai1 (12x12,V)@ [suki software]*/ -0x08,0x80, 0x11,0x00, 0x23,0xF0, 0xDC,0x00, -0x48,0x00, 0x00,0x00, 0x7F,0xF0, 0x40,0x00, -0x4F,0xE0, 0x48,0x40, 0x48,0x40, 0x4F,0xE0, -/* @huai2 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x0C,0x00, 0x00,0x00, 0xFF,0xF0, -0x08,0x00, 0x06,0x20, 0x40,0x40, 0x40,0x80, -0x43,0x00, 0x4F,0xF0, 0x74,0x00, 0x42,0x00, -/* @huai3 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x86,0x20, 0x60,0xF0, 0x07,0x00, -0x1A,0x00, 0x04,0x00, 0x1F,0xF0, 0xF2,0x40, -0x12,0x40, 0x92,0x40, 0x7F,0xF0, 0x12,0x40, -/* @huai4 (12x12,V)@ [suki software]*/ -0x08,0x10, 0x08,0x10, 0xFF,0xF0, 0x08,0x20, -0x08,0x50, 0x48,0x20, 0x40,0x40, 0x40,0x80, -0x43,0x00, 0x4F,0xF0, 0x72,0x00, 0x41,0x00, -/* @huan0 (12x12,V)@ [suki software]*/ -0x28,0x00, 0x24,0x00, 0x22,0x30, 0x21,0xC0, -0x26,0xC0, 0x38,0x30, 0x04,0x00, 0x18,0x00, -0xF0,0x30, 0x17,0xC0, 0x10,0x60, 0x10,0x10, -/* @huan1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x44,0x20, 0x44,0x20, 0x7F,0xC0, -0x44,0x40, 0x44,0x50, 0x00,0x20, 0x40,0xC0, -0x43,0x00, 0x4C,0x00, 0x7F,0xF0, 0x42,0x00, -/* @huan2 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x09,0x80, 0x0E,0x00, 0xFF,0xF0, -0x0C,0x00, 0x0B,0x00, 0x40,0x00, 0x4F,0xE0, -0x49,0x20, 0x49,0x20, 0x49,0x20, 0x49,0x20, -/* @hai7 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x82,0x00, 0x73,0xF0, 0x20,0x00, -0x00,0x40, 0x40,0x80, 0x41,0x00, 0x42,0x00, -0x4F,0xF0, 0x70,0x00, 0x42,0x00, 0x41,0x00, -/* @huan3 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x1C,0x40, 0xE4,0xC0, 0x47,0x50, -0x0C,0x50, 0x01,0x00, 0x55,0x00, 0x4D,0x30, -0x67,0xE0, 0x5D,0x50, 0x85,0x40, 0x8D,0x50, -/* @huan4 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x11,0x40, 0x14,0x40, 0x0F,0xC0, 0x34,0x40, -0xE4,0x50, 0x27,0xE0, 0x2C,0x50, 0x34,0x40, -/* @huan5 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x10, 0x3B,0x80, -0x2A,0x90, 0x2A,0x80, 0x2A,0x80, 0x2A,0x90, -0xFF,0xE0, 0x2A,0x80, 0x2A,0x80, 0x2A,0x80, -/* @huan6 (12x12,V)@ [suki software]*/ -0x3F,0xE0, 0x20,0x80, 0x20,0x80, 0x3F,0xC0, -0x04,0x20, 0x08,0x20, 0x17,0xE0, 0xE4,0x20, -0x24,0x30, 0x27,0xE0, 0x2C,0x30, 0x34,0x20, -/* @huan7 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x40, 0x00,0xB0, 0x3F,0xC0, -0x20,0x20, 0x27,0xE0, 0x2A,0x20, 0xBA,0x20, -0x6A,0x70, 0x2B,0xB0, 0x2E,0x20, 0x2A,0x20, -/* @huan8 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x08,0xA0, 0x29,0x20, 0xA9,0x50, -0x6A,0x50, 0x2E,0xA0, 0x2A,0xA0, 0xFB,0x50, -0x2A,0x30, 0x2A,0x20, 0x6E,0x50, 0xAA,0x80, -/* @huan9 (12x12,V)@ [suki software]*/ -0x07,0x00, 0x00,0x00, 0xFF,0xF0, 0x04,0x20, -0x08,0x50, 0x08,0x40, 0x17,0xC0, 0xE4,0x40, -0x24,0x50, 0x2F,0xE0, 0x34,0x50, 0x24,0x40, -/* @huan10 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x20, 0x80,0xF0, 0x6F,0x00, -0x04,0x40, 0x08,0x40, 0x37,0xC0, 0xE4,0x40, -0x24,0x50, 0x2F,0xE0, 0x34,0x50, 0x24,0x40, -/* @huan11 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x18,0x00, 0x20,0x00, 0x27,0xF0, -0x24,0x90, 0x24,0x90, 0xA4,0x90, 0x67,0x90, -0x24,0x90, 0x24,0x90, 0x24,0x90, 0x24,0xF0, -/* @huan12 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x06,0x10, 0x0A,0x10, 0x32,0x30, -0xE2,0xD0, 0x43,0x10, 0x0E,0x50, 0x24,0x30, -0x20,0x10, 0x20,0x00, 0x20,0x00, 0x20,0x00, -/* @huang0 (12x12,V)@ [suki software]*/ -0x20,0x00, 0x24,0x00, 0x24,0x00, 0x24,0x00, -0x27,0xB0, 0xF4,0x80, 0x24,0x80, 0x2C,0xB0, -0x24,0x80, 0xF4,0x80, 0x24,0xB0, 0x24,0x80, -/* @huang1 (12x12,V)@ [suki software]*/ -0x0E,0x00, 0x00,0x00, 0xFF,0xF0, 0x08,0x00, -0x04,0x00, 0x24,0x00, 0x27,0xB0, 0xF4,0x80, -0x24,0x80, 0x2C,0xB0, 0x24,0x80, 0xF4,0x80, -/* @huang2 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x24,0x00, 0x24,0x00, 0x25,0xF0, -0x25,0x40, 0xFD,0x40, 0x25,0x40, 0x27,0xF0, -0x25,0x40, 0xFD,0x40, 0x25,0x40, 0x25,0xF0, -/* @huang3 (12x12,V)@ [suki software]*/ -0x40,0x80, 0x43,0x00, 0x7F,0xF0, 0x42,0x00, -0x43,0xF0, 0x48,0x00, 0x2B,0xF0, 0xFA,0x90, -0x2A,0x90, 0x2F,0xF0, 0x2A,0x90, 0xFA,0x90, -/* @huang4 (12x12,V)@ [suki software]*/ -0x1F,0xC0, 0x10,0x80, 0xFF,0xF0, 0x10,0xA0, -0x1F,0x90, 0x00,0x00, 0x00,0x80, 0x3E,0x90, -0x6A,0x90, 0xAA,0x90, 0x2A,0xF0, 0x2A,0x90, -/* @huang5 (12x12,V)@ [suki software]*/ -0x12,0x00, 0x2A,0x00, 0xCA,0x00, 0x6A,0xF0, -0x5E,0xA0, 0x4A,0xA0, 0x4A,0xA0, 0x5B,0xF0, -0x2A,0xA0, 0xCA,0xA0, 0x5E,0xA0, 0x6A,0xF0, -/* @huang6 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x80, 0x00,0x90, 0x3E,0x90, -0x2A,0x90, 0x6A,0x90, 0xAA,0x90, 0x2A,0xF0, -0x2A,0x90, 0x2A,0x90, 0x2A,0x90, 0x3E,0x90, -/* @huang7 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x40,0x00, -0x4F,0xA0, 0x4A,0xA0, 0x7A,0xA0, 0x6A,0xB0, -0x4A,0xA0, 0x4A,0xA0, 0x4F,0xA0, 0x40,0x00, -/* @huang8 (12x12,V)@ [suki software]*/ -0x0E,0x00, 0x00,0x00, 0xFF,0xF0, 0x10,0x00, -0x0C,0x00, 0x00,0x40, 0x1F,0x50, 0x35,0x50, -0xD5,0x50, 0x15,0x70, 0x15,0x50, 0x15,0x50, -/* @huang9 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x06,0x00, 0x00,0x70, 0xFF,0xC0, -0x08,0x20, 0x10,0x10, 0x3E,0xA0, 0x2A,0xA0, -0x6A,0xA0, 0xAA,0xF0, 0x2A,0xA0, 0x2A,0xA0, -/* @huang10 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x00,0x40, 0x00,0x40, 0xFA,0x40, -0xA9,0x40, 0xA9,0xD0, 0xA8,0x60, 0xAF,0xC0, -0xA8,0x40, 0xA8,0xF0, 0xA9,0x40, 0xAB,0x40, -/* @huang11 (12x12,V)@ [suki software]*/ -0x1F,0xE0, 0x10,0x00, 0xFF,0xF0, 0x10,0x20, -0x1F,0xE0, 0x00,0x40, 0x7D,0x40, 0x54,0xF0, -0x54,0x40, 0x57,0xC0, 0x54,0x40, 0x54,0xF0, -/* @huang12 (12x12,V)@ [suki software]*/ -0x0E,0x00, 0x00,0x00, 0xFF,0xF0, 0x10,0x00, -0x0A,0x00, 0x22,0x00, 0x12,0x10, 0x0E,0x60, -0x03,0x80, 0xFE,0x00, 0x07,0xF0, 0x0A,0x00, -/* @huang13 (12x12,V)@ [suki software]*/ -0x82,0x00, 0x72,0x00, 0x23,0xF0, 0x00,0x00, -0x00,0x10, 0x24,0x00, 0x24,0x30, 0xF7,0x80, -0x24,0x80, 0x34,0xB0, 0x2C,0x80, 0x24,0x80, -/* @hui0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x10,0x00, 0x10,0x00, 0x10,0x30, -0x11,0xC0, 0x1F,0x00, 0xF0,0xC0, 0x10,0x10, -0x10,0x60, 0x1F,0x80, 0x11,0x60, 0x11,0x10, -/* @hui1 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x11,0x00, 0x12,0x10, 0x68,0x90, 0x4B,0x90, -0x5C,0x90, 0x68,0x90, 0x4B,0xF0, 0x48,0x90, -/* @hui2 (12x12,V)@ [suki software]*/ -0x24,0x00, 0x1C,0x00, 0x07,0xF0, 0xFC,0x00, -0x17,0xF0, 0x24,0x00, 0x64,0x10, 0x48,0x90, -0x4B,0x90, 0x7C,0x90, 0x4B,0xF0, 0x48,0x90, -/* @hui3 (12x12,V)@ [suki software]*/ -0x09,0x00, 0x12,0x00, 0xE7,0xF0, 0x58,0x00, -0x0D,0x20, 0x77,0x60, 0x15,0xB0, 0xF5,0x20, -0x15,0x20, 0x72,0x20, 0x1F,0x00, 0xE8,0xE0, -/* @hui4 (12x12,V)@ [suki software]*/ -0x0E,0x00, 0x00,0x00, 0xFF,0xF0, 0x10,0x00, -0x0C,0x10, 0x10,0x60, 0x13,0x80, 0xFD,0x00, -0x10,0x90, 0x1F,0xE0, 0x10,0x60, 0x10,0x90, -/* @hui5 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x1F,0xC0, 0x10,0x80, 0xFF,0xF0, -0x10,0xA0, 0x1F,0x90, 0x00,0x00, 0x7F,0xF0, -0x40,0x00, 0x4F,0xE0, 0x48,0x40, 0x4F,0xE0, -/* @hui6 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x40,0x00, 0x40,0x00, -0x4F,0xE0, 0x48,0x20, 0x48,0x20, 0x48,0x20, -0x48,0x20, 0x48,0x20, 0x4F,0xE0, 0x40,0x00, -/* @hui7 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7E,0x80, 0x52,0x80, 0x82,0x80, -0x12,0xF0, 0x52,0x80, 0x7E,0x80, 0x00,0x00, -0x02,0x00, 0x7D,0x40, 0x41,0x20, 0x41,0x10, -/* @hui8 (12x12,V)@ [suki software]*/ -0x0E,0x00, 0x00,0x00, 0xFF,0xF0, 0x10,0x00, -0x0A,0x00, 0x04,0x80, 0x18,0x80, 0xEF,0xF0, -0x28,0x80, 0x2A,0xA0, 0x29,0x90, 0x28,0x80, -/* @hui9 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x54,0x00, 0x54,0x00, 0x55,0x50, -0xFF,0x50, 0x55,0x50, 0x55,0x50, 0x01,0x50, -0x55,0x50, 0x55,0x50, 0xFF,0x50, 0x55,0x50, -/* @hui10 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x00,0x80, 0x20,0x80, 0x20,0x90, -0x27,0xE0, 0x20,0x80, 0x20,0x80, 0xFE,0x80, -0x20,0x80, 0x20,0x80, 0x20,0x80, 0x67,0xF0, -/* @hui11 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x40,0x40, 0x40,0x40, 0x5F,0x40, -0x55,0x50, 0x55,0x40, 0x55,0x40, 0xFF,0xD0, -0x55,0x40, 0x55,0x40, 0x55,0x40, 0x5F,0x40, -/* @hui12 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x3F,0xF0, 0x22,0x10, 0x22,0x10, -0x3F,0xF0, 0x08,0x80, 0x30,0x80, 0xEF,0xF0, -0x28,0x80, 0x2A,0xA0, 0x29,0x90, 0x28,0x80, -/* @hui13 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xE0, 0x40,0x10, 0x5F,0xE0, -0x40,0x10, 0x7F,0x80, 0x11,0x00, 0x12,0x00, -0x17,0xF0, 0x1C,0x90, 0xF4,0x90, 0x14,0x90, -/* @hui14 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x49,0x80, 0x4E,0x00, 0x7F,0xF0, -0x89,0x00, 0x88,0xA0, 0x08,0x40, 0x7C,0x80, -0x09,0x40, 0x0B,0x20, 0xFD,0x10, 0x09,0x20, -/* @hui15 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x02,0x00, 0x02,0x40, 0x04,0x40, -0x0A,0x40, 0x12,0x50, 0x22,0x60, 0xC2,0x40, -0x22,0x40, 0x12,0x40, 0x0A,0x50, 0x04,0x40, -/* @hui16 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x07,0x00, 0x00,0x30, 0xFF,0xC0, -0x09,0x20, 0x12,0x50, 0x04,0x40, 0x0A,0x40, -0x32,0x70, 0xC2,0x40, 0x22,0x40, 0x12,0x50, -/* @hui17 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x08,0x20, 0x86,0x20, 0x60,0xF0, -0x07,0x00, 0x00,0x00, 0x7F,0xF0, 0x40,0x00, -0x40,0x00, 0x40,0x00, 0x40,0x00, 0x40,0x00, -/* @hui18 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x84,0x00, 0x67,0xF0, 0x40,0x00, -0x00,0x00, 0x20,0x90, 0x24,0x80, 0x24,0x80, -0x24,0x80, 0xFF,0xF0, 0x24,0x80, 0x24,0x80, -/* @hui19 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x42,0x00, 0x23,0xF0, 0x30,0x00, -0x00,0x90, 0x10,0x80, 0xEF,0xF0, 0x28,0x80, -0x2C,0xC0, 0x2A,0xA0, 0x28,0x80, 0x28,0x80, -/* @hui20 (12x12,V)@ [suki software]*/ -0x04,0x40, 0x0C,0xC0, 0x35,0x40, 0xC6,0x40, -0x08,0x40, 0x00,0x00, 0x02,0x40, 0x04,0x40, -0x1A,0x50, 0xE2,0x60, 0x22,0x40, 0x12,0x40, -/* @hun0 (12x12,V)@ [suki software]*/ -0x22,0x00, 0x2C,0x00, 0x2A,0x00, 0x2A,0x40, -0x2A,0xC0, 0xFB,0x40, 0x2E,0x40, 0x2B,0xF0, -0x2A,0x40, 0x2A,0x40, 0xFA,0x40, 0x2A,0x40, -/* @hun1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0x80, 0x51,0xF0, -0x52,0x90, 0x50,0x90, 0x50,0x90, 0xF0,0x90, -0x9C,0x90, 0x92,0x90, 0x91,0x90, 0x91,0xF0, -/* @hun2 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x08,0xC0, 0xFF,0x40, 0x48,0x30, -0x08,0xC0, 0x0F,0x00, 0x00,0x00, 0x3F,0x80, -0x29,0x70, 0x2A,0x50, 0x48,0x50, 0x7C,0x50, -/* @hun3 (12x12,V)@ [suki software]*/ -0x04,0x10, 0x24,0x70, 0x27,0x90, 0x24,0x10, -0x24,0x50, 0x04,0x30, 0x3F,0x00, 0x29,0x10, -0x69,0xE0, 0xBF,0x00, 0x29,0xF0, 0x29,0x30, -/* @hun4 (12x12,V)@ [suki software]*/ -0x10,0x20, 0x0C,0x20, 0x80,0xF0, 0x67,0x00, -0x00,0x10, 0x68,0x90, 0x49,0x90, 0x4E,0x90, -0x78,0x90, 0x4B,0xF0, 0x48,0x90, 0x48,0x90, -/* @hun5 (12x12,V)@ [suki software]*/ -0x10,0x20, 0x0C,0x20, 0x80,0xF0, 0x63,0x00, -0x0C,0x00, 0x00,0xF0, 0x7E,0x20, 0x52,0x20, -0x52,0x20, 0x52,0x00, 0x53,0xF0, 0x52,0x20, -/* @huo0 (12x12,V)@ [suki software]*/ -0x30,0x80, 0x2A,0xB0, 0x2A,0xA0, 0xBF,0xE0, -0x6A,0xA0, 0x2A,0xB0, 0x38,0xA0, 0x08,0x40, -0x31,0x80, 0xC6,0x70, 0x18,0x40, 0x86,0x40, -/* @huo1 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x20, 0x80,0xF0, 0x63,0x00, -0x0C,0x00, 0x04,0x00, 0x24,0x70, 0x24,0x40, -0x24,0x40, 0x3F,0xC0, 0x44,0x40, 0x44,0x40, -/* @huo2 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x02,0x00, 0x0F,0xF0, 0x38,0x00, -0xE0,0x00, 0x41,0x00, 0x0E,0x00, 0x00,0x30, -0x00,0xC0, 0xFF,0x00, 0x00,0xC0, 0x02,0x30, -/* @huo3 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x80, 0x0F,0x00, -0x00,0x00, 0x00,0x30, 0x00,0xC0, 0xFF,0x00, -0x40,0xC0, 0x02,0x20, 0x04,0x10, 0x18,0x00, -/* @huo4 (12x12,V)@ [suki software]*/ -0x40,0x40, 0x48,0x90, 0x45,0x20, 0x42,0x40, -0x45,0xF0, 0xF9,0x00, 0x41,0x00, 0x41,0x00, -0x41,0x30, 0xF7,0xC0, 0x41,0x20, 0x45,0x10, -/* @huo5 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x10,0x00, 0x13,0xC0, 0x12,0x40, -0x12,0x40, 0x12,0x40, 0x13,0xD0, 0x10,0x00, -0x10,0x00, 0xFF,0x90, 0x10,0x60, 0x50,0x50, -/* @huo6 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x20,0x50, 0x2E,0x40, 0x2A,0x40, -0x2A,0x90, 0x2A,0x80, 0x2E,0x80, 0x20,0x50, -0xF8,0x40, 0x26,0x80, 0xA1,0x00, 0x62,0x80, -/* @huo7 (12x12,V)@ [suki software]*/ -0x00,0x20, 0x30,0x40, 0x21,0x80, 0xAA,0xF0, -0xAA,0xA0, 0xA8,0xA0, 0xA2,0xA0, 0xFD,0xF0, -0xA0,0xA0, 0xAA,0xA0, 0xAA,0xA0, 0xAA,0xA0, -/* @huo8 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x08,0x00, 0x10,0x00, 0x3D,0xF0, -0xE1,0x00, 0x41,0x00, 0x11,0x00, 0x11,0x70, -0xF9,0x00, 0x25,0x00, 0x25,0x00, 0x25,0xF0, -/* @huo9 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x08,0x80, 0x89,0x00, 0x6B,0xF0, -0x0C,0x80, 0x08,0x40, 0x01,0xF0, 0x79,0x00, -0x49,0x10, 0x49,0x20, 0x4F,0xC0, 0x49,0x20, -/* @ji0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x01,0x00, 0x11,0x00, 0x11,0x70, -0x11,0x00, 0x11,0x00, 0x11,0x00, 0xFF,0xF0, -0x11,0x00, 0x11,0x00, 0x11,0x00, 0x11,0x00, -/* @ji1 (12x12,V)@ [suki software]*/ -0x08,0x10, 0x08,0x10, 0x08,0x20, 0xFF,0xE0, -0x08,0x40, 0x48,0x90, 0x40,0x60, 0x7F,0x80, -0x41,0x80, 0x40,0x60, 0x40,0x10, 0x4C,0x30, -/* @ji2 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x20,0x80, 0x20,0x90, 0x20,0xB0, -0xFF,0xD0, 0x2A,0x90, 0x2A,0x90, 0x2A,0xB0, -0x2A,0x90, 0x2A,0x90, 0xFF,0xD0, 0x20,0xA0, -/* @ji3 (12x12,V)@ [suki software]*/ -0x10,0x20, 0x10,0xC0, 0x13,0x00, 0xFF,0xF0, -0x12,0x00, 0x11,0x80, 0x10,0x00, 0x00,0x30, -0x7F,0xC0, 0x40,0x00, 0x40,0x00, 0x40,0x00, -/* @ji4 (12x12,V)@ [suki software]*/ -0x7F,0xF0, 0x42,0x10, 0x7F,0xF0, 0x42,0x10, -0x7F,0xF0, 0x02,0x00, 0x26,0xF0, 0x2A,0x90, -0x32,0x90, 0xE2,0xF0, 0x32,0x00, 0x2A,0x00, -/* @ji5 (12x12,V)@ [suki software]*/ -0x08,0x10, 0x48,0xE0, 0x4B,0x00, 0x7F,0xF0, -0x89,0x00, 0x8C,0x80, 0x24,0x00, 0x2B,0x90, -0x31,0x50, 0xE1,0x50, 0x22,0x50, 0xBA,0x50, -/* @ji6 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x48,0xC0, 0x4B,0x00, 0x7F,0xF0, -0x8A,0x00, 0x89,0x80, 0x00,0x00, 0x7F,0x80, -0x40,0xB0, 0x40,0x80, 0x40,0x80, 0x40,0xA0, -/* @ji7 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x14,0x00, 0xE4,0x00, 0x44,0x00, -0x6F,0xF0, 0x55,0x40, 0x4D,0x40, 0x55,0x40, -0x25,0x40, 0xC5,0x40, 0x4F,0xF0, 0x64,0x00, -/* @ji8 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0xFF,0xF0, 0x88,0x80, -0x88,0x80, 0xFF,0xF0, 0x00,0x00, 0x00,0x00, -0xFF,0xF0, 0x80,0x00, 0x80,0x00, 0xFF,0xF0, -/* @ji9 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x1C,0x00, 0xF3,0xF0, 0x10,0x00, -0x14,0x00, 0x18,0x10, 0x10,0x00, 0x00,0x10, -0x7F,0xE0, 0x40,0x00, 0x40,0x00, 0x7F,0xF0, -/* @ji10 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x82,0x00, 0x73,0xF0, 0x20,0x40, -0x10,0x80, 0x13,0x00, 0x10,0x30, 0x9F,0xC0, -0x50,0x10, 0x70,0x00, 0x1F,0xF0, 0x10,0x00, -/* @ji11 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x84,0x30, 0x61,0xC0, 0x06,0x80, -0x3E,0x90, 0x6A,0xE0, 0xAB,0xA0, 0x2A,0xA0, -0x3E,0xB0, 0x04,0x00, 0x1F,0xC0, 0xE8,0x30, -/* @ji12 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x82,0x00, 0x72,0x00, 0x23,0xF0, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x7F,0xF0, -0x40,0x00, 0x40,0x00, 0x40,0x00, 0x7F,0xF0, -/* @ji13 (12x12,V)@ [suki software]*/ -0x20,0x00, 0x28,0x10, 0x26,0x60, 0x21,0x80, -0x2E,0xC0, 0x30,0x30, 0x00,0x00, 0x3F,0x90, -0x30,0x90, 0x6C,0x90, 0xA2,0x90, 0x21,0x90, -/* @ji14 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x08,0x80, 0x0F,0x40, 0xF8,0x30, -0x08,0xC0, 0x0F,0x00, 0x00,0x00, 0x7F,0xF0, -0x40,0x00, 0x47,0xE0, 0x44,0x20, 0x7C,0x30, -/* @ji15 (12x12,V)@ [suki software]*/ -0x04,0x40, 0x0C,0xC0, 0x35,0x40, 0xC6,0x40, -0x08,0x40, 0x44,0x00, 0x55,0xF0, 0x55,0x00, -0x55,0x00, 0xFD,0x70, 0x55,0x00, 0x55,0x00, -/* @ji16 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x1C,0x40, 0x64,0xC0, 0x07,0x40, -0x0C,0x40, 0x00,0x40, 0x04,0x00, 0x77,0xF0, -0x55,0x40, 0x55,0x40, 0x55,0x50, 0x55,0x50, -/* @ji17 (12x12,V)@ [suki software]*/ -0x20,0x00, 0x22,0x00, 0x22,0x00, 0x22,0x70, -0x22,0x40, 0x22,0x40, 0x22,0x40, 0xFE,0x40, -0x22,0x40, 0x22,0x40, 0x22,0x40, 0x22,0x70, -/* @ji18 (12x12,V)@ [suki software]*/ -0x10,0x20, 0x10,0xC0, 0x13,0x00, 0xFF,0xF0, -0x12,0x00, 0x11,0x80, 0x50,0x10, 0x40,0xE0, -0x7F,0x00, 0x41,0x80, 0x46,0x40, 0x4A,0x30, -/* @ji19 (12x12,V)@ [suki software]*/ -0x20,0x00, 0x2F,0x90, 0x28,0x20, 0xFF,0xF0, -0x28,0x40, 0x28,0xA0, 0x2F,0x90, 0x00,0x00, -0x2F,0x90, 0x28,0x20, 0xFF,0xF0, 0x28,0x20, -/* @ji20 (12x12,V)@ [suki software]*/ -0x21,0x10, 0x27,0x10, 0xF9,0x20, 0x27,0xF0, -0x21,0x20, 0x21,0x20, 0x04,0x00, 0x77,0xF0, -0x55,0x50, 0x55,0x50, 0x55,0x50, 0x55,0x50, -/* @ji21 (12x12,V)@ [suki software]*/ -0x10,0x00, 0x2A,0x80, 0xCA,0xB0, 0x6A,0xC0, -0x5F,0xF0, 0x4A,0xA0, 0x4A,0x90, 0x54,0x80, -0x24,0xB0, 0xCF,0xA0, 0x44,0xA0, 0x64,0xA0, -/* @ji22 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x08,0x20, 0x10,0x20, 0x3F,0xA0, -0xEA,0xA0, 0x2A,0xA0, 0x2A,0xB0, 0x2A,0xF0, -0xBF,0xA0, 0x6A,0xB0, 0x2A,0xA0, 0x2A,0xA0, -/* @ji23 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x40,0x00, 0x40,0x30, -0x41,0xC0, 0x7E,0x00, 0x41,0x80, 0x40,0x60, -0x42,0x10, 0x4F,0x10, 0x72,0x60, 0x03,0x80, -/* @ji24 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x04,0x10, 0x08,0x00, -0x35,0x50, 0xE5,0x40, 0x25,0x40, 0x25,0x60, -0x2D,0x50, 0x35,0x40, 0x25,0x40, 0x07,0xC0, -/* @ji25 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x06,0x80, 0x01,0x00, 0x3F,0xF0, -0x21,0x80, 0x22,0x80, 0x3C,0x80, 0xA4,0x80, -0x64,0xB0, 0x27,0xC0, 0x24,0xB0, 0x24,0x80, -/* @ji26 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x20, 0x80,0x70, 0x63,0x80, -0x0C,0x00, 0x00,0x30, 0x40,0xC0, 0x7F,0x00, -0x41,0x80, 0x40,0x40, 0x42,0x30, 0x4E,0x30, -/* @ji27 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x49,0x00, -0x49,0x00, 0x49,0x50, 0x7F,0xB0, 0x00,0x10, -0x00,0x00, 0x7F,0xF0, 0x40,0x00, 0x40,0x20, -/* @ji28 (12x12,V)@ [suki software]*/ -0x10,0x00, 0x13,0x80, 0xFC,0x50, 0x10,0x60, -0x1F,0x90, 0x04,0x40, 0x02,0x90, 0x3F,0xE0, -0x22,0x80, 0x3C,0x80, 0xA4,0x90, 0x67,0xE0, -/* @ji29 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x0C,0xC0, 0x35,0x80, 0xC6,0x90, -0x04,0x90, 0x18,0x80, 0x40,0x30, 0x41,0xC0, -0x7E,0x00, 0x41,0xC0, 0x42,0x20, 0x4E,0x10, -/* @ji30 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x12,0x00, 0x15,0x00, 0x21,0x00, 0x32,0xF0, -0xAA,0x00, 0x64,0x00, 0x2A,0x00, 0x32,0xF0, -/* @ji31 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x10, -0x7F,0xE0, 0x40,0x00, 0x40,0x00, 0x40,0x00, -0x40,0x00, 0x40,0x00, 0x7F,0xF0, 0x00,0x00, -/* @ji32 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x09,0x00, 0x4D,0x00, 0x2A,0x00, -0x13,0xF0, 0x05,0x50, 0x19,0x50, 0xE1,0x50, -0x11,0x50, 0x09,0x50, 0x25,0x50, 0x35,0xF0, -/* @ji33 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x47,0xF0, 0x44,0x00, -0x44,0x00, 0x44,0x00, 0x44,0x00, 0x44,0x00, -0x44,0x00, 0x44,0x00, 0x44,0x00, 0x7E,0x00, -/* @ji34 (12x12,V)@ [suki software]*/ -0x41,0x00, 0x47,0xF0, 0x5A,0xA0, 0x4A,0xA0, -0x4B,0xE0, 0xFE,0xA0, 0x4A,0xA0, 0x43,0xE0, -0x40,0x00, 0xF0,0x00, 0x47,0xF0, 0x40,0x00, -/* @ji35 (12x12,V)@ [suki software]*/ -0x10,0x80, 0x10,0x80, 0x11,0x00, 0xFF,0xF0, -0x12,0x00, 0x14,0x00, 0x00,0x00, 0x13,0x00, -0x12,0xC0, 0x12,0x30, 0xFE,0x30, 0x12,0x40, -/* @ji36 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x50,0x20, 0x50,0x20, 0x5F,0xA0, -0x5A,0xA0, 0xFA,0xF0, 0x0A,0xA0, 0x0F,0xA0, -0x0A,0xA0, 0xEA,0xF0, 0x5A,0xA0, 0x5F,0xA0, -/* @ji37 (12x12,V)@ [suki software]*/ -0x00,0x20, 0x11,0x20, 0x11,0x20, 0x52,0x20, -0x53,0x20, 0x55,0x20, 0x59,0x20, 0x7F,0x30, -0x99,0x60, 0x95,0xA0, 0x94,0x20, 0x92,0x20, -/* @ji38 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x03,0x00, 0x0F,0xF0, 0xF4,0x00, -0x40,0x00, 0x10,0x00, 0x13,0x00, 0x12,0xC0, -0x12,0x20, 0xFE,0x10, 0x52,0x20, 0x12,0xC0, -/* @ji39 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x10,0x80, 0x25,0x40, 0xD2,0x40, -0x4D,0x50, 0x59,0x40, 0x61,0x40, 0x01,0x70, -0x61,0x40, 0x59,0x40, 0x4D,0x50, 0x52,0x40, -/* @ji40 (12x12,V)@ [suki software]*/ -0x20,0x80, 0x20,0x80, 0x29,0x00, 0x2A,0xF0, -0xA6,0x00, 0x64,0x00, 0x2C,0x00, 0x32,0xF0, -0x23,0x00, 0x21,0x00, 0x00,0x00, 0x3F,0xF0, -/* @ji41 (12x12,V)@ [suki software]*/ -0x07,0x00, 0x00,0x00, 0x7F,0xF0, 0x08,0x00, -0x06,0x90, 0x28,0x90, 0x29,0x10, 0x2A,0x90, -0x2C,0x90, 0x7F,0xB0, 0x4C,0xD0, 0x4A,0x90, -/* @ji42 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x86,0x20, 0x60,0x70, 0x03,0x80, -0x0C,0x00, 0x21,0x00, 0x21,0x00, 0x32,0xF0, -0xAA,0x00, 0x64,0x00, 0x2A,0x00, 0x32,0xF0, -/* @ji43 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x08,0x80, 0x30,0x80, 0x28,0x80, -0x29,0xB0, 0x2A,0xA0, 0xAC,0xA0, 0x78,0xA0, -0x2C,0xB0, 0x2A,0x80, 0x29,0x80, 0x28,0xF0, -/* @ji44 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x18,0x80, 0x20,0xB0, 0x20,0x80, -0x3F,0xF0, 0x24,0xA0, 0x24,0x90, 0xA4,0x80, -0x63,0x00, 0x24,0xC0, 0x24,0x30, 0x24,0x40, -/* @ji45 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x84,0x00, 0x74,0x00, 0x27,0xF0, -0x00,0x00, 0x00,0x00, 0x04,0x10, 0x04,0x00, -0x04,0x00, 0x04,0x00, 0xFF,0xF0, 0x04,0x00, -/* @ji46 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x82,0x00, 0x72,0x00, 0x23,0xF0, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x43,0xF0, -0x42,0x00, 0x42,0x00, 0x42,0x00, 0x42,0x00, -/* @ji47 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x49,0x00, 0x49,0x50, -0x49,0x20, 0x7F,0x10, 0x00,0x00, 0x5E,0x00, -0x42,0x30, 0x42,0xC0, 0x7F,0xF0, 0x42,0x00, -/* @ji48 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x10, 0x00,0x00, 0x4F,0x00, -0x48,0xB0, 0x48,0x80, 0x48,0x80, 0x48,0xC0, -0x48,0xB0, 0x48,0x80, 0x48,0x80, 0x78,0x80, -/* @ji49 (12x12,V)@ [suki software]*/ -0x7F,0xF0, 0x40,0x00, 0x44,0x40, 0x5A,0x20, -0x61,0xC0, 0x04,0x30, 0x04,0xC0, 0x44,0x00, -0x44,0x00, 0x47,0xF0, 0x44,0x00, 0x44,0x80, -/* @ji50 (12x12,V)@ [suki software]*/ -0x10,0x00, 0x11,0x80, 0x1E,0x40, 0xF0,0x30, -0x10,0xC0, 0x1F,0x00, 0x00,0x00, 0x12,0x00, -0x13,0xC0, 0x12,0x30, 0xFE,0x00, 0x12,0x30, -/* @ji51 (12x12,V)@ [suki software]*/ -0x04,0x40, 0x1C,0xC0, 0xE5,0x40, 0x46,0x40, -0x0C,0x40, 0x00,0x00, 0x7F,0xF0, 0x12,0x10, -0x0A,0x60, 0x03,0x80, 0xFF,0xF0, 0x03,0x00, -/* @ji52 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x0E,0x40, 0x34,0xC0, 0xC5,0x40, -0x06,0x50, 0x18,0x50, 0x00,0x00, 0x43,0xF0, -0x42,0x00, 0x42,0x00, 0x42,0x00, 0x42,0x00, -/* @jia0 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x40,0x50, 0x40,0x50, 0x47,0x70, -0x55,0xD0, 0x55,0x50, 0x55,0x50, 0xF5,0x40, -0x55,0x40, 0x55,0xD0, 0x55,0x50, 0x47,0x50, -/* @jia1 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x08,0xC0, 0x0B,0x00, 0x7F,0xF0, -0x09,0x00, 0x00,0x80, 0x08,0x10, 0x7F,0xE0, -0x08,0x00, 0x0F,0xF0, 0x00,0x00, 0x0F,0xF0, -/* @jia2 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x10,0x80, 0x10,0x80, 0x14,0x80, -0x13,0x80, 0x12,0x90, 0x10,0xE0, 0xFF,0xC0, -0x10,0xA0, 0x11,0x90, 0x1E,0x80, 0x14,0x80, -/* @jia3 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x0F,0xF0, 0x38,0x00, -0xE2,0x00, 0x52,0x20, 0x12,0x20, 0x12,0x20, -0x12,0x20, 0xFF,0xF0, 0x12,0x20, 0x12,0x20, -/* @jia4 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x18,0x90, 0x20,0x90, 0x28,0xA0, -0x29,0x20, 0x29,0x50, 0xAB,0x90, 0x6D,0x20, -0x28,0xF0, 0x28,0x60, 0x29,0x90, 0x20,0x90, -/* @jia5 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x10,0x00, 0x10,0x10, 0x10,0xE0, -0xFF,0x00, 0x10,0x00, 0x10,0x00, 0x1F,0xF0, -0x00,0x00, 0x1F,0xF0, 0x10,0x00, 0x10,0x00, -/* @jia6 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x20,0x40, 0x24,0x40, 0x26,0x40, -0x25,0xC0, 0xF5,0x40, 0x24,0x70, 0x2F,0xC0, -0x24,0x60, 0xF4,0xD0, 0x27,0x40, 0x25,0x40, -/* @jia7 (12x12,V)@ [suki software]*/ -0x09,0x00, 0x25,0x00, 0x21,0x30, 0xFF,0xC0, -0x23,0x40, 0x25,0x20, 0x29,0x10, 0x40,0x00, -0x4F,0xE0, 0x58,0x10, 0x6B,0xE0, 0x48,0x10, -/* @jia8 (12x12,V)@ [suki software]*/ -0x40,0x00, 0x40,0x00, 0x5C,0x00, 0x55,0xF0, -0x55,0x00, 0x7D,0x00, 0x55,0x00, 0x55,0x70, -0x55,0x00, 0x7D,0x00, 0x55,0x00, 0x55,0xF0, -/* @jia9 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xE0, 0x44,0x40, -0x44,0x40, 0x44,0x40, 0x44,0x40, 0x7F,0xF0, -0x44,0x40, 0x44,0x40, 0x44,0x40, 0x44,0x40, -/* @jia10 (12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0x34,0x80, 0xD7,0xF0, -0x14,0x80, 0x14,0x80, 0x00,0x00, 0x7F,0xC0, -0x44,0x40, 0x44,0x40, 0x7F,0xF0, 0x44,0x40, -/* @jia11 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x1F,0xF0, 0xE0,0x00, -0x40,0x00, 0x7F,0xF0, 0x49,0x20, 0x49,0x20, -0x7D,0x20, 0x00,0x80, 0x49,0x60, 0x49,0x10, -/* @jia12 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x48,0xC0, 0x4B,0x00, 0x7F,0xF0, -0x8A,0x00, 0x89,0x20, 0x31,0x20, 0x22,0x50, -0x2A,0x50, 0xAD,0xA0, 0x68,0xF0, 0x29,0x40, -/* @jia13 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x0F,0xF0, 0x38,0x00, -0xE2,0x00, 0x44,0x00, 0x08,0x10, 0x13,0xE0, -0x20,0x00, 0xC0,0x00, 0x20,0x00, 0x1B,0xF0, -/* @jia14 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x21,0x40, 0x21,0x40, 0x26,0x40, -0xF8,0x40, 0x22,0x50, 0x21,0x60, 0x3E,0xF0, -0x00,0x60, 0x3E,0x50, 0x22,0x40, 0x22,0x40, -/* @jia15 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x44,0x00, 0x48,0x00, 0x70,0x00, -0xC2,0x00, 0x4A,0xE0, 0x46,0x20, 0x7A,0x20, -0x02,0x20, 0x7A,0x20, 0x4B,0xE0, 0x48,0x20, -/* @jia16 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x09,0xE0, 0xFE,0x10, 0x08,0x30, -0x0F,0xC0, 0x00,0x90, 0x30,0xA0, 0x29,0x40, -0x2A,0x90, 0xAD,0xA0, 0x68,0x70, 0x28,0xC0, -/* @jian0 (12x12,V)@ [suki software]*/ -0x40,0x80, 0x41,0x00, 0x47,0x00, 0x78,0x80, -0x48,0x30, 0x48,0xC0, 0x4F,0x00, 0x22,0x00, -0x22,0x00, 0x22,0x00, 0x3F,0xF0, 0x42,0x00, -/* @jian1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7E,0x70, 0x00,0x40, -0x00,0x40, 0xFF,0x70, 0x04,0x40, 0x08,0x40, -0xF0,0x70, 0x58,0x40, 0x16,0x40, 0x13,0x40, -/* @jian2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x3F,0x00, 0x00,0x20, 0x00,0x20, -0xFF,0xE0, 0x00,0x20, 0x40,0xA0, 0x71,0x70, -0x4A,0x20, 0x44,0x20, 0x4A,0x20, 0x52,0x20, -/* @jian3 (12x12,V)@ [suki software]*/ -0x02,0x40, 0x04,0x40, 0x08,0x40, 0x70,0x40, -0x20,0x40, 0x04,0x40, 0x02,0x70, 0xFD,0xC0, -0x00,0x60, 0x40,0x50, 0x20,0x40, 0x10,0x40, -/* @jian4 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x12,0x40, 0x22,0x40, 0xC2,0x40, -0x62,0x40, 0x5E,0x40, 0x43,0xC0, 0x52,0x60, -0x22,0x50, 0xCA,0x50, 0x66,0x60, 0x52,0x40, -/* @jian5 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x1F,0xF0, 0x80,0x00, 0x60,0x00, -0x00,0x00, 0x0F,0xE0, 0x49,0x20, 0x49,0x20, -0x49,0x20, 0x49,0x20, 0x4F,0xE0, 0x40,0x00, -/* @jian6 (12x12,V)@ [suki software]*/ -0x20,0x00, 0x20,0x00, 0x2F,0xF0, 0x2A,0x80, -0xAA,0xA0, 0x6A,0x90, 0x2F,0xE0, 0x20,0x00, -0x20,0x00, 0x67,0xC0, 0xA0,0x20, 0x20,0x10, -/* @jian7 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x22,0x00, 0x22,0x80, 0x2A,0x90, -0xAA,0xE0, 0x7F,0xF0, 0x2A,0x80, 0x2A,0x80, -0x2A,0x80, 0x7F,0xF0, 0xAA,0xA0, 0x2A,0x90, -/* @jian8 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x30, 0x3F,0xC0, -0x24,0x00, 0x25,0xF0, 0x25,0x50, 0xA5,0x50, -0x65,0x50, 0x25,0x50, 0x25,0x50, 0x25,0x50, -/* @jian9 (12x12,V)@ [suki software]*/ -0x40,0x00, 0x48,0x10, 0x44,0x60, 0x43,0x80, -0x7C,0x70, 0x00,0x20, 0x7F,0xF0, 0x49,0x00, -0x49,0x00, 0x49,0xC0, 0x49,0x20, 0x49,0x50, -/* @jian10 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x08,0x40, 0x0F,0xA0, 0xF8,0x10, -0x08,0x20, 0x0F,0xC0, 0x01,0x00, 0x41,0x00, -0x41,0x00, 0x41,0x00, 0x7F,0xF0, 0x41,0x00, -/* @jian11 (12x12,V)@ [suki software]*/ -0x04,0x40, 0x0C,0xC0, 0xF5,0x50, 0x46,0x50, -0x0C,0x40, 0x00,0x10, 0x1F,0xE0, 0x14,0xF0, -0x14,0x90, 0x14,0xF0, 0xFF,0x00, 0x10,0xD0, -/* @jian12 (12x12,V)@ [suki software]*/ -0x20,0x00, 0x20,0x00, 0x23,0xE0, 0x22,0x40, -0xFA,0x40, 0x22,0x40, 0x22,0x40, 0x2F,0xF0, -0x22,0x40, 0x22,0x40, 0xFA,0x40, 0x22,0x40, -/* @jian13 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x11,0x80, 0x16,0x00, 0xFF,0xF0, -0x14,0x00, 0x12,0x00, 0x08,0x40, 0x12,0x30, -0x22,0x80, 0xC2,0x70, 0x22,0x00, 0x12,0x10, -/* @jian14 (12x12,V)@ [suki software]*/ -0x20,0x00, 0x20,0x00, 0x2F,0x80, 0x28,0x80, -0x2A,0x80, 0x29,0x90, 0x28,0xA0, 0xFF,0xF0, -0x28,0xA0, 0x29,0x90, 0x2A,0x80, 0x28,0x80, -/* @jian15 (12x12,V)@ [suki software]*/ -0x21,0x00, 0x27,0xF0, 0x3A,0x10, 0x22,0x10, -0x23,0xF0, 0x20,0x10, 0x1F,0xE0, 0x12,0xF0, -0x12,0x90, 0x12,0xF0, 0x12,0x00, 0xFF,0xD0, -/* @jian16 (12x12,V)@ [suki software]*/ -0x20,0x40, 0x21,0x80, 0x27,0xF0, 0x39,0x00, -0x21,0x00, 0x23,0xF0, 0x24,0x40, 0x0A,0x30, -0x32,0x80, 0xC2,0x70, 0x32,0x00, 0x0A,0x10, -/* @jian17 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x12,0x00, 0x00,0x00, 0x14,0x80, 0x15,0xB0, -0x1E,0x90, 0xF4,0x80, 0x17,0xF0, 0x10,0x80, -/* @jian18 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x11,0x00, 0x12,0x00, 0x04,0x40, 0x0C,0x30, -0x14,0x80, 0x64,0x60, 0x14,0x00, 0x08,0x10, -/* @jian19 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x10,0x00, 0xE3,0xF0, 0x48,0x00, -0x64,0x00, 0x51,0xF0, 0x41,0x40, 0x55,0x40, -0x25,0x40, 0xC5,0x40, 0x45,0xF0, 0x64,0x00, -/* @jian20 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x0F,0xF0, 0x38,0x00, -0xE2,0x00, 0x44,0x40, 0x0A,0x30, 0x12,0x80, -0x22,0x70, 0xC2,0x20, 0x26,0x10, 0x12,0xE0, -/* @jian21 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x20,0x10, 0x2F,0xF0, 0x2A,0x90, -0xAA,0x90, 0x6A,0xD0, 0x2A,0xB0, 0x2F,0xD0, -0x20,0x10, 0x20,0x10, 0x67,0x10, 0xA0,0x50, -/* @jian22 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x40,0xF0, 0x37,0x00, 0x00,0x10, -0x1F,0xE0, 0x14,0x00, 0x14,0xF0, 0x14,0x90, -0x14,0xF0, 0x14,0x00, 0xFF,0xC0, 0x10,0x30, -/* @jian23 (12x12,V)@ [suki software]*/ -0x40,0x00, 0x48,0x20, 0x48,0x40, 0x48,0x80, -0x49,0xF0, 0xFA,0x20, 0x4D,0x20, 0x59,0x20, -0x49,0x20, 0xF9,0x30, 0x49,0x60, 0x49,0xA0, -/* @kan0 (12x12,V)@ [suki software]*/ -0x08,0xC0, 0x0B,0x00, 0xFF,0xF0, 0x0A,0x00, -0x09,0x00, 0x00,0x00, 0x3E,0x70, 0x00,0x40, -0xFF,0x70, 0x08,0x40, 0xF0,0x70, 0x24,0x40, -/* @jian24 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7C,0x40, 0x00,0x40, 0x00,0x90, -0xFC,0xD0, 0x01,0x50, 0x0A,0x50, 0x32,0x70, -0xE1,0x50, 0x20,0xD0, 0x30,0x90, 0x2C,0x50, -/* @jian25 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7C,0xF0, 0x44,0x00, 0x47,0xF0, -0x44,0x80, 0x7C,0x80, 0x00,0x00, 0x04,0x80, -0x04,0x80, 0xFF,0x80, 0x09,0x70, 0x49,0x10, -/* @jian26 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xC0, 0x40,0x10, 0x4F,0xE0, -0x40,0x10, 0x7F,0xC0, 0x01,0x00, 0x09,0x00, -0x09,0x00, 0xFF,0xD0, 0x92,0x20, 0x72,0x50, -/* @jian27 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0xFF,0x80, -0x80,0x00, 0x80,0x30, 0x80,0xC0, 0x9F,0x00, -0x80,0xF0, 0x80,0x00, 0x80,0x00, 0xFF,0x80, -/* @jian28 (12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0xF7,0xF0, 0x14,0x80, -0x14,0x80, 0x22,0x40, 0x26,0x20, 0x3B,0xF0, -0x08,0x20, 0x2A,0xA0, 0xFF,0xF0, 0x2A,0xA0, -/* @jian29 (12x12,V)@ [suki software]*/ -0x14,0x00, 0x24,0x00, 0xC5,0xF0, 0x55,0x50, -0x6D,0x50, 0x55,0x50, 0x45,0x50, 0x55,0xF0, -0x24,0x00, 0xCC,0x00, 0x54,0xF0, 0x64,0x00, -/* @jian30 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x1F,0xF0, 0xF0,0x00, -0x41,0x80, 0x06,0x80, 0x78,0x80, 0x28,0x80, -0x08,0x80, 0xFF,0xF0, 0x08,0x80, 0x08,0x80, -/* @jian31 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x08,0x00, 0x3F,0xF0, 0xC0,0x40, -0x26,0x20, 0x3A,0x30, 0x03,0xC0, 0x2A,0x20, -0x2A,0xA0, 0x2A,0xA0, 0xFF,0xF0, 0x2A,0xA0, -/* @jian32 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x01,0x00, 0x3F,0xF0, 0x69,0x40, -0xA5,0x20, 0x21,0x00, 0x3F,0xF0, 0x00,0x00, -0x7F,0x80, 0x40,0x30, 0x4F,0xC0, 0x40,0x30, -/* @jian33 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x80, 0x0C,0x40, 0x35,0x30, -0xC4,0x80, 0x24,0x60, 0x14,0x10, 0x0D,0xE0, -0x04,0x80, 0x00,0x00, 0x3F,0xF0, 0x00,0x00, -/* @jian34 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x0C,0x00, 0xF0,0x00, 0x11,0xF0, -0x14,0x00, 0x18,0x00, 0x11,0x10, 0x09,0x00, -0x09,0x00, 0xFF,0xC0, 0x09,0x30, 0x49,0x10, -/* @jian35 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x86,0x30, 0x60,0xC0, 0x07,0x20, -0x23,0x20, 0x2D,0x20, 0xF7,0xF0, 0x21,0x20, -0x21,0x20, 0x00,0x00, 0x3F,0xF0, 0x22,0x00, -/* @jian36 (12x12,V)@ [suki software]*/ -0x88,0x20, 0x64,0x70, 0x01,0x80, 0x3F,0xC0, -0x20,0x10, 0x2F,0xF0, 0x20,0x00, 0x3F,0xC0, -0x09,0x00, 0x09,0x00, 0xFF,0xE0, 0x09,0x10, -/* @jian37 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x86,0x20, 0x60,0xF0, 0x03,0x00, -0x0C,0x00, 0x9F,0xF0, 0x40,0x00, 0x0F,0xE0, -0x49,0x20, 0x49,0x20, 0x49,0x20, 0x4F,0xE0, -/* @jian38 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x42,0xC0, 0x46,0x20, 0x5A,0x10, -0x63,0xE0, 0x08,0x10, 0x2A,0x90, 0x2A,0x90, -0x2A,0x90, 0xFF,0xF0, 0x2A,0x90, 0x2A,0x90, -/* @jiang0 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x1F,0xF0, 0xF0,0x00, -0x41,0x00, 0x5F,0x70, 0x55,0x50, 0x55,0x50, -0x55,0x50, 0x5F,0x70, 0x55,0x50, 0x55,0x50, -/* @jiang1 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x22,0x40, 0x2A,0x40, 0x2A,0x40, -0xAA,0x70, 0x6B,0xD0, 0x2A,0x50, 0x3E,0x40, -0x2A,0x40, 0x2A,0x50, 0x6A,0x60, 0xAA,0x40, -/* @jiang2 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x0C,0x60, 0x08,0x40, 0x00,0x80, -0xFF,0xF0, 0x08,0x80, 0x11,0x80, 0x31,0xA0, -0xCA,0x90, 0x42,0x80, 0x44,0x80, 0x48,0x80, -/* @jiang3 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x42,0x40, 0x34,0x40, 0x00,0x40, -0xFF,0x50, 0x00,0x60, 0x08,0x00, 0x11,0xF0, -0xE9,0x40, 0x26,0x20, 0x24,0x50, 0x28,0x80, -/* @jiang4 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x20, 0x80,0x70, 0x63,0x80, -0x0C,0x00, 0x00,0x00, 0x20,0x00, 0x20,0x00, -0x20,0x00, 0x3F,0xF0, 0x20,0x00, 0x20,0x00, -/* @jiang5 (12x12,V)@ [suki software]*/ -0x80,0x40, 0x9E,0xF0, 0x92,0x50, 0x92,0x00, -0xF3,0xF0, 0x00,0x00, 0x80,0x80, 0xBE,0xF0, -0xAA,0xA0, 0xAA,0xA0, 0xBE,0xF0, 0xAA,0xA0, -/* @jiang6 (12x12,V)@ [suki software]*/ -0x24,0x10, 0x23,0x90, 0x21,0x20, 0x20,0x40, -0x2F,0xF0, 0xF1,0x20, 0x21,0x20, 0x22,0x60, -0x2D,0x60, 0xF4,0xA0, 0x24,0xA0, 0x25,0x70, -/* @jiang7 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x02,0x80, 0x42,0x80, 0x24,0x80, -0x18,0x90, 0xFF,0xA0, 0x00,0xC0, 0x0B,0xF0, -0x10,0xC0, 0x69,0xA0, 0x26,0x90, 0x24,0x80, -/* @jiang8 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x41,0x40, 0x22,0x40, 0x14,0x40, -0x00,0x40, 0xFF,0xC0, 0x04,0x50, 0x08,0xE0, -0x30,0x50, 0xCD,0x40, 0x4A,0x40, 0x44,0x40, -/* @jiang9 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x82,0x00, 0x73,0xF0, 0x20,0x00, -0x00,0x80, 0x08,0x80, 0x08,0x80, 0xFF,0xF0, -0x08,0x80, 0x08,0x80, 0x08,0x80, 0xFF,0xF0, -/* @jiang10 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x40,0x00, 0x40,0x00, -0x40,0x30, 0x5F,0xC0, 0x52,0x00, 0x52,0x00, -0x52,0x00, 0x53,0xF0, 0x52,0x00, 0x46,0x00, -/* @jiang11 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x0A,0x00, 0x4A,0xF0, 0x32,0x90, -0x22,0xA0, 0xFF,0xC0, 0x16,0x80, 0x26,0x80, -0xD7,0xE0, 0x4A,0xA0, 0x4A,0xA0, 0x52,0xA0, -/* @jiang12 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x44,0x40, 0x5A,0x20, -0x61,0xC0, 0x00,0x00, 0x12,0xB0, 0x22,0x90, -0xD4,0x90, 0x4B,0xF0, 0x54,0x90, 0x64,0x90, -/* @jiao0 (12x12,V)@ [suki software]*/ -0x20,0x80, 0x21,0x00, 0x22,0x00, 0x2F,0xF0, -0x25,0x50, 0xF5,0x50, 0x25,0x50, 0x35,0x50, -0x2F,0xF0, 0x25,0x50, 0xF5,0x50, 0x25,0x50, -/* @jiao1 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x08,0xC0, 0x0B,0x00, 0xFF,0xF0, -0x0A,0x10, 0x09,0x60, 0x02,0x00, 0x7F,0xF0, -0x12,0x40, 0x12,0x20, 0x3F,0x80, 0x20,0x70, -/* @jiao2 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x43,0x00, 0x4F,0xF0, 0x72,0x00, -0x42,0x00, 0x47,0xF0, 0x08,0x00, 0x3F,0xE0, -0xE5,0x20, 0x25,0x20, 0xA5,0x20, 0x7F,0xE0, -/* @jiao3 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x08,0x00, 0x10,0x00, 0x3F,0xF0, -0xE5,0x20, 0x25,0x20, 0x25,0x20, 0xA5,0x20, -0x7F,0xE0, 0x25,0x20, 0x25,0x20, 0x25,0x20, -/* @jiao4 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x10, 0x7F,0xE0, 0x48,0x80, -0x48,0x80, 0x7F,0xF0, 0x22,0x00, 0x25,0x00, -0x38,0x80, 0xA8,0x50, 0x60,0x20, 0x28,0x50, -/* @jiao5 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x10,0x00, 0x11,0x00, 0x12,0x00, -0x1C,0x80, 0x14,0x40, 0x90,0x20, 0x70,0x10, -0x30,0x30, 0x10,0x60, 0x19,0xC0, 0x14,0x80, -/* @jiao6 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x22,0x00, 0x2D,0x00, 0x20,0x80, -0xA0,0x50, 0x60,0x60, 0x29,0x90, 0x24,0x00, -0x26,0x00, 0x00,0x00, 0x7F,0xF0, 0x44,0x20, -/* @jiao7 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x30, 0x80,0xC0, 0x63,0x00, -0x00,0x40, 0x01,0x40, 0x21,0x40, 0x22,0x70, -0xFA,0x40, 0x24,0x40, 0x26,0x70, 0x29,0x40, -/* @jiao8 (12x12,V)@ [suki software]*/ -0x40,0x20, 0x5F,0x20, 0x41,0x40, 0x41,0x40, -0x7F,0x00, 0x01,0xF0, 0x08,0x40, 0x48,0x80, -0x4B,0xF0, 0x4C,0x00, 0x7C,0x00, 0x8A,0xF0, -/* @jiao9 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x09,0xC0, 0xFE,0x50, 0x08,0x60, -0x0F,0x90, 0x00,0x40, 0x48,0x80, 0x49,0x00, -0x4E,0xF0, 0x78,0x00, 0x4C,0x00, 0x4A,0xF0, -/* @jiao10 (12x12,V)@ [suki software]*/ -0x3F,0xF0, 0x20,0x20, 0x20,0x20, 0x3F,0xF0, -0x00,0x00, 0x9E,0xF0, 0xD2,0xD0, 0xBE,0xB0, -0xD2,0xF0, 0xB2,0x40, 0x9E,0x50, 0xB2,0x40, -/* @jiao11 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x11,0x00, 0x12,0x00, 0x0C,0x00, 0x2B,0xE0, -0x1A,0x10, 0x4A,0xE0, 0x3A,0x30, 0x0A,0x00, -/* @jiao12 (12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0xF7,0xF0, 0x24,0x80, -0x24,0x80, 0x24,0x00, 0x10,0x80, 0x11,0x00, -0x16,0xC0, 0x90,0x30, 0x70,0x30, 0x11,0xC0, -/* @jiao13 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x0A,0x00, 0xF2,0x30, 0x1F,0xC0, -0x12,0x20, 0x12,0x90, 0x0A,0x80, 0x49,0x00, -0x4A,0xF0, 0x4C,0x00, 0x78,0x00, 0x8C,0xF0, -/* @yao0 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x1F,0xF0, 0xE8,0x00, -0x51,0x40, 0x11,0x40, 0x11,0x40, 0x12,0x70, -0xFA,0x40, 0x24,0x40, 0x26,0x70, 0x29,0x40, -/* @jiao14 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x48,0x80, 0x48,0x80, -0x7F,0xF0, 0x02,0x10, 0x12,0x70, 0xFF,0x90, -0x12,0x10, 0x12,0x30, 0x00,0x10, 0x7F,0xF0, -/* @jiao15 (12x12,V)@ [suki software]*/ -0x84,0x20, 0x48,0x40, 0x30,0x80, 0x2D,0x00, -0xC3,0xF0, 0x11,0x00, 0x12,0x00, 0x1D,0x80, -0x90,0x60, 0x70,0x10, 0x10,0x60, 0x19,0x80, -/* @jiao16 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x02,0x00, 0x04,0x00, 0x0F,0xF0, -0x19,0x20, 0xE9,0x20, 0x49,0x20, 0x49,0x20, -0x4F,0xF0, 0x49,0x20, 0x59,0x20, 0x69,0x20, -/* @jiao17 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x18,0x00, 0xF1,0xF0, 0x10,0x00, -0x14,0x00, 0x18,0x90, 0x23,0x00, 0x2C,0x80, -0x20,0x40, 0xA0,0x30, 0x60,0x30, 0x29,0xC0, -/* @jiao18 (12x12,V)@ [suki software]*/ -0x04,0x40, 0x1C,0xC0, 0xE5,0x40, 0x4E,0x50, -0x00,0x10, 0x3E,0x80, 0x6A,0xF0, 0xAB,0xA0, -0x2A,0xB0, 0x3E,0x80, 0x04,0x00, 0x1F,0xC0, -/* @jiao19 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x0C,0x40, 0x34,0xC0, 0xC5,0x40, -0x06,0x40, 0x0C,0x40, 0x11,0x00, 0x12,0x00, -0x94,0x40, 0x50,0x20, 0x70,0x10, 0x14,0xE0, -/* @jiao20 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x20,0x20, 0x5F,0xA0, 0x8A,0xA0, -0x2A,0xB0, 0xDF,0xF0, 0x0A,0xB0, 0x2A,0xA0, -0xDF,0xA0, 0x00,0x20, 0x00,0x00, 0x3F,0xF0, -/* @jiao21 (12x12,V)@ [suki software]*/ -0x08,0x90, 0x28,0x90, 0x29,0x10, 0x2B,0x10, -0xFD,0x70, 0x29,0xA0, 0x39,0x20, 0x28,0x20, -0x0A,0x00, 0x1F,0x00, 0xF0,0xC0, 0x10,0x30, -/* @jiao22 (12x12,V)@ [suki software]*/ -0x4F,0xF0, 0x48,0xA0, 0x7F,0x20, 0x48,0x20, -0x7F,0xA0, 0x48,0xA0, 0x4F,0xF0, 0x04,0xA0, -0x25,0x20, 0x27,0x20, 0xFD,0x20, 0x2D,0x70, -/* @jiao23 (12x12,V)@ [suki software]*/ -0x11,0x10, 0x17,0x10, 0xF9,0x10, 0x17,0xF0, -0x11,0x20, 0x10,0xA0, 0x49,0x00, 0x4A,0x00, -0x4C,0xF0, 0x78,0x00, 0x8C,0x00, 0x8A,0xF0, -/* @jiao24 (12x12,V)@ [suki software]*/ -0x23,0x10, 0x2D,0x10, 0x31,0x20, 0xEF,0xF0, -0x21,0x20, 0x20,0x20, 0x01,0x00, 0x22,0x00, -0x2D,0xC0, 0xA0,0x30, 0x60,0x30, 0x29,0xC0, -/* @jiao25 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x3F,0xF0, 0x20,0x40, 0x20,0x40, -0x20,0x40, 0x3F,0xE0, 0x00,0x00, 0x00,0x40, -0x3F,0xE0, 0x00,0x40, 0x00,0x40, 0x00,0x80, -/* @jiao26 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x34,0x40, 0x24,0xC0, 0x29,0x50, -0x2E,0x50, 0x32,0x50, 0xA2,0x50, 0x6F,0xD0, -0x22,0x50, 0x22,0x50, 0x32,0x50, 0x2A,0x50, -/* @jie0 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x08,0x40, 0x08,0x80, 0xFF,0xF0, -0x09,0x00, 0x0A,0x40, 0x00,0xF0, 0x7D,0x10, -0x57,0x10, 0x55,0x20, 0x55,0xC0, 0x55,0x20, -/* @jie1 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x11,0x40, 0x16,0x40, 0x24,0x50, 0x34,0x70, -0x2D,0xC0, 0xA4,0x40, 0x64,0x40, 0x2C,0x70, -/* @jie2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0xFF,0x00, 0x22,0xF0, -0x24,0x90, 0x69,0x90, 0x22,0x90, 0x00,0x90, -0xFC,0x90, 0x12,0x90, 0x12,0x90, 0x22,0xF0, -/* @jie3 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x48,0xC0, 0x4B,0x00, 0x7F,0xF0, -0x8A,0x00, 0x89,0x80, 0x18,0x00, 0x11,0x30, -0x11,0x20, 0x11,0x20, 0xFF,0x20, 0x11,0x20, -/* @jie4 (12x12,V)@ [suki software]*/ -0x08,0x80, 0x11,0x00, 0x23,0xF0, 0xCC,0x00, -0x4A,0x00, 0x12,0x40, 0x12,0x40, 0xFE,0xF0, -0x12,0x40, 0x12,0x40, 0x02,0x00, 0x44,0x00, -/* @jie5 (12x12,V)@ [suki software]*/ -0x00,0x00, 0xFF,0xF0, 0x88,0x40, 0x94,0x20, -0xA3,0xC0, 0xC2,0x00, 0x04,0x00, 0x0B,0xF0, -0x30,0x00, 0xC0,0x00, 0x20,0x00, 0x13,0xF0, -/* @jie6 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x29,0x80, 0x2F,0xF0, 0x29,0x50, -0xFD,0x50, 0x2B,0xF0, 0x29,0x50, 0x29,0x50, -0x29,0x00, 0x08,0x00, 0xFF,0x80, 0x08,0x70, -/* @jie7 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x12,0x10, 0x12,0x20, 0x13,0xC0, -0xFE,0x10, 0x12,0x50, 0x12,0x30, 0x12,0x10, -0x0A,0x00, 0x08,0x00, 0xFF,0xF0, 0x08,0x00, -/* @jie8 (12x12,V)@ [suki software]*/ -0x20,0x00, 0x20,0x00, 0x22,0x00, 0x22,0x00, -0x22,0x00, 0xFA,0x00, 0x23,0xF0, 0x22,0x00, -0x22,0x00, 0x22,0x00, 0xFA,0x10, 0x22,0x00, -/* @jie9 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x08,0xC0, 0x0B,0x00, 0x7F,0xF0, -0x09,0x00, 0x08,0xC0, 0x00,0x00, 0x09,0x30, -0x09,0x20, 0x09,0x20, 0x7F,0x20, 0x09,0x20, -/* @jie10 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x10,0x40, 0x10,0x40, 0x10,0x80, -0x11,0x00, 0x12,0x00, 0x1C,0x00, 0xFF,0xE0, -0x18,0x00, 0x14,0x00, 0x12,0x00, 0x11,0x00, -/* @jie11 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x80, 0xFF,0xF0, 0x11,0x00, -0x12,0x00, 0x44,0x00, 0x55,0x30, 0x55,0x00, -0x55,0x00, 0xFF,0xF0, 0x55,0x20, 0x55,0x20, -/* @jie12 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x48,0x80, 0x7F,0xF0, -0x00,0x00, 0x55,0x00, 0x55,0x70, 0x55,0x00, -0x55,0x00, 0xFF,0xF0, 0x55,0x20, 0x55,0x20, -/* @jie13 (12x12,V)@ [suki software]*/ -0x14,0x10, 0x13,0xD0, 0x90,0x10, 0x71,0xE0, -0x16,0x20, 0x10,0x40, 0x00,0xB0, 0xF9,0x00, -0xAE,0x20, 0xAA,0x40, 0xAB,0x80, 0xAA,0x40, -/* @jie14 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x20, 0x80,0x70, 0x63,0x80, -0x0C,0x00, 0x11,0x00, 0x11,0x70, 0x11,0x40, -0x11,0x40, 0xFF,0x40, 0x11,0x40, 0x11,0x40, -/* @jie15 (12x12,V)@ [suki software]*/ -0x04,0x40, 0x0C,0xC0, 0x35,0x40, 0xC6,0x40, -0x08,0x40, 0x00,0x00, 0x10,0x00, 0x12,0x70, -0x12,0x40, 0x12,0x40, 0xFE,0x40, 0x12,0x40, -/* @jie16 (12x12,V)@ [suki software]*/ -0x10,0x00, 0x2F,0xF0, 0xEA,0x40, 0x2A,0x40, -0x3F,0xF0, 0x2A,0x40, 0x0F,0xF0, 0x42,0x50, -0x45,0x90, 0x78,0x90, 0x40,0x90, 0x45,0xF0, -/* @jie17 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x08,0x80, 0x0F,0x40, 0xF8,0x30, -0x48,0xD0, 0x0F,0x00, 0x00,0x00, 0x7F,0xF0, -0x44,0x40, 0x44,0x40, 0x44,0x40, 0x44,0x40, -/* @jie18 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x11,0x00, 0x11,0x10, 0x17,0xE0, -0x11,0x00, 0x11,0x00, 0x17,0xF0, 0x11,0x00, -0x10,0x00, 0xFF,0x90, 0x10,0x60, 0x50,0x50, -/* @jie19 (12x12,V)@ [suki software]*/ -0x24,0x40, 0x25,0x40, 0x25,0x70, 0x3F,0xF0, -0x25,0x60, 0xF5,0x50, 0x20,0x40, 0x25,0x00, -0x25,0x70, 0x2F,0x50, 0xF5,0x50, 0x25,0x50, -/* @jie20 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x20,0x40, 0x20,0x40, 0x20,0x80, -0x20,0x80, 0xF9,0x70, 0x22,0x00, 0x2C,0x00, -0x22,0x00, 0x22,0x00, 0xF9,0x70, 0x21,0x00, -/* @jie21 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x10, 0x00,0x10, 0xFF,0x20, -0x92,0x20, 0x92,0x40, 0x92,0xB0, 0xFF,0x00, -0x93,0x00, 0x92,0xB0, 0x92,0x40, 0x92,0x40, -/* @jie22 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x1F,0xF0, 0xE0,0x00, -0x42,0x00, 0x12,0x00, 0x12,0xF0, 0xFE,0x90, -0x12,0x90, 0x12,0x90, 0x12,0x90, 0xFE,0x90, -/* @jie23 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x02,0x00, 0x02,0x00, 0x04,0x00, -0x04,0x10, 0x0B,0xE0, 0x30,0x00, 0xC0,0x00, -0x20,0x00, 0x10,0x00, 0x0B,0xF0, 0x0C,0x00, -/* @jie24 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x40, 0x00,0x80, 0x3F,0xF0, -0x21,0x00, 0x21,0x00, 0x22,0x00, 0xA5,0xF0, -0x68,0x00, 0x30,0x00, 0x28,0x00, 0x25,0xF0, -/* @jie25 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x82,0x00, 0x73,0xF0, 0x20,0x00, -0x11,0x00, 0x17,0xF0, 0x11,0x00, 0x11,0x00, -0x17,0xF0, 0x11,0x00, 0xFF,0xC0, 0x10,0x30, -/* @jie26 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x48,0x00, -0x49,0xF0, 0x49,0x20, 0x49,0x20, 0x49,0x20, -0x4F,0xF0, 0x49,0x20, 0x49,0x20, 0x49,0x20, -/* @jin0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x1F,0xF0, 0x10,0x00, -0x10,0x00, 0x10,0x00, 0x10,0x00, 0xFF,0xF0, -0x10,0x00, 0x10,0x00, 0x10,0x00, 0x10,0x00, -/* @jin1 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x10,0x00, 0x27,0xF0, 0xC4,0x90, -0x64,0x90, 0x5C,0x90, 0x47,0xF0, 0x52,0x00, -0x22,0x00, 0xCF,0xF0, 0x62,0x00, 0x52,0x00, -/* @jin2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x10, 0x7F,0xE0, -0x44,0x00, 0x44,0x00, 0x44,0x00, 0x44,0x00, -0x44,0x00, 0x87,0xF0, 0x84,0x00, 0x84,0x00, -/* @jin3 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x02,0x00, 0x04,0x40, 0x04,0x40, -0x0A,0x50, 0x12,0x40, 0x22,0x40, 0xC3,0xF0, -0x22,0x40, 0x12,0x40, 0x0A,0x50, 0x0A,0x40, -/* @jin4 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x01,0x00, 0x02,0x00, 0x04,0x40, -0x08,0x40, 0x10,0x40, 0x24,0x40, 0xC2,0x40, -0x23,0x40, 0x10,0x40, 0x08,0x70, 0x04,0x40, -/* @jin5 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x86,0x40, 0x60,0xF0, 0x07,0x00, -0x08,0x10, 0x2A,0x50, 0x2A,0x50, 0x2A,0x50, -0x2A,0x50, 0xFF,0xF0, 0x2A,0x50, 0x2A,0x50, -/* @jin6 (12x12,V)@ [suki software]*/ -0x10,0x80, 0x91,0x00, 0x73,0xF0, 0x54,0x80, -0x19,0x40, 0x24,0x20, 0x28,0xA0, 0xFE,0xA0, -0x28,0xA0, 0x04,0xA0, 0x28,0xB0, 0xFE,0xA0, -/* @jin7 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7C,0x00, 0x00,0x00, 0x00,0x00, -0xFC,0xA0, 0x03,0xA0, 0x42,0xE0, 0x46,0xB0, -0x74,0xA0, 0x49,0x20, 0x48,0x20, 0x54,0x60, -/* @jin8 (12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0xF4,0x80, 0x27,0xF0, -0x24,0x80, 0x24,0x80, 0x00,0x00, 0x3E,0xF0, -0x2A,0x80, 0x6A,0x80, 0xAB,0xF0, 0x2A,0x80, -/* @jin9 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x03,0x00, 0x0C,0x00, 0x37,0xF0, -0xE0,0x00, 0x40,0x00, 0x38,0x00, 0x27,0x00, -0x20,0xD0, 0x20,0x30, 0x20,0xD0, 0x27,0x00, -/* @jin10 (12x12,V)@ [suki software]*/ -0x42,0x00, 0x3A,0x00, 0x13,0xF0, 0x00,0x00, -0x20,0x00, 0x20,0x20, 0x23,0xA0, 0xFA,0xA0, -0x2A,0xA0, 0x2F,0xF0, 0x2A,0xA0, 0xFA,0xA0, -/* @jin11 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x41,0x00, 0x39,0x00, 0x11,0xF0, -0x00,0x00, 0x11,0x00, 0x11,0x30, 0xFF,0xC0, -0x11,0x00, 0x11,0x00, 0x11,0x00, 0xFF,0xF0, -/* @jin12 (12x12,V)@ [suki software]*/ -0x20,0x10, 0x23,0x90, 0xFA,0x90, 0x2F,0xF0, -0x2A,0x90, 0xFB,0x90, 0x20,0x10, 0x00,0x00, -0x3F,0xF0, 0x22,0x00, 0x22,0x00, 0x43,0xF0, -/* @jin13 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x82,0x00, 0xA2,0x00, 0x9A,0xF0, -0x82,0x90, 0xFE,0x90, 0x82,0x90, 0x82,0x90, -0x82,0x90, 0xFE,0x90, 0x8A,0x90, 0xB2,0xF0, -/* @jin14 (12x12,V)@ [suki software]*/ -0x02,0x20, 0x24,0x20, 0x29,0x20, 0x31,0x20, -0xFF,0x30, 0x31,0x20, 0x29,0x20, 0x05,0x30, -0x25,0x20, 0x29,0x20, 0x31,0x30, 0xFF,0x20, -/* @jin15 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x82,0x00, 0x73,0xF0, 0x20,0x00, -0x00,0x00, 0x00,0x00, 0x3F,0xF0, 0x24,0x00, -0x24,0x00, 0x24,0x00, 0x47,0xF0, 0x44,0x00, -/* @jin16 (12x12,V)@ [suki software]*/ -0x07,0x00, 0x00,0x00, 0xFF,0xF0, 0x04,0x20, -0x18,0x10, 0x00,0xE0, 0x7F,0x00, 0x48,0x10, -0x48,0x80, 0x4C,0x60, 0x4A,0x30, 0x49,0x80, -/* @jin17 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x8C,0x40, 0x61,0xF0, 0x0E,0x00, -0x01,0x80, 0x55,0x00, 0x55,0x60, 0x55,0x50, -0x55,0x40, 0x55,0x40, 0x55,0x50, 0x55,0x60, -/* @jin18 (12x12,V)@ [suki software]*/ -0x00,0x10, 0x00,0x20, 0x00,0xC0, 0x7F,0x00, -0x48,0x00, 0x48,0x90, 0x48,0x80, 0x48,0x40, -0x4E,0x60, 0x49,0x00, 0x48,0x80, 0x48,0x40, -/* @jin19 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x41,0x80, 0x42,0x80, 0x44,0x80, -0x48,0xF0, 0x54,0x80, 0x62,0x80, 0x0B,0x80, -0x08,0x10, 0x08,0x60, 0xFF,0x80, 0x08,0x00, -/* @jing0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x20,0x80, 0x24,0x80, 0x24,0x80, -0xF7,0xF0, 0x24,0x80, 0x24,0x80, 0xF7,0xF0, -0x24,0x80, 0x24,0x80, 0x20,0x00, 0x1F,0xE0, -/* @jing1 (12x12,V)@ [suki software]*/ -0x20,0x00, 0x27,0x80, 0x24,0xF0, 0xFC,0x80, -0x24,0xF0, 0x24,0x80, 0x27,0x80, 0x00,0x10, -0x27,0x80, 0x24,0xF0, 0xFC,0x80, 0x24,0xF0, -/* @jing2 (12x12,V)@ [suki software]*/ -0x00,0x20, 0x20,0x20, 0x20,0x40, 0x28,0x60, -0x28,0xA0, 0xF8,0xA0, 0x29,0x20, 0x29,0x30, -0x2A,0x20, 0x2D,0x20, 0xF8,0xA0, 0x20,0xA0, -/* @jing3 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x44,0x80, 0x44,0x80, -0x7F,0xF0, 0x04,0x00, 0x55,0xF0, 0x55,0x50, -0x55,0x50, 0xFD,0x50, 0x55,0x50, 0x55,0x50, -/* @jing4 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0xF0, 0x00,0xA0, 0x00,0xA0, -0x7E,0xA0, 0x54,0xA0, 0x54,0xF0, 0x54,0x00, -0x54,0x00, 0x54,0xF0, 0x54,0xA0, 0x7E,0xA0, -/* @jing5 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x1F,0xE0, 0xE5,0x20, 0x27,0xE0, -0x2D,0x20, 0x37,0xE0, 0x00,0x00, 0x20,0x00, -0x27,0x90, 0xA4,0x80, 0x64,0x80, 0x24,0xF0, -/* @jing6 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x20,0x00, 0x20,0x00, 0x27,0x90, -0x24,0xB0, 0x24,0x80, 0xA4,0x80, 0x64,0xF0, -0x24,0x80, 0x24,0x80, 0x24,0xA0, 0x27,0xB0, -/* @jing7 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x06,0x00, 0x00,0x00, 0xFF,0xF0, -0x08,0x00, 0x06,0x00, 0x20,0x00, 0x27,0xB0, -0x24,0x80, 0xA4,0x80, 0x64,0xF0, 0x24,0x80, -/* @jing8 (12x12,V)@ [suki software]*/ -0x24,0x10, 0x1C,0xE0, 0x07,0x00, 0xFF,0xF0, -0x0D,0x00, 0x34,0x80, 0x00,0x40, 0x44,0x00, -0x55,0xF0, 0x55,0x50, 0xFD,0x50, 0x55,0x50, -/* @jing9 (12x12,V)@ [suki software]*/ -0x24,0x20, 0x1C,0xC0, 0x07,0x00, 0xFF,0xF0, -0x0D,0x00, 0x34,0x80, 0x44,0x20, 0x5F,0xD0, -0x52,0x40, 0x52,0x70, 0x7F,0xC0, 0x52,0x40, -/* @jing10 (12x12,V)@ [suki software]*/ -0x04,0x40, 0x0C,0xC0, 0x35,0x40, 0xC6,0x40, -0x08,0x40, 0x00,0x00, 0x02,0x00, 0x42,0x80, -0x44,0x80, 0x44,0x80, 0x48,0xF0, 0x58,0x80, -/* @jing11 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x08,0x80, 0x08,0x80, 0x08,0x80, -0x08,0x90, 0xFF,0xE0, 0x08,0x80, 0x08,0x80, -0x08,0x80, 0x08,0x80, 0xFF,0xF0, 0x08,0x80, -/* @jing12 (12x12,V)@ [suki software]*/ -0x04,0x40, 0x58,0x40, 0x5F,0x40, 0xF5,0x50, -0x55,0x50, 0xF7,0x50, 0x50,0xD0, 0x5F,0x50, -0x08,0xD0, 0xF1,0x50, 0x2A,0x50, 0x24,0x50, -/* @jing13 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x02,0x00, 0x02,0x00, 0xFA,0xE0, -0xAA,0xB0, 0xAA,0xA0, 0xAA,0xA0, 0xAE,0xB0, -0xAA,0xA0, 0xAA,0xA0, 0xAA,0xB0, 0xFA,0xE0, -/* @jing14 (12x12,V)@ [suki software]*/ -0x05,0x00, 0x45,0x00, 0x49,0x00, 0x51,0xF0, -0x71,0x00, 0x49,0x00, 0x04,0x00, 0x9F,0xE0, -0x90,0x00, 0xB0,0x10, 0xD3,0xE0, 0x90,0x10, -/* @jing15 (12x12,V)@ [suki software]*/ -0x44,0x00, 0x55,0xF0, 0x55,0x50, 0xFD,0x50, -0x55,0x50, 0x55,0xF0, 0x44,0x00, 0x01,0x00, -0x15,0x40, 0xE5,0x40, 0x2F,0xF0, 0x35,0x40, -/* @jing16 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x04,0x00, 0x7F,0xF0, 0x04,0x10, -0x04,0x10, 0x00,0x00, 0x24,0x00, 0x35,0xF0, -0x2D,0x50, 0xA5,0x50, 0x65,0x50, 0x2D,0x50, -/* @jing17 (12x12,V)@ [suki software]*/ -0x21,0x00, 0x22,0x00, 0x2C,0xF0, 0xF4,0x90, -0x24,0x90, 0x24,0xF0, 0xF4,0x00, 0x27,0xF0, -0x22,0x00, 0x0F,0x00, 0xF8,0xC0, 0x08,0x30, -/* @jing18 (12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0xF7,0xF0, 0x24,0x80, -0x24,0x80, 0x20,0x10, 0x04,0x00, 0x25,0xF0, -0x35,0x50, 0xAD,0x50, 0x65,0x50, 0x2D,0x50, -/* @jing19 (12x12,V)@ [suki software]*/ -0x08,0x80, 0x11,0x00, 0x23,0xF0, 0xCE,0x00, -0x45,0x00, 0x01,0x80, 0x42,0x80, 0x42,0x80, -0x44,0x80, 0x48,0xF0, 0x54,0x80, 0x64,0x80, -/* @jing20 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x06,0x80, 0x01,0x10, 0x3F,0xE0, -0x20,0x40, 0x28,0x60, 0x28,0xA0, 0xA8,0xA0, -0x69,0x20, 0x29,0x30, 0x2A,0x20, 0x2D,0x20, -/* @jing21 (12x12,V)@ [suki software]*/ -0x00,0x10, 0x14,0x10, 0x93,0xD0, 0x70,0x20, -0x10,0xE0, 0x17,0x20, 0x00,0x00, 0x44,0x00, -0x55,0xF0, 0x55,0x50, 0xFD,0x50, 0x55,0x50, -/* @jing22 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x28,0x00, 0x28,0x00, 0x2B,0xE0, -0x2A,0xA0, 0x3A,0xB0, 0xAA,0xA0, 0x6A,0xA0, -0x2A,0xA0, 0x2A,0xB0, 0x3A,0xA0, 0x2B,0xE0, -/* @jing23 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x04,0x00, 0x24,0x00, 0x25,0xE0, -0x25,0x20, 0x35,0x30, 0xAD,0x20, 0x65,0x20, -0x25,0x20, 0x2D,0x30, 0x35,0x20, 0x25,0xE0, -/* @jing24 (12x12,V)@ [suki software]*/ -0x00,0x20, 0x40,0x30, 0x3B,0xC0, 0x10,0x00, -0x05,0x00, 0x09,0x20, 0x39,0x20, 0xC9,0x20, -0x49,0x20, 0x4F,0xF0, 0x59,0x20, 0x69,0x20, -/* @jiong0 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x0C,0x00, 0x00,0x70, 0xFF,0xC0, -0x08,0x30, 0x10,0x00, 0x7F,0xF0, 0x40,0x00, -0x4F,0xE0, 0x48,0x40, 0x48,0x40, 0x4F,0xE0, -/* @jiong1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x35,0x00, 0x25,0x10, 0x2D,0x50, -0x35,0x70, 0x25,0xD0, 0xA7,0x50, 0x65,0x50, -0x25,0x50, 0x25,0x50, 0x35,0x50, 0x2F,0xD0, -/* @jiu0 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x08,0x80, 0xFF,0xF0, 0x09,0x10, -0x0C,0x20, 0x44,0xC0, 0x47,0x00, 0x7F,0xF0, -0x85,0x00, 0x86,0x80, 0x01,0x30, 0xFF,0xC0, -/* @jiu1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x32,0x00, 0x24,0x00, 0x29,0x00, -0x21,0x00, 0x21,0x30, 0xAF,0xC0, 0x61,0x00, -0x21,0x00, 0x21,0xF0, 0x28,0x00, 0x24,0x00, -/* @jiu2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x04,0x00, 0x0E,0x40, 0x34,0xC0, -0xC5,0x40, 0x06,0x40, 0x18,0x90, 0x00,0x90, -0x00,0x00, 0x3F,0xF0, 0x00,0x20, 0x00,0x40, -/* @jiu3 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x22,0x10, 0x22,0x10, 0x3F,0xE0, -0x22,0x20, 0x22,0xA0, 0x01,0x00, 0x0E,0x00, -0xF0,0x10, 0x10,0x60, 0x11,0x80, 0x1E,0x60, -/* @jiu4 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x12,0x20, 0x12,0x20, 0x12,0x20, -0x12,0x20, 0xFF,0xF0, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0xFF,0xF0, 0x12,0x20, 0x12,0x20, -/* @jiu5 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x80, 0x01,0x00, 0x02,0x00, -0x0C,0x00, 0x30,0x10, 0xD0,0x20, 0x10,0xC0, -0x13,0x00, 0x3D,0x80, 0x10,0x60, 0x00,0x10, -/* @jiu6 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x04,0x80, 0x09,0x00, 0x11,0x20, -0x22,0xC0, 0x42,0x10, 0xC4,0x60, 0x49,0xC0, -0x50,0x20, 0x68,0x10, 0x44,0x40, 0x04,0x80, -/* @jiu7 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x08,0x00, 0x08,0x00, 0x08,0x00, -0x08,0x30, 0x09,0xC0, 0xFE,0x00, 0x08,0x00, -0x08,0x00, 0x08,0x00, 0x1F,0xF0, 0x08,0x00, -/* @jiu8 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x84,0x30, 0x61,0xC0, 0x0E,0x00, -0x40,0x00, 0x4F,0xF0, 0x48,0x50, 0x7F,0x90, -0x48,0x10, 0x48,0x10, 0x7F,0xD0, 0x48,0x50, -/* @jiu9 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x40,0x00, 0x5F,0xF0, -0x54,0x80, 0x54,0xD0, 0x54,0xB0, 0x5F,0x90, -0x41,0x00, 0x57,0x00, 0x51,0x70, 0x5F,0x80, -/* @jiu10 (12x12,V)@ [suki software]*/ -0x10,0x10, 0x14,0x20, 0x13,0x40, 0x10,0x80, -0xFF,0xF0, 0x11,0x80, 0x76,0x40, 0x11,0x60, -0x06,0x00, 0xFB,0x00, 0x50,0xC0, 0x10,0x30, -/* @jiu11 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x41,0x00, -0x41,0x00, 0x41,0x00, 0x41,0x00, 0x41,0x00, -/* @jiu12 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x3F,0xF0, 0x21,0x00, -0x21,0x00, 0x41,0x00, 0xC1,0x00, 0x40,0x00, -0x00,0x00, 0x21,0x00, 0x21,0x00, 0x21,0x00, -/* @jiu13 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7D,0xF0, 0x55,0x50, -0x55,0x50, 0x95,0x50, 0x85,0x50, 0x05,0xF0, -0x55,0x50, 0x55,0x50, 0x55,0x50, 0x55,0x50, -/* @jiu14 (12x12,V)@ [suki software]*/ -0x04,0x40, 0x08,0x40, 0x10,0x80, 0xE8,0xB0, -0x25,0x20, 0x22,0x20, 0x3D,0x20, 0x21,0x20, -0x00,0xA0, 0xFF,0xA0, 0x10,0xA0, 0x08,0xB0, -/* @jiu15 (12x12,V)@ [suki software]*/ -0x20,0x00, 0x27,0x80, 0x24,0xB0, 0xA4,0x80, -0x64,0xF0, 0x24,0xA0, 0x27,0x90, 0x24,0x00, -0x04,0x10, 0x07,0xE0, 0xFC,0x00, 0x07,0xF0, -/* @jiu16 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x04,0x80, 0x01,0x30, 0x3F,0xC0, -0x20,0x40, 0x20,0x80, 0x23,0x00, 0x3C,0x00, -0xA4,0x10, 0x64,0x60, 0x27,0x90, 0x24,0x00, -/* @ju0 (12x12,V)@ [suki software]*/ -0x23,0x90, 0xFA,0x90, 0x2A,0x90, 0x2F,0xF0, -0xFA,0x90, 0x23,0x90, 0x28,0x00, 0x15,0x10, -0xF3,0x60, 0x1F,0xF0, 0x13,0x40, 0x15,0x30, -/* @ju1 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x11,0x00, 0x12,0x00, 0x04,0x00, 0x1B,0xE0, -0xF2,0x20, 0x52,0x20, 0x13,0xE0, 0x10,0x00, -/* @ju2 (12x12,V)@ [suki software]*/ -0x44,0x20, 0x28,0x40, 0x10,0x80, 0x2D,0x00, -0xC3,0xF0, 0x00,0x00, 0x00,0x00, 0x7F,0xF0, -0x44,0x40, 0x44,0x40, 0x44,0x40, 0x44,0x40, -/* @ju3 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x06,0x80, 0x01,0x00, 0x3F,0xF0, -0x20,0x00, 0x20,0x00, 0x2F,0xF0, 0xA9,0x20, -0x69,0x20, 0x29,0x20, 0x29,0x20, 0x29,0x20, -/* @ju4 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0xFF,0xF0, 0x92,0x00, -0x92,0x00, 0x92,0x70, 0x92,0x40, 0x92,0x40, -0x9F,0xC0, 0x92,0x40, 0x92,0x40, 0x92,0x40, -/* @ju5 (12x12,V)@ [suki software]*/ -0x40,0x20, 0x5F,0x20, 0x41,0x40, 0x41,0x40, -0x7F,0x00, 0x01,0xF0, 0x04,0x00, 0x08,0x00, -0x33,0xE0, 0xD2,0x20, 0x12,0x20, 0x13,0xE0, -/* @ju6 (12x12,V)@ [suki software]*/ -0x20,0x40, 0x20,0x80, 0x23,0x00, 0x3C,0x40, -0x25,0x40, 0xF4,0xD0, 0x24,0x60, 0x27,0xF0, -0x24,0x60, 0x24,0xD0, 0xF5,0x40, 0x24,0x40, -/* @ju7 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0xFF,0xF0, 0x92,0x00, -0x92,0xF0, 0x92,0x90, 0x92,0x90, 0x92,0x90, -0x92,0x90, 0x92,0xF0, 0x92,0x00, 0x92,0x00, -/* @ju8 (12x12,V)@ [suki software]*/ -0x3F,0xF0, 0x20,0x40, 0x20,0x40, 0x20,0x40, -0x3F,0xE0, 0x00,0x00, 0x7F,0xF0, 0x44,0x40, -0x44,0x40, 0x44,0x40, 0x44,0x40, 0x44,0x40, -/* @ju9 (12x12,V)@ [suki software]*/ -0x05,0x00, 0x09,0x00, 0xF1,0x10, 0x1F,0xE0, -0x11,0x40, 0x11,0x20, 0x11,0x10, 0x00,0x00, -0x7F,0xF0, 0x44,0x40, 0x44,0x40, 0x44,0x40, -/* @ju10 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x08,0x40, 0x88,0x90, 0x49,0x10, -0x3A,0x90, 0x8C,0x90, 0x48,0x90, 0x3B,0xF0, -0x08,0x90, 0x0C,0x90, 0x1A,0x90, 0xE9,0x10, -/* @ju11 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x86,0x40, 0x60,0xF0, 0x03,0x00, -0x1C,0x00, 0x00,0x00, 0x7F,0xF0, 0x44,0x40, -0x44,0x40, 0x44,0x40, 0x44,0x40, 0x44,0x40, -/* @ju12 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x81,0x10, 0xFE,0x90, 0xAA,0xA0, -0xAA,0xA0, 0xAA,0x80, 0xFF,0x80, 0x82,0xF0, -0x52,0xA0, 0x54,0x90, 0x49,0x20, 0x49,0x40, -/* @ju13 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x08,0x40, 0x08,0x80, 0xFF,0xF0, -0x09,0x00, 0x0A,0x00, 0x00,0x00, 0x7F,0xF0, -0x44,0x40, 0x44,0x40, 0x44,0x40, 0x44,0x40, -/* @ju14 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x11,0x00, 0x02,0x00, 0x7F,0xF0, 0x49,0x30, -0x49,0x20, 0x49,0x20, 0x4F,0xE0, 0x49,0x20, -/* @ju15 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x44,0x40, -0x44,0x40, 0x44,0x40, 0x44,0x40, 0x44,0x40, -0x44,0x40, 0x44,0x40, 0x44,0x40, 0x47,0xE0, -/* @ju16 (12x12,V)@ [suki software]*/ -0x00,0x20, 0x00,0x20, 0x00,0x20, 0x00,0x20, -0x7F,0xE0, 0x55,0x30, 0x55,0x20, 0x55,0x20, -0x55,0x20, 0x55,0x20, 0x55,0x20, 0x7F,0xE0, -/* @ju17 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7C,0xF0, 0x44,0x00, 0x47,0xF0, -0x44,0x80, 0x7C,0x80, 0x00,0x00, 0x7F,0xF0, -0x44,0x40, 0x44,0x40, 0x44,0x40, 0x44,0x40, -/* @ju18 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7D,0xF0, 0x48,0x00, 0x4F,0xF0, -0x48,0x80, 0x7C,0x80, 0x00,0x10, 0x7F,0xE0, -0x49,0x30, 0x49,0x20, 0x4F,0xE0, 0x49,0x20, -/* @ju19 (12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0x34,0x80, 0xD7,0xF0, -0x14,0x80, 0x14,0x80, 0x00,0x00, 0x7F,0xF0, -0x49,0x00, 0x49,0x30, 0x49,0x20, 0x4F,0xE0, -/* @ju20 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x1F,0xF0, 0xE8,0x00, -0x40,0x20, 0x00,0x20, 0x7F,0xE0, 0x55,0x30, -0x55,0x20, 0x55,0x20, 0x55,0x20, 0x55,0x30, -/* @ju21 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x02,0x00, 0x04,0x00, 0x18,0x00, -0xE3,0xF0, 0x22,0x20, 0x22,0x20, 0x22,0x20, -0x22,0x20, 0x23,0xF0, 0x20,0x00, 0x20,0x00, -/* @ju22 (12x12,V)@ [suki software]*/ -0x0E,0x00, 0x00,0x00, 0xFF,0xF0, 0x10,0x00, -0x0C,0x20, 0x00,0x20, 0x7F,0xE0, 0x55,0x30, -0x55,0x20, 0x55,0x20, 0x55,0x20, 0x55,0x30, -/* @ju23 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x06,0x00, 0x00,0x30, 0xFF,0xC0, -0x04,0x20, 0x18,0x10, 0x00,0x00, 0xFF,0xF0, -0x44,0x40, 0x44,0x40, 0x44,0x40, 0x44,0x40, -/* @ju24 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x49,0x00, -0x49,0x30, 0x49,0x20, 0x4F,0xE0, 0x49,0x20, -0x79,0x30, 0x01,0x00, 0x00,0x00, 0x1F,0xF0, -/* @juan0 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x11,0x00, 0x12,0x00, 0x00,0x00, 0xF7,0xF0, -0x94,0x90, 0x94,0x90, 0x94,0x90, 0x94,0x90, -/* @juan1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7B,0xF0, 0x4A,0xA0, 0x4A,0xA0, -0x4A,0xA0, 0x4A,0xA0, 0x7B,0xF0, 0x00,0x10, -0x3F,0x90, 0x70,0x90, 0xAA,0x90, 0x21,0x90, -/* @juan2 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x08,0xC0, 0x0F,0x50, 0xF8,0x20, -0x08,0xD0, 0x0F,0x00, 0x00,0x00, 0x7B,0xF0, -0x4A,0x90, 0x4A,0x90, 0x4A,0x90, 0x4A,0x90, -/* @juan3 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x1F,0xF0, 0xE0,0x20, -0x42,0x20, 0x2A,0x40, 0x1A,0xF0, 0x0B,0x80, -0xFE,0x90, 0x0A,0x80, 0x1B,0x70, 0x6A,0x80, -/* @juan4 (12x12,V)@ [suki software]*/ -0x04,0x40, 0x04,0x40, 0x14,0x80, 0x94,0x80, -0x55,0xF0, 0x36,0xA0, 0x1C,0xA0, 0xF4,0xA0, -0x14,0xA0, 0x34,0xA0, 0x56,0xF0, 0x95,0x00, -/* @juan5 (12x12,V)@ [suki software]*/ -0x02,0x10, 0x02,0x00, 0x12,0x20, 0x52,0x40, -0x32,0x80, 0x13,0xF0, 0x16,0x80, 0xFA,0x90, -0x12,0x80, 0x12,0xF0, 0x33,0x00, 0xD2,0x80, -/* @juan6 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x0C,0x40, 0x34,0xC0, 0xC5,0x40, -0x06,0x50, 0x08,0x50, 0x00,0x00, 0x7B,0xF0, -0x4A,0x90, 0x4A,0x90, 0x4A,0x90, 0x4A,0x90, -/* @jue0 (12x12,V)@ [suki software]*/ -0x10,0x80, 0x11,0x00, 0xFF,0xF0, 0x12,0x00, -0x10,0x30, 0x7F,0xC0, 0x54,0x40, 0x4F,0xF0, -0x4C,0x40, 0x55,0xC0, 0x40,0x00, 0x46,0x00, -/* @jue1 (12x12,V)@ [suki software]*/ -0x08,0x80, 0x08,0x80, 0x09,0x00, 0xFF,0xF0, -0x0A,0x00, 0x09,0x00, 0xFB,0xF0, 0xAE,0xA0, -0xAA,0xA0, 0xFA,0xA0, 0x07,0xF0, 0xFA,0xA0, -/* @jue2 (12x12,V)@ [suki software]*/ -0x10,0x80, 0x10,0x80, 0xFF,0xF0, 0x11,0x00, -0x12,0x00, 0x00,0x80, 0x10,0x80, 0x10,0xB0, -0xFF,0xC0, 0x10,0xA0, 0x10,0x90, 0x10,0x80, -/* @jue3 (12x12,V)@ [suki software]*/ -0x10,0x80, 0x11,0x00, 0xFF,0xF0, 0x12,0x00, -0x14,0x00, 0xFF,0xF0, 0x90,0x30, 0x93,0x80, -0x90,0x80, 0x90,0x80, 0x97,0xF0, 0x90,0x80, -/* @jue4 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x1F,0xF0, 0xF0,0x00, -0x40,0x00, 0x00,0x10, 0x7F,0xE0, 0x48,0x10, -0x4B,0xC0, 0x48,0x80, 0x4F,0xF0, 0x48,0x80, -/* @jue5 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x40,0x00, 0x4E,0xF0, 0x6A,0xA0, -0x5A,0xA0, 0x4E,0xA0, 0x4A,0xF0, 0x6A,0x00, -0x5A,0x40, 0x8E,0x50, 0x8A,0x40, 0x9A,0x40, -/* @jiao27 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x18,0x00, 0x90,0x00, 0x53,0xF0, -0x32,0x00, 0x12,0x00, 0x92,0x00, 0x52,0xF0, -0x72,0x00, 0x12,0x00, 0x12,0x00, 0x33,0xF0, -/* @jue6 (12x12,V)@ [suki software]*/ -0x40,0x40, 0x20,0x70, 0x1B,0x80, 0x10,0x00, -0x00,0x80, 0x10,0x80, 0x10,0x80, 0x10,0xB0, -0xFF,0xC0, 0x10,0xA0, 0x10,0x90, 0x10,0x80, -/* @jue7 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x84,0x00, 0x77,0xF0, 0x20,0x00, -0x01,0x00, 0x11,0x00, 0x11,0x00, 0x11,0x70, -0xFF,0x80, 0x11,0x60, 0x11,0x10, 0x11,0x00, -/* @jue8 (12x12,V)@ [suki software]*/ -0x04,0x40, 0x1C,0xC0, 0xE5,0x40, 0x46,0x40, -0x0C,0x40, 0x02,0x00, 0x0C,0x00, 0x37,0xF0, -0xE4,0x40, 0x24,0x40, 0x27,0xC0, 0x2C,0x40, -/* @jun0 (12x12,V)@ [suki software]*/ -0x08,0x10, 0x08,0x10, 0x08,0x10, 0xFF,0xE0, -0x08,0x20, 0x09,0x40, 0x02,0x50, 0x0C,0x10, -0xF2,0x10, 0x51,0xA0, 0x11,0x20, 0x10,0x40, -/* @jun1 (12x12,V)@ [suki software]*/ -0x20,0x00, 0x20,0x00, 0x27,0xF0, 0x24,0x40, -0x25,0x40, 0xFD,0x50, 0x25,0x60, 0x25,0xF0, -0x25,0x60, 0xFE,0x50, 0x26,0x40, 0x24,0x40, -/* @jun2 (12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0x34,0x80, 0xD7,0xF0, -0x14,0x80, 0x14,0x80, 0x12,0x80, 0x04,0x00, -0x1A,0x10, 0xF1,0x10, 0x11,0x20, 0x10,0x40, -/* @jun3 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x18,0x00, 0x64,0x00, 0x44,0x40, -0x45,0xC0, 0x4E,0x40, 0x74,0x40, 0x55,0xF0, -0x44,0x40, 0x44,0x40, 0x44,0x40, 0x4C,0xC0, -/* @jun4 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x08,0x00, 0x49,0x00, 0x49,0x30, -0x49,0x70, 0x4F,0xA0, 0x79,0x20, 0x49,0x20, -0x49,0x20, 0x49,0x20, 0x49,0x20, 0x49,0x20, -/* @jun5 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x0F,0xF0, 0x00,0x00, 0xFF,0xF0, -0x00,0x10, 0x0F,0xF0, 0x11,0x10, 0x32,0x20, -0xDD,0xC0, 0x14,0xA0, 0x10,0x90, 0x18,0xA0, -/* @jun6 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x02,0x00, 0x04,0x00, 0x1F,0xF0, -0xE0,0x80, 0x49,0x10, 0x1A,0x20, 0x2D,0xC0, -0xE8,0xB0, 0x48,0x80, 0x18,0x90, 0x14,0xE0, -/* @jun7 (12x12,V)@ [suki software]*/ -0x12,0x10, 0x91,0xD0, 0x70,0x10, 0x10,0xE0, -0x17,0x20, 0x02,0x00, 0x11,0x10, 0x32,0x60, -0x55,0xA0, 0x90,0x90, 0x10,0x90, 0x54,0xA0, -/* @xun0 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x86,0x20, 0x60,0xF0, 0x07,0x00, -0x00,0x80, 0x09,0x10, 0x1E,0x20, 0x29,0xE0, -0xC8,0x90, 0x10,0x80, 0x10,0x90, 0x34,0xA0, -/* @jun8 (12x12,V)@ [suki software]*/ -0x10,0x10, 0x92,0x20, 0x92,0xF0, 0xFF,0x40, -0x92,0x40, 0x92,0x40, 0x92,0x40, 0xFE,0x70, -0x10,0x00, 0x10,0x00, 0xFF,0xF0, 0x80,0x10, -/* @jun9 (12x12,V)@ [suki software]*/ -0x40,0x10, 0x5F,0x10, 0x41,0x20, 0x41,0x40, -0x7F,0x00, 0x01,0xF0, 0x00,0x20, 0x12,0x40, -0x35,0xC0, 0xD0,0xA0, 0x10,0x90, 0x50,0xA0, -/* @ka0 (12x12,V)@ [suki software]*/ -0x3F,0xE0, 0x20,0x80, 0x20,0x80, 0x3F,0xC0, -0x00,0x00, 0x31,0x20, 0x22,0x20, 0x3E,0x50, -0xA5,0x50, 0x64,0x90, 0x24,0x90, 0x27,0x50, -/* @ka1 (12x12,V)@ [suki software]*/ -0x3F,0xE0, 0x20,0x40, 0x20,0x40, 0x3F,0xE0, -0x10,0x00, 0x10,0x30, 0xFF,0xC0, 0x10,0x00, -0x1F,0xF0, 0x00,0x00, 0x1F,0xF0, 0x10,0x00, -/* @ka2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x02,0x00, 0x02,0x00, 0x02,0x00, -0x02,0x00, 0x02,0x00, 0x02,0x00, 0xFF,0xF0, -0x22,0x00, 0x22,0x40, 0x22,0x20, 0x22,0x30, -/* @ge16 (12x12,V)@ [suki software]*/ -0x3F,0xE0, 0x20,0x40, 0x20,0x40, 0x20,0x40, -0x3F,0xE0, 0x04,0x40, 0x18,0xF0, 0xE8,0xC0, -0x25,0x40, 0x22,0x40, 0x22,0x40, 0x25,0x40, -/* @kai0 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x42,0x00, 0x42,0x00, 0x42,0x00, -0x42,0x30, 0x7F,0xC0, 0x42,0x00, 0x42,0x00, -0x42,0x00, 0x42,0x00, 0x7F,0xF0, 0x42,0x00, -/* @kai1 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x08,0x80, 0xFF,0xF0, 0x09,0x00, -0x0A,0x00, 0x00,0x00, 0xFE,0xF0, 0x12,0x90, -0x14,0x90, 0x01,0x90, 0xFC,0x90, 0x12,0x90, -/* @kai2 (12x12,V)@ [suki software]*/ -0x08,0xC0, 0x0B,0x00, 0xFF,0xF0, 0x0A,0x00, -0x09,0x00, 0x00,0x00, 0xFE,0xF0, 0x24,0x90, -0x29,0x90, 0x22,0x90, 0x00,0x90, 0xFC,0x90, -/* @kai3 (12x12,V)@ [suki software]*/ -0x7A,0x00, 0x0A,0xF0, 0x0A,0x80, 0xFA,0x80, -0x0A,0x80, 0x0A,0x90, 0x7B,0xA0, 0x00,0x10, -0x7F,0xE0, 0x40,0x00, 0x40,0x00, 0x40,0x00, -/* @kai4 (12x12,V)@ [suki software]*/ -0x0E,0x00, 0x00,0x00, 0xFF,0xF0, 0x08,0x00, -0x04,0x00, 0x7F,0xF0, 0x52,0x10, 0x52,0x60, -0x7E,0x30, 0x00,0x00, 0x4E,0x30, 0x43,0xC0, -/* @kan1 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x42,0x00, 0x42,0x00, 0x42,0x00, -0x7F,0xF0, 0x42,0x00, 0x42,0x00, 0x42,0x00, -0x00,0x00, 0x3F,0xF0, 0x00,0x00, 0x00,0x00, -/* @kan2 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x04,0x00, 0xFF,0xF0, 0x04,0x10, -0x04,0x90, 0x20,0x80, 0x20,0xF0, 0xFF,0x80, -0x2A,0xF0, 0x2A,0xA0, 0x2A,0x80, 0xFF,0xC0, -/* @kan3 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x20,0xF0, 0xFF,0x80, 0x2A,0xF0, -0x2A,0xA0, 0x2A,0xC0, 0xFF,0xB0, 0x20,0x90, -0x28,0x80, 0x08,0x00, 0xFF,0xF0, 0x08,0x00, -/* @kan4 (12x12,V)@ [suki software]*/ -0x08,0x10, 0x08,0x10, 0xFF,0xF0, 0x08,0x20, -0x08,0x20, 0x02,0x40, 0x04,0x00, 0x18,0x10, -0xF0,0x60, 0x57,0x80, 0x10,0x60, 0x12,0x10, -/* @kan5 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x41,0x00, 0x4F,0xF0, 0x72,0x00, -0x43,0xF0, 0x41,0x00, 0x02,0x00, 0x1C,0x10, -0xF0,0x60, 0x17,0x80, 0x10,0x60, 0x10,0x10, -/* @kan6 (12x12,V)@ [suki software]*/ -0x04,0x20, 0x04,0x40, 0x54,0x40, 0x54,0x80, -0x55,0xF0, 0x57,0x50, 0x5D,0x50, 0x75,0x50, -0x95,0x50, 0x95,0x50, 0x95,0x50, 0x95,0xF0, -/* @kang0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x3F,0xF0, 0x22,0x00, -0x2A,0xC0, 0x2A,0xA0, 0x2A,0x90, 0xAA,0x80, -0x7F,0xF0, 0x2A,0xB0, 0x2A,0x80, 0x2A,0x90, -/* @kang1 (12x12,V)@ [suki software]*/ -0x0E,0x00, 0x00,0x00, 0xFF,0xF0, 0x10,0x00, -0x0C,0x00, 0x00,0x10, 0x7F,0xE0, 0x55,0x40, -0x55,0x30, 0x55,0x20, 0xFF,0xF0, 0x55,0x10, -/* @kang2 (12x12,V)@ [suki software]*/ -0x34,0x70, 0x0F,0x80, 0xFF,0xF0, 0x0D,0x00, -0x34,0xC0, 0x00,0x10, 0x3F,0xE0, 0x22,0x40, -0x2A,0xA0, 0xAA,0x90, 0x7F,0xF0, 0x2A,0x90, -/* @kang3 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x08,0x40, 0x08,0x80, 0xFF,0xF0, -0x09,0x00, 0x0A,0x00, 0x08,0x00, 0x20,0x00, -0x20,0x00, 0x20,0x00, 0x3F,0xF0, 0x20,0x00, -/* @kang4 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x11,0x00, 0x12,0x00, 0x00,0x00, 0x10,0x10, -0x13,0xE0, 0x92,0x00, 0x72,0x00, 0x13,0xF0, -/* @kang5 (12x12,V)@ [suki software]*/ -0x10,0x00, 0x10,0x00, 0x10,0x00, 0x10,0x00, -0x10,0x10, 0x17,0xE0, 0x94,0x00, 0x74,0x00, -0x14,0x00, 0x14,0x00, 0x17,0xF0, 0x10,0x00, -/* @kang6 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x06,0x00, 0x00,0x30, 0xFF,0xC0, -0x04,0x20, 0x18,0x10, 0x10,0x00, 0x10,0x10, -0x93,0xE0, 0x72,0x00, 0x12,0x00, 0x13,0xF0, -/* @kao0 (12x12,V)@ [suki software]*/ -0x00,0x20, 0x04,0x20, 0x24,0x20, 0x24,0x40, -0x24,0x40, 0x24,0xA0, 0xFD,0xF0, 0x26,0xA0, -0x24,0xA0, 0x2C,0xA0, 0x14,0xA0, 0x64,0xA0, -/* @kao1 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x11,0x20, 0x12,0x40, 0x04,0x40, 0x24,0x80, -0x25,0x80, 0xFE,0xF0, 0x24,0x90, 0x2C,0x90, -/* @kao2 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x07,0x00, 0x00,0x30, 0xFF,0xC0, -0x08,0x20, 0x14,0x50, 0x24,0x40, 0x24,0x80, -0x25,0x00, 0xFF,0xE0, 0x25,0x20, 0x2D,0x20, -/* @kao3 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x08,0x40, 0x18,0x50, 0x6F,0x50, -0x29,0x50, 0x29,0xF0, 0x29,0x00, 0xF9,0x00, -0x29,0x00, 0x29,0xF0, 0x29,0x50, 0x2F,0x50, -/* @ke0 (12x12,V)@ [suki software]*/ -0x08,0x10, 0x08,0x10, 0xFF,0xF0, 0x08,0x20, -0x08,0x20, 0x00,0x20, 0x40,0x00, 0x4F,0xE0, -0x48,0x40, 0x48,0x40, 0x4F,0xE0, 0x40,0x00, -/* @ke1 (12x12,V)@ [suki software]*/ -0x20,0x00, 0x24,0x00, 0x24,0x00, 0x25,0xF0, -0x25,0x20, 0xF5,0x20, 0x25,0x20, 0x25,0x20, -0x25,0xF0, 0xF4,0x00, 0x24,0x00, 0x27,0xF0, -/* @ke2 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x08,0xC0, 0x0B,0x00, 0xFF,0xF0, -0x0A,0x00, 0x09,0x80, 0x20,0x00, 0x27,0xC0, -0x24,0x40, 0x24,0x40, 0x27,0xC0, 0x20,0x00, -/* @ke3 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x11,0x80, 0x16,0x00, 0xFF,0xF0, -0x12,0x00, 0x11,0x00, 0x00,0x80, 0x7E,0x90, -0x52,0xA0, 0x52,0xC0, 0x7F,0xF0, 0x52,0xA0, -/* @ke4 (12x12,V)@ [suki software]*/ -0x20,0x80, 0x21,0x00, 0x27,0xF0, 0x3A,0x00, -0x23,0xF0, 0x20,0x00, 0x04,0x30, 0x24,0xA0, -0x25,0xB0, 0x26,0xA0, 0xFC,0xA0, 0x26,0xB0, -/* @ke5 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x7E,0x90, 0x52,0xA0, 0x7F,0xF0, -0x52,0xC0, 0x52,0xA0, 0x7E,0x90, 0x00,0x00, -0x4F,0xF0, 0x48,0x00, 0x58,0x00, 0x6B,0xF0, -/* @ke6 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x48,0x40, 0x49,0x80, 0x4E,0x00, -0x7F,0xF0, 0x8A,0x00, 0x89,0x20, 0x00,0x20, -0x44,0x20, 0x33,0x40, 0x00,0x40, 0x00,0x40, -/* @ke7 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x21,0x00, 0x2A,0x00, 0x2A,0x00, -0x2A,0x70, 0x2A,0x40, 0x2A,0x40, 0xFA,0x40, -0x2A,0x40, 0x2A,0x70, 0x2A,0x00, 0x2A,0x00, -/* @hai8 (12x12,V)@ [suki software]*/ -0x3F,0xF0, 0x20,0x40, 0x20,0x40, 0x20,0x40, -0x3F,0xE0, 0x20,0x00, 0x21,0x10, 0x23,0x20, -0xBD,0x40, 0x69,0x80, 0x21,0x10, 0x26,0x30, -/* @ke8 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x40,0x00, 0x40,0x00, 0x4F,0xE0, -0x48,0x40, 0x48,0x40, 0x48,0x40, 0x48,0x40, -0x4F,0xE0, 0x40,0x00, 0x40,0x00, 0x40,0x00, -/* @ke9 (12x12,V)@ [suki software]*/ -0x10,0x20, 0x0C,0x30, 0x80,0xC0, 0x63,0x00, -0x04,0x40, 0x00,0x40, 0x7C,0xB0, 0x57,0x10, -0x55,0x20, 0x55,0xC0, 0x55,0x20, 0x55,0x10, -/* @ke10 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x20,0x00, 0x20,0x00, 0x27,0xC0, -0x24,0x80, 0x24,0xF0, 0x24,0x80, 0xFC,0x80, -0x24,0x80, 0x24,0xF0, 0x24,0x80, 0x27,0xC0, -/* @ke11 (12x12,V)@ [suki software]*/ -0x00,0x10, 0x12,0x10, 0x17,0x20, 0x1A,0x60, -0x92,0xC0, 0x73,0x90, 0x57,0x30, 0x12,0x60, -0x10,0xC0, 0x00,0x40, 0x1F,0xE0, 0x00,0x00, -/* @ke12 (12x12,V)@ [suki software]*/ -0x00,0x10, 0x18,0x10, 0x20,0xA0, 0x21,0x20, -0x22,0x30, 0x3E,0x60, 0xA5,0x60, 0x64,0xA0, -0x24,0xA0, 0x25,0x60, 0x26,0x60, 0x24,0x70, -/* @ke13 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x84,0x00, 0x77,0xF0, 0x20,0x00, -0x00,0x10, 0x00,0x80, 0x00,0x80, 0x7E,0x90, -0x52,0xA0, 0x52,0xC0, 0x7F,0xF0, 0x52,0xA0, -/* @ken0 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x08,0x00, 0x08,0x00, 0x7B,0xF0, -0x0A,0x90, 0x0A,0x90, 0x0A,0x90, 0xFA,0x90, -0x2A,0x90, 0x2A,0x90, 0x2A,0x90, 0x2B,0xF0, -/* @ken1 (12x12,V)@ [suki software]*/ -0x1F,0xF0, 0x10,0x20, 0x10,0x20, 0x10,0x20, -0x1F,0xF0, 0x04,0x00, 0x3D,0xF0, 0x05,0x40, -0x05,0x40, 0xFD,0x40, 0x25,0x40, 0x25,0x40, -/* @ken2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x10, 0x7F,0xD0, -0x54,0x90, 0x55,0x10, 0x54,0x10, 0x56,0x70, -0x55,0x10, 0x54,0x90, 0x54,0x90, 0x7D,0x50, -/* @ken3 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x10, 0x00,0x00, 0x7F,0xC0, -0x54,0x90, 0x55,0x00, 0x54,0x00, 0x56,0x20, -0x55,0x10, 0x54,0x80, 0x54,0x80, 0x7D,0x40, -/* @keng0 (12x12,V)@ [suki software]*/ -0x08,0x10, 0x08,0x10, 0x08,0x10, 0xFF,0xE0, -0x08,0x20, 0x08,0x40, 0x10,0x10, 0x13,0xE0, -0x92,0x00, 0x52,0x00, 0x32,0x00, 0x13,0xF0, -/* @keng1 (12x12,V)@ [suki software]*/ -0x3F,0xE0, 0x20,0x40, 0x20,0x40, 0x20,0x40, -0x3F,0xE0, 0x10,0x00, 0x10,0x10, 0x17,0xE0, -0x94,0x00, 0x74,0x00, 0x54,0x00, 0x17,0xF0, -/* @kong0 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x30,0x00, 0x21,0x00, 0x22,0x80, -0x24,0x80, 0x28,0x80, 0xA0,0x80, 0x60,0xF0, -0x20,0x80, 0x28,0x80, 0x24,0x80, 0x22,0x80, -/* @kong1 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x41,0x00, 0x41,0x00, 0x7E,0x00, -0x42,0x50, 0x44,0x80, 0x03,0x00, 0x7C,0x40, -0x50,0x30, 0x4C,0x00, 0x40,0x00, 0x7F,0x00, -/* @kong2 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x40,0x60, 0x40,0x40, 0x40,0x80, -0x4F,0xF0, 0x51,0x00, 0x62,0x00, 0x42,0x00, -0x00,0x00, 0xFF,0xF0, 0x00,0x00, 0x00,0x00, -/* @kong3 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x11,0x00, 0x12,0x00, 0x00,0x00, 0x19,0x40, -0x12,0x40, 0x14,0x40, 0x50,0x70, 0x34,0x40, -/* @kou0 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x08,0x40, 0x08,0x80, 0xFF,0xF0, -0x09,0x00, 0x0A,0x00, 0x7F,0xF0, 0x48,0x00, -0x44,0x10, 0x42,0x60, 0x41,0x80, 0x42,0x80, -/* @kou1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x3F,0xF0, 0x20,0x10, -0x20,0x10, 0x20,0x10, 0x20,0x10, 0x20,0x10, -0x20,0x10, 0x20,0x10, 0x20,0x10, 0x20,0x10, -/* @kou2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x10,0x40, 0x10,0x40, 0x10,0x80, -0xFF,0xF0, 0x11,0x00, 0x12,0x00, 0x00,0x00, -0x3F,0xF0, 0x20,0x10, 0x20,0x10, 0x20,0x10, -/* @kou3 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x09,0x00, 0x35,0x10, 0x25,0xE0, -0x25,0x00, 0x25,0xF0, 0xA5,0x00, 0x60,0x00, -0x21,0x40, 0x3F,0x50, 0x25,0x20, 0x25,0x50, -/* @ku0 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x11,0x80, 0x16,0x00, 0xFF,0xF0, -0x12,0x00, 0x11,0x80, 0x10,0x00, 0x08,0xF0, -0x08,0x80, 0x08,0x80, 0xFF,0x80, 0x08,0x80, -/* @ku1 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x00,0x80, 0x7C,0x80, 0x48,0x80, -0x48,0x80, 0x48,0x90, 0x7C,0xE0, 0x03,0x80, -0x7C,0xE0, 0x48,0x90, 0x4A,0x80, 0x49,0x80, -/* @ku2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x68,0x00, 0x48,0x00, 0x5F,0xF0, -0x6A,0x00, 0x4A,0xE0, 0x4A,0x20, 0xCA,0x20, -0x4B,0xF0, 0x4A,0x20, 0x4A,0x20, 0x6A,0x20, -/* @ku3 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x22,0x00, 0x22,0x00, 0x22,0x70, -0x22,0x40, 0xFA,0x40, 0x22,0x40, 0x2F,0xC0, -0x22,0x40, 0x22,0x40, 0xFA,0x40, 0x22,0x70, -/* @ku4 (12x12,V)@ [suki software]*/ -0x4F,0xF0, 0x48,0xA0, 0x7F,0x20, 0x48,0x20, -0x7F,0x20, 0x49,0x20, 0x4F,0xF0, 0x06,0x00, -0x3A,0x70, 0x12,0x40, 0xFE,0x40, 0x12,0x40, -/* @ku5 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x3F,0xF0, 0x24,0x10, -0x24,0x90, 0x25,0xD0, 0x26,0x90, 0xBC,0x90, -0x64,0x90, 0x27,0xF0, 0x24,0x90, 0x24,0x90, -/* @ku6 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x90,0x80, 0x71,0x00, 0x57,0xF0, -0x19,0x80, 0x02,0x40, 0x3F,0xF0, 0x20,0x00, -0x24,0xC0, 0xA7,0x40, 0x7C,0x40, 0x25,0xF0, -/* @kua0 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x21,0x00, 0x22,0x00, 0x25,0x00, -0x2D,0x20, 0x35,0xF0, 0xE5,0x20, 0x25,0x20, -0x25,0x20, 0x25,0x20, 0x35,0x20, 0x2D,0x70, -/* @kua1 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x08,0x00, 0xFF,0xF0, 0x08,0x10, -0x09,0x10, 0x22,0x00, 0x25,0x20, 0x3D,0xF0, -0xE5,0x20, 0x25,0x20, 0x35,0x20, 0x2D,0x20, -/* @kua2 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x11,0x00, 0x10,0x80, 0x24,0x80, 0x2A,0x80, -0x32,0xE0, 0xE2,0xA0, 0x32,0xA0, 0x2A,0xA0, -/* @kua3 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7C,0xF0, 0x44,0x00, 0x47,0xF0, -0x7C,0x80, 0x02,0x80, 0x24,0x00, 0x2C,0x80, -0x34,0xF0, 0xE4,0x90, 0x24,0x90, 0x34,0x90, -/* @kua4 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x48,0x80, 0x48,0x80, -0x7F,0xF0, 0x02,0x00, 0x24,0x80, 0x2C,0xA0, -0x34,0xF0, 0xE4,0xA0, 0x34,0xA0, 0x2C,0xA0, -/* @kuai0 (12x12,V)@ [suki software]*/ -0x08,0x10, 0x08,0x10, 0xFF,0xF0, 0x08,0x20, -0x08,0xA0, 0x00,0x80, 0x10,0x80, 0x10,0xB0, -0xFF,0xC0, 0x10,0xA0, 0x10,0x90, 0x10,0x80, -/* @kuai1 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x13,0x80, 0xE0,0x00, 0x4F,0xF0, -0x62,0x00, 0x51,0x40, 0x44,0x40, 0x14,0x40, -0x24,0x50, 0xCF,0xE0, 0x64,0x50, 0x54,0x40, -/* @kuai2 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x02,0x00, 0x0F,0xF0, 0xF0,0x00, -0x42,0x40, 0x04,0x40, 0x0A,0x40, 0x12,0x70, -0xE2,0x40, 0x22,0x40, 0x12,0x50, 0x0A,0x40, -/* @kuai3 (12x12,V)@ [suki software]*/ -0x0E,0x00, 0x00,0x00, 0xFF,0xF0, 0x10,0x00, -0x0D,0x00, 0x11,0x00, 0x11,0x00, 0x11,0x70, -0xFF,0x80, 0x11,0x60, 0x11,0x10, 0x11,0x00, -/* @kuan0 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x30,0x00, 0x28,0x00, 0x29,0xF0, -0x29,0x00, 0x3D,0x00, 0xA9,0x10, 0x69,0xE0, -0x29,0x10, 0x3D,0x00, 0x29,0x00, 0x29,0xF0, -/* @kuan1 (12x12,V)@ [suki software]*/ -0x20,0x40, 0x29,0x50, 0x29,0x40, 0x29,0x40, -0xF9,0x70, 0x29,0x40, 0x29,0x50, 0x24,0x40, -0x08,0x00, 0xF0,0x30, 0x17,0xC0, 0x10,0x30, -/* @kuang0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x40,0x00, 0x48,0x10, -0x49,0x10, 0x49,0x10, 0x49,0x10, 0x49,0x10, -0x4F,0xF0, 0x49,0x10, 0x49,0x10, 0x49,0x10, -/* @kuang1 (12x12,V)@ [suki software]*/ -0x10,0x00, 0x2F,0xF0, 0xC8,0x00, 0x6A,0x40, -0x5A,0x40, 0x4A,0x40, 0x4A,0x40, 0x1B,0xF0, -0x2A,0x40, 0xCA,0x40, 0x6A,0x40, 0x5A,0x40, -/* @kuang2 (12x12,V)@ [suki software]*/ -0x82,0x20, 0x44,0x40, 0x28,0x80, 0x19,0x00, -0x27,0xF0, 0xC0,0x00, 0x41,0x00, 0x41,0x00, -0x41,0x00, 0x7F,0xF0, 0x41,0x00, 0x41,0x00, -/* @kuang3 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x08,0xC0, 0x0B,0x00, 0x7F,0xF0, -0x0A,0x00, 0x09,0x00, 0x3F,0xF0, 0x20,0x10, -0x29,0x10, 0x29,0x10, 0x2F,0xF0, 0x29,0x10, -/* @kuang4 (12x12,V)@ [suki software]*/ -0x40,0x40, 0x40,0x80, 0x47,0xF0, 0x7A,0x00, -0x42,0x00, 0x43,0xF0, 0x40,0x00, 0x3F,0xF0, -0x20,0x00, 0x20,0x00, 0xA0,0x00, 0x60,0x00, -/* @kuang5 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x44,0x80, 0x44,0x80, -0x7F,0xF0, 0x00,0x00, 0x7F,0xF0, 0x40,0x10, -0x51,0x10, 0x51,0x10, 0x5F,0xF0, 0x51,0x10, -/* @kuang6 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x3F,0xF0, 0x22,0x10, 0x22,0x10, -0x3F,0xF0, 0x00,0x00, 0x00,0x10, 0x3F,0xE0, -0x20,0x00, 0xA0,0x00, 0x60,0x00, 0x20,0x00, -/* @kuang7 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x80,0x70, 0x71,0x80, 0x26,0x00, -0x18,0x00, 0x00,0x00, 0x7E,0x00, 0x42,0x30, -0x43,0xC0, 0x42,0x00, 0x43,0xF0, 0x42,0x00, -/* @kui0 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x08,0x00, 0x48,0x00, 0x48,0x80, -0x49,0x80, 0x4E,0x80, 0x48,0x80, 0x48,0x80, -0x48,0x80, 0x48,0x80, 0x48,0x80, 0xC8,0x90, -/* @kui1 (12x12,V)@ [suki software]*/ -0x20,0x40, 0x20,0x80, 0x21,0x00, 0x26,0x30, -0x39,0x60, 0xE6,0x60, 0x20,0xB0, 0x23,0x20, -0x3C,0x20, 0x22,0x30, 0x21,0x20, 0x22,0xA0, -/* @kui2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x73,0xF0, 0x10,0x00, -0x10,0x00, 0x1F,0xF0, 0x10,0x00, 0x12,0x40, -0xF2,0x40, 0x12,0x40, 0x12,0x40, 0x12,0x40, -/* @kui3 (12x12,V)@ [suki software]*/ -0x00,0x20, 0x31,0x20, 0x25,0x20, 0x2B,0xF0, -0x31,0x20, 0x21,0x20, 0xA0,0x00, 0x67,0xF0, -0x24,0x00, 0x24,0x10, 0x35,0xE0, 0x2C,0x10, -/* @kui4 (12x12,V)@ [suki software]*/ -0x20,0x00, 0x28,0x20, 0x2A,0x50, 0x29,0x90, -0x29,0x10, 0xFE,0x90, 0x20,0x90, 0x20,0xF0, -0x28,0x90, 0xF4,0x90, 0x26,0x90, 0x29,0x10, -/* @kui5 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x21,0x00, 0x22,0x80, 0x22,0x90, -0x26,0x90, 0x2A,0x90, 0x32,0x90, 0xEF,0xF0, -0x22,0x90, 0x32,0x90, 0x2A,0x90, 0x24,0x90, -/* @kui6 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x3F,0x00, 0x29,0x10, 0x69,0xE0, -0xBF,0x00, 0x29,0xF0, 0x3F,0x30, 0x00,0x50, -0x08,0x30, 0x26,0x90, 0x18,0x80, 0x00,0x80, -/* @kui7 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x1F,0xF0, 0xF0,0x00, -0x40,0x00, 0x3F,0x80, 0x29,0x10, 0x69,0xE0, -0xBF,0x00, 0x29,0xF0, 0x29,0x10, 0x3F,0x70, -/* @kui8 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x0C,0x00, 0xF1,0xF0, 0x10,0x00, -0x14,0x00, 0x18,0x10, 0x04,0x00, 0x75,0xF0, -0x55,0x00, 0x55,0x00, 0xFD,0x70, 0x55,0x00, -/* @kui9 (12x12,V)@ [suki software]*/ -0x07,0x00, 0x00,0x00, 0xFF,0xF0, 0x08,0x00, -0x06,0x00, 0x00,0x00, 0x3F,0x80, 0x24,0x90, -0x64,0xE0, 0xBF,0x80, 0x24,0xF0, 0x24,0x90, -/* @kui10 (12x12,V)@ [suki software]*/ -0x10,0x20, 0x08,0x30, 0x80,0xC0, 0x67,0x00, -0x00,0x00, 0x02,0x00, 0x7A,0xF0, 0x4A,0x80, -0x4A,0x80, 0xFE,0xB0, 0x4A,0x80, 0x4A,0x80, -/* @kun0 (12x12,V)@ [suki software]*/ -0x08,0x10, 0x08,0x10, 0x08,0x20, 0x7F,0xE0, -0x08,0x40, 0x08,0x40, 0x1F,0xF0, 0x12,0x40, -0x12,0x40, 0x12,0x40, 0xFF,0xF0, 0x12,0x40, -/* @kun1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x03,0xF0, 0x7C,0x40, -0x54,0x40, 0x54,0x40, 0x54,0x40, 0x54,0x00, -0x54,0x00, 0x57,0xF0, 0x54,0x20, 0x7C,0x20, -/* @kun2 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x11,0x00, 0x12,0x00, 0x7F,0xF0, 0x44,0x20, -0x44,0xC0, 0x47,0x00, 0x5F,0xF0, 0x46,0x00, -/* @kun3 (12x12,V)@ [suki software]*/ -0x00,0x00, 0xFF,0xF0, 0x80,0x00, 0x88,0x10, -0x88,0x60, 0x89,0x80, 0x8E,0x00, 0xFF,0xF0, -0x8A,0x00, 0x89,0x80, 0x88,0xE0, 0x88,0x40, -/* @kuo0 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x12,0x00, 0x14,0x00, 0x24,0x70, 0x24,0x40, -0x24,0x40, 0x3F,0xC0, 0x44,0x40, 0x44,0x40, -/* @kuo1 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x11,0x00, 0x12,0x00, 0x00,0x00, 0x1F,0xF0, -0x10,0x00, 0x10,0x00, 0x90,0x00, 0x70,0x00, -/* @kuo2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x3F,0xF0, 0x20,0x00, -0x2B,0xA0, 0x2A,0xB0, 0x3A,0xA0, 0xAA,0xB0, -0x6B,0xA0, 0x20,0x00, 0x2F,0xF0, 0x28,0x00, -/* @kuo3 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x3F,0xF0, 0x02,0x00, 0x91,0x40, -0x48,0x70, 0x01,0x80, 0x4A,0x70, 0x4A,0x40, -0x4F,0xC0, 0x52,0x40, 0x52,0x70, 0x42,0x00, -/* @la0 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x04,0x00, 0x04,0x00, 0x7F,0xF0, -0x04,0x10, 0x14,0x10, 0x10,0x00, 0x13,0x00, -0x10,0xF0, 0x90,0x20, 0x70,0x00, 0x10,0x70, -/* @la1 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x08,0x40, 0x08,0x80, 0xFF,0xF0, -0x09,0x00, 0x0A,0x00, 0x00,0x00, 0x12,0x00, -0x91,0x80, 0x50,0x70, 0x70,0x00, 0x10,0x30, -/* @la2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x3F,0xF0, 0x20,0x10, 0x3F,0xF0, -0x00,0x00, 0x27,0xC0, 0x24,0x50, 0xFF,0xF0, -0x24,0x50, 0x27,0xC0, 0x20,0x00, 0x0F,0xE0, -/* @la3 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x1F,0x80, 0x11,0x00, 0xFF,0xF0, -0x11,0x20, 0x1F,0x90, 0x22,0x00, 0x22,0xF0, -0xFE,0x90, 0x22,0x90, 0x22,0x90, 0xFE,0x90, -/* @la4 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x48,0x80, 0x48,0x80, -0x7F,0xF0, 0x00,0x00, 0x22,0x00, 0x22,0xF0, -0xFE,0x90, 0x22,0x90, 0x22,0x90, 0xFE,0x90, -/* @la5 (12x12,V)@ [suki software]*/ -0x22,0x40, 0x2A,0x40, 0xA6,0x40, 0x63,0xF0, -0x26,0x40, 0x2A,0x40, 0x20,0x00, 0x27,0x80, -0x24,0xB0, 0x24,0xC0, 0xFF,0xF0, 0x24,0xA0, -/* @la6 (12x12,V)@ [suki software]*/ -0x3F,0xE0, 0x20,0x40, 0x20,0x40, 0x3F,0xC0, -0x10,0x40, 0x10,0x80, 0xFF,0xF0, 0x11,0x00, -0x10,0x00, 0x13,0xC0, 0x90,0x30, 0x70,0x00, -/* @lai0 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x20,0x40, 0x24,0x40, 0x26,0x40, -0x25,0xD0, 0xFC,0x60, 0x24,0x40, 0x2F,0xF0, -0x24,0x40, 0x24,0x60, 0xFC,0xD0, 0x27,0x40, -/* @lai1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x01,0x00, 0x21,0x00, 0x21,0x00, -0x29,0x10, 0x25,0x20, 0x23,0x40, 0xFF,0xF0, -0x21,0x80, 0x23,0x40, 0x2D,0x20, 0x29,0x10, -/* @lai2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x20,0x00, 0x2F,0x10, 0x29,0x60, -0xFF,0xF0, 0x29,0x40, 0x2F,0x30, 0x24,0x00, -0x08,0x00, 0x1F,0xF0, 0xE8,0x00, 0x29,0xF0, -/* @lan0 (12x12,V)@ [suki software]*/ -0x20,0x00, 0x20,0x00, 0x27,0x80, 0x20,0x30, -0xF0,0x20, 0x2F,0xE0, 0x20,0xB0, 0x21,0x20, -0x2E,0x30, 0xF4,0x20, 0x26,0x20, 0x25,0xB0, -/* @lan1 (12x12,V)@ [suki software]*/ -0x01,0x40, 0x22,0x40, 0x24,0x40, 0x38,0x50, -0xFF,0x70, 0x30,0xD0, 0x2D,0x50, 0x02,0x50, -0x24,0x40, 0x38,0x50, 0xFF,0x60, 0x30,0x40, -/* @lan2 (12x12,V)@ [suki software]*/ -0x10,0x20, 0x10,0xC0, 0x13,0x00, 0xFF,0xF0, -0x12,0x00, 0x11,0x80, 0x08,0x00, 0x48,0x80, -0x38,0x80, 0x08,0x80, 0x08,0x80, 0x18,0x80, -/* @lan3 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x12,0x00, 0x18,0x00, 0x48,0x80, 0x28,0x80, -0x18,0x80, 0x08,0x80, 0x08,0x80, 0x18,0x80, -/* @lan4 (12x12,V)@ [suki software]*/ -0x10,0x00, 0x20,0x00, 0xC7,0x30, 0x40,0x20, -0x60,0x20, 0x5F,0xB0, 0x40,0x20, 0x50,0xA0, -0x23,0x20, 0xCC,0x30, 0x44,0x20, 0x66,0x20, -/* @lan5 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x1F,0xF0, 0x80,0x00, 0x4B,0x90, -0x0A,0x90, 0x4B,0xA0, 0x4A,0xC0, 0x7F,0xF0, -0x4A,0xC0, 0x4B,0xA0, 0x4A,0x90, 0x4B,0x90, -/* @lan6 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x04,0x00, 0x04,0x40, 0x44,0x40, -0x24,0x40, 0x14,0x40, 0x04,0x40, 0x04,0x40, -0x0C,0x40, 0x14,0x40, 0xE4,0x40, 0x44,0x40, -/* @lan7 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x84,0x30, 0x61,0xC0, 0x0E,0x00, -0x00,0x00, 0x9F,0xF0, 0x4A,0x40, 0x0B,0x50, -0x4A,0xE0, 0x5F,0xF0, 0x4A,0xE0, 0x4B,0x50, -/* @lan8 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x84,0x00, 0x67,0xF0, 0x40,0x00, -0x00,0x10, 0x3F,0xF0, 0x88,0x00, 0x6B,0xC0, -0x0B,0x50, 0x4A,0xE0, 0x5F,0xF0, 0x4A,0xE0, -/* @lan9 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x80, 0xFF,0xF0, 0x11,0x00, -0x12,0x00, 0x00,0x00, 0x7B,0xF0, 0x02,0x00, -0xFE,0x10, 0x0A,0xE0, 0x32,0x10, 0xF2,0x00, -/* @lan10 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x78,0x00, 0x03,0xF0, -0x02,0x00, 0xFE,0x00, 0x06,0x00, 0x0A,0xF0, -0xF2,0x00, 0x22,0x00, 0x32,0x00, 0x2F,0xF0, -/* @lan11 (12x12,V)@ [suki software]*/ -0x07,0x00, 0x00,0x00, 0xFF,0xF0, 0x08,0x00, -0x2F,0x10, 0x29,0x60, 0xFF,0xF0, 0x29,0x40, -0x2F,0x20, 0x10,0x00, 0x2F,0xF0, 0xC8,0x00, -/* @lan12 (12x12,V)@ [suki software]*/ -0x04,0x40, 0x0C,0xC0, 0x75,0x40, 0x26,0x40, -0x08,0x40, 0x00,0x00, 0x7B,0xE0, 0x02,0x00, -0xFE,0x10, 0x0A,0xE0, 0x12,0x10, 0xE2,0x00, -/* @lan13 (12x12,V)@ [suki software]*/ -0x07,0x00, 0x00,0x10, 0xFF,0xE0, 0x04,0x20, -0x18,0x10, 0x00,0x00, 0x44,0x40, 0x24,0x40, -0x1C,0x40, 0x04,0x40, 0x0C,0x40, 0x14,0x40, -/* @lan14 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x04,0x30, 0x81,0xC0, 0x66,0x00, -0x00,0x00, 0x3F,0x70, 0x00,0x40, 0xFF,0x70, -0x04,0x40, 0x18,0x40, 0xF0,0x70, 0x14,0x40, -/* @lang0 (12x12,V)@ [suki software]*/ -0x22,0x00, 0x22,0x00, 0x3F,0xF0, 0x22,0x00, -0x22,0x00, 0x00,0x00, 0x3F,0xF0, 0x24,0x80, -0x24,0xC0, 0xA4,0xA0, 0x64,0x90, 0x24,0xA0, -/* @lang1 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x11,0x80, 0x16,0x00, 0xFF,0xF0, -0x12,0x00, 0x11,0x00, 0xBF,0xF0, 0x64,0xA0, -0x24,0x90, 0x3F,0x80, 0x00,0x00, 0x3F,0xF0, -/* @lang2 (12x12,V)@ [suki software]*/ -0x84,0x20, 0x48,0x40, 0x31,0x80, 0x2E,0x00, -0xC3,0xF0, 0x00,0x00, 0x3F,0xF0, 0x24,0x80, -0x64,0xC0, 0xA4,0xB0, 0x24,0x80, 0x24,0x90, -/* @lang3 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x3F,0xF0, 0x20,0x00, -0x27,0xF0, 0x35,0x40, 0x2D,0x50, 0xA7,0xC0, -0x60,0x00, 0x2F,0xF0, 0x28,0x00, 0x28,0x80, -/* @lang4 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x3F,0xF0, 0x29,0x00, 0xA9,0x00, -0x69,0x50, 0x29,0x20, 0x3F,0x10, 0x00,0x00, -0x00,0x00, 0x7F,0xF0, 0x40,0x00, 0x42,0x10, -/* @lang5 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x3F,0xF0, 0x29,0x00, 0xA9,0x10, -0x69,0x60, 0x29,0x30, 0x3F,0x00, 0x00,0x00, -0x00,0x10, 0x7F,0xE0, 0x44,0x80, 0x44,0x80, -/* @lang6 (12x12,V)@ [suki software]*/ -0x10,0x20, 0x0C,0x20, 0x80,0x70, 0x63,0x80, -0x0C,0x00, 0x00,0x00, 0x3F,0xF0, 0x29,0x00, -0xA9,0x80, 0x69,0x60, 0x29,0x10, 0x29,0x20, -/* @lao0 (12x12,V)@ [suki software]*/ -0x10,0x80, 0x10,0x80, 0x11,0x00, 0xFF,0xF0, -0x12,0x00, 0x10,0x00, 0x26,0x40, 0x24,0x40, -0xFC,0x50, 0x27,0xE0, 0x24,0x40, 0xFC,0x40, -/* @lao1 (12x12,V)@ [suki software]*/ -0x20,0x00, 0x26,0x00, 0x24,0x80, 0x24,0x80, -0x24,0x80, 0xF4,0x90, 0x27,0xE0, 0x24,0x80, -0x24,0x80, 0x24,0x80, 0xF4,0x80, 0x24,0xF0, -/* @lao2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x08,0x20, 0x30,0xA0, 0x21,0x20, -0x2E,0x20, 0x22,0x20, 0x22,0x20, 0xA2,0x20, -0x6F,0xF0, 0x22,0x20, 0x22,0x20, 0x22,0x20, -/* @lao3 (12x12,V)@ [suki software]*/ -0x02,0x10, 0x22,0x10, 0x22,0x20, 0x22,0x20, -0x22,0x40, 0x22,0x70, 0xFE,0x90, 0x23,0x10, -0x23,0x20, 0x22,0x20, 0x26,0x40, 0x2A,0x40, -/* @lao4 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x02,0x00, 0x0F,0xF0, 0x38,0x10, -0xE2,0x20, 0x52,0x20, 0x12,0xC0, 0x12,0x70, -0xFE,0x90, 0x13,0x10, 0x12,0x20, 0x06,0x60, -/* @lao5 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x08,0x80, 0xFF,0x50, 0x48,0x20, -0x08,0xD0, 0x0F,0x00, 0x12,0x10, 0x12,0x20, -0x12,0x70, 0xFE,0x90, 0x13,0x10, 0x16,0x20, -/* @lao6 (12x12,V)@ [suki software]*/ -0x4F,0xF0, 0x48,0xA0, 0x7F,0x20, 0x48,0x20, -0x7F,0xA0, 0x48,0xA0, 0x4F,0xF0, 0x08,0x80, -0x31,0x70, 0xEA,0x40, 0x24,0x40, 0x2A,0x40, -/* @lao7 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x07,0x00, 0x00,0x30, 0xFF,0xE0, -0x04,0x10, 0x18,0x40, 0x08,0x80, 0x30,0xF0, -0xE9,0x40, 0x26,0x40, 0x26,0x40, 0x29,0x40, -/* @lao8 (12x12,V)@ [suki software]*/ -0x10,0x20, 0x0C,0x30, 0x81,0xC0, 0x6E,0x00, -0x00,0x00, 0x26,0x40, 0x24,0x40, 0xFC,0x50, -0x25,0xE0, 0x24,0x40, 0x24,0x40, 0xFC,0x40, -/* @le0 (12x12,V)@ [suki software]*/ -0x20,0x10, 0x23,0xD0, 0xFA,0x50, 0x2A,0x50, -0x2F,0xF0, 0x2A,0x50, 0xFA,0x50, 0x23,0xD0, -0x28,0x00, 0x08,0x10, 0xFF,0xE0, 0x08,0x00, -/* @le1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x02,0x10, 0x3F,0x30, -0x22,0xE0, 0x22,0x40, 0x22,0x00, 0x62,0x00, -0x5F,0xF0, 0x42,0x00, 0xC2,0x00, 0xC2,0x40, -/* @lei0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x30,0x00, 0x20,0xF0, 0xAA,0x90, -0xAA,0x90, 0xAA,0x90, 0xA0,0x90, 0xFF,0xF0, -0xA0,0x90, 0xAA,0x90, 0xAA,0x90, 0xAA,0x90, -/* @lei1 (12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0xF7,0xF0, 0x24,0x80, -0x24,0x80, 0x24,0x80, 0x18,0x00, 0x55,0x70, -0x55,0x50, 0x50,0x50, 0x7F,0x70, 0x55,0x50, -/* @lei2 (12x12,V)@ [suki software]*/ -0x41,0x00, 0x46,0x00, 0x55,0x30, 0x54,0xA0, -0x55,0x20, 0xF4,0xA0, 0x54,0x20, 0x5F,0xB0, -0x54,0x20, 0xF5,0x20, 0x54,0xA0, 0x55,0x20, -/* @lei3 (12x12,V)@ [suki software]*/ -0x04,0x80, 0x44,0x80, 0x48,0xB0, 0x48,0xD0, -0x5F,0x90, 0x72,0x90, 0x52,0x90, 0x52,0x00, -0x52,0x80, 0x52,0x90, 0x52,0xF0, 0x5F,0x90, -/* @lei4 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0xF8,0x00, -0xA9,0x20, 0xAB,0x60, 0xAD,0x60, 0xF9,0xA0, -0xA9,0x30, 0xA9,0x20, 0xAA,0xA0, 0xA8,0x60, -/* @lei5 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x1F,0xF0, 0xE0,0x00, -0x41,0xF0, 0x01,0x20, 0x7D,0xF0, 0x55,0x20, -0x55,0xF0, 0x7C,0x00, 0x55,0xF0, 0x55,0x20, -/* @lei6 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x80, 0x01,0xD0, 0x06,0x90, -0x10,0x90, 0x31,0xD0, 0x50,0x90, 0x91,0xB0, -0x12,0xD0, 0x14,0x90, 0x50,0x90, 0x3A,0x90, -/* @lei7 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x08,0x40, 0x7F,0xF0, 0x08,0x80, -0x01,0x00, 0x18,0x00, 0x55,0x70, 0x55,0x50, -0x50,0x50, 0x7F,0x70, 0x50,0x50, 0x55,0x50, -/* @lei8 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x48,0x80, -0x48,0x80, 0x7F,0xF0, 0x00,0x00, 0x08,0x00, -0x08,0x00, 0xFF,0xF0, 0x08,0x00, 0x08,0x00, -/* @lei9 (12x12,V)@ [suki software]*/ -0x01,0x40, 0x11,0x40, 0x92,0x40, 0x52,0x40, -0x34,0x40, 0x14,0x40, 0x18,0x50, 0xFF,0xE0, -0x18,0x50, 0x14,0x40, 0x34,0x40, 0x52,0x40, -/* @lei10 (12x12,V)@ [suki software]*/ -0x10,0x20, 0x0C,0x20, 0x80,0xF0, 0x67,0x00, -0x18,0x00, 0x00,0x00, 0x7F,0xF0, 0x44,0x40, -0x44,0x40, 0x44,0x40, 0x44,0x40, 0x44,0x40, -/* @leng0 (12x12,V)@ [suki software]*/ -0x10,0x20, 0x10,0xC0, 0x13,0x00, 0xFF,0xF0, -0x12,0x00, 0x15,0x50, 0x24,0x90, 0x27,0x20, -0x24,0xD0, 0xFC,0x40, 0x24,0x50, 0x26,0x60, -/* @leng1 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x11,0x80, 0x16,0x00, 0xFF,0xF0, -0x14,0x00, 0x02,0x00, 0x79,0x00, 0x49,0x00, -0x49,0x10, 0x7D,0xE0, 0x4B,0x20, 0x79,0x20, -/* @leng2 (12x12,V)@ [suki software]*/ -0x40,0x40, 0x38,0x70, 0x13,0x80, 0x0C,0x00, -0x02,0x80, 0x04,0x80, 0x08,0x80, 0x30,0x90, -0xC4,0x80, 0x23,0x80, 0x10,0x90, 0x08,0xE0, -/* @li0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x30, 0x7F,0xC0, 0x40,0x00, -0x5F,0xD0, 0x54,0x90, 0x54,0x90, 0x54,0x90, -0x5F,0xF0, 0x54,0x90, 0x54,0x90, 0x54,0x90, -/* @li1 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x51,0x40, 0x52,0x40, 0x54,0x40, -0x58,0x40, 0xFF,0x50, 0x98,0x60, 0x96,0xF0, -0x90,0x60, 0x00,0x50, 0x3C,0x40, 0x01,0x40, -/* @li2 (12x12,V)@ [suki software]*/ -0x22,0x00, 0xA4,0x00, 0xA8,0x20, 0xB0,0xC0, -0xFF,0x40, 0xB0,0x40, 0xA8,0x40, 0xA4,0x40, -0x21,0xF0, 0x00,0x40, 0x7C,0x40, 0x02,0x40, -/* @li3 (12x12,V)@ [suki software]*/ -0x02,0x20, 0x12,0x20, 0x54,0x20, 0x58,0x40, -0x7F,0x60, 0x94,0x90, 0x95,0x10, 0x09,0x70, -0x32,0x90, 0xE4,0x60, 0x38,0x40, 0x22,0x20, -/* @li4 (12x12,V)@ [suki software]*/ -0x18,0x00, 0x28,0x00, 0xC8,0x30, 0x6B,0xA0, -0x58,0xA0, 0x4D,0xB0, 0x6A,0xE0, 0x5A,0xA0, -0x2A,0xB0, 0xCD,0xA0, 0x68,0xA0, 0x5B,0xA0, -/* @li5 (12x12,V)@ [suki software]*/ -0x44,0x20, 0x28,0x40, 0x11,0x80, 0x2E,0x00, -0xC1,0xF0, 0x00,0x00, 0x7F,0xA0, 0x49,0x20, -0x49,0x20, 0x7F,0xF0, 0x49,0x20, 0x49,0x20, -/* @li6 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x20,0x00, 0x20,0x70, 0x2F,0x40, -0x21,0x50, 0x33,0x60, 0xB5,0x40, 0x69,0xC0, -0x29,0x40, 0x35,0x60, 0x33,0x50, 0x21,0x40, -/* @li7 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x04,0x30, 0x81,0xC0, 0x66,0x00, -0x00,0x00, 0x20,0x70, 0x2F,0x40, 0x21,0x50, -0xAB,0x60, 0x65,0xC0, 0x2D,0x40, 0x23,0x50, -/* @li8 (12x12,V)@ [suki software]*/ -0x22,0x00, 0x22,0x00, 0x3F,0xF0, 0x22,0x10, -0x22,0x10, 0x00,0x00, 0x7F,0xA0, 0x49,0x20, -0x49,0x20, 0x7F,0xF0, 0x49,0x20, 0x49,0x20, -/* @li9 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x21,0x20, 0x22,0x20, 0x23,0x20, -0x25,0x20, 0x29,0x20, 0x31,0x20, 0xFF,0x70, -0x31,0xA0, 0x29,0x20, 0x25,0x20, 0x24,0x20, -/* @li10 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0xFF,0x20, 0x89,0x20, -0x89,0x20, 0x89,0x20, 0x89,0x20, 0xFF,0xF0, -0x89,0x20, 0x89,0x20, 0x89,0x20, 0x89,0x20, -/* @li11 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x1F,0xF0, 0xE4,0x90, 0x27,0xF0, -0x2C,0x90, 0x37,0xF0, 0x00,0x00, 0x7F,0x20, -0x49,0x20, 0x49,0x20, 0x7F,0xF0, 0x49,0x20, -/* @li12 (12x12,V)@ [suki software]*/ -0x10,0x20, 0x10,0x40, 0x10,0x80, 0x91,0x00, -0x73,0xF0, 0x1D,0x00, 0x10,0xC0, 0x00,0x00, -0x00,0x00, 0xFF,0xF0, 0x00,0x00, 0x00,0x00, -/* @li13 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x41,0x00, 0x49,0x10, 0x49,0x20, -0x49,0xC0, 0xFF,0xF0, 0x49,0x40, 0x49,0x30, -0x41,0x10, 0x40,0x00, 0xF7,0xF0, 0x40,0x00, -/* @li14 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x40,0x40, 0x49,0x40, 0x49,0xF0, -0x4A,0x40, 0xEA,0x40, 0x5C,0x70, 0x48,0x00, -0x48,0x40, 0x4A,0x40, 0xE9,0xF0, 0x4E,0x40, -/* @li15 (12x12,V)@ [suki software]*/ -0x20,0x00, 0x20,0x00, 0x2F,0x80, 0x29,0x00, -0x29,0x40, 0x29,0x20, 0x29,0x10, 0xFF,0xE0, -0x29,0x00, 0x29,0x00, 0x29,0x00, 0x29,0x00, -/* @li16 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x80,0x80, 0x9E,0x80, 0x92,0x80, -0x92,0x80, 0xFE,0x90, 0x92,0xA0, 0x93,0xF0, -0x92,0xC0, 0xFE,0xA0, 0x92,0x90, 0x92,0x80, -/* @li17 (12x12,V)@ [suki software]*/ -0x40,0x00, 0x4F,0xF0, 0x49,0x00, 0x48,0xE0, -0x48,0x40, 0x48,0x00, 0x4F,0xF0, 0x40,0x00, -0x4F,0xF0, 0x4A,0x00, 0x49,0xC0, 0x48,0x80, -/* @li18 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x40,0x00, -0x48,0x00, 0x48,0x00, 0x48,0x30, 0x4F,0xC0, -0x49,0x00, 0x49,0x00, 0x49,0x00, 0x49,0x00, -/* @li19 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x10, 0x7F,0xE0, 0x48,0x10, -0x4F,0xE0, 0x49,0x00, 0x49,0x00, 0x49,0xF0, -0x40,0x00, 0x08,0x00, 0x08,0x70, 0xFF,0x80, -/* @li20 (12x12,V)@ [suki software]*/ -0x40,0x80, 0x43,0x00, 0x4F,0xF0, 0x72,0x10, -0x42,0x10, 0x43,0xF0, 0x40,0x00, 0x3F,0x70, -0x21,0x00, 0x21,0x00, 0x5F,0xF0, 0x41,0x00, -/* @li21 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x40,0x00, -0x44,0x00, 0x44,0x00, 0x44,0x10, 0x44,0x60, -0x5F,0x80, 0x44,0x00, 0x44,0x00, 0x44,0x00, -/* @li22 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x04,0x10, 0x24,0x20, 0x24,0xC0, -0x27,0x00, 0x3F,0xF0, 0x44,0x80, 0x44,0x70, -0x44,0x20, 0x00,0x00, 0x1F,0xF0, 0x00,0x00, -/* @li23 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x1F,0xF0, 0xE8,0x00, -0x40,0x40, 0x5F,0x40, 0x52,0x40, 0x52,0x50, -0x7E,0x70, 0x53,0xF0, 0x52,0x60, 0x7E,0x50, -/* @li24 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x1F,0xF0, 0xE0,0x40, -0x40,0x80, 0x01,0x00, 0x46,0xC0, 0x78,0x30, -0x48,0xC0, 0x4F,0x00, 0x40,0x00, 0x1F,0xE0, -/* @li25 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x1F,0xF0, 0xF0,0x10, -0x44,0x60, 0x25,0x80, 0x3F,0xF0, 0x46,0x00, -0xC5,0xC0, 0x44,0x80, 0x00,0x00, 0x1F,0xE0, -/* @li26 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x40, 0x00,0xB0, 0x3F,0xC0, -0x21,0x10, 0x29,0x60, 0x29,0x80, 0xAF,0xF0, -0x71,0x40, 0x31,0x20, 0x20,0x00, 0x27,0xF0, -/* @li27 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x08,0x00, 0x08,0x00, 0x09,0x00, -0x08,0xC0, 0x08,0x70, 0x88,0x00, 0x68,0x00, -0x08,0x10, 0x08,0xE0, 0x0F,0x00, 0x0A,0x00, -/* @li28 (12x12,V)@ [suki software]*/ -0x22,0x00, 0x1A,0x70, 0x03,0x80, 0xFF,0xF0, -0x06,0x80, 0x1A,0x60, 0x02,0x30, 0x11,0x80, -0x10,0x70, 0x90,0x00, 0x70,0x10, 0x10,0xE0, -/* @li29 (12x12,V)@ [suki software]*/ -0x10,0x20, 0x0C,0x20, 0x80,0x70, 0x61,0x80, -0x06,0x00, 0x00,0x70, 0x7F,0x80, 0x44,0x00, -0x44,0x10, 0x44,0x60, 0x7F,0x80, 0x44,0x00, -/* @li30 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x08,0x00, 0x08,0x00, 0x2A,0x80, -0x2A,0x40, 0x2A,0x10, 0x2A,0x20, 0xFF,0xF0, -0x2A,0x20, 0x2A,0x30, 0x2A,0x40, 0x3E,0x80, -/* @li31 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x08,0x00, 0x08,0x00, 0x08,0x00, -0x08,0x00, 0x08,0x10, 0x08,0x60, 0xFF,0x80, -0x08,0x00, 0x08,0x00, 0x08,0x00, 0x08,0x00, -/* @li32 (12x12,V)@ [suki software]*/ -0x22,0x00, 0x22,0x00, 0x3F,0xF0, 0x22,0x10, -0x22,0x20, 0x00,0x00, 0x20,0x70, 0x2F,0x40, -0x31,0x50, 0xAB,0x60, 0x65,0xC0, 0x2B,0x50, -/* @li33 (12x12,V)@ [suki software]*/ -0x7F,0xE0, 0x40,0x80, 0x40,0x80, 0x7F,0xC0, -0x00,0x00, 0x7F,0xA0, 0x49,0x20, 0x49,0x20, -0x49,0x20, 0x7F,0xF0, 0x49,0x20, 0x49,0x20, -/* @liang0 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x1F,0xF0, 0xE0,0x00, -0x40,0x00, 0x4F,0xF0, 0x48,0x10, 0x48,0x60, -0x7F,0x80, 0x48,0x50, 0x48,0x60, 0x7F,0x80, -/* @lian0 (12x12,V)@ [suki software]*/ -0x40,0x10, 0x7F,0xF0, 0x49,0x10, 0x49,0x10, -0x49,0x20, 0x7F,0xF0, 0x48,0xA0, 0x88,0x80, -0x48,0x80, 0x38,0x80, 0x0F,0xF0, 0x18,0x80, -/* @lian1 (12x12,V)@ [suki software]*/ -0x20,0x80, 0x28,0x80, 0x26,0xF0, 0x24,0x00, -0x20,0x20, 0xF4,0xA0, 0x25,0xA0, 0x2E,0xA0, -0x24,0xA0, 0xF7,0xF0, 0x24,0xA0, 0x24,0xA0, -/* @lian2 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x82,0x00, 0x72,0x00, 0x23,0xF0, -0x00,0x40, 0x22,0x40, 0x27,0x40, 0x3A,0x40, -0xE2,0x40, 0x2F,0xF0, 0x22,0x40, 0x22,0x40, -/* @lian3 (12x12,V)@ [suki software]*/ -0x04,0x80, 0x1C,0x80, 0xE7,0xF0, 0x24,0x80, -0x24,0x80, 0x00,0x00, 0x3F,0xF0, 0x2A,0xA0, -0x3A,0xB0, 0xAF,0xF0, 0x6A,0xA0, 0x2F,0xF0, -/* @lian4 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x48,0x80, -0x4A,0xA0, 0x6A,0xB0, 0x5F,0xF0, 0x4A,0xA0, -0xCA,0xA0, 0x5F,0xF0, 0x6A,0xB0, 0x4A,0xA0, -/* @lian5 (12x12,V)@ [suki software]*/ -0x0E,0x00, 0x00,0x00, 0xFF,0xF0, 0x10,0x00, -0x0D,0x00, 0x02,0x80, 0x04,0x80, 0x18,0x90, -0xE4,0x80, 0x23,0x80, 0x10,0x90, 0x08,0xA0, -/* @lian6 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x86,0x30, 0x61,0xC0, 0x0E,0x00, -0x41,0x00, 0x31,0xF0, 0x00,0x00, 0x21,0x40, -0x27,0x40, 0xF9,0x40, 0x27,0xF0, 0x21,0x40, -/* @lian7 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x31,0x00, 0x22,0x00, 0x2F,0xF0, -0x25,0x00, 0x21,0x00, 0xA1,0x00, 0x6F,0xF0, -0x21,0x00, 0x21,0x00, 0x21,0x00, 0x29,0x00, -/* @lian8 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x80, 0x08,0x70, 0x35,0x00, -0xC4,0xE0, 0x24,0x00, 0x14,0x20, 0x19,0xD0, -0x06,0x10, 0xFF,0x80, 0x48,0x40, 0x08,0x30, -/* @lian9 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x48,0x80, -0x48,0x80, 0x7F,0xF0, 0x04,0x40, 0x0A,0x30, -0x12,0x80, 0x22,0x70, 0xC2,0x20, 0x22,0x00, -/* @lian10 (12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0xF7,0xF0, 0x24,0x80, -0x24,0x80, 0x00,0x10, 0x22,0x00, 0x1B,0xF0, -0x20,0x40, 0x2E,0x40, 0xF2,0x40, 0x2F,0xF0, -/* @lian11 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x21,0x00, 0x22,0x10, 0x2C,0x00, -0x20,0x30, 0x3F,0x80, 0xA0,0x00, 0x60,0x20, -0x20,0x10, 0x3F,0x80, 0x20,0x00, 0x28,0x00, -/* @lian12 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x0E,0x00, 0x00,0x70, 0xFF,0xC0, -0x04,0x20, 0x18,0x10, 0x20,0x80, 0x23,0xD0, -0x2C,0x80, 0xF4,0x80, 0x27,0xF0, 0x24,0x80, -/* @lian13 (12x12,V)@ [suki software]*/ -0x04,0x40, 0x0C,0xC0, 0x75,0x40, 0x26,0x40, -0x0C,0x40, 0x00,0x00, 0x20,0x00, 0x24,0x80, -0x27,0xB0, 0xFC,0x80, 0x24,0x80, 0x27,0xF0, -/* @liang1 (12x12,V)@ [suki software]*/ -0x24,0x10, 0x1C,0xE0, 0x07,0x00, 0xFF,0xF0, -0x0D,0x00, 0x34,0xC0, 0x00,0x00, 0x3F,0xF0, -0x24,0x80, 0xA4,0xC0, 0x64,0xB0, 0x24,0x80, -/* @liang2 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x40,0x70, 0x39,0x80, 0x16,0x00, -0x20,0x00, 0x20,0x30, 0x27,0x90, 0x24,0x80, -0xA4,0x80, 0x64,0xF0, 0x24,0x80, 0x24,0xA0, -/* @liang3 (12x12,V)@ [suki software]*/ -0x24,0x40, 0x14,0x40, 0x87,0x40, 0x48,0x40, -0x11,0x40, 0x01,0x50, 0x9A,0x60, 0x85,0xF0, -0x98,0x60, 0xE0,0x50, 0x82,0x40, 0x81,0x40, -/* @liang4 (12x12,V)@ [suki software]*/ -0x44,0x00, 0x34,0x40, 0x87,0x40, 0x69,0x40, -0x10,0xC0, 0x0A,0x50, 0xB2,0x60, 0x85,0xF0, -0xF8,0x60, 0x84,0x50, 0x82,0xC0, 0xFD,0x40, -/* @liang5 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x3F,0xF0, -0x29,0x00, 0x29,0x00, 0xA9,0xC0, 0x69,0x20, -0x29,0x10, 0x29,0x20, 0x3F,0x40, 0x00,0xC0, -/* @liang6 (12x12,V)@ [suki software]*/ -0x40,0x00, 0x4F,0xF0, 0x48,0x10, 0x48,0x20, -0x48,0xC0, 0x7F,0x00, 0x49,0x00, 0x48,0x90, -0x48,0x60, 0x7F,0x80, 0x48,0x80, 0x48,0x60, -/* @liang7 (12x12,V)@ [suki software]*/ -0x21,0x10, 0x27,0x10, 0x39,0x10, 0xE7,0xF0, -0x21,0x20, 0x21,0x20, 0x4F,0xF0, 0x48,0x30, -0x7F,0xC0, 0x48,0x50, 0x48,0x20, 0x7F,0xC0, -/* @liang8 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x02,0x00, 0x02,0x00, 0xFB,0xE0, -0xAA,0xA0, 0xAA,0xA0, 0xAA,0xA0, 0xAB,0xF0, -0xAA,0xA0, 0xAA,0xA0, 0xAA,0xA0, 0xFB,0xE0, -/* @liang9 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x3F,0xF0, 0x22,0x10, 0x22,0x10, -0x3F,0xF0, 0x00,0x00, 0x20,0x00, 0x27,0xB0, -0x24,0x80, 0xA4,0x80, 0x64,0xF0, 0x24,0x80, -/* @liang10 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x41,0x80, 0x41,0x00, 0x41,0x00, -0x5D,0x00, 0x55,0x70, 0x55,0x40, 0xD5,0x40, -0x55,0x40, 0x55,0x70, 0x5D,0x00, 0x41,0x00, -/* @liang11 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x84,0x00, 0x74,0x00, 0x27,0xF0, -0x00,0x00, 0x00,0x10, 0x10,0x00, 0x17,0xD0, -0x94,0x80, 0x54,0x80, 0x74,0xF0, 0x14,0x80, -/* @liao0 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x80, 0xFF,0xF0, 0x12,0x00, -0x05,0x00, 0x32,0x00, 0x2F,0xD0, 0x2D,0x40, -0xF5,0x40, 0x35,0x70, 0x2D,0x40, 0x2F,0xD0, -/* @liao1 (12x12,V)@ [suki software]*/ -0x40,0x10, 0x7F,0xF0, 0x49,0x10, 0x49,0x10, -0x7F,0xF0, 0x40,0x20, 0x7F,0xE0, 0x40,0x20, -0x40,0x40, 0x9F,0xF0, 0x80,0x00, 0x3F,0xF0, -/* @liao2 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x1F,0xF0, 0xE8,0x80, -0x51,0x00, 0x2A,0x00, 0x27,0xF0, 0x2A,0xA0, -0xF2,0xA0, 0x32,0xB0, 0x2A,0xA0, 0x27,0xF0, -/* @liao3 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x06,0x80, 0x01,0x10, 0x3F,0xE0, -0x20,0x00, 0x24,0x00, 0x24,0x00, 0xA4,0x00, -0x64,0x00, 0x24,0xF0, 0x25,0x00, 0x26,0x00, -/* @liao4 (12x12,V)@ [suki software]*/ -0x07,0x00, 0x00,0x00, 0xFF,0xF0, 0x04,0x20, -0x09,0x10, 0x12,0x00, 0x27,0xE0, 0x2D,0x50, -0x35,0x40, 0xE5,0x70, 0x35,0x40, 0x2F,0xD0, -/* @liao5 (12x12,V)@ [suki software]*/ -0x10,0x20, 0x60,0x20, 0x51,0x20, 0x5A,0x50, -0x54,0x50, 0x50,0xA0, 0x5E,0xA0, 0xC1,0x50, -0x52,0xB0, 0x5A,0x90, 0x54,0x40, 0x50,0x40, -/* @liao6 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x82,0x00, 0x73,0xF0, 0x20,0x00, -0x00,0x00, 0x40,0x00, 0x40,0x10, 0x40,0x10, -0x48,0x10, 0x47,0xF0, 0x48,0x00, 0x50,0x00, -/* @liao7 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x84,0x30, 0x61,0xC0, 0x0E,0x00, -0x22,0x00, 0x34,0x00, 0x2F,0xD0, 0x35,0x40, -0xE5,0x40, 0x35,0x70, 0x2D,0x40, 0x2F,0xD0, -/* @le2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x40,0x00, 0x40,0x00, 0x40,0x00, -0x40,0x00, 0x40,0x00, 0x40,0x00, 0x4F,0xF0, -0x48,0x00, 0x50,0x00, 0x50,0x00, 0x60,0x00, -/* @liao8 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x12,0x00, 0x10,0x10, 0xF8,0x90, 0xA9,0x30, -0xAF,0x30, 0xFA,0xD0, 0xAA,0x90, 0xAB,0x50, -/* @liao9 (12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0xF7,0xF0, 0x24,0x80, -0x24,0x80, 0x0A,0x80, 0x24,0x00, 0x2F,0xE0, -0x35,0x20, 0xE5,0x30, 0x35,0x20, 0x2F,0xE0, -/* @liao10 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x51,0x20, -0x5A,0x30, 0x54,0x50, 0x51,0x50, 0xDE,0xA0, -0x41,0x20, 0x50,0xD0, 0x5A,0x90, 0x55,0x40, -/* @liao11 (12x12,V)@ [suki software]*/ -0x04,0x10, 0x24,0x60, 0x15,0x80, 0x0E,0x00, -0xFF,0xF0, 0x16,0x00, 0x25,0x80, 0x04,0x40, -0x42,0x40, 0x31,0xC0, 0x00,0x40, 0x00,0x40, -/* @lie0 (12x12,V)@ [suki software]*/ -0x40,0x80, 0x41,0x00, 0x42,0x00, 0x5D,0x00, -0x68,0x90, 0x48,0x60, 0x49,0x80, 0x5E,0x00, -0x48,0x00, 0x00,0x00, 0x1F,0xE0, 0x00,0x00, -/* @lie1 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x89,0x80, 0x91,0x80, 0xAA,0x80, -0xEA,0x90, 0xA4,0xB0, 0xA4,0xC0, 0xAA,0x80, -0xB1,0xE0, 0x80,0x90, 0x7C,0x80, 0x02,0x90, -/* @lie2 (12x12,V)@ [suki software]*/ -0x00,0x10, 0x81,0x10, 0x82,0x20, 0x8C,0x20, -0xF3,0x40, 0x90,0x80, 0x93,0x00, 0x9C,0x00, -0x90,0x00, 0x80,0x00, 0x3F,0x00, 0x00,0x50, -/* @lie3 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x04,0x80, 0x08,0x80, 0x10,0x80, -0x61,0x40, 0x21,0x40, 0x02,0x50, 0xFF,0xE0, -0x04,0x40, 0x0C,0x40, 0x58,0x40, 0x28,0x40, -/* @lie4 (12x12,V)@ [suki software]*/ -0x02,0x20, 0x44,0x40, 0x28,0x80, 0x19,0x00, -0x27,0xF0, 0xC2,0x00, 0x12,0x00, 0x12,0xF0, -0xFE,0x90, 0x12,0x90, 0x12,0x90, 0xFE,0x90, -/* @lin0 (12x12,V)@ [suki software]*/ -0x22,0x10, 0x22,0x10, 0x3F,0xE0, 0x22,0x20, -0x22,0x10, 0x08,0x60, 0x0B,0x80, 0xFF,0xF0, -0x09,0x20, 0x00,0xC0, 0x0B,0x00, 0xFF,0xF0, -/* @lin1 (12x12,V)@ [suki software]*/ -0x08,0x10, 0x08,0x60, 0x09,0x80, 0xFF,0xF0, -0x09,0x00, 0x08,0xC0, 0x00,0x10, 0x08,0x20, -0x08,0xC0, 0x0B,0x00, 0xFF,0xF0, 0x09,0x80, -/* @lin2 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x41,0x00, 0x47,0xF0, 0x7A,0x10, -0x43,0xF0, 0x42,0x40, 0x12,0xA0, 0x55,0x90, -0x38,0xB0, 0x10,0xC0, 0xFF,0x30, 0x18,0x90, -/* @lin3 (12x12,V)@ [suki software]*/ -0x30,0x80, 0x20,0x80, 0xAA,0x90, 0xAA,0xA0, -0xAB,0xF0, 0xAA,0xA0, 0xA0,0x90, 0xFE,0x00, -0xA0,0x90, 0xAA,0xA0, 0xAB,0xF0, 0xAA,0xA0, -/* @lin4 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x1F,0xF0, 0x00,0x00, 0x00,0x00, -0x7F,0xF0, 0x02,0x00, 0x0C,0x00, 0xF1,0xF0, -0x50,0x80, 0x10,0x80, 0x18,0xF0, 0x16,0x80, -/* @lin5 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x05,0x00, 0x09,0x00, 0x31,0x20, -0xC9,0x10, 0x27,0x20, 0x11,0x40, 0x19,0x80, -0x00,0x00, 0x7F,0xF0, 0x40,0x00, 0x44,0x20, -/* @lin6 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x3F,0xE0, 0xC9,0x20, 0x4F,0xE0, -0x59,0x20, 0x6F,0xE0, 0x10,0x40, 0x95,0xA0, -0x74,0x90, 0x18,0xE0, 0xFE,0xB0, 0x30,0x90, -/* @lin7 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x86,0x70, 0x61,0x80, 0x02,0x20, -0x08,0xC0, 0x0B,0x00, 0xFF,0xF0, 0x09,0x10, -0x00,0xA0, 0x08,0xC0, 0x0B,0x00, 0xFF,0xF0, -/* @lin8 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x40,0x70, 0x33,0x80, 0x0C,0x10, -0x40,0x10, 0x5F,0x50, 0x51,0x50, 0x5F,0x50, -0xDB,0x50, 0x5B,0x50, 0x5F,0x50, 0x51,0x50, -/* @lin9 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x08,0x00, 0x10,0x00, 0x3F,0x00, -0xC0,0xF0, 0x10,0x80, 0x52,0x80, 0x52,0x80, -0x52,0xB0, 0x7E,0x80, 0x92,0x80, 0x92,0xF0, -/* @lin10 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x20,0x40, 0x20,0x80, 0x20,0x80, -0x30,0xF0, 0x29,0x40, 0xA5,0x40, 0x62,0x40, -0x22,0x40, 0x25,0x40, 0x39,0x40, 0x20,0xF0, -/* @lin11 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x80, 0xFF,0xF0, 0x11,0x00, -0x12,0x00, 0x01,0x00, 0x02,0x00, 0x04,0x80, -0x18,0x80, 0xE4,0x80, 0x32,0x80, 0x08,0xB0, -/* @ling0 (12x12,V)@ [suki software]*/ -0x42,0x00, 0x42,0x00, 0x7F,0xF0, 0x42,0x10, -0x42,0x10, 0x01,0x00, 0x02,0xA0, 0x0C,0x90, -0x30,0x80, 0xC4,0x90, 0x33,0xA0, 0x08,0xC0, -/* @ling1 (12x12,V)@ [suki software]*/ -0x42,0x20, 0x42,0x20, 0x4A,0x40, 0x4A,0x90, -0x4B,0x20, 0xFA,0xE0, 0x4A,0x50, 0x5E,0x40, -0x4A,0x40, 0xFA,0x50, 0x4B,0x60, 0x4A,0x80, -/* @ling2 (12x12,V)@ [suki software]*/ -0x00,0x20, 0x30,0x20, 0x20,0x20, 0xAA,0x50, -0xAA,0x50, 0xAA,0x90, 0xA1,0x50, 0xFE,0x30, -0xA1,0x10, 0xAA,0x90, 0xAA,0x90, 0xAA,0x40, -/* @ling3 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x3D,0xF0, 0x04,0x20, 0x05,0xC0, -0xFC,0x20, 0x24,0x10, 0x25,0xF0, 0x04,0x00, -0x08,0x80, 0x34,0x90, 0xE3,0x90, 0x10,0xA0, -/* @ling4 (12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0x34,0x80, 0xD7,0xF0, -0x14,0x80, 0x14,0x80, 0x02,0x00, 0x04,0x80, -0x18,0x90, 0xE4,0x80, 0x13,0x90, 0x08,0xA0, -/* @ling5 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x0F,0xF0, 0x38,0x00, -0xE2,0x00, 0x44,0x80, 0x08,0x80, 0x10,0x90, -0x28,0x80, 0xE7,0x80, 0x12,0x90, 0x08,0xA0, -/* @ling6 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x52,0x40, 0x32,0x50, 0x1F,0xE0, -0x32,0x40, 0x50,0x40, 0x02,0x00, 0x04,0x80, -0x08,0x90, 0x34,0x80, 0xC3,0x80, 0x30,0x90, -/* @ling7 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x40,0x70, 0x3B,0x80, 0x10,0x00, -0x08,0xA0, 0x09,0x20, 0x2A,0x40, 0x2E,0xC0, -0x2D,0xA0, 0xF8,0x90, 0x2C,0xA0, 0x2C,0xC0, -/* @ling8 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x44,0x00, 0x54,0x20, -0x54,0xC0, 0x54,0x00, 0x54,0x30, 0x57,0xC0, -0x55,0x20, 0x54,0x10, 0x54,0x40, 0x55,0x80, -/* @ling9 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x44,0x40, 0x5A,0x20, -0x61,0xC0, 0x08,0x10, 0x29,0x20, 0x2E,0x40, -0x29,0xA0, 0xF8,0x90, 0x2C,0xA0, 0x2A,0xC0, -/* @ling10 (12x12,V)@ [suki software]*/ -0x00,0x10, 0x0F,0xF0, 0x00,0x10, 0xFF,0xE0, -0x00,0x20, 0x0F,0xE0, 0x02,0x80, 0x04,0xA0, -0x08,0x90, 0x34,0x80, 0xC2,0x90, 0x20,0xA0, -/* @ling11 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x0D,0x00, 0x31,0x20, 0xC5,0x30, -0x23,0x40, 0x11,0x80, 0x09,0x00, 0x40,0x00, -0x4F,0xF0, 0x58,0x00, 0x6B,0xF0, 0x48,0x10, -/* @ling12 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x80, 0x7E,0x80, -0x44,0x80, 0x44,0x80, 0x44,0xB0, 0x47,0xC0, -0x44,0x80, 0x44,0x80, 0x44,0x80, 0x44,0x80, -/* @ling13 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x01,0x00, 0x02,0x00, 0x02,0x80, -0x04,0x80, 0x08,0x90, 0x30,0x80, 0xC4,0x80, -0x22,0x80, 0x10,0x90, 0x08,0xA0, 0x05,0xC0, -/* @liu0 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x84,0x30, 0x61,0xC0, 0x06,0x00, -0x00,0x00, 0x7E,0xF0, 0x44,0x90, 0x98,0x90, -0x8C,0x90, 0x02,0xF0, 0x4C,0x90, 0x70,0x90, -/* @liu1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x42,0x00, 0x42,0x00, 0x7F,0xF0, -0x42,0x10, 0x40,0x10, 0x22,0x00, 0x26,0xF0, -0x2A,0x00, 0xB2,0xF0, 0x62,0x00, 0x2A,0xF0, -/* @liu2 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x11,0x80, 0x16,0x00, 0xFF,0xF0, -0x14,0x00, 0x02,0x00, 0x7E,0xF0, 0x44,0x90, -0x98,0x90, 0x8A,0x90, 0x44,0xF0, 0x78,0x90, -/* @liu3 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x40,0x80, 0x47,0xF0, 0x7A,0x10, -0x43,0xF0, 0x40,0x00, 0x22,0x00, 0x26,0xF0, -0x2A,0x00, 0xB2,0xF0, 0x62,0x00, 0x2A,0xF0, -/* @liu4 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x0C,0x00, 0xF1,0xF0, 0x14,0x00, -0x18,0x00, 0x10,0x10, 0x7F,0x00, 0x42,0xF0, -0x54,0x90, 0x89,0x90, 0x42,0xF0, 0x7C,0x90, -/* @liu5 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0x00, 0x42,0xF0, -0x54,0x90, 0x88,0x90, 0x86,0x90, 0x01,0xF0, -0x46,0x90, 0x78,0x90, 0x42,0x90, 0x41,0x90, -/* @liu6 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x10,0x00, 0x14,0x00, 0x92,0x10, -0x51,0x20, 0x30,0xC0, 0x13,0x60, 0x1C,0x10, -0x10,0x00, 0x00,0x00, 0x1F,0xE0, 0x00,0x00, -/* @liu7 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x04,0x80, 0x01,0x00, 0x3F,0xF0, -0x20,0x00, 0x2F,0xB0, 0x28,0xA0, 0xAB,0x20, -0x69,0x60, 0x20,0xB0, 0x29,0x20, 0x2E,0x20, -/* @liu8 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x20, 0x80,0x30, 0x61,0xC0, -0x06,0x00, 0x20,0x00, 0x22,0xF0, 0x26,0x00, -0xAA,0x00, 0x72,0xF0, 0x22,0x00, 0x26,0xF0, -/* @liu9 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x11,0x80, 0x16,0x00, 0xFF,0xF0, -0x14,0x00, 0x12,0x00, 0x3F,0xE0, 0x20,0x40, -0x40,0x90, 0x4F,0xE0, 0x00,0x00, 0x3F,0xF0, -/* @liu10 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x08,0x00, 0x08,0x00, 0x08,0x00, -0x08,0x30, 0x89,0xC0, 0x48,0x80, 0x78,0x00, -0x29,0x00, 0x08,0x80, 0x08,0x40, 0x08,0x30, -/* @long0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x08,0x00, 0x08,0x00, 0x08,0x00, -0x08,0x30, 0x08,0xC0, 0xFF,0x00, 0x08,0x10, -0x0F,0xF0, 0x48,0x40, 0x38,0x80, 0x0B,0x00, -/* @long1 (12x12,V)@ [suki software]*/ -0x20,0x00, 0x21,0x00, 0x23,0x00, 0x25,0x00, -0x25,0xF0, 0x29,0x50, 0xF3,0x50, 0x23,0x50, -0x3D,0x50, 0xAD,0x50, 0x75,0xF0, 0x25,0x00, -/* @long2 (12x12,V)@ [suki software]*/ -0x1F,0xE0, 0x10,0x40, 0x10,0x40, 0x10,0x40, -0x1F,0xE0, 0x08,0x00, 0x08,0x10, 0x08,0x60, -0xFF,0x90, 0x08,0x20, 0x4F,0xF0, 0x38,0x80, -/* @long3 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x19,0x00, 0xE1,0x00, 0x41,0x00, -0x61,0x30, 0x59,0xC0, 0x47,0x00, 0x49,0x00, -0x11,0xF0, 0xE1,0x10, 0x45,0x20, 0x63,0x40, -/* @long4 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x67,0xF0, 0x54,0x10, 0x55,0x80, -0x66,0x70, 0x41,0x40, 0x46,0x70, 0xDC,0x90, -0x46,0xD0, 0x45,0x70, 0x65,0x50, 0x56,0xD0, -/* @long5 ¡(12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x44,0x40, 0x5A,0x20, -0x61,0xC0, 0x00,0x20, 0x12,0xD0, 0x22,0x50, -0xD5,0x50, 0x4D,0xF0, 0x49,0x50, 0x55,0x50, -/* @long6 ¢(12x12,V)@ [suki software]*/ -0x00,0x00, 0x20,0x40, 0x20,0x80, 0x21,0x20, -0x22,0x20, 0x2D,0x20, 0xF1,0x20, 0x22,0xF0, -0x3F,0x20, 0x24,0xA0, 0xA4,0xA0, 0x68,0xA0, -/* @long7 £(12x12,V)@ [suki software]*/ -0x08,0x40, 0x08,0x40, 0x08,0x80, 0xFF,0xF0, -0x09,0x00, 0x02,0x00, 0x08,0x10, 0x08,0x60, -0xFF,0x80, 0x08,0x10, 0x4F,0xF0, 0x38,0x40, -/* @long8 ¤(12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x48,0x40, 0x54,0x20, -0x63,0xC0, 0x50,0x00, 0x10,0x10, 0x11,0xE0, -0xFE,0x10, 0x10,0x20, 0x9F,0xF0, 0x70,0x40, -/* @lou0 ¥(12x12,V)@ [suki software]*/ -0x10,0x40, 0x11,0x80, 0x16,0x00, 0xFF,0xF0, -0x14,0x00, 0x12,0x40, 0x00,0x40, 0x12,0x50, -0x54,0x70, 0x39,0xC0, 0xFE,0x40, 0x18,0x70, -/* @lou1 ¦(12x12,V)@ [suki software]*/ -0x00,0x00, 0x10,0x40, 0x10,0xC0, 0x91,0x40, -0x72,0x50, 0x14,0x60, 0x18,0xC0, 0xFF,0x40, -0x18,0x40, 0x14,0x50, 0x32,0x60, 0xD2,0x40, -/* @lou2 §(12x12,V)@ [suki software]*/ -0x08,0x40, 0x08,0x40, 0x08,0x80, 0xFF,0xF0, -0x09,0x00, 0x02,0x40, 0x49,0x50, 0x2A,0x70, -0x1D,0xC0, 0xFF,0x40, 0x08,0x40, 0x1C,0x50, -/* @lou3 ¨(12x12,V)@ [suki software]*/ -0x10,0x40, 0x22,0x60, 0xC2,0xA0, 0x4A,0xA0, -0x67,0x20, 0x52,0x30, 0x42,0x60, 0x1F,0xA0, -0x22,0x20, 0xC3,0x20, 0x47,0x30, 0x6A,0xA0, -/* @lou4 ©(12x12,V)@ [suki software]*/ -0x08,0x10, 0x04,0x10, 0x80,0xE0, 0x67,0x00, -0x00,0x00, 0x7F,0xF0, 0x52,0xF0, 0x52,0x80, -0x52,0xA0, 0x52,0x80, 0x53,0xF0, 0x52,0x80, -/* @lou5 ª(12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x48,0x20, 0x54,0x10, -0x62,0x20, 0x07,0xF0, 0x40,0x00, 0x47,0xF0, -0x44,0x40, 0x44,0x80, 0x7F,0x00, 0x44,0xD0, -/* @lu0 «(12x12,V)@ [suki software]*/ -0x20,0x00, 0x20,0x00, 0x20,0x00, 0x27,0xF0, -0x24,0x80, 0xF4,0x80, 0x24,0x80, 0x34,0x80, -0x2C,0x80, 0x24,0x80, 0xF4,0x80, 0x24,0x80, -/* @lu1 ¬(12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x07,0xF0, -0x04,0x80, 0x04,0x80, 0x04,0x80, 0x04,0x80, -0xFC,0x80, 0x24,0x80, 0x24,0x80, 0x24,0x80, -/* @lu2 ­(12x12,V)@ [suki software]*/ -0x00,0x00, 0x0F,0xF0, 0x09,0x00, 0x09,0x00, -0xF9,0x00, 0x29,0x00, 0x2F,0x00, 0x00,0x00, -0x4F,0xE0, 0x58,0x00, 0x6B,0xF0, 0x48,0x10, -/* @lu3 ®(12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x3F,0xF0, 0x20,0x00, -0x20,0x00, 0x27,0xF0, 0x24,0x80, 0xA4,0x80, -0x74,0x80, 0x2C,0x80, 0x24,0x80, 0x24,0x80, -/* @lu4 ¯(12x12,V)@ [suki software]*/ -0x01,0x00, 0x06,0x00, 0x00,0x10, 0xFF,0xE0, -0x04,0x20, 0x18,0x10, 0x00,0x00, 0x1F,0xF0, -0x11,0x00, 0x91,0x00, 0x71,0x00, 0x11,0x00, -/* @lu5 °(12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x80, 0xFF,0xF0, 0x11,0x00, -0x02,0x00, 0x1F,0xF0, 0x14,0x00, 0x14,0x20, -0x14,0x20, 0xFF,0x70, 0x55,0x20, 0x55,0x20, -/* @lu6 ±(12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x0F,0xF0, 0x08,0x00, -0x0A,0x00, 0x09,0x10, 0x08,0xA0, 0xF8,0x40, -0x29,0xA0, 0x2F,0x10, 0x2A,0x10, 0x28,0x00, -/* @lu7 ²(12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x1F,0xF0, 0x10,0x00, -0x14,0x40, 0x14,0x40, 0x14,0x40, 0xFE,0xF0, -0x55,0x40, 0x55,0x40, 0x55,0x40, 0x55,0x40, -/* @lu8 ³(12x12,V)@ [suki software]*/ -0x00,0x40, 0x08,0x40, 0x08,0x40, 0x1F,0x40, -0x35,0x50, 0xD5,0x50, 0x55,0x50, 0x5F,0x50, -0x55,0x50, 0x75,0x50, 0x55,0x50, 0x15,0x50, -/* @lu9 ´(12x12,V)@ [suki software]*/ -0x08,0x00, 0x48,0x00, 0x53,0xF0, 0x62,0xA0, -0xFA,0xB0, 0x63,0xE0, 0x5A,0xA0, 0x06,0xA0, -0x52,0xA0, 0x63,0xF0, 0xFA,0xA0, 0x62,0xA0, -/* @lu10 µ(12x12,V)@ [suki software]*/ -0x41,0x00, 0x42,0x00, 0x4F,0xF0, 0x74,0x10, -0x47,0xF0, 0x42,0x00, 0x92,0x80, 0x92,0x50, -0x92,0x20, 0x93,0xF0, 0x92,0x80, 0xFE,0x60, -/* @lu11 ¶(12x12,V)@ [suki software]*/ -0x00,0x00, 0x30,0x30, 0xA3,0x80, 0xAA,0xF0, -0xA6,0xA0, 0xAB,0xA0, 0xA4,0x50, 0xF8,0x90, -0xA3,0x20, 0xA9,0xA0, 0xA5,0x40, 0xA9,0xA0, -/* @lu12 ·(12x12,V)@ [suki software]*/ -0x00,0x00, 0x7E,0xF0, 0x44,0x00, 0x47,0xF0, -0x7C,0x80, 0x04,0x80, 0x08,0x40, 0x10,0xF0, -0xF0,0xC0, 0x2D,0x40, 0x22,0x40, 0x25,0x40, -/* @lu13 ¸(12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xE0, 0x40,0x00, 0x5F,0xF0, -0x40,0x00, 0x7F,0xC0, 0x04,0x20, 0x08,0x40, -0xF0,0xF0, 0x2D,0x40, 0x22,0x40, 0x25,0x40, -/* @lu14 ¹(12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x3F,0xF0, 0x25,0x00, -0x25,0x70, 0x25,0x20, 0x3F,0x20, 0xA5,0x20, -0x65,0x00, 0x3F,0xF0, 0x25,0x10, 0x25,0x10, -/* @lu15 º(12x12,V)@ [suki software]*/ -0x08,0x20, 0x84,0x30, 0x61,0xC0, 0x0E,0x00, -0x00,0xF0, 0x7C,0x00, 0x47,0xF0, 0x7C,0x40, -0x00,0x40, 0x08,0xF0, 0xF5,0x40, 0x22,0x40, -/* @lu16 »(12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x80, 0x91,0x00, 0x53,0xF0, -0x15,0x00, 0x18,0x80, 0x45,0x00, 0x54,0xD0, -0x54,0x20, 0x57,0xF0, 0x54,0x40, 0x54,0xA0, -/* @lu17 ¼(12x12,V)@ [suki software]*/ -0x04,0x00, 0x04,0x00, 0x44,0x00, 0x55,0x00, -0x54,0x90, 0x54,0x50, 0x54,0x20, 0x57,0xF0, -0x54,0x40, 0x54,0xA0, 0x55,0x10, 0x7F,0x10, -/* @lu18 ½(12x12,V)@ [suki software]*/ -0x7F,0xF0, 0x40,0x00, 0x48,0x40, 0x54,0x20, -0x63,0xC0, 0x11,0x30, 0x11,0x00, 0x11,0x00, -0x11,0x00, 0xFF,0xF0, 0x11,0x00, 0x11,0x00, -/* @lu19 ¾(12x12,V)@ [suki software]*/ -0x88,0x80, 0xC8,0xA0, 0xB1,0x20, 0xFD,0x50, -0x02,0x90, 0xD6,0x20, 0xA1,0x00, 0xFC,0x80, -0x08,0x80, 0x08,0x10, 0xFF,0xA0, 0x08,0x70, -/* @lv0 ¿(12x12,V)@ [suki software]*/ -0x00,0x10, 0x40,0x10, 0x5F,0x10, 0x41,0x20, -0x41,0x20, 0x7F,0x00, 0x01,0xF0, 0x00,0x00, -0x1F,0xF0, 0x11,0x00, 0x91,0x00, 0x71,0x00, -/* @lv1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0xF0, 0xFC,0x80, -0x88,0x80, 0x88,0x80, 0x88,0x80, 0x88,0x80, -0x88,0x80, 0x88,0x80, 0x88,0x80, 0xFC,0x80, -/* @lv2 (12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0x34,0x80, 0xD7,0xF0, -0x14,0x80, 0x14,0x80, 0x10,0x00, 0x00,0xF0, -0x7C,0x80, 0x44,0x80, 0x44,0x80, 0x44,0x80, -/* @lv3 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x1F,0xF0, 0xF0,0x00, -0x40,0x00, 0x00,0xF0, 0x7E,0x80, 0x44,0x80, -0x44,0x80, 0x44,0x80, 0x44,0x80, 0x44,0x80, -/* @lv4 (12x12,V)@ [suki software]*/ -0x10,0x00, 0x10,0x00, 0x9F,0xF0, 0x72,0x00, -0x12,0x00, 0x13,0xF0, 0x14,0x00, 0x08,0x00, -0x33,0xF0, 0xD2,0x80, 0x12,0x60, 0x12,0x50, -/* @lv5 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0xFF,0xF0, 0xA2,0x40, -0xA4,0xF0, 0xAD,0x00, 0xA2,0x00, 0xBF,0xE0, -0xAA,0xB0, 0xAA,0xA0, 0xAA,0xA0, 0xAA,0xA0, -/* @lv6 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0xFF,0xF0, 0xA4,0x20, -0xA4,0xA0, 0xB4,0xB0, 0xAD,0x60, 0xA6,0x20, -0xBF,0xE0, 0xA6,0x20, 0xAD,0x30, 0xB5,0x20, -/* @lv7 (12x12,V)@ [suki software]*/ -0x04,0x40, 0x0C,0xC0, 0x75,0x40, 0x26,0x40, -0x0C,0x00, 0x00,0x40, 0x49,0x40, 0x2A,0x70, -0x0C,0xD0, 0xFF,0x40, 0x0C,0x40, 0x2A,0x70, -/* @lv8 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x1F,0xF0, 0x10,0x00, -0x12,0x10, 0x12,0x00, 0x12,0x30, 0xFF,0x00, -0x54,0xA0, 0x54,0x90, 0x54,0x80, 0x54,0x90, -/* @lv9 (12x12,V)@ [suki software]*/ -0x00,0x20, 0x28,0x20, 0xCA,0x30, 0xAA,0xA0, -0xAA,0xA0, 0xAA,0xB0, 0xAA,0xA0, 0xAA,0xA0, -0xAB,0xF0, 0xA8,0x20, 0xA8,0x20, 0xAF,0xF0, -/* @lv10 (12x12,V)@ [suki software]*/ -0x04,0x40, 0x08,0x80, 0x11,0x00, 0xE7,0xF0, -0x58,0x00, 0x08,0x10, 0x2A,0x90, 0x2A,0x90, -0x2A,0x90, 0xFF,0xF0, 0x2A,0x90, 0x2A,0x90, -/* @lv11 (12x12,V)@ [suki software]*/ -0x00,0x10, 0x30,0x50, 0x28,0x90, 0x25,0x10, -0x20,0x10, 0x26,0x50, 0xAC,0xD0, 0x75,0x70, -0x26,0x50, 0x24,0xD0, 0x28,0x30, 0x25,0x10, -/* @lv12 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x04,0x30, 0x81,0xC0, 0x66,0x00, -0x00,0x10, 0x1F,0xE0, 0x12,0x00, 0x12,0x10, -0xFF,0x80, 0x54,0xA0, 0x54,0x90, 0x54,0x80, -/* @lv13 (12x12,V)@ [suki software]*/ -0x04,0x40, 0x0C,0xC0, 0xF5,0x40, 0x46,0x40, -0x0C,0x00, 0x04,0x00, 0x45,0x10, 0x54,0xA0, -0x54,0x40, 0x57,0xF0, 0x54,0x40, 0x54,0xA0, -/* @luan0 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x21,0x00, 0x22,0x30, 0x2C,0x00, -0x20,0x00, 0x3F,0x00, 0xA0,0x00, 0x60,0xF0, -0x20,0x00, 0x3F,0x00, 0x20,0x00, 0x28,0x00, -/* @luan1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x21,0x00, 0x22,0x00, 0x2C,0x20, -0x20,0xA0, 0x3F,0xA0, 0xA0,0xA0, 0x60,0xF0, -0x20,0xA0, 0x3F,0xA0, 0x20,0xA0, 0x28,0xA0, -/* @luan2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x21,0x10, 0x22,0x10, 0x2C,0x10, -0x24,0x90, 0x20,0x90, 0x3F,0x90, 0xA0,0x90, -0x60,0x90, 0x3F,0xB0, 0x20,0xD0, 0x28,0x90, -/* @luan3 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x84,0x30, 0x61,0xC0, 0x0E,0x00, -0x22,0x40, 0x2C,0x40, 0x20,0x40, 0x3F,0x50, -0xA0,0xF0, 0x60,0x60, 0x3F,0x50, 0x20,0x40, -/* @luan4 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x40, 0x7F,0xE0, 0x48,0x40, -0x47,0x40, 0x42,0xB0, 0xBF,0xC0, 0x80,0x00, -0x00,0x00, 0x7F,0xF0, 0x48,0x00, 0x47,0x40, -/* @luan5 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x44,0xF0, 0x44,0x80, 0x44,0x80, -0x7F,0x80, 0x84,0x80, 0x8C,0xF0, 0x04,0x00, -0x00,0x00, 0xFF,0xF0, 0x00,0x00, 0x00,0x00, -/* @lue0 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x08,0x40, 0x08,0x80, 0xFF,0xF0, -0x09,0x00, 0x0A,0x00, 0x18,0x00, 0x17,0xB0, -0x14,0x80, 0x94,0x80, 0x54,0xF0, 0x34,0x80, -/* @lue1 (12x12,V)@ [suki software]*/ -0x3F,0xF0, 0x22,0x10, 0x3F,0xF0, 0x22,0x10, -0x3F,0xF0, 0x04,0x80, 0x08,0x80, 0x31,0x70, -0xE9,0x40, 0x26,0x40, 0x24,0x40, 0x2A,0x40, -/* @lun0 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x12,0x00, 0x15,0x00, 0x02,0x00, 0x05,0xF0, -0x18,0x40, 0xE0,0x40, 0x10,0x80, 0x08,0x80, -/* @lun1 (12x12,V)@ [suki software]*/ -0x23,0x10, 0x25,0x10, 0x39,0x20, 0xE7,0xF0, -0x21,0x20, 0x21,0x40, 0x22,0x40, 0x04,0x00, -0x0B,0xF0, 0x30,0x40, 0xC0,0x40, 0x30,0x80, -/* @lun2 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x1F,0xF0, 0xF0,0x00, -0x41,0x00, 0x02,0x00, 0x04,0x00, 0x0B,0xF0, -0x10,0x40, 0xE0,0x40, 0x10,0x80, 0x09,0x80, -/* @lun3 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x02,0x00, 0x02,0x00, 0x04,0x00, -0x0B,0xF0, 0x10,0x20, 0x20,0x20, 0xC0,0x40, -0x20,0xC0, 0x11,0x80, 0x08,0x80, 0x0C,0x00, -/* @lun4 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x86,0x20, 0x60,0xF0, 0x03,0x00, -0x0C,0x00, 0x02,0x00, 0x04,0x00, 0x0B,0xF0, -0x30,0x40, 0xE0,0x40, 0x10,0x80, 0x08,0x80, -/* @lun5 (12x12,V)@ [suki software]*/ -0x04,0x40, 0x0C,0x60, 0x34,0xC0, 0xC5,0x40, -0x06,0x40, 0x0A,0x00, 0x04,0x00, 0x09,0xF0, -0x30,0x20, 0xC0,0x20, 0x20,0x40, 0x10,0x40, -/* @lun6 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x82,0x00, 0x73,0xF0, 0x20,0x00, -0x00,0x00, 0x02,0x10, 0x04,0x00, 0x0B,0xF0, -0x30,0x40, 0xC0,0x40, 0x20,0x80, 0x11,0x80, -/* @luo0 (12x12,V)@ [suki software]*/ -0x20,0x00, 0x20,0x00, 0x27,0x10, 0x25,0x10, -0x25,0x20, 0xFF,0x50, 0x25,0xC0, 0x25,0x40, -0x25,0x40, 0xFF,0x40, 0x25,0x50, 0x25,0x60, -/* @luo1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x1F,0x80, 0x11,0x00, 0xFF,0xF0, -0x11,0x20, 0x1F,0x90, 0x00,0x10, 0x7C,0x20, -0x55,0x20, 0x57,0x60, 0x7D,0xB0, 0x55,0x20, -/* @luo2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x10, 0x7E,0x10, 0x44,0x20, -0x44,0x40, 0x44,0xC0, 0x7F,0xA0, 0x45,0x10, -0x45,0x00, 0x7D,0x00, 0x45,0x10, 0x45,0x20, -/* @luo3 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x42,0x00, 0x33,0xF0, 0x00,0x00, -0x00,0x00, 0x78,0x80, 0x49,0x00, 0x7E,0x80, -0x4A,0x40, 0x4A,0x10, 0x7A,0x20, 0x4A,0xC0, -/* @luo4 (12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0xF4,0x80, 0x27,0xF0, -0x24,0x80, 0x00,0x80, 0x78,0x40, 0x49,0x80, -0x4F,0x40, 0x79,0x30, 0x49,0x00, 0x79,0x10, -/* @luo5 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x30,0x00, 0xCF,0x90, 0x49,0x10, -0x69,0x20, 0x59,0x50, 0x4F,0xC0, 0x59,0x40, -0x29,0x40, 0xCF,0x40, 0x49,0x40, 0x69,0x50, -/* @luo6 (12x12,V)@ [suki software]*/ -0x80,0x10, 0x9F,0x10, 0x81,0x20, 0x81,0x40, -0xFD,0x00, 0x01,0xF0, 0x00,0x00, 0xF9,0x20, -0xAB,0x60, 0xAD,0xA0, 0xF9,0x30, 0xA9,0x20, -/* @luo7 (12x12,V)@ [suki software]*/ -0x10,0x80, 0x11,0x00, 0x92,0x00, 0x77,0xF0, -0x19,0x80, 0x12,0x40, 0x00,0x80, 0x7E,0x80, -0x52,0xB0, 0x52,0xC0, 0x7F,0xF0, 0x52,0xE0, -/* @luo8 (12x12,V)@ [suki software]*/ -0x22,0x10, 0x29,0x90, 0x26,0x10, 0x20,0x60, -0x21,0x90, 0xF8,0x10, 0x21,0x30, 0x2E,0x30, -0x25,0x50, 0xF4,0x90, 0x25,0x50, 0x26,0x30, -/* @luo9 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x46,0x20, 0x30,0xF0, 0x07,0x00, -0x00,0x40, 0x08,0x40, 0x30,0xF0, 0xE8,0xA0, -0x25,0x20, 0x22,0x20, 0x25,0x20, 0x29,0x20, -/* @jia17 (12x12,V)@ [suki software]*/ -0x40,0x10, 0x5F,0x10, 0x41,0x20, 0x41,0x20, -0x7F,0x00, 0x01,0xF0, 0x04,0x00, 0x18,0x80, -0xF0,0xF0, 0x29,0x40, 0x26,0x40, 0x2A,0x40, -/* @luo10 (12x12,V)@ [suki software]*/ -0x04,0x40, 0x1C,0xC0, 0xE5,0x40, 0x46,0x40, -0x0C,0x40, 0x00,0x20, 0x08,0x40, 0x10,0xF0, -0xF9,0x40, 0x26,0x40, 0x26,0x40, 0x29,0x40, -/* @ma0 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x08,0x40, 0x0F,0xA0, 0xF8,0x30, -0x08,0xD0, 0x0F,0x00, 0x00,0x20, 0x40,0x20, -0x5F,0x20, 0x41,0x20, 0x41,0x20, 0x41,0x20, -/* @ma1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x10, 0x3F,0xF0, 0x24,0x20, -0x24,0xC0, 0x3F,0xF0, 0x24,0x80, 0xA4,0x40, -0x60,0x10, 0x24,0x60, 0x24,0x80, 0x3F,0xF0, -/* @ma2 (12x12,V)@ [suki software]*/ -0x42,0x00, 0x42,0x00, 0x7F,0xF0, 0x42,0x10, -0x42,0x10, 0x00,0x00, 0x40,0x20, 0x5F,0x20, -0x41,0x20, 0x41,0x20, 0x41,0x20, 0x41,0x20, -/* @ma3 (12x12,V)@ [suki software]*/ -0x40,0x80, 0x41,0x00, 0x47,0xF0, 0x7A,0x00, -0x42,0x00, 0x43,0xF0, 0x00,0x00, 0x40,0x20, -0x5F,0x20, 0x41,0x20, 0x41,0x20, 0x41,0x20, -/* @ma4 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x0F,0xC0, 0x08,0x80, 0xFF,0xF0, -0x08,0xA0, 0x0F,0x90, 0x40,0x20, 0x43,0x20, -0x5D,0x20, 0x41,0x20, 0x41,0x20, 0x47,0x20, -/* @ma5 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x20, 0x40,0x20, 0x40,0x20, -0x5F,0x20, 0x41,0x20, 0x41,0x20, 0x41,0x20, -0x41,0x20, 0x41,0x20, 0x7F,0x20, 0x01,0x20, -/* @ma6 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x10, 0xF0,0x10, 0x94,0x10, -0x95,0xD0, 0x94,0x50, 0xF4,0x50, 0x04,0x50, -0x04,0x50, 0xF4,0x50, 0x97,0xD0, 0x90,0x40, -/* @ma7 (12x12,V)@ [suki software]*/ -0x3F,0xF0, 0x20,0x40, 0x20,0x40, 0x3F,0xE0, -0x00,0x10, 0x3F,0xE0, 0x25,0x80, 0x3F,0xF0, -0xA5,0x10, 0x60,0xE0, 0x25,0x80, 0x3F,0xF0, -/* @ma8 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x3F,0xE0, 0x20,0x40, 0x20,0x40, -0x3F,0xE0, 0x00,0x00, 0x41,0x20, 0x5F,0xA0, -0x41,0x20, 0x41,0x20, 0x41,0x20, 0x41,0x20, -/* @mai0 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x04,0x00, 0x04,0x00, 0xFF,0xF0, -0x04,0x10, 0x04,0x10, 0x7F,0xA0, 0x49,0x20, -0x49,0x20, 0x7F,0xF0, 0x49,0x20, 0x49,0x20, -/* @mai1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x40,0x40, 0x44,0x40, -0x43,0x40, 0x50,0x40, 0x4C,0x50, 0x40,0x70, -0x5F,0xC0, 0x48,0x60, 0x40,0x50, 0x40,0x50, -/* @mai2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x02,0x00, 0x22,0x00, 0x2A,0x10, -0x2A,0x20, 0x2B,0xC0, 0x2A,0xC0, 0xFE,0xA0, -0x2A,0x90, 0x2A,0x90, 0x2A,0xA0, 0x2A,0xC0, -/* @mai3 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x04,0x20, 0x24,0x20, 0x24,0xA0, -0x24,0x60, 0x26,0x20, 0x25,0xA0, 0x24,0x70, -0xFF,0xA0, 0x24,0x30, 0x24,0x20, 0x25,0x20, -/* @mai4 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x82,0x00, 0x72,0x00, 0x23,0xF0, -0x00,0x00, 0x40,0x00, 0x40,0x30, 0x43,0xC0, -0x7C,0x00, 0x44,0x00, 0x44,0x10, 0x44,0x00, -/* @mai5 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x48,0x80, 0x48,0x80, -0x7F,0xF0, 0x00,0x00, 0x12,0x10, 0x13,0xE0, -0x90,0x00, 0x7F,0xF0, 0x41,0x00, 0x02,0x80, -/* @man0 (12x12,V)@ [suki software]*/ -0x7F,0xF0, 0x44,0x80, 0x44,0x80, 0x7F,0xF0, -0x00,0x00, 0x4B,0xF0, 0x4A,0x10, 0xFA,0x60, -0x4F,0x80, 0x4A,0x50, 0x4A,0x20, 0xFF,0xC0, -/* @man1 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x0C,0x00, 0xF1,0xF0, 0x10,0x00, -0x14,0x00, 0x18,0x00, 0x03,0x80, 0xFA,0xA0, -0xAB,0xB0, 0xAA,0xA0, 0xAA,0xA0, 0xAB,0xB0, -/* @man2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x22,0x00, 0x24,0x00, 0x38,0xF0, -0x20,0x90, 0x3F,0x90, 0xA0,0x90, 0x61,0xF0, -0x20,0x90, 0x3F,0x90, 0x20,0x90, 0x30,0xF0, -/* @man3 (12x12,V)@ [suki software]*/ -0x08,0x10, 0x86,0x10, 0x60,0xE0, 0x07,0x00, -0x20,0x00, 0x25,0xF0, 0x25,0x10, 0xF7,0xE0, -0x25,0x20, 0x25,0x10, 0x27,0xE0, 0xF5,0x20, -/* @man4 (12x12,V)@ [suki software]*/ -0x40,0x00, 0x40,0x00, 0x41,0xC0, 0x5D,0x40, -0x55,0x50, 0xF5,0xD0, 0x55,0x50, 0x5D,0x50, -0x55,0x50, 0xF5,0xD0, 0x55,0x50, 0x5D,0x40, -/* @man5 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x03,0x80, 0x02,0x80, 0xFA,0xA0, -0xAA,0xA0, 0xAB,0xB0, 0xAA,0xA0, 0xAA,0xA0, -0xAA,0xA0, 0xAB,0xA0, 0xAA,0xB0, 0xFA,0xA0, -/* @man6 (12x12,V)@ [suki software]*/ -0x0E,0x00, 0x00,0x00, 0xFF,0xF0, 0x10,0x00, -0x0C,0x00, 0x03,0x80, 0x02,0x80, 0xFA,0xA0, -0xAB,0xB0, 0xAA,0xA0, 0xAA,0xA0, 0xAB,0xB0, -/* @man7 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x04,0x30, 0x81,0xC0, 0x66,0x00, -0x00,0x00, 0x03,0x80, 0xFA,0xA0, 0xAB,0xB0, -0xAA,0xA0, 0xAA,0xA0, 0xAB,0xA0, 0xAA,0xB0, -/* @man8 á(12x12,V)@ [suki software]*/ -0x04,0x00, 0x84,0x00, 0x77,0xF0, 0x20,0x00, -0x00,0x00, 0x03,0x80, 0xFA,0xA0, 0xAA,0xB0, -0xAB,0xA0, 0xAA,0xA0, 0xAB,0xA0, 0xAA,0xB0, -/* @mang0 â(12x12,V)@ [suki software]*/ -0x22,0x00, 0x22,0x00, 0x22,0x00, 0x23,0xF0, -0x22,0x00, 0xFA,0x00, 0x22,0x00, 0x2A,0x00, -0x26,0x00, 0x22,0x00, 0xFA,0x00, 0x22,0x00, -/* @mang1 ã(12x12,V)@ [suki software]*/ -0x22,0x10, 0x21,0x90, 0x28,0x10, 0x26,0x60, -0x21,0x80, 0xFA,0x00, 0x22,0x00, 0x23,0xF0, -0x22,0x00, 0x2A,0x00, 0xF6,0x00, 0x22,0x00, -/* @mang2 ä(12x12,V)@ [suki software]*/ -0x20,0x00, 0x20,0x00, 0x20,0x00, 0x3D,0xF0, -0x25,0x50, 0x25,0x50, 0xA5,0x50, 0x65,0x50, -0x25,0x50, 0x25,0x50, 0x25,0x50, 0x25,0xF0, -/* @mang3 å(12x12,V)@ [suki software]*/ -0x08,0x00, 0x0F,0xF0, 0x48,0x10, 0x38,0x10, -0x08,0x10, 0x08,0x10, 0x00,0x00, 0x7F,0xF0, -0x49,0x00, 0x49,0x00, 0x4F,0xE0, 0x49,0x10, -/* @mang4 æ(12x12,V)@ [suki software]*/ -0x0E,0x00, 0x00,0x00, 0xFF,0xF0, 0x10,0x00, -0x0C,0x00, 0x10,0x00, 0x1F,0xF0, 0x10,0x00, -0x90,0x00, 0x50,0x00, 0x30,0x00, 0x10,0x00, -/* @mang5 ç(12x12,V)@ [suki software]*/ -0x00,0x40, 0x44,0x40, 0x44,0xA0, 0x44,0xA0, -0x45,0x20, 0xE6,0xF0, 0x5C,0x20, 0x44,0x20, -0x44,0x20, 0x54,0xF0, 0xEE,0x20, 0x45,0x20, -/* @mao0 è(12x12,V)@ [suki software]*/ -0x44,0x40, 0x28,0x80, 0x11,0x00, 0x2A,0x00, -0xC7,0xF0, 0x20,0x00, 0x23,0xF0, 0x22,0x20, -0xFE,0x20, 0x23,0xF0, 0x22,0x20, 0xFE,0x20, -/* @mao1 é(12x12,V)@ [suki software]*/ -0x20,0x00, 0x20,0x80, 0x24,0x80, 0x24,0x80, -0x24,0x80, 0xF4,0x90, 0x26,0xA0, 0x25,0xC0, -0x24,0xF0, 0xF5,0x80, 0x26,0x80, 0x26,0x80, -/* @mao2 ê(12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0xF4,0x80, 0x17,0xF0, -0x14,0x80, 0x14,0x80, 0x20,0x00, 0x23,0xF0, -0xFA,0x40, 0x22,0x40, 0x23,0xF0, 0xFA,0x40, -/* @mao3 ë(12x12,V)@ [suki software]*/ -0x00,0x20, 0x20,0x20, 0x22,0x20, 0x22,0x20, -0x22,0x20, 0x22,0x20, 0x3F,0xF0, 0x44,0x40, -0x44,0x40, 0x44,0x40, 0x44,0x40, 0x44,0x40, -/* @mao4 ì(12x12,V)@ [suki software]*/ -0x00,0x00, 0x04,0x00, 0x04,0x00, 0x44,0x10, -0x44,0x20, 0x44,0x40, 0x55,0x80, 0x4E,0x00, -0x47,0xF0, 0x4C,0x00, 0x54,0x00, 0x64,0x00, -/* @mao5 í(12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0xF7,0xF0, 0x24,0x80, -0x24,0x80, 0x24,0x80, 0x00,0x00, 0x7F,0xE0, -0x40,0x40, 0x8F,0xF0, 0x00,0x00, 0x3F,0xF0, -/* @mao6 î(12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x20, 0x3F,0xF0, 0x20,0x20, -0x20,0x40, 0x20,0x30, 0x5F,0xC0, 0x40,0x00, -0x40,0x00, 0x3F,0xF0, 0x20,0x00, 0x20,0x20, -/* @mao7 ï(12x12,V)@ [suki software]*/ -0x20,0x00, 0x20,0x00, 0x23,0xF0, 0x22,0x00, -0x22,0x00, 0xF2,0x00, 0x22,0x00, 0x22,0x00, -0x2F,0x80, 0xF2,0x70, 0x2A,0x10, 0x26,0x20, -/* @mao8 ð(12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0xF8,0x00, 0x83,0xF0, -0xAA,0x90, 0xAA,0x90, 0xAA,0x90, 0xAA,0x90, -0xAA,0x90, 0xAA,0x90, 0xAA,0x90, 0xAA,0x90, -/* @mao9 ñ(12x12,V)@ [suki software]*/ -0x1F,0xE0, 0x10,0x00, 0xFF,0xF0, 0x10,0x20, -0x1F,0xE0, 0x00,0x00, 0x7C,0x00, 0x41,0xF0, -0x55,0x50, 0x55,0x50, 0x55,0x50, 0x55,0x50, -/* @mao10 ò(12x12,V)@ [suki software]*/ -0x42,0x40, 0x52,0x40, 0x4C,0x90, 0x65,0x20, -0x9B,0x40, 0x88,0xF0, 0x10,0x00, 0x3F,0x80, -0x24,0x80, 0x64,0xF0, 0xA4,0x80, 0x24,0xF0, -/* @mao11 ó(12x12,V)@ [suki software]*/ -0x00,0x00, 0x04,0x00, 0x7E,0x00, 0x45,0xF0, -0x49,0x00, 0xA9,0x00, 0x9D,0x00, 0x09,0x70, -0x43,0x00, 0x4D,0x00, 0x71,0x00, 0x45,0xF0, -/* @me0 ô(12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x80, 0x01,0x00, -0x02,0x00, 0x04,0x10, 0x18,0x20, 0xF0,0x40, -0x41,0x80, 0x0E,0x00, 0x04,0x00, 0x00,0x20, -/* @mei0 õ(12x12,V)@ [suki software]*/ -0x42,0x00, 0x42,0x00, 0x7F,0xF0, 0x42,0x10, -0x42,0x10, 0x00,0x80, 0x03,0x00, 0x0D,0x00, -0xF8,0xD0, 0x48,0x20, 0x08,0xD0, 0x0F,0x00, -/* @mei1 ö(12x12,V)@ [suki software]*/ -0x08,0x20, 0x08,0xC0, 0x0B,0x00, 0xFF,0xF0, -0x09,0x00, 0x09,0x80, 0x02,0x00, 0x0C,0x00, -0xFB,0x00, 0x48,0xD0, 0x08,0x60, 0x0F,0x90, -/* @mei2 ÷(12x12,V)@ [suki software]*/ -0x08,0x20, 0x08,0xC0, 0x0B,0x00, 0xFF,0xF0, -0x0A,0x00, 0x05,0x80, 0x18,0x80, 0xEF,0xF0, -0x28,0x80, 0x2A,0xC0, 0x29,0xA0, 0x28,0x80, -/* @mei3 ø(12x12,V)@ [suki software]*/ -0x4F,0xF0, 0x48,0xA0, 0x7F,0x20, 0x48,0x20, -0x7F,0xA0, 0x48,0xA0, 0x4F,0xF0, 0x08,0x80, -0x3F,0xF0, 0xEC,0xC0, 0x2B,0xB0, 0x28,0x80, -/* @mei4 ù(12x12,V)@ [suki software]*/ -0x08,0x10, 0x30,0x50, 0x20,0x90, 0xA3,0x70, -0xB5,0x50, 0xA9,0x50, 0xA1,0x70, 0xFD,0x50, -0xA1,0x50, 0xA9,0x50, 0xB5,0x50, 0xA1,0x70, -/* @mei5 ú(12x12,V)@ [suki software]*/ -0x01,0x00, 0x0E,0x00, 0x00,0x30, 0xFF,0xC0, -0x08,0x30, 0x30,0x40, 0x20,0x40, 0xFE,0x50, -0x2A,0x60, 0x2B,0xF0, 0x2A,0x60, 0xFE,0x50, -/* @mei6 û(12x12,V)@ [suki software]*/ -0x10,0x20, 0x0C,0x20, 0x80,0xF0, 0x67,0x00, -0x00,0x00, 0x05,0x00, 0x09,0x80, 0x71,0x40, -0x41,0x20, 0x41,0x10, 0x41,0x20, 0x79,0xC0, -/* @mei7 ü(12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x10, 0xFF,0xE0, 0x90,0x00, -0x90,0x00, 0x97,0xF0, 0x94,0x90, 0x94,0x90, -0xF4,0x90, 0x94,0x90, 0x94,0x90, 0x94,0x90, -/* @mei8 ý(12x12,V)@ [suki software]*/ -0x08,0x00, 0x08,0xC0, 0x0F,0x20, 0xF8,0x30, -0x09,0xC0, 0x2E,0x40, 0x20,0x40, 0xFE,0x50, -0x2A,0x60, 0x2B,0xF0, 0x2A,0x60, 0x2A,0x50, -/* @mei9 þ(12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0xF7,0xF0, 0x14,0x80, -0x14,0x80, 0x10,0xA0, 0x25,0x20, 0xA5,0x20, -0x65,0x20, 0x3F,0xF0, 0x25,0x20, 0x65,0x20, -/* @mei10 ÿ(12x12,V)@ [suki software]*/ -0x04,0x80, 0x08,0x80, 0x30,0x80, 0xE0,0xF0, -0x2F,0x80, 0x28,0x80, 0x2C,0x80, 0x2A,0xC0, -0x28,0xA0, 0x28,0x80, 0x28,0x80, 0x2F,0xF0, -/* @mei11 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x21,0x00, 0x21,0x20, 0x29,0x20, -0xA9,0x20, 0x69,0x20, 0x29,0x30, 0x3F,0xE0, -0x29,0x30, 0x69,0x20, 0xA9,0x20, 0x29,0x20, -/* @mei12 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x3F,0xF0, 0x22,0x10, 0x22,0x10, -0x3F,0xF0, 0x02,0x00, 0x12,0x10, 0x12,0x60, -0x13,0x80, 0xFF,0xF0, 0x12,0x80, 0x12,0x60, -/* @mei13 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x30,0x40, 0x26,0x70, 0x22,0x40, -0x22,0x40, 0x2F,0xF0, 0xA0,0x80, 0x64,0x90, -0x24,0xE0, 0x2F,0xF0, 0x24,0xC0, 0x24,0xA0, -/* @mei14 (12x12,V)@ [suki software]*/ -0x10,0x00, 0x11,0x80, 0xFE,0x40, 0x50,0x30, -0x10,0x50, 0x1F,0x80, 0x01,0x00, 0x11,0x00, -0x11,0x30, 0x11,0xC0, 0xFF,0xF0, 0x11,0x60, -/* @mei15 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x08,0xC0, 0x0F,0x40, 0xF8,0x30, -0x48,0xD0, 0x0F,0x00, 0x00,0xF0, 0x7F,0x80, -0x4B,0xF0, 0x4A,0xA0, 0x7A,0xA0, 0x4A,0xA0, -/* @men0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x1F,0xF0, 0x80,0x00, -0x60,0x00, 0x00,0x00, 0x40,0x00, 0x40,0x00, -0x40,0x00, 0x40,0x00, 0x40,0x00, 0x40,0x00, -/* @men1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x1F,0xF0, 0x00,0x40, 0x81,0x80, -0x60,0x00, 0x07,0xE0, 0x40,0x10, 0x48,0x10, -0x46,0x10, 0x40,0x10, 0x42,0x30, 0x41,0x80, -/* @men2 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x02,0x00, 0x0F,0xF0, 0x38,0x00, -0xC0,0x00, 0x0F,0xF0, 0x80,0x00, 0x70,0x00, -0x20,0x00, 0x00,0x00, 0x20,0x00, 0x20,0x00, -/* @meng0 (12x12,V)@ [suki software]*/ -0x20,0x00, 0x27,0xF0, 0x24,0x40, 0x24,0x40, -0x24,0x40, 0xF7,0xF0, 0x20,0x00, 0x20,0x00, -0x27,0xF0, 0x25,0x20, 0xF5,0x20, 0x25,0x20, -/* @meng1 (12x12,V)@ [suki software]*/ -0x40,0x00, 0x59,0x20, 0x51,0x20, 0x51,0x40, -0x55,0x50, 0xF5,0x90, 0x55,0xA0, 0x55,0x40, -0x55,0x30, 0x55,0x10, 0xF5,0x20, 0x55,0xE0, -/* @meng2 (12x12,V)@ [suki software]*/ -0x11,0x80, 0x16,0x00, 0xFF,0xF0, 0x14,0x00, -0x02,0x00, 0x59,0x50, 0x51,0x50, 0x55,0xA0, -0xF5,0xA0, 0x55,0x50, 0x55,0x30, 0xF5,0x20, -/* @meng3 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0x00, 0x49,0x30, 0x49,0x20, -0x49,0x20, 0x7F,0x30, 0x00,0x60, 0x01,0xA0, -0x7E,0x20, 0x54,0x30, 0x54,0x20, 0x54,0xA0, -/* @meng4 (12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0xF4,0x80, 0x17,0xF0, -0x14,0x80, 0x14,0x80, 0x00,0x00, 0x48,0x70, -0x49,0x40, 0x48,0xF0, 0x5F,0x40, 0x68,0x70, -/* @meng5 (12x12,V)@ [suki software]*/ -0x84,0x40, 0x48,0x80, 0x31,0x00, 0x2F,0xF0, -0xC0,0x00, 0x08,0xF0, 0x88,0x80, 0x8A,0xF0, -0x89,0x80, 0x9E,0xF0, 0xA8,0x80, 0xC8,0x80, -/* @meng6 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x22,0x00, 0x24,0x10, 0x28,0x10, -0xFF,0x60, 0x29,0xA0, 0x26,0x90, 0x02,0x80, -0x24,0x80, 0x28,0x90, 0xFF,0xA0, 0x30,0xC0, -/* @meng7 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x08,0x00, 0x08,0x00, 0x08,0x70, -0x88,0x40, 0x88,0x40, 0x89,0x70, 0x88,0xC0, -0x9F,0x40, 0xA8,0x70, 0xC8,0x40, 0x88,0x40, -/* @mi0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x48,0x80, 0x48,0x80, -0x7F,0xF0, 0x02,0x00, 0x12,0x10, 0x0A,0x60, -0x03,0x80, 0xFF,0xF0, 0x03,0x80, 0x0A,0x60, -/* @mi1 (12x12,V)@ [suki software]*/ -0x4F,0xF0, 0x7F,0xA0, 0x48,0x20, 0x7F,0x20, -0x49,0x20, 0x4F,0xF0, 0x22,0x00, 0x13,0xF0, -0x24,0x20, 0x1C,0xC0, 0x07,0x00, 0xFF,0xF0, -/* @mi2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x52,0x00, -0x54,0x50, 0x7F,0x50, 0x54,0x50, 0x52,0xF0, -0xC2,0x00, 0x54,0xF0, 0x7F,0x50, 0x58,0x50, -/* @mi3 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x4A,0x20, -0x4C,0x20, 0x7F,0xA0, 0x4C,0x60, 0x4A,0x30, -0xC1,0xF0, 0x4A,0x30, 0x4C,0x60, 0x7F,0xA0, -/* @mi4 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x82,0x00, 0x73,0xF0, 0x30,0x00, -0x04,0x10, 0x24,0x20, 0x1C,0x40, 0x14,0x80, -0x07,0x00, 0xFF,0xF0, 0x05,0x00, 0x0C,0x80, -/* @mi5 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x82,0x00, 0x73,0xF0, 0x20,0x00, -0x41,0x00, 0x39,0xF0, 0x10,0x10, 0x24,0x20, -0x1C,0xC0, 0x07,0x00, 0xFF,0xF0, 0x05,0x00, -/* @mi6 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x4F,0x80, 0x48,0x80, 0x48,0x80, -0x48,0x80, 0x78,0xF0, 0x02,0x10, 0x1C,0x60, -0xF1,0x80, 0x50,0x00, 0x17,0xF0, 0x11,0x00, -/* @mi7 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x04,0x00, 0x44,0x00, 0x24,0x30, -0x1C,0xC0, 0x07,0x00, 0x04,0x00, 0xFF,0xF0, -0x06,0x00, 0x05,0x80, 0x0C,0x60, 0x14,0x10, -/* @mi8 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x48,0xC0, 0x4B,0x00, 0x7F,0xF0, -0x89,0x00, 0x88,0xA0, 0x09,0xC0, 0x00,0x00, -0x9F,0xF0, 0x40,0x10, 0x30,0x60, 0x01,0x80, -/* @mi9 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x40,0x00, 0x67,0xF0, -0x5C,0x00, 0x44,0x00, 0x64,0x10, 0x5D,0xE0, -0x54,0x10, 0x84,0x00, 0x8C,0x00, 0xF7,0xF0, -/* @mi10 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x20, 0x80,0x70, 0x63,0x80, -0x0C,0x20, 0x01,0xC0, 0x00,0x00, 0x1F,0xF0, -0x80,0x10, 0x60,0x60, 0x01,0x80, 0x06,0x00, -/* @mi11 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x10,0x00, 0x64,0x80, 0x58,0x80, -0x41,0x70, 0x5D,0x50, 0x66,0x50, 0xD6,0x50, -0x4D,0xF0, 0x54,0x50, 0x64,0x50, 0x4C,0x50, -/* @mi12 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x1A,0x60, 0x24,0x40, 0x20,0x90, -0x2F,0x80, 0x20,0x80, 0xB1,0x80, 0x6D,0xB0, -0x22,0x80, 0x2C,0x80, 0x33,0x80, 0x29,0x00, -/* @mi13 (12x12,V)@ [suki software]*/ -0x00,0x10, 0x20,0x90, 0xC0,0xA0, 0x80,0xA0, -0xBE,0xF0, 0xAB,0xA0, 0xAA,0xA0, 0xAA,0xF0, -0xAA,0xA0, 0xAA,0xA0, 0xAA,0xA0, 0xBE,0xB0, -/* @mian0 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x11,0x80, 0x16,0x00, 0xFF,0xF0, -0x14,0x00, 0x12,0x00, 0x00,0xF0, 0x3E,0x80, -0x2A,0x80, 0x6A,0x80, 0xAB,0xF0, 0x2A,0x80, -/* @mian1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x48,0x80, 0x48,0x80, -0x7F,0xF0, 0x00,0x00, 0x7F,0xF0, 0x49,0x00, -0x49,0x00, 0x49,0x00, 0x4F,0xE0, 0x49,0x10, -/* @mian2 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x0C,0x40, 0x34,0xC0, 0xC5,0x40, -0x06,0x50, 0x0C,0x50, 0x00,0x00, 0x3E,0xF0, -0x2A,0x80, 0x6A,0x80, 0xAB,0xF0, 0x2A,0x80, -/* @mian3 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x80, 0xF9,0x00, 0x87,0xE0, -0xAA,0xA0, 0xAA,0xA0, 0xAA,0xF0, 0xAA,0xA0, -0xAA,0xB0, 0xAB,0xA0, 0xAA,0xA0, 0x80,0xE0, -/* @mian4 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x04,0x00, 0x08,0x00, 0x17,0xC0, -0x24,0x80, 0xE4,0x90, 0x24,0xE0, 0x27,0x80, -0x24,0x80, 0x2C,0xF0, 0x34,0x80, 0x24,0x80, -/* @mian5 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x0F,0x80, 0x34,0x80, 0xE4,0xF0, -0x27,0x80, 0x2C,0xF0, 0x34,0x80, 0x27,0x90, -0x10,0x20, 0x10,0xC0, 0xFF,0x00, 0x10,0x20, -/* @wan0 (12x12,V)@ [suki software]*/ -0x10,0x00, 0x10,0x80, 0x1F,0x50, 0xF0,0x20, -0x1F,0xD0, 0x00,0x00, 0x0F,0xC0, 0x14,0x80, -0xE4,0xF0, 0x27,0x80, 0x2C,0xF0, 0x34,0x80, -/* @mian6 (12x12,V)@ [suki software]*/ -0x04,0x40, 0x1C,0xC0, 0xE5,0x40, 0x46,0x40, -0x08,0x40, 0x40,0x00, 0x4F,0xF0, 0x48,0x00, -0x5F,0xF0, 0x69,0x20, 0x49,0x20, 0x4F,0xF0, -/* @mian7 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x40,0x00, 0x4F,0xF0, 0x48,0x00, -0x48,0x00, 0x5F,0xF0, 0x69,0x20, 0x49,0x20, -0x49,0x20, 0x4F,0xF0, 0x48,0x00, 0x48,0x00, -/* @miao0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x10,0x00, 0x13,0xF0, 0x12,0x40, -0xFE,0x40, 0x12,0x40, 0x12,0x40, 0x13,0xF0, -0x12,0x40, 0x12,0x40, 0xFE,0x40, 0x12,0x40, -/* @miao1 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x12,0x00, 0x04,0x00, 0x11,0xF0, 0x11,0x20, -0xFD,0x20, 0x11,0x20, 0x11,0xF0, 0x11,0x20, -/* @miao2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x44,0x80, 0x7F,0xF0, -0x00,0x00, 0x10,0x00, 0x13,0xF0, 0x12,0x20, -0xFE,0x20, 0x13,0xF0, 0x12,0x20, 0xFE,0x20, -/* @miao3 (12x12,V)@ [suki software]*/ -0x44,0xA0, 0x47,0x20, 0x49,0x40, 0x4E,0x90, -0x53,0xA0, 0xE4,0x70, 0x40,0x00, 0x47,0xE0, -0x45,0x40, 0xED,0x70, 0x55,0x40, 0x45,0x70, -/* @miao4 (12x12,V)@ [suki software]*/ -0x48,0x20, 0x48,0xC0, 0x4B,0x00, 0x7F,0xF0, -0x89,0x00, 0x88,0xC0, 0x03,0x00, 0x1C,0x00, -0x08,0x00, 0x00,0x00, 0xFF,0xC0, 0x00,0x00, -/* @miao5 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x84,0x30, 0x61,0xC0, 0x06,0x00, -0x3F,0xF0, 0x24,0x90, 0x24,0x90, 0x3F,0xF0, -0x02,0x00, 0x1C,0x00, 0x00,0x00, 0xFF,0x90, -/* @miao6 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x3F,0xF0, 0x20,0x00, -0x23,0xF0, 0x22,0x40, 0x22,0x40, 0xA2,0x40, -0x7F,0xF0, 0x22,0x40, 0x22,0x40, 0x22,0x40, -/* @miao7 (12x12,V)@ [suki software]*/ -0x10,0x00, 0x11,0x80, 0xFE,0x40, 0x10,0x30, -0x10,0xE0, 0x1F,0x10, 0x00,0x80, 0x0F,0x00, -0x04,0x00, 0x00,0x00, 0xFF,0xC0, 0x00,0x10, -/* @mie0 (12x12,V)@ [suki software]*/ -0x40,0x00, 0x40,0x00, 0x5E,0xF0, 0x52,0x80, -0xF2,0xA0, 0x5E,0x90, 0x52,0x90, 0x52,0x80, -0x53,0xE0, 0x5E,0x90, 0xF2,0x80, 0x52,0x90, -/* @mie1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x40,0x00, 0x40,0x80, 0x47,0x00, -0x40,0x10, 0x40,0x60, 0x41,0x80, 0x7E,0x00, -0x43,0x00, 0x40,0xC0, 0x41,0x30, 0x42,0x10, -/* @min0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x49,0x00, -0x49,0x00, 0x49,0x00, 0x49,0x00, 0x4F,0x00, -0x49,0xC0, 0x49,0x30, 0x49,0x00, 0x79,0x00, -/* @min1 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x08,0x40, 0x08,0x80, 0xFF,0xF0, -0x09,0x00, 0x0A,0x00, 0x7F,0xF0, 0x49,0x00, -0x49,0x00, 0x49,0x00, 0x4F,0xC0, 0x49,0x30, -/* @min2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x40,0x00, -0x40,0x00, 0x7F,0xF0, 0x40,0x00, 0x40,0x00, -0x40,0x00, 0x7F,0xF0, 0x40,0x00, 0x40,0x00, -/* @min3 (12x12,V)@ [suki software]*/ -0x04,0x80, 0x38,0x80, 0xEF,0xF0, 0x2C,0xC0, -0x2A,0xA0, 0x28,0x80, 0x2F,0xF0, 0x22,0x80, -0x0C,0x00, 0xFF,0x80, 0x48,0x60, 0x08,0x30, -/* @min4 (12x12,V)@ [suki software]*/ -0x0E,0x00, 0x00,0x00, 0xFF,0xF0, 0x10,0x00, -0x08,0x00, 0x9F,0xF0, 0x40,0x00, 0x04,0x00, -0x05,0x10, 0x54,0xA0, 0x4C,0xC0, 0x47,0x30, -/* @min5 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x3F,0xF0, 0x00,0x00, 0x80,0x10, -0x67,0x90, 0x04,0x90, 0x04,0x90, 0x5F,0xF0, -0x44,0x90, 0x44,0x90, 0x47,0xB0, 0x40,0x10, -/* @ming0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xC0, 0x44,0x40, 0x44,0x40, -0x44,0x40, 0x7F,0xC0, 0x00,0x00, 0x00,0x10, -0xFF,0xE0, 0x88,0x80, 0x88,0x80, 0x88,0x80, -/* @ming1 (12x12,V)@ [suki software]*/ -0x1F,0xC0, 0x10,0x80, 0xFF,0xF0, 0x10,0xA0, -0x1F,0x90, 0x10,0x00, 0x60,0x20, 0x5F,0x20, -0x55,0x30, 0x55,0xA0, 0x55,0x60, 0x55,0x30, -/* @ming2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x3F,0xC0, 0x20,0x40, 0x20,0x50, -0x3F,0xD0, 0x00,0x10, 0x3F,0xD0, 0x20,0x50, -0x68,0x50, 0xA6,0x50, 0x20,0x50, 0x21,0x50, -/* @ming3 (12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0x34,0x80, 0xD7,0xF0, -0x14,0x80, 0x14,0xA0, 0x02,0x20, 0x04,0x40, -0x1C,0x70, 0xE2,0xC0, 0x21,0x40, 0x22,0x40, -/* @ming4 (12x12,V)@ [suki software]*/ -0x00,0x20, 0x02,0x20, 0x04,0x20, 0x08,0x40, -0x10,0x70, 0xE4,0xC0, 0x22,0xC0, 0x21,0x40, -0x22,0x40, 0x24,0x40, 0x28,0x40, 0x30,0x40, -/* @ming5 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x02,0x00, 0x05,0xF0, 0x09,0x10, -0x15,0x10, 0x25,0x10, 0x45,0xF0, 0x84,0x00, -0x45,0xF0, 0x25,0x00, 0x15,0x00, 0x09,0x00, -/* @miu0 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x82,0x00, 0x73,0xF0, 0x20,0x00, -0xC2,0x50, 0xA4,0x40, 0x98,0xA0, 0x80,0xA0, -0xFD,0x50, 0x82,0x50, 0xB5,0x20, 0x88,0xA0, -/* @mo1 (12x12,V)@ [suki software]*/ -0x10,0x80, 0x10,0x80, 0x11,0x00, 0xFF,0xF0, -0x12,0x00, 0x20,0x20, 0x2F,0xA0, 0xFA,0xA0, -0x2A,0xA0, 0x2A,0xF0, 0x2A,0xA0, 0xFA,0xA0, -/* @mo2 ġ(12x12,V)@ [suki software]*/ -0x01,0x10, 0x41,0x10, 0x41,0x20, 0x5D,0x40, -0x55,0x90, 0xF7,0x50, 0x55,0x50, 0x5D,0x70, -0x55,0x50, 0x55,0x50, 0xF5,0x90, 0x5D,0x40, -/* @mo3 Ģ(12x12,V)@ [suki software]*/ -0x20,0x00, 0x20,0x00, 0x2F,0xF0, 0x2A,0xA0, -0x2B,0x20, 0xFF,0xE0, 0x2B,0x30, 0x3A,0xA0, -0x2A,0xE0, 0xFB,0x20, 0x2F,0xE0, 0x2B,0x20, -/* @mo4 ģ(12x12,V)@ [suki software]*/ -0x08,0xC0, 0x0B,0x00, 0xFF,0xF0, 0x0A,0x00, -0x09,0x00, 0x20,0x20, 0x2F,0xA0, 0x2A,0xA0, -0xFA,0xA0, 0x2A,0xF0, 0x2A,0xA0, 0xFA,0xA0, -/* @mo5 Ĥ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x48,0x80, 0x48,0x80, -0x7F,0xF0, 0x20,0x20, 0x2F,0xA0, 0xFA,0xA0, -0x2A,0xA0, 0x2A,0xF0, 0x2A,0xA0, 0xFA,0xA0, -/* @mo6 ĥ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x4A,0x40, -0x4C,0x40, 0x7F,0xD0, 0x4C,0x70, 0x4B,0x50, -0xC1,0x50, 0x4A,0x50, 0x4C,0x50, 0x7F,0xD0, -/* @mo7 Ħ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x52,0x00, -0x54,0xA0, 0x7F,0xA0, 0x58,0xA0, 0xD5,0xA0, -0x52,0xF0, 0x54,0xA0, 0x7F,0xA0, 0x58,0xA0, -/* @mo8 ħ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x42,0x00, -0x54,0xF0, 0x7E,0xA0, 0x58,0xA0, 0x55,0xA0, -0xC2,0xF0, 0x54,0xA0, 0x58,0xA0, 0x7E,0xA0, -/* @mo9 Ĩ(12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x80, 0xFF,0xF0, 0x11,0x00, -0x12,0x00, 0x00,0x00, 0x12,0x10, 0x12,0x60, -0x12,0x80, 0xFF,0xF0, 0x12,0x40, 0x12,0x20, -/* @mo10 ĩ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x10,0x00, 0x12,0x00, 0x12,0x00, -0x12,0x10, 0x12,0x20, 0x12,0xC0, 0xFF,0xF0, -0x12,0x80, 0x12,0x40, 0x12,0x20, 0x12,0x10, -/* @mo11 Ī(12x12,V)@ [suki software]*/ -0x00,0x20, 0x20,0x20, 0x20,0x20, 0x2F,0xA0, -0x2A,0xA0, 0xFA,0xA0, 0x2A,0xB0, 0x2A,0xE0, -0x2A,0xB0, 0x2A,0xA0, 0xFA,0xA0, 0x2F,0xA0, -/* @mo12 ī(12x12,V)@ [suki software]*/ -0x01,0x00, 0x01,0x20, 0xF5,0xC0, 0x95,0x00, -0xD5,0x80, 0xB5,0x60, 0x95,0x40, 0xFF,0x10, -0x95,0x80, 0xB5,0x60, 0xD5,0x40, 0x95,0x00, -/* @mo13 Ĭ(12x12,V)@ [suki software]*/ -0x00,0x20, 0x7D,0x20, 0x55,0x20, 0x4D,0x20, -0x7F,0xC0, 0x4D,0x40, 0x55,0x40, 0x7D,0x40, -0x04,0x00, 0x04,0x30, 0xFF,0xC0, 0x04,0x30, -/* @mo14 ĭ(12x12,V)@ [suki software]*/ -0x10,0x20, 0x0C,0x20, 0x81,0xF0, 0x6E,0x00, -0x00,0x00, 0x12,0x00, 0x12,0x10, 0x12,0x60, -0x12,0x80, 0xFF,0xF0, 0x12,0x40, 0x12,0x20, -/* @mo15 Į(12x12,V)@ [suki software]*/ -0x10,0x20, 0x0C,0x20, 0x80,0xF0, 0x67,0x00, -0x00,0x00, 0x20,0x20, 0x2F,0xA0, 0xFA,0xA0, -0x2A,0xA0, 0x2A,0xF0, 0xFA,0xA0, 0x2A,0xA0, -/* @mo16 į(12x12,V)@ [suki software]*/ -0x08,0x00, 0x30,0x00, 0x28,0x00, 0x2B,0xE0, -0x2A,0xA0, 0x3E,0xA0, 0xAA,0xA0, 0x6A,0xB0, -0x2A,0xA0, 0x3E,0xA0, 0x2A,0xA0, 0x2B,0xE0, -/* @mo17 İ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x48,0x40, 0x54,0x20, -0x63,0xC0, 0x00,0x00, 0x40,0x00, 0x47,0xF0, -0x4C,0x40, 0x74,0x40, 0x44,0x40, 0x44,0x40, -/* @mou0 ı(12x12,V)@ [suki software]*/ -0x04,0x00, 0x84,0x00, 0x77,0xF0, 0x20,0x00, -0x00,0x10, 0x20,0x40, 0x20,0x40, 0xFF,0x50, -0x2A,0x60, 0x2A,0xF0, 0x2A,0x60, 0xFF,0x50, -/* @mou1 IJ(12x12,V)@ [suki software]*/ -0x00,0x20, 0x00,0xA0, 0x01,0x20, 0x17,0x20, -0x31,0x20, 0x51,0x20, 0x91,0x20, 0x17,0xF0, -0x11,0x20, 0x11,0x20, 0x51,0x20, 0x31,0x20, -/* @mou2 ij(12x12,V)@ [suki software]*/ -0x00,0x40, 0x20,0x40, 0x20,0x40, 0x20,0x40, -0xFF,0x40, 0x29,0x50, 0x29,0x60, 0x29,0xF0, -0x29,0x60, 0x29,0x50, 0xFF,0x40, 0x20,0x40, -/* @mu0 Ĵ(12x12,V)@ [suki software]*/ -0x10,0x80, 0x10,0x80, 0x11,0x00, 0xFF,0xF0, -0x12,0x00, 0x12,0x00, 0x03,0xF0, 0x7E,0x10, -0x42,0x10, 0x52,0x90, 0x4A,0x50, 0x42,0x10, -/* @mu1 ĵ(12x12,V)@ [suki software]*/ -0x01,0x40, 0x06,0x60, 0x38,0xC0, 0x08,0x80, -0xFF,0xF0, 0x09,0x00, 0x0D,0x00, 0x04,0x00, -0x04,0x00, 0x04,0x00, 0xFF,0xF0, 0x04,0x00, -/* @mu2 Ķ(12x12,V)@ [suki software]*/ -0x20,0x00, 0x20,0x00, 0x27,0xF0, 0x24,0x40, -0x24,0x40, 0x24,0x40, 0xA4,0x40, 0x67,0xF0, -0x24,0x40, 0x24,0x40, 0x24,0x40, 0x24,0x40, -/* @mu3 ķ(12x12,V)@ [suki software]*/ -0x10,0x00, 0x11,0x80, 0xFE,0x50, 0x50,0x60, -0x13,0x90, 0x1C,0x00, 0x02,0x70, 0x3F,0x90, -0x32,0x10, 0x2A,0x90, 0x26,0x70, 0x22,0x10, -/* @mu4 ĸ(12x12,V)@ [suki software]*/ -0x02,0x00, 0x02,0x00, 0x02,0x00, 0x7F,0xF0, -0x42,0x10, 0x42,0x10, 0x52,0x90, 0x4E,0x70, -0x42,0x10, 0x42,0x10, 0x42,0x10, 0x7F,0xF0, -/* @mu5 Ĺ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x40,0x40, 0x40,0x50, 0x5F,0x50, -0x55,0x60, 0xF5,0x60, 0x55,0xC0, 0x55,0x70, -0x55,0x40, 0xF5,0x40, 0x55,0x60, 0x5F,0x50, -/* @mu6 ĺ(12x12,V)@ [suki software]*/ -0x00,0x40, 0x40,0x40, 0x40,0x50, 0x5F,0x50, -0x55,0x70, 0xF5,0xD0, 0x55,0x50, 0x55,0x50, -0x55,0x50, 0xF5,0x50, 0x55,0x50, 0x5F,0x60, -/* @mu7 Ļ(12x12,V)@ [suki software]*/ -0x40,0x40, 0x40,0x40, 0x40,0x40, 0x5F,0x50, -0x55,0x70, 0xF5,0x50, 0x55,0xD0, 0x55,0x70, -0x55,0x50, 0xF5,0x50, 0x55,0x50, 0x5F,0x60, -/* @mu8 ļ(12x12,V)@ [suki software]*/ -0x40,0x80, 0x40,0x80, 0x40,0x90, 0x5E,0xA0, -0x52,0xD0, 0xF3,0x90, 0x5A,0x90, 0x56,0xF0, -0x52,0x90, 0xF2,0x90, 0x52,0xD0, 0x5E,0xA0, -/* @mu9 Ľ(12x12,V)@ [suki software]*/ -0x00,0x80, 0x40,0x80, 0x40,0x90, 0x5E,0x90, -0x52,0xA0, 0xF2,0xC0, 0x5B,0x80, 0x56,0xB0, -0x52,0x80, 0xF2,0x80, 0x52,0xC0, 0x5E,0xA0, -/* @mu10 ľ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x10,0x10, 0x10,0x10, 0x10,0x20, -0x10,0x40, 0x11,0x80, 0x16,0x00, 0xFF,0xF0, -0x14,0x00, 0x13,0x00, 0x10,0x80, 0x10,0x60, -/* @mu11 Ŀ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x7F,0xF0, -0x44,0x40, 0x44,0x40, 0x44,0x40, 0x44,0x40, -0x44,0x40, 0x44,0x40, 0x44,0x40, 0x44,0x40, -/* @mu12 (12x12,V)@ [suki software]*/ -0x7F,0xF0, 0x44,0x40, 0x44,0x40, 0x7F,0xF0, -0x00,0x80, 0x04,0x80, 0x25,0x20, 0x25,0x20, -0x26,0x20, 0xFC,0xF0, 0x24,0x20, 0x26,0x20, -/* @mu13 (12x12,V)@ [suki software]*/ -0x02,0x40, 0x3C,0x60, 0x08,0x40, 0xFF,0xF0, -0x08,0x80, 0x0B,0x00, 0x04,0x00, 0x1B,0x00, -0xE8,0xC0, 0x08,0x30, 0x08,0x70, 0x0F,0x80, -/* @mu14 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x49,0xC0, 0x4E,0x00, 0x7F,0xF0, -0x8A,0x40, 0x89,0xA0, 0x00,0xA0, 0x7D,0x20, -0x56,0x40, 0x54,0x50, 0xD7,0x50, 0x54,0x90, -/* @na0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x10,0x00, 0x10,0x10, 0x10,0x10, -0x27,0x50, 0x35,0x50, 0x55,0x50, 0x95,0x50, -0x55,0x70, 0x55,0x50, 0x35,0x50, 0x27,0x50, -/* @na1 (12x12,V)@ [suki software]*/ -0x7F,0xE0, 0x40,0x40, 0x40,0x40, 0x7F,0xE0, -0x01,0x00, 0x89,0x30, 0xFF,0xC0, 0x89,0x00, -0x89,0x00, 0xFF,0xF0, 0x00,0x00, 0xFF,0xF0, -/* @na2 (12x12,V)@ [suki software]*/ -0x3F,0xE0, 0x20,0x80, 0x20,0x80, 0x20,0x80, -0x3F,0xC0, 0x00,0x00, 0x1F,0xF0, 0x10,0x20, -0x10,0xC0, 0xFF,0x00, 0x11,0x00, 0x10,0xC0, -/* @na3 (12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0xF7,0xF0, 0x24,0x80, -0x24,0x80, 0x24,0x80, 0x20,0x00, 0x1F,0xF0, -0x10,0x40, 0x11,0x80, 0xFE,0x00, 0x11,0x00, -/* @na4 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x49,0x00, 0x49,0x30, 0x7F,0xC0, -0x49,0x00, 0x49,0x00, 0x7F,0xF0, 0x00,0x00, -0x00,0x00, 0x7F,0xF0, 0x40,0x00, 0x44,0x20, -/* @na5 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x0F,0x80, 0xF8,0x50, 0x08,0x60, -0x0F,0x90, 0x48,0x80, 0x48,0xB0, 0x7F,0xC0, -0x48,0x80, 0x7F,0xF0, 0x00,0x00, 0x7F,0xF0, -/* @na6 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x0C,0x40, 0x34,0xC0, 0xC5,0x40, -0x06,0x50, 0x18,0x50, 0x1F,0xF0, 0x10,0x20, -0x10,0x40, 0x11,0x80, 0xFE,0x00, 0x11,0x00, -/* @nai0 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x08,0x00, 0x35,0x00, 0xC5,0x10, -0x55,0xE0, 0x55,0x00, 0x55,0x00, 0x55,0x60, -0x55,0xA0, 0x54,0x30, 0x54,0x00, 0x57,0xE0, -/* @nai1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x40,0x00, 0x40,0x10, -0x40,0x60, 0x7F,0x80, 0x40,0x00, 0x40,0x00, -0x40,0x00, 0x42,0x00, 0x4E,0x00, 0xF2,0x00, -/* @nai2 (12x12,V)@ [suki software]*/ -0x10,0x00, 0x11,0x80, 0x1E,0x40, 0xF0,0x30, -0x10,0xD0, 0x1F,0x00, 0x00,0x00, 0x40,0x10, -0x7F,0xE0, 0x40,0x00, 0x46,0x00, 0x5A,0x00, -/* @nai3 (12x12,V)@ [suki software]*/ -0x40,0x00, 0x4F,0xF0, 0x48,0x00, 0x4F,0xF0, -0x78,0x00, 0x4F,0xF0, 0x48,0x00, 0x4F,0xF0, -0x08,0x00, 0x09,0x00, 0x08,0xE0, 0x08,0x00, -/* @nai4 (12x12,V)@ [suki software]*/ -0x20,0x80, 0x21,0x00, 0x21,0x40, 0x22,0x40, -0x26,0x50, 0x2A,0x40, 0x32,0x40, 0xE2,0x70, -0x32,0x40, 0x2A,0x40, 0x26,0x50, 0x24,0x40, -/* @nan0 (12x12,V)@ [suki software]*/ -0x20,0x00, 0x20,0x00, 0x27,0xF0, 0x24,0x20, -0x24,0xA0, 0x26,0xA0, 0x2D,0xA0, 0xF4,0xF0, -0x24,0xA0, 0x25,0xA0, 0x26,0xA0, 0x24,0xA0, -/* @nan1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x40, 0x00,0x40, -0xFE,0x40, 0x92,0x40, 0x92,0x70, 0x93,0xC0, -0xFE,0x40, 0x92,0x40, 0x92,0x40, 0x92,0x40, -/* @nan2 (12x12,V)@ [suki software]*/ -0x28,0x00, 0x24,0x10, 0x22,0x60, 0x21,0x80, -0x3E,0xC0, 0x02,0x30, 0x0C,0x00, 0x3F,0xF0, -0xD2,0x40, 0x12,0x40, 0x9F,0xF0, 0x72,0x40, -/* @nang0 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x44,0x10, 0x5C,0x50, 0x57,0x50, -0x55,0x50, 0x55,0xF0, 0x57,0x50, 0xFC,0x50, -0x57,0x50, 0x55,0x50, 0x55,0xF0, 0x57,0x50, -/* @nao0 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x08,0x40, 0x08,0x80, 0xFF,0xF0, -0x09,0x00, 0x2A,0x80, 0x20,0x80, 0x22,0xF0, -0xF2,0x80, 0x2C,0x80, 0x26,0xF0, 0x2A,0x80, -/* @nao1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x48,0x80, 0x48,0x80, -0x7F,0xF0, 0x00,0x00, 0x13,0xF0, 0x10,0x00, -0x92,0x30, 0x51,0xC0, 0x31,0xC0, 0x16,0x30, -/* @nao2 (12x12,V)@ [suki software]*/ -0x0E,0x00, 0x00,0x00, 0xFF,0xF0, 0x10,0x00, -0x0C,0x00, 0x10,0x00, 0x13,0xF0, 0x12,0x10, -0x91,0x20, 0x70,0xC0, 0x11,0xC0, 0x16,0x30, -/* @nao3 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x9F,0xF0, 0x48,0x00, -0x09,0xF0, 0x49,0x00, 0x69,0x00, 0x5F,0xF0, -0x49,0x00, 0x49,0x10, 0x49,0xF0, 0x48,0x00, -/* @nao4 (12x12,V)@ [suki software]*/ -0x10,0x20, 0x0C,0x20, 0x00,0x70, 0x81,0x80, -0x66,0x00, 0x00,0x10, 0x0F,0x90, 0x0A,0x90, -0x0A,0x90, 0xFA,0xF0, 0x2A,0x90, 0x2A,0x90, -/* @ne0 (12x12,V)@ [suki software]*/ -0x7F,0xE0, 0x40,0x80, 0x40,0x80, 0x40,0x80, -0x7F,0xC0, 0x00,0x00, 0x7F,0xF0, 0x48,0x00, -0x4B,0xF0, 0x48,0x40, 0x48,0x40, 0x48,0x80, -/* @nei0 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x0C,0x00, 0xF0,0x00, 0x13,0xF0, -0x14,0x00, 0x18,0x90, 0x50,0x80, 0x48,0xA0, -0x44,0xE0, 0x63,0x90, 0x58,0x90, 0x44,0xA0, -/* @nei1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x1F,0xF0, 0x10,0x10, -0x10,0x20, 0x10,0x40, 0x11,0x80, 0xFE,0x00, -0x12,0x00, 0x11,0x00, 0x10,0x80, 0x10,0x60, -/* @nen0 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x0F,0xD0, 0xF8,0x20, 0x4F,0xD0, -0x00,0x00, 0x17,0x90, 0x14,0xE0, 0xFF,0xF0, -0x14,0xA0, 0x17,0x90, 0x06,0x00, 0xF9,0xE0, -/* @neng0 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x1D,0xF0, 0xE9,0x50, 0x49,0x50, -0x09,0x50, 0x29,0x50, 0x1D,0xF0, 0x08,0x00, -0x00,0x00, 0xFE,0xF0, 0x12,0x20, 0x12,0x20, -/* @ni0 (12x12,V)@ [suki software]*/ -0x10,0x00, 0x11,0x80, 0xFE,0x40, 0x10,0x30, -0x10,0xC0, 0x1F,0x00, 0x00,0x00, 0x3F,0xF0, -0x24,0x00, 0x25,0xF0, 0x24,0x20, 0x24,0x40, -/* @ni1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x38,0x00, 0x29,0xF0, 0xA5,0x50, -0xB1,0x50, 0xAA,0x50, 0xA0,0x10, 0xFC,0x10, -0xA1,0x50, 0xA9,0x50, 0xA5,0x50, 0xB1,0x50, -/* @ni2 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x02,0x00, 0x0F,0xF0, 0xF0,0x00, -0x40,0x00, 0x00,0x00, 0x7F,0x80, 0x49,0x30, -0x49,0xC0, 0x81,0x00, 0x89,0xF0, 0x49,0x00, -/* @ni3 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x20, 0x80,0x70, 0x63,0x80, -0x0C,0x00, 0x00,0x70, 0x7F,0x80, 0x48,0x00, -0x4B,0xF0, 0x48,0x20, 0x48,0x20, 0x48,0x40, -/* @ni4 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x48,0x00, -0x48,0x00, 0x4B,0xF0, 0x48,0x40, 0x48,0x40, -0x48,0xC0, 0x48,0x80, 0x49,0x80, 0x48,0x80, -/* @ni5 (12x12,V)@ [suki software]*/ -0x08,0x80, 0x08,0x80, 0x09,0x00, 0xFF,0xF0, -0x0A,0x00, 0x08,0x00, 0x3F,0xF0, 0x00,0x10, -0x40,0x20, 0x20,0x40, 0x30,0x00, 0x00,0x00, -/* @ni6 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x02,0x00, 0x0F,0xF0, 0x34,0x00, -0xC2,0x00, 0x04,0x30, 0x19,0xC0, 0xF0,0x80, -0x50,0x00, 0x17,0xF0, 0x10,0x00, 0x11,0x00, -/* @ni7 (12x12,V)@ [suki software]*/ -0x00,0x00, 0xFF,0xF0, 0x80,0x10, 0x92,0x20, -0x92,0x40, 0xBA,0xF0, 0x93,0x90, 0x96,0x90, -0x92,0x90, 0x92,0x90, 0xBA,0x90, 0x92,0xF0, -/* @ni8 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x48,0x80, 0x48,0x80, -0x7F,0xF0, 0x10,0x00, 0x15,0xF0, 0x15,0x00, -0x15,0x70, 0x15,0x00, 0x11,0xF0, 0xFE,0x00, -/* @ni9 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x42,0x00, 0x33,0xF0, 0x00,0x00, -0x00,0x00, 0x10,0x00, 0x93,0x80, 0x70,0x90, -0x10,0xE0, 0x1F,0x80, 0x30,0x80, 0xD0,0x80, -/* @ni10 (12x12,V)@ [suki software]*/ -0x10,0x10, 0x0C,0x10, 0x80,0xE0, 0x67,0x00, -0x00,0x00, 0x4F,0x40, 0x49,0x30, 0x49,0x00, -0x79,0xF0, 0x00,0x00, 0x4F,0x40, 0x49,0x30, -/* @nian0 (12x12,V)@ [suki software]*/ -0x41,0x00, 0x51,0x00, 0x51,0x00, 0x51,0xF0, -0x57,0x50, 0xF1,0x50, 0x51,0x50, 0x5F,0x50, -0x55,0x50, 0xF5,0x50, 0x55,0x50, 0x55,0x50, -/* @nian1 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x08,0x40, 0x08,0x80, 0xFF,0xF0, -0x09,0x00, 0x0A,0x00, 0x08,0x00, 0x00,0xF0, -0x00,0x80, 0x00,0x80, 0xFF,0x80, 0x08,0x80, -/* @nian2 (12x12,V)@ [suki software]*/ -0x02,0x20, 0x04,0x20, 0x08,0x20, 0x30,0x20, -0xC7,0xE0, 0x44,0x20, 0x44,0x20, 0x44,0x20, -0x7F,0xF0, 0x44,0x20, 0x44,0x20, 0x44,0x20, -/* @nian3 (12x12,V)@ [suki software]*/ -0x40,0x80, 0x47,0x00, 0x7B,0xF0, 0x42,0x10, -0x43,0xF0, 0x00,0x00, 0x7F,0xF0, 0x52,0x80, -0x52,0xF0, 0x5F,0x80, 0x52,0xE0, 0x5F,0x90, -/* @nian4 (12x12,V)@ [suki software]*/ -0x10,0x80, 0x11,0x00, 0xFF,0xF0, 0x12,0x00, -0x00,0x80, 0x2A,0x80, 0xFC,0xA0, 0x2C,0xE0, -0x2B,0xA0, 0x00,0xF0, 0x29,0xA0, 0x2A,0xA0, -/* @nian5 (12x12,V)@ [suki software]*/ -0x10,0x80, 0x10,0x80, 0x11,0x00, 0xFF,0xF0, -0x12,0x00, 0x12,0x10, 0x05,0x00, 0x19,0x10, -0xE1,0x40, 0x27,0x20, 0x11,0x70, 0x09,0x80, -/* @nian6 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x02,0x00, 0x02,0x10, 0x04,0x00, -0x0A,0x10, 0x12,0x00, 0x22,0x40, 0xCA,0x20, -0x26,0x50, 0x12,0x80, 0x0B,0x00, 0x08,0x00, -/* @niang0 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x08,0xC0, 0xFF,0x30, 0x48,0x20, -0x0F,0xD0, 0x00,0x00, 0x3F,0xF0, 0x29,0x00, -0xA9,0x80, 0x69,0x60, 0x29,0x10, 0x29,0x20, -/* @niang1 (12x12,V)@ [suki software]*/ -0x4F,0xF0, 0x48,0xA0, 0x7F,0x20, 0x48,0x20, -0x7F,0xA0, 0x48,0xA0, 0x4F,0xF0, 0x00,0x00, -0x3F,0xF0, 0xA5,0x00, 0x65,0x40, 0x25,0x30, -/* @niao0 (12x12,V)@ [suki software]*/ -0x00,0x10, 0x00,0x10, 0x00,0x10, 0x3F,0x90, -0x20,0x90, 0x60,0x90, 0xA8,0x90, 0x26,0x90, -0x20,0x90, 0x24,0x90, 0x22,0x90, 0x3C,0x90, -/* @niao1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x10, 0x7F,0xF0, 0x48,0x80, -0x48,0x90, 0x48,0xE0, 0x48,0x80, 0x48,0x00, -0x4F,0xF0, 0x48,0x40, 0x48,0xA0, 0x49,0x10, -/* @nie0 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x08,0x40, 0x08,0x80, 0xFF,0xF0, -0x0A,0x00, 0x08,0x00, 0x00,0x20, 0x7F,0x20, -0x49,0x20, 0x49,0x20, 0x49,0xF0, 0x49,0x20, -/* @nie1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x82,0xC0, 0x82,0xA0, 0x82,0x90, -0xFE,0x90, 0xAA,0xE0, 0xAA,0x80, 0xAA,0x80, -0xAA,0xE0, 0xAA,0x90, 0xFF,0x90, 0x82,0xA0, -/* @nie2 (12x12,V)@ [suki software]*/ -0x40,0x00, 0x5F,0xC0, 0x75,0x40, 0x55,0x40, -0x55,0x40, 0xFD,0xC0, 0x40,0x40, 0x54,0x40, -0x55,0x50, 0x5D,0x60, 0xF7,0xC0, 0x55,0x00, -/* @nie3 (12x12,V)@ [suki software]*/ -0x1F,0xF0, 0x10,0x40, 0x10,0x40, 0x1F,0xE0, -0x00,0x00, 0x02,0xF0, 0x1E,0x00, 0x02,0x00, -0x02,0x10, 0xFF,0xE0, 0x12,0x90, 0x12,0x00, -/* @nie4 (12x12,V)@ [suki software]*/ -0x04,0x80, 0x1C,0x80, 0xE7,0xF0, 0x24,0x80, -0x24,0x80, 0x20,0x00, 0x82,0xC0, 0xFE,0xA0, -0xAA,0xB0, 0xAA,0xC0, 0xAA,0xE0, 0xAA,0x90, -/* @nie5 (12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0xF4,0x80, 0x27,0xF0, -0x24,0x80, 0x24,0x80, 0x00,0x40, 0x7F,0x40, -0x55,0x50, 0x55,0x60, 0xD5,0xF0, 0x55,0x50, -/* @nie6 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x20, 0x80,0x70, 0x61,0x80, -0x06,0x00, 0x00,0x00, 0x7F,0x20, 0x49,0x20, -0x49,0x20, 0x49,0xF0, 0x49,0x20, 0x49,0x20, -/* @nin0 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x02,0x00, 0x0C,0x10, 0x3F,0xC0, -0xC0,0x10, 0x09,0x00, 0x16,0x00, 0x60,0x90, -0x20,0x40, 0x2F,0x80, 0x20,0x00, 0x24,0x00, -/* @ning0 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x08,0xC0, 0x0B,0x00, 0xFF,0xF0, -0x0A,0x00, 0x09,0x80, 0x30,0x00, 0x22,0x00, -0x22,0x00, 0xA2,0x00, 0x63,0xF0, 0x22,0x00, -/* @ning1 (12x12,V)@ [suki software]*/ -0x02,0x20, 0x44,0x40, 0x28,0x80, 0x19,0x00, -0x27,0xF0, 0x48,0x00, 0x31,0x00, 0x21,0x00, -0x21,0x00, 0xA1,0x00, 0x61,0xF0, 0x21,0x00, -/* @ning2 (12x12,V)@ [suki software]*/ -0x40,0x40, 0x39,0xF0, 0x16,0x00, 0x00,0xC0, -0xFB,0x50, 0x25,0xF0, 0x25,0x40, 0x4D,0x40, -0x04,0x40, 0x44,0x70, 0x54,0x00, 0x5F,0xF0, -/* @ning3 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x09,0x00, 0x31,0x00, 0x21,0x00, -0x21,0x00, 0x21,0x00, 0xA1,0x00, 0x61,0xF0, -0x21,0x00, 0x21,0x00, 0x21,0x00, 0x21,0x00, -/* @ning4 š(12x12,V)@ [suki software]*/ -0x08,0x40, 0x08,0x40, 0x08,0x80, 0xFF,0xF0, -0x09,0x00, 0x0A,0x00, 0x39,0x00, 0x21,0x00, -0x21,0x00, 0xA1,0x00, 0x61,0xF0, 0x21,0x00, -/* @ning5 Ţ(12x12,V)@ [suki software]*/ -0x08,0x20, 0x86,0x20, 0x60,0x70, 0x03,0x80, -0x0C,0x00, 0x32,0x00, 0x22,0x00, 0x22,0x00, -0xA2,0x00, 0x63,0xF0, 0x22,0x00, 0x22,0x00, -/* @niu0 ţ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x02,0x80, 0x0C,0x80, 0x70,0x80, -0x10,0x80, 0x10,0x80, 0x10,0x80, 0x10,0x80, -0xFF,0xF0, 0x10,0x80, 0x10,0x80, 0x10,0x80, -/* @niu1 Ť(12x12,V)@ [suki software]*/ -0x08,0x40, 0x08,0x40, 0x08,0x80, 0xFF,0xF0, -0x09,0x00, 0x0A,0x00, 0x41,0x00, 0x41,0xF0, -0x7F,0x00, 0x41,0x00, 0x41,0x00, 0x41,0x00, -/* @niu2 ť(12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0x34,0x80, 0xD7,0xF0, -0x14,0x80, 0x14,0x80, 0x10,0x00, 0x41,0x00, -0x41,0xF0, 0x7F,0x00, 0x41,0x00, 0x41,0x00, -/* @niu3 Ŧ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x04,0x40, 0x0C,0xC0, 0x75,0x40, -0x06,0x40, 0x0C,0x40, 0x00,0x00, 0x41,0x00, -0x41,0xF0, 0x7F,0x00, 0x41,0x00, 0x41,0x00, -/* @nong0 ŧ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x44,0x80, 0x44,0x80, -0x7F,0xF0, 0x04,0x20, 0x18,0x40, 0x11,0xF0, -0x12,0x00, 0xFC,0x00, 0x13,0x80, 0x10,0x60, -/* @nong1 Ũ(12x12,V)@ [suki software]*/ -0x08,0x20, 0x86,0x20, 0x60,0xF0, 0x07,0x00, -0x00,0x10, 0x1C,0x60, 0x11,0x80, 0x17,0xF0, -0x3A,0x00, 0xD1,0x80, 0x10,0x60, 0x10,0x90, -/* @nong2 ũ(12x12,V)@ [suki software]*/ -0x00,0x10, 0x04,0x20, 0x18,0x40, 0x10,0x80, -0x11,0xF0, 0x17,0x00, 0xF8,0x00, 0x56,0x00, -0x11,0x80, 0x10,0x40, 0x11,0xB0, 0x13,0x10, -/* @nong3 Ū(12x12,V)@ [suki software]*/ -0x00,0x20, 0x02,0x20, 0x42,0x20, 0x52,0x20, -0x53,0xF0, 0x52,0x20, 0x52,0x20, 0x7E,0x20, -0x52,0x20, 0x52,0x20, 0x53,0xF0, 0x52,0x20, -/* @nu0 ū(12x12,V)@ [suki software]*/ -0x10,0x00, 0x10,0x80, 0x13,0x40, 0xFC,0x20, -0x10,0x10, 0x10,0xE0, 0x1F,0x00, 0x20,0x00, -0x3E,0x00, 0x21,0xC0, 0x20,0x30, 0x20,0xC0, -/* @nu1 Ŭ(12x12,V)@ [suki software]*/ -0x00,0x80, 0x20,0x80, 0x39,0x40, 0xE5,0x40, -0x22,0x40, 0x26,0x40, 0x39,0x50, 0x00,0xE0, -0x40,0x40, 0x71,0x40, 0x4A,0x40, 0x44,0x40, -/* @nu2 ŭ(12x12,V)@ [suki software]*/ -0x00,0x40, 0x10,0x40, 0x14,0x80, 0x1A,0x80, -0xF1,0x10, 0x13,0x00, 0x1C,0x80, 0x20,0x20, -0x30,0x90, 0x2D,0x00, 0x22,0x00, 0x25,0x00, -/* @nv0 Ů(12x12,V)@ [suki software]*/ -0x04,0x00, 0x04,0x00, 0x04,0x00, 0x04,0x80, -0x07,0x40, 0x1C,0x40, 0xE4,0x20, 0x04,0x30, -0x04,0x30, 0x04,0xD0, 0x07,0x00, 0x04,0x00, -/* @nuan0 ů(12x12,V)@ [suki software]*/ -0x00,0x00, 0x3F,0xF0, 0x22,0x20, 0x22,0x20, -0x3F,0xF0, 0x01,0x00, 0x65,0x10, 0x55,0x60, -0x47,0xE0, 0x65,0x50, 0x55,0x40, 0x85,0x50, -/* @nue0 Ű(12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x1F,0xF0, 0x10,0x10, -0x12,0x10, 0x12,0x70, 0x12,0x50, 0xFF,0x50, -0x55,0x50, 0x55,0x50, 0x55,0x50, 0x53,0x50, -/* @nue1 ű(12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x40, 0x00,0xB0, 0x3F,0xC0, -0x20,0x40, 0x20,0x40, 0x27,0xF0, 0x24,0x40, -0xA4,0x40, 0x64,0x40, 0x24,0x40, 0x24,0x40, -/* @nuo0 Ų(12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x80, 0xFF,0xF0, 0x12,0x00, -0x14,0x00, 0x44,0x90, 0x7F,0xE0, 0x44,0x80, -0x44,0x80, 0x7F,0xF0, 0x00,0x00, 0x7F,0xF0, -/* @nuo1 ų(12x12,V)@ [suki software]*/ -0x0E,0x00, 0x00,0x00, 0xFF,0xF0, 0x10,0x00, -0x08,0x00, 0xB8,0xB0, 0xAA,0xA0, 0xAA,0xA0, -0xA0,0xF0, 0xFF,0xA0, 0xA0,0xB0, 0xAA,0xA0, -/* @nuo2 Ŵ(12x12,V)@ [suki software]*/ -0x34,0x70, 0x0F,0x80, 0xFF,0xF0, 0x05,0x00, -0x3C,0x80, 0x04,0x00, 0x58,0x50, 0x55,0x50, -0x55,0x50, 0x50,0x70, 0x7F,0x50, 0x50,0x50, -/* @nuo3 ŵ(12x12,V)@ [suki software]*/ -0x84,0x00, 0x64,0x00, 0x47,0xF0, 0x00,0x00, -0x00,0x10, 0x22,0x00, 0x22,0x10, 0xFA,0x70, -0x23,0xC0, 0x26,0x40, 0x22,0x40, 0x22,0x40, -/* @o0 Ŷ(12x12,V)@ [suki software]*/ -0x3F,0xE0, 0x20,0x40, 0x20,0x40, 0x3F,0xC0, -0x08,0x00, 0x48,0x40, 0x48,0x80, 0x7F,0xF0, -0x49,0x00, 0x08,0x00, 0xFF,0x90, 0x48,0x70, -/* @ou0 ŷ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x50,0x10, 0x4C,0x60, -0x43,0x80, 0x46,0x80, 0x58,0x60, 0x44,0x00, -0x08,0x00, 0xF0,0x30, 0x17,0xE0, 0x10,0x10, -/* @ou1 Ÿ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x48,0x20, 0x44,0xC0, -0x43,0x00, 0x5C,0xC0, 0x40,0x30, 0x00,0x10, -0x3F,0x90, 0x70,0x90, 0xAC,0x90, 0x22,0x90, -/* @ou2 Ź(12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x50,0x20, 0x4C,0xC0, -0x43,0x00, 0x5C,0xE0, 0x40,0x00, 0x05,0x00, -0x79,0xC0, 0x41,0x20, 0x41,0x10, 0x41,0x60, -/* @ou3 ź(12x12,V)@ [suki software]*/ -0x08,0x80, 0x4A,0x90, 0x4A,0xE0, 0x5F,0xF0, -0x4A,0xA0, 0xEA,0x90, 0x48,0x80, 0x40,0x70, -0x5F,0x40, 0x55,0x40, 0xFF,0xF0, 0x55,0x40, -/* @ou4 Ż(12x12,V)@ [suki software]*/ -0x3F,0xE0, 0x20,0x40, 0x20,0x40, 0x20,0x40, -0x3F,0xE0, 0x00,0x00, 0x7F,0xF0, 0x40,0x00, -0x48,0x10, 0x46,0x60, 0x41,0x80, 0x46,0x80, -/* @ou5 ż(12x12,V)@ [suki software]*/ -0x01,0x00, 0x02,0x00, 0x0F,0xF0, 0x78,0x00, -0x20,0x00, 0x00,0x70, 0x7F,0x40, 0x49,0x40, -0x49,0x40, 0x7F,0xF0, 0x49,0x40, 0x49,0x50, -/* @ou6 Ž(12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x20, 0x80,0xF0, 0x67,0x00, -0x00,0x00, 0x7F,0xF0, 0x40,0x00, 0x48,0x10, -0x44,0x20, 0x42,0xC0, 0x43,0x00, 0x4C,0xC0, -/* @pa1 ž(12x12,V)@ [suki software]*/ -0x00,0x00, 0x3F,0xF0, 0x20,0x40, 0x20,0x40, -0x3F,0xE0, 0x10,0x80, 0xFF,0xF0, 0x11,0x00, -0x12,0x00, 0x0F,0xF0, 0x18,0x80, 0xE8,0x80, -/* @pa2 ſ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x7C,0xF0, 0x44,0x00, 0x47,0xF0, -0x44,0x80, 0x7C,0x90, 0x00,0x00, 0x00,0x70, -0x3F,0x80, 0x00,0x00, 0x00,0x00, 0xFF,0x80, -/* @pa3 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x40,0x00, 0x7F,0xF0, -0x40,0x00, 0xFE,0x00, 0x81,0xC0, 0x00,0x20, -0x7F,0xD0, 0x44,0x20, 0x44,0x20, 0x7C,0x20, -/* @pa4 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x1F,0xF0, 0x10,0x00, 0xFF,0xF0, -0x10,0x10, 0x1F,0xF0, 0x00,0x00, 0x1F,0xF0, -0x10,0x80, 0x30,0x80, 0xD0,0x80, 0x50,0x80, -/* @pa5 (12x12,V)@ [suki software]*/ -0x0E,0x00, 0x00,0x00, 0xFF,0xF0, 0x08,0x00, -0x06,0x00, 0x00,0x00, 0x1F,0xF0, 0x10,0x80, -0x30,0x80, 0xD0,0x80, 0x10,0x80, 0x10,0x80, -/* @pa6 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x52,0x00, 0x52,0xF0, 0x52,0x90, -0x7E,0x90, 0x52,0x90, 0x52,0x90, 0x00,0xF0, -0x52,0x90, 0x52,0x90, 0x7E,0x90, 0x52,0x90, -/* @pai0 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x11,0x00, 0x12,0x00, 0x00,0x00, 0x1F,0xF0, -0x10,0x80, 0x30,0x80, 0xD0,0x80, 0x50,0x80, -/* @pai1 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x08,0x20, 0x08,0x40, 0xFF,0xF0, -0x09,0x10, 0x02,0x90, 0x08,0x90, 0x7F,0xF0, -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x08,0x90, -/* @pai2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x09,0x00, 0x09,0x00, -0xF9,0xF0, 0x08,0x20, 0x00,0x20, 0x7F,0x60, -0x49,0xA0, 0xCB,0x20, 0x7D,0xF0, 0x49,0x20, -/* @pai3 (12x12,V)@ [suki software]*/ -0x09,0x00, 0x12,0x00, 0x27,0xF0, 0xDC,0x00, -0x48,0x20, 0x12,0x20, 0x12,0x20, 0xFF,0xF0, -0x00,0x00, 0x00,0x00, 0xFF,0xF0, 0x12,0x20, -/* @pai4 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x86,0x20, 0x60,0xF0, 0x07,0x00, -0x00,0x80, 0x48,0x80, 0x48,0x90, 0x7F,0xE0, -0x88,0x80, 0x08,0xC0, 0x52,0x40, 0x52,0x40, -/* @pai5 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x86,0x30, 0x60,0xC0, 0x07,0x00, -0x18,0x00, 0x00,0x10, 0x3F,0xE0, 0x20,0x00, -0x2F,0xF0, 0x28,0x00, 0x4F,0x80, 0x50,0x70, -/* @pan0 (12x12,V)@ [suki software]*/ -0x06,0x20, 0x2A,0x20, 0x32,0x40, 0xFE,0x40, -0x32,0x90, 0x2B,0x50, 0xB6,0x50, 0x4A,0x70, -0xB6,0x50, 0x2A,0x50, 0x33,0x50, 0xFE,0x90, -/* @pan1 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x84,0x30, 0x61,0xC0, 0x06,0x00, -0x00,0x00, 0x49,0x00, 0x69,0xF0, 0x5A,0x90, -0x4C,0x90, 0x7F,0xF0, 0x8C,0x90, 0x9A,0x90, -/* @pan2 (12x12,V)@ [suki software]*/ -0x04,0x20, 0x04,0x40, 0x05,0x80, 0x3E,0x30, -0x24,0x20, 0x64,0x20, 0xB6,0x30, 0x2D,0xA0, -0x24,0x20, 0x24,0xB0, 0x24,0x60, 0x3F,0xA0, -/* @pan3 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x09,0x00, 0x7E,0x40, 0x4C,0x40, -0xDB,0x50, 0x48,0xF0, 0x7F,0x50, 0x08,0xD0, -0x14,0xD0, 0x66,0xD0, 0x45,0x50, 0x45,0x50, -/* @pan4 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x48,0x80, 0x48,0x80, -0x7F,0xF0, 0x02,0x00, 0x0D,0x00, 0x71,0x10, -0x01,0xE0, 0x01,0x00, 0xE1,0x00, 0x19,0xF0, -/* @pan5 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x42,0x10, 0x7F,0xF0, -0x42,0x10, 0x7F,0xF0, 0x44,0x80, 0x24,0x80, -0x1C,0x80, 0x04,0x80, 0xFF,0xF0, 0x04,0x80, -/* @pan6 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x24,0x40, 0x1C,0x40, 0x04,0x50, -0xFF,0xE0, 0x04,0x40, 0x0C,0x40, 0x34,0xC0, -0x14,0x40, 0x00,0x00, 0x1F,0xF0, 0x00,0x00, -/* @pan7 (12x12,V)@ [suki software]*/ -0x24,0x80, 0x1C,0x80, 0x04,0x90, 0xFF,0xE0, -0x0C,0x80, 0x74,0x80, 0x20,0x90, 0x3F,0xE0, -0x27,0x00, 0x24,0xC0, 0x44,0x30, 0x44,0x60, -/* @pang2 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x00,0x40, 0x00,0x40, 0x3F,0xC0, -0x24,0x40, 0x24,0x40, 0x24,0x40, 0x64,0x40, -0x44,0x40, 0x47,0xD0, 0xC4,0x40, 0xC4,0x40, -/* @pang3 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x3F,0xF0, 0x22,0x00, -0x22,0x00, 0x22,0x10, 0x22,0x60, 0xBF,0x80, -0x62,0x00, 0x33,0xF0, 0x2E,0x10, 0x2A,0x20, -/* @pang4 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x06,0x00, 0x24,0x80, 0x24,0x80, -0x34,0x80, 0x2C,0x90, 0xA4,0xE0, 0x66,0xA0, -0x25,0xA0, 0x2C,0xA0, 0x34,0xA0, 0x24,0xB0, -/* @pang5 (12x12,V)@ [suki software]*/ -0x29,0x00, 0x29,0x10, 0x29,0x60, 0xFF,0xF0, -0x29,0x40, 0x29,0x20, 0x20,0x80, 0x26,0x80, -0x34,0x80, 0xAE,0xF0, 0x65,0xA0, 0x24,0xA0, -/* @pang6 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x44,0x80, -0x44,0x80, 0x7F,0xF0, 0x22,0x20, 0x1A,0x20, -0x02,0x20, 0xFF,0xF0, 0x02,0x20, 0x0A,0x20, -/* @pao0 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x80, 0xFF,0xF0, 0x11,0x00, -0x0A,0x00, 0x08,0x30, 0xFF,0xC0, 0x08,0x00, -0x0F,0xF0, 0x00,0x10, 0x08,0x60, 0xFF,0xA0, -/* @pao1 (12x12,V)@ [suki software]*/ -0x3F,0xF0, 0x20,0x40, 0x20,0x40, 0x20,0x40, -0x3F,0xE0, 0x04,0x00, 0x1F,0xF0, 0xF4,0x40, -0x54,0x40, 0x14,0x40, 0x17,0xC0, 0x10,0x20, -/* @pao2 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x08,0x00, 0x37,0xF0, 0xE4,0x80, -0x24,0x80, 0x27,0xA0, 0x20,0x30, 0x3F,0xE0, -0x00,0x00, 0x00,0x00, 0x3F,0xE0, 0x00,0x00, -/* @pao3 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x06,0x00, 0x00,0x30, 0xFF,0xC0, -0x09,0x20, 0x32,0x10, 0x0C,0x00, 0xF7,0xF0, -0x24,0x80, 0x24,0x80, 0x24,0x80, 0x27,0xA0, -/* @pao4 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x90,0x80, 0x51,0x00, 0x73,0xF0, -0x14,0xC0, 0x19,0x20, 0x0C,0x00, 0x13,0xF0, -0xF2,0x40, 0x12,0x40, 0x13,0xC0, 0x10,0x40, -/* @pao5 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7E,0xF0, 0x44,0x00, 0x47,0xF0, -0x44,0x80, 0x7C,0x80, 0x02,0x80, 0x0C,0x00, -0xF7,0xF0, 0x54,0x40, 0x14,0x40, 0x17,0xE0, -/* @pao6 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x20, 0x80,0xF0, 0x67,0x00, -0x1A,0x00, 0x0C,0x00, 0x33,0xF0, 0xD2,0x40, -0x12,0x40, 0x12,0x40, 0x13,0xC0, 0x10,0x10, -/* @pei0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x3F,0xE0, 0x20,0x40, 0x20,0x40, -0x3F,0xD0, 0x40,0x20, 0x40,0x40, 0x40,0x80, -0x43,0x00, 0x4C,0x00, 0x7F,0xF0, 0x44,0x00, -/* @pei1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x49,0x00, -0x49,0x00, 0x7F,0xF0, 0x00,0x80, 0x41,0x00, -0x42,0x00, 0x47,0xF0, 0x58,0x00, 0x60,0x00, -/* @pei2 (12x12,V)@ [suki software]*/ -0x08,0x10, 0x08,0x10, 0x08,0x10, 0xFF,0xE0, -0x08,0x20, 0x08,0x20, 0x21,0x00, 0x29,0x70, -0x27,0x40, 0xA5,0x40, 0x61,0x40, 0x23,0x40, -/* @pei3 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x44,0x80, 0x54,0x80, 0x54,0x80, -0x54,0x90, 0xFE,0xA0, 0x02,0xC0, 0x01,0xC0, -0x00,0xA0, 0xFE,0x90, 0x54,0x80, 0x54,0x90, -/* @pei4 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xC0, 0x40,0x10, 0x5F,0xE0, -0x40,0x10, 0x7F,0xC0, 0x01,0x00, 0x29,0x70, -0x25,0x40, 0xA7,0x40, 0x61,0x40, 0x23,0x40, -/* @pei5 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x40,0x40, 0x4C,0x20, -0x53,0xC0, 0x61,0x00, 0x01,0x30, 0x29,0x20, -0xA7,0x20, 0x61,0x20, 0x23,0x20, 0x25,0x20, -/* @pei6 (12x12,V)@ [suki software]*/ -0x4F,0xF0, 0x48,0xA0, 0x7F,0x20, 0x48,0x20, -0x7F,0x20, 0x48,0xA0, 0x4F,0xF0, 0x00,0x00, -0x43,0xF0, 0x42,0x00, 0x42,0x00, 0x42,0x00, -/* @pei7 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x1F,0xF0, 0xF0,0x00, -0x40,0x30, 0x7F,0xC0, 0x4B,0xF0, 0x4A,0x00, -0x4F,0xF0, 0x4A,0x00, 0x4B,0xF0, 0x40,0x00, -/* @pei8 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x06,0x40, 0x80,0xF0, 0x63,0x00, -0x0C,0x00, 0x27,0xF0, 0x24,0x00, 0x24,0x00, -0x24,0x00, 0xFF,0xF0, 0x24,0x00, 0x24,0x10, -/* @pen0 (12x12,V)@ [suki software]*/ -0x3F,0xE0, 0x20,0x80, 0x20,0x80, 0x3F,0xC0, -0x00,0x00, 0x24,0x00, 0x25,0xF0, 0x3F,0x00, -0x25,0x10, 0xFD,0xE0, 0x25,0x10, 0x3F,0x00, -/* @pen1 (12x12,V)@ [suki software]*/ -0x04,0x40, 0x04,0x40, 0x08,0x80, 0x10,0xF0, -0x29,0x40, 0x4A,0x40, 0x0C,0x70, 0x08,0x40, -0x89,0x40, 0x48,0xF0, 0x2F,0x40, 0x10,0x40, -/* @peng1 (12x12,V)@ [suki software]*/ -0x41,0x00, 0x47,0xF0, 0x7A,0x10, 0x42,0x10, -0x43,0xF0, 0x00,0x00, 0x48,0x80, 0x46,0x80, -0x40,0x80, 0x40,0x80, 0x7F,0xF0, 0x40,0x80, -/* @peng2 (12x12,V)@ [suki software]*/ -0x10,0x80, 0x10,0x80, 0x11,0x00, 0xFF,0xF0, -0x12,0x00, 0x14,0x80, 0x50,0x80, 0x4C,0x80, -0x46,0x80, 0x40,0x80, 0x7F,0xF0, 0x42,0x80, -/* @peng3 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x20,0x00, 0x20,0x80, 0x20,0x80, -0x2E,0x80, 0x2A,0x80, 0x2A,0x80, 0xAA,0x80, -0x6A,0xB0, 0x2A,0xA0, 0x2A,0xC0, 0x2E,0xC0, -/* @peng4 (12x12,V)@ [suki software]*/ -0x08,0x10, 0x84,0x10, 0x60,0xE0, 0x07,0x00, -0x00,0x00, 0x2B,0xA0, 0x2A,0x90, 0xFA,0x90, -0x2A,0xA0, 0x2B,0x80, 0x00,0x00, 0x10,0x80, -/* @peng5 (12x12,V)@ [suki software]*/ -0x20,0x00, 0x2B,0xC0, 0x2A,0xA0, 0x2A,0x90, -0xFA,0x80, 0x2A,0x90, 0x2A,0xE0, 0x2B,0x80, -0x20,0x00, 0x04,0x40, 0x08,0x80, 0x11,0x00, -/* @peng6 (12x12,V)@ [suki software]*/ -0x41,0x00, 0x51,0x00, 0x4D,0x00, 0x49,0xF0, -0x40,0x80, 0xF2,0x80, 0x45,0x50, 0x5D,0x50, -0x4A,0x50, 0x4A,0xF0, 0xED,0x50, 0x49,0x50, -/* @peng7 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x11,0x80, 0x16,0x00, 0xFF,0xF0, -0x14,0x00, 0x12,0x10, 0x7F,0xE0, 0x48,0x80, -0x7F,0xF0, 0x00,0x00, 0x00,0x10, 0x7F,0xE0, -/* @peng8 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x43,0x00, 0x7F,0xF0, 0x44,0x00, -0x47,0xF0, 0x00,0x00, 0x7F,0xF0, 0x44,0x40, -0x44,0x40, 0x7F,0xF0, 0x00,0x00, 0x7F,0xF0, -/* @peng9 (12x12,V)@ [suki software]*/ -0x11,0x00, 0x29,0x00, 0x45,0x00, 0xC1,0xF0, -0x60,0x80, 0x45,0x00, 0x49,0xA0, 0x3A,0xA0, -0x54,0xA0, 0xD5,0xF0, 0x74,0xA0, 0x5A,0xA0, -/* @peng10 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x49,0x00, 0x49,0x00, -0x7F,0xF0, 0x20,0x00, 0x2B,0xA0, 0x2A,0x90, -0xFA,0x80, 0x2A,0x90, 0x2B,0xA0, 0x28,0x80, -/* @peng11 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x49,0x00, -0x49,0x00, 0x49,0x00, 0x7F,0xF0, 0x00,0x00, -0x00,0x00, 0x7F,0xF0, 0x49,0x00, 0x49,0x00, -/* @peng12 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x48,0x80, 0x7F,0xF0, -0x00,0x00, 0x7F,0xF0, 0x48,0x80, 0x7F,0xF0, -0x00,0x10, 0x3F,0x90, 0x70,0x90, 0xAC,0x90, -/* @peng13 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x80, 0xFF,0xF0, 0x11,0x40, -0x12,0x40, 0x2A,0x90, 0x2A,0xD0, 0x2B,0x50, -0xFE,0x50, 0x2A,0xF0, 0x2A,0x50, 0x2B,0x50, -/* @peng14 (12x12,V)@ [suki software]*/ -0x20,0x40, 0x23,0x80, 0x3D,0xF0, 0x21,0x00, -0x21,0xF0, 0x2A,0x00, 0x09,0x80, 0x48,0x00, -0x2F,0xF0, 0x08,0x00, 0x18,0x00, 0x2F,0xF0, -/* @pi1 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x04,0x00, 0x04,0x00, 0x7F,0xF0, -0x04,0x10, 0x44,0x50, 0x40,0x80, 0x41,0x00, -0x42,0x00, 0x4F,0xF0, 0x70,0x00, 0x42,0x00, -/* @pi2 (12x12,V)@ [suki software]*/ -0x40,0x80, 0x43,0x00, 0x7F,0xF0, 0x42,0x00, -0x42,0x00, 0x43,0xF0, 0x00,0x00, 0xFF,0xF0, -0x02,0x00, 0x02,0x00, 0x00,0x00, 0xFF,0xF0, -/* @pi3 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x30,0x10, 0x23,0xF0, 0xB2,0xA0, -0xAA,0xA0, 0xB2,0xA0, 0xAB,0xB0, 0xFC,0x40, -0xA1,0x50, 0xB5,0xD0, 0xAB,0x70, 0xB1,0x50, -/* @pi4 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x11,0x00, 0x12,0x00, 0xFF,0xF0, 0x02,0x00, -0x02,0x00, 0x00,0x00, 0xFF,0xF0, 0x02,0x00, -/* @pi5 (12x12,V)@ [suki software]*/ -0x10,0x80, 0x10,0x80, 0x11,0x00, 0xFF,0xF0, -0x12,0x00, 0x14,0x00, 0x00,0x30, 0x1F,0xC0, -0x11,0x40, 0x11,0x20, 0xFF,0x10, 0x11,0x20, -/* @pi6 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x03,0x00, 0x7C,0x20, 0x57,0xA0, -0x54,0xA0, 0x54,0xA0, 0x77,0xB0, 0x08,0x20, -0x4A,0x20, 0x6A,0x20, 0x5A,0x20, 0xCF,0xE0, -/* @pi7 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x52,0x00, 0x53,0xF0, 0x7E,0x40, -0x52,0x40, 0x52,0x40, 0x52,0x40, 0x00,0x00, -0x52,0xF0, 0x52,0x20, 0x7E,0x20, 0x52,0x40, -/* @pi8 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x3F,0xF0, 0x22,0x10, 0x3F,0xF0, -0x22,0x10, 0x3F,0xF0, 0x00,0x00, 0xFF,0xF0, -0x04,0x00, 0x04,0x00, 0x00,0x00, 0xFF,0xF0, -/* @pi9 ơ(12x12,V)@ [suki software]*/ -0x3F,0xE0, 0x20,0x80, 0x20,0x80, 0x3F,0xC0, -0x00,0x20, 0x00,0x20, 0x3F,0x20, 0x29,0x60, -0x69,0xA0, 0xBF,0x70, 0x29,0x20, 0x29,0x20, -/* @pi10 Ƣ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x44,0x40, -0x44,0x40, 0x7F,0xF0, 0x00,0x10, 0x3F,0x90, -0x24,0xB0, 0x64,0xD0, 0xBF,0xF0, 0x24,0x90, -/* @pi11 ƣ(12x12,V)@ [suki software]*/ -0x08,0x40, 0x04,0x80, 0x01,0x30, 0x7F,0xC0, -0x40,0x00, 0x4F,0xF0, 0x49,0x00, 0x49,0xC0, -0xC9,0x20, 0x7F,0x10, 0x49,0x10, 0x49,0x60, -/* @pi12 Ƥ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x3F,0xF0, 0x20,0x00, -0x22,0x00, 0x23,0x00, 0x22,0xC0, 0x22,0x20, -0xFE,0x10, 0x22,0x20, 0x22,0xC0, 0x23,0x00, -/* @pi13 ƥ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x40,0x10, 0x40,0x20, -0x40,0x40, 0x7F,0x80, 0x40,0x00, 0x40,0x00, -0x40,0x00, 0x7F,0xC0, 0x40,0x20, 0x40,0x20, -/* @pi14 Ʀ(12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x40, 0x00,0x80, 0x3F,0xF0, -0x24,0x40, 0x24,0x40, 0x24,0xB0, 0xA4,0xA0, -0x65,0x20, 0x27,0xE0, 0x26,0x20, 0x25,0x20, -/* @pi15 Ƨ(12x12,V)@ [suki software]*/ -0x04,0x00, 0x08,0x00, 0x3F,0xF0, 0xC0,0x10, -0x7F,0xE0, 0x44,0xF0, 0x44,0x80, 0x7C,0xF0, -0x21,0x00, 0x29,0x20, 0xA7,0x20, 0x61,0xF0, -/* @pi16 ƨ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x48,0x00, -0x48,0x00, 0x4F,0xF0, 0x48,0x80, 0x48,0x80, -0x48,0x00, 0x4F,0xF0, 0x48,0x80, 0x48,0x80, -/* @pi17 Ʃ(12x12,V)@ [suki software]*/ -0x04,0x00, 0x08,0x80, 0xFF,0x80, 0xAA,0xA0, -0xAA,0xA0, 0xEF,0xA0, 0x02,0xA0, 0x4A,0xA0, -0x6A,0xA0, 0xDA,0xA0, 0x4F,0xA0, 0x5A,0xA0, -/* @pian0 ƪ(12x12,V)@ [suki software]*/ -0x08,0x00, 0x10,0x00, 0xE0,0x30, 0x47,0xC0, -0x65,0x70, 0x5D,0x50, 0x45,0x50, 0x15,0x70, -0x2D,0x50, 0xC5,0x50, 0x45,0x70, 0x65,0x50, -/* @pian1 ƫ(12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x1F,0xF0, 0xE8,0x00, -0x40,0x30, 0x3F,0xC0, 0x25,0xF0, 0x25,0x20, -0xA5,0xF0, 0x65,0x20, 0x25,0x20, 0x25,0xF0, -/* @pian2 Ƭ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x7F,0xF0, -0x08,0x80, 0x08,0x80, 0x08,0x80, 0x08,0x80, -0x08,0x80, 0xF8,0x80, 0x08,0x80, 0x08,0xF0, -/* @pian3 ƭ(12x12,V)@ [suki software]*/ -0x40,0x10, 0x5F,0x10, 0x41,0x20, 0x41,0x40, -0x7F,0x00, 0x01,0xF0, 0x00,0x10, 0x3F,0xE0, -0x29,0xF0, 0xA9,0x20, 0x69,0xF0, 0x29,0x20, -/* @piao0 Ʈ(12x12,V)@ [suki software]*/ -0x5C,0x40, 0x55,0x50, 0x7D,0x40, 0x55,0x70, -0x7D,0x40, 0x55,0x50, 0x5C,0x40, 0x00,0x00, -0x7F,0xF0, 0x46,0x60, 0x41,0x80, 0x42,0xC0, -/* @piao1 Ư(12x12,V)@ [suki software]*/ -0x10,0x20, 0x8C,0x30, 0x61,0xC0, 0x0E,0x00, -0x80,0x40, 0x9D,0x50, 0x95,0x40, 0xFD,0x40, -0x95,0x40, 0x95,0x70, 0xFD,0x40, 0x95,0x50, -/* @piao2 ư(12x12,V)@ [suki software]*/ -0x5F,0x10, 0x51,0x50, 0x7F,0x50, 0x51,0x50, -0x7F,0x50, 0x51,0x50, 0x5F,0x10, 0x00,0x00, -0x3F,0xF0, 0x20,0x00, 0x3F,0xF0, 0x40,0x10, -/* @piao3 Ʊ(12x12,V)@ [suki software]*/ -0x00,0x20, 0x80,0x20, 0xBC,0x20, 0xA5,0x20, -0xA5,0x20, 0xA5,0x20, 0xFD,0x20, 0xA5,0x30, -0xA5,0x20, 0xFD,0x20, 0xA5,0x20, 0xA5,0x20, -/* @pie0 Ʋ(12x12,V)@ [suki software]*/ -0x10,0x80, 0x11,0x00, 0xFF,0xF0, 0x12,0x00, -0x2F,0xF0, 0x18,0x80, 0xFF,0xF0, 0x18,0x80, -0x68,0x40, 0x0F,0xF0, 0x03,0x00, 0xFC,0xC0, -/* @pie1 Ƴ(12x12,V)@ [suki software]*/ -0x00,0x00, 0xBF,0x00, 0x64,0x00, 0x28,0xF0, -0xFF,0xA0, 0x28,0xA0, 0x65,0xA0, 0xBE,0xA0, -0x11,0xA0, 0xF9,0xA0, 0x26,0xA0, 0x26,0xF0, -/* @pin0 ƴ(12x12,V)@ [suki software]*/ -0x10,0x80, 0x10,0x80, 0xFF,0xF0, 0x11,0x00, -0x12,0x00, 0x00,0x80, 0x08,0x80, 0x4F,0xF0, -0x38,0x80, 0x08,0x80, 0x18,0x80, 0x6F,0xF0, -/* @pin1 Ƶ(12x12,V)@ [suki software]*/ -0x04,0x20, 0x3C,0xC0, 0x04,0x00, 0x04,0x00, -0xFD,0xD0, 0x24,0x20, 0x24,0xC0, 0x00,0x00, -0x4F,0xE0, 0x58,0x10, 0x6B,0xE0, 0x48,0x10, -/* @pin2 ƶ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x08,0x00, 0x10,0x00, 0x21,0xF0, -0xD3,0x00, 0x5D,0x00, 0x11,0x00, 0x15,0x70, -0x13,0x00, 0x93,0x00, 0x5D,0x00, 0x21,0xF0, -/* @pin3 Ʒ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0xF0, 0x00,0x80, 0x00,0x80, -0x7E,0x80, 0x44,0x80, 0x44,0xF0, 0x44,0x00, -0x44,0xF0, 0x44,0x80, 0x44,0x80, 0x7E,0x80, -/* @pin4 Ƹ(12x12,V)@ [suki software]*/ -0x40,0x00, 0x7F,0xF0, 0x49,0x10, 0x49,0x10, -0x49,0x10, 0x7F,0xF0, 0x40,0x90, 0x3E,0x80, -0x2A,0xA0, 0x2A,0xF0, 0xFE,0xA0, 0x2A,0xA0, -/* @ping0 ƹ(12x12,V)@ [suki software]*/ -0x00,0x40, 0x00,0x40, 0x00,0x40, 0x00,0x40, -0x7F,0xC0, 0x48,0x70, 0x48,0x50, 0x48,0x40, -0x48,0x40, 0xCF,0xC0, 0x88,0x40, 0x88,0x40, -/* @ping1 ƺ(12x12,V)@ [suki software]*/ -0x08,0x00, 0x08,0x00, 0xFF,0xF0, 0x08,0x10, -0x08,0x20, 0x40,0xA0, 0x4C,0x80, 0x43,0x80, -0x40,0x80, 0x7F,0xF0, 0x40,0x80, 0x41,0x80, -/* @ping2 ƻ(12x12,V)@ [suki software]*/ -0x20,0x20, 0x20,0x20, 0x24,0x20, 0x26,0x20, -0x25,0xE0, 0xFC,0xA0, 0x24,0x20, 0x27,0xF0, -0x24,0x20, 0xFC,0x60, 0x24,0xA0, 0x27,0x20, -/* @ping3 Ƽ(12x12,V)@ [suki software]*/ -0x21,0x00, 0x28,0xC0, 0x26,0x90, 0x24,0x60, -0x20,0x00, 0xF5,0x10, 0x24,0x90, 0x24,0x50, -0x24,0x10, 0xFF,0xF0, 0x24,0x10, 0x24,0x50, -/* @ping4 ƽ(12x12,V)@ [suki software]*/ -0x00,0x80, 0x80,0x80, 0xA0,0x80, 0x90,0x80, -0x8E,0x80, 0x84,0x80, 0x80,0x80, 0xFF,0xF0, -0x80,0x80, 0x82,0x80, 0x84,0x80, 0xB8,0x80, -/* @ping5 ƾ(12x12,V)@ [suki software]*/ -0x04,0x00, 0x08,0x00, 0x10,0x00, 0xFF,0x80, -0x48,0x00, 0x09,0x70, 0x49,0x40, 0x49,0x40, -0x49,0x40, 0x7F,0x40, 0x49,0x70, 0x89,0x00, -/* @ping6 ƿ(12x12,V)@ [suki software]*/ -0x00,0x80, 0x10,0x80, 0x50,0x90, 0x3F,0xE0, -0x10,0x80, 0x3F,0xF0, 0xD0,0x80, 0x10,0x80, -0x40,0x70, 0x7F,0x80, 0x48,0x60, 0x48,0x00, -/* @ping7 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x42,0x00, 0x32,0x00, 0x23,0xF0, -0x00,0x00, 0x20,0x80, 0x28,0x80, 0x26,0x80, -0x20,0x80, 0x3F,0xF0, 0x20,0x80, 0x22,0x80, -/* @ping8 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0xFF,0xF0, 0x90,0x40, -0x92,0x40, 0x9A,0x40, 0x97,0xF0, 0x92,0x40, -0x92,0x40, 0x92,0x40, 0x97,0xF0, 0x9A,0x40, -/* @po0 (12x12,V)@ [suki software]*/ -0x08,0x10, 0x08,0x10, 0xFF,0xE0, 0x08,0x20, -0x08,0x40, 0x00,0x10, 0x1F,0xE0, 0x10,0x00, -0x11,0xC0, 0x11,0x30, 0xFF,0x00, 0x11,0x30, -/* @po1 (12x12,V)@ [suki software]*/ -0x08,0x10, 0x06,0x10, 0x80,0x70, 0x63,0x80, -0x0C,0x00, 0x00,0x00, 0x78,0x30, 0x08,0xC0, -0x0F,0x40, 0xF9,0x20, 0x09,0x10, 0x09,0x60, -/* @po2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x1F,0xF0, 0x12,0x80, 0x12,0x50, -0xFE,0x20, 0x12,0xD0, 0x1B,0x00, 0x50,0x00, -0x4F,0xE0, 0x58,0x10, 0x6B,0xE0, 0x48,0x10, -/* @po3 (12x12,V)@ [suki software]*/ -0x20,0x00, 0x92,0x20, 0x43,0xE0, 0x0C,0xA0, -0x31,0x30, 0x06,0x60, 0x78,0x20, 0x4C,0x60, -0x4A,0xA0, 0xF9,0x20, 0x4A,0xB0, 0x4C,0xA0, -/* @po4 (12x12,V)@ [suki software]*/ -0x40,0x80, 0x43,0x00, 0x4F,0xF0, 0x72,0x10, -0x43,0xF0, 0x40,0x00, 0x40,0x10, 0x1F,0xE0, -0x11,0x80, 0x11,0x60, 0xFF,0x10, 0x11,0x20, -/* @po5 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x1F,0xF0, 0x32,0x20, 0xD2,0x20, -0x12,0x20, 0x1F,0xF0, 0x00,0x00, 0x3F,0x00, -0x29,0x30, 0x69,0xC0, 0xBF,0xF0, 0x29,0x10, -/* @po6 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x82,0x00, 0x72,0x00, 0x23,0xF0, -0x00,0x00, 0x00,0x00, 0x1F,0xF0, 0x11,0x10, -0x31,0x10, 0xD1,0x10, 0x11,0x10, 0x11,0x10, -/* @po7 (12x12,V)@ [suki software]*/ -0x24,0x00, 0x1C,0x70, 0x05,0x80, 0xFF,0xF0, -0x05,0x00, 0x0C,0xC0, 0x34,0x00, 0x1F,0xF0, -0x10,0x80, 0x30,0x80, 0xD0,0x80, 0x10,0x80, -/* @pou0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x22,0x00, 0x32,0x70, 0x2E,0x40, -0xA2,0x40, 0x62,0x40, 0x2E,0x40, 0x32,0x70, -0x22,0x00, 0x00,0x00, 0x1F,0xF0, 0x00,0x00, -/* @pu1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x08,0x40, 0x08,0x40, 0x08,0x80, -0xFF,0xF0, 0x09,0x00, 0x0A,0x00, 0x08,0x00, -0x00,0x00, 0x00,0x00, 0xFF,0xF0, 0x04,0x00, -/* @pu2 (12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0x34,0x80, 0xD7,0xF0, -0x14,0x80, 0x14,0x80, 0x00,0x00, 0x17,0xF0, -0x15,0x20, 0x15,0x20, 0xFF,0xF0, 0x15,0x20, -/* @pu3 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x01,0x00, 0x02,0x00, 0x0F,0xF0, -0x34,0x00, 0xE0,0x00, 0x40,0x00, 0x00,0x00, -0x00,0x00, 0xFF,0xF0, 0x04,0x00, 0x02,0x00, -/* @pu4 (12x12,V)@ [suki software]*/ -0x24,0x00, 0x24,0x00, 0x24,0x00, 0x25,0xF0, -0xFD,0x40, 0x25,0x40, 0x25,0x40, 0x2F,0xF0, -0x25,0x40, 0x25,0x40, 0xFD,0x40, 0x25,0xF0, -/* @pu5 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x21,0x00, 0x22,0x00, 0x3C,0xF0, -0x2A,0xA0, 0xFA,0xA0, 0x2A,0xA0, 0x2F,0xF0, -0x2A,0xA0, 0x2A,0xA0, 0xFE,0xA0, 0x2A,0xF0, -/* @pu6 (12x12,V)@ [suki software]*/ -0x20,0x80, 0x24,0x80, 0x24,0x80, 0x24,0xB0, -0xF6,0xA0, 0x25,0xA0, 0x34,0xA0, 0x2C,0xA0, -0x24,0xA0, 0xF5,0xA0, 0x26,0xA0, 0x24,0xB0, -/* @pu7 (12x12,V)@ [suki software]*/ -0x52,0x10, 0x49,0x90, 0x44,0x30, 0x4B,0xC0, -0x48,0x00, 0xFB,0xF0, 0x4A,0x90, 0x4A,0x90, -0x4A,0x90, 0xFF,0xF0, 0x4A,0x90, 0x6A,0x90, -/* @pu8 (12x12,V)@ [suki software]*/ -0x08,0x10, 0x08,0x10, 0x08,0x10, 0xFF,0xE0, -0x08,0x20, 0x08,0x20, 0x2F,0xF0, 0x29,0x20, -0x29,0x20, 0x29,0x20, 0xFF,0xF0, 0x29,0x20, -/* @pu9 (12x12,V)@ [suki software]*/ -0x00,0x10, 0x10,0x60, 0x11,0x80, 0x16,0x00, -0xFF,0xF0, 0x12,0x00, 0x11,0x00, 0x11,0x80, -0x00,0x00, 0x00,0x00, 0xFF,0xF0, 0x04,0x00, -/* @pu10 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x40,0x00, 0x50,0x00, -0x57,0xF0, 0x55,0x40, 0x55,0x40, 0x7F,0xF0, -0x55,0x40, 0x55,0x40, 0x57,0xF0, 0x50,0x00, -/* @pu11 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x22,0x00, 0x2A,0x00, 0x26,0xF0, -0xA2,0x90, 0x7E,0x90, 0x22,0x90, 0x22,0x90, -0x22,0x90, 0x7E,0x90, 0xA2,0x90, 0x26,0xF0, -/* @pu12 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x30, 0x81,0xC0, 0x6E,0x00, -0x10,0x00, 0x17,0xF0, 0x15,0x20, 0x15,0x20, -0x15,0x20, 0xFF,0xF0, 0x15,0x20, 0x15,0x20, -/* @pu13 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x42,0x00, 0x3B,0xF0, 0x10,0x00, -0x22,0x00, 0x2A,0x00, 0xA6,0xF0, 0x7E,0x90, -0x22,0x90, 0x22,0x90, 0x22,0x90, 0x7E,0x90, -/* @pu14 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xE0, 0x44,0x20, 0x44,0x20, -0x7F,0xE0, 0x02,0x90, 0xFA,0xA0, 0xAF,0xE0, -0xAA,0x90, 0xAA,0xF0, 0xAA,0x90, 0xAF,0xE0, -/* @pu15 (12x12,V)@ [suki software]*/ -0x10,0x20, 0x8C,0x70, 0x63,0x80, 0x1E,0x10, -0x00,0xA0, 0x02,0xA0, 0xFA,0xC0, 0xAF,0xA0, -0xAA,0x90, 0xAA,0xF0, 0xAF,0x90, 0xAA,0xE0, -/* @qi0 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x20,0x40, 0xFF,0xD0, 0x2A,0x40, -0x2A,0x40, 0x2A,0x50, 0xFF,0xC0, 0x20,0x40, -0x00,0x10, 0x7F,0xE0, 0x44,0x40, 0x44,0x40, -/* @qi1 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x20,0x40, 0xFF,0xD0, 0x25,0x40, -0x25,0x40, 0x25,0x50, 0xFF,0xC0, 0x20,0x40, -0x04,0x00, 0x18,0x30, 0xF3,0xC0, 0x10,0x30, -/* @qi2 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x08,0xC0, 0x0B,0x00, 0xFF,0xF0, -0x0A,0x00, 0x49,0x00, 0x47,0xF0, 0x44,0x20, -0x7F,0xC0, 0x44,0x00, 0x44,0x00, 0x7F,0xE0, -/* @qi3 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x30, 0x1F,0xC0, 0x11,0x00, -0x11,0x30, 0x11,0x00, 0x1F,0xF0, 0x15,0x20, -0x15,0x10, 0xFD,0x00, 0x13,0xC0, 0x90,0x70, -/* @qi4 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x44,0x40, 0x55,0x40, 0x55,0x40, -0x55,0x50, 0x55,0x60, 0x55,0xC0, 0xFF,0x40, -0x55,0x40, 0x55,0x40, 0x55,0x70, 0x5F,0x40, -/* @qi5 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x02,0x00, 0x02,0x00, 0x02,0x00, -0x02,0x00, 0x02,0x00, 0x02,0x00, 0x7F,0xF0, -0x04,0x00, 0x04,0x00, 0x04,0x00, 0x04,0x00, -/* @qi6 (12x12,V)@ [suki software]*/ -0x40,0x40, 0x20,0x70, 0x33,0x80, 0x04,0x40, -0x55,0x40, 0x55,0x50, 0x55,0x60, 0x55,0xC0, -0xFF,0x40, 0x55,0x40, 0x55,0x50, 0x5F,0x60, -/* @qi7 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x84,0x30, 0x61,0xC0, 0x0E,0x00, -0x00,0x00, 0x48,0x80, 0x48,0xC0, 0x51,0x20, -0x62,0x10, 0xFC,0xF0, 0x62,0x30, 0x51,0x40, -/* @qi8 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x20,0x40, 0x11,0x40, 0x86,0x40, -0x40,0x40, 0x08,0x50, 0x08,0x60, 0x08,0xF0, -0xFC,0x40, 0x12,0x60, 0x12,0x50, 0x22,0x40, -/* @qi9 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x46,0x20, 0x30,0xF0, 0x03,0x00, -0x0C,0x00, 0x04,0x00, 0xFF,0xF0, 0x04,0x20, -0x24,0x40, 0x20,0x30, 0x3F,0xC0, 0x20,0x00, -/* @qi10 (12x12,V)@ [suki software]*/ -0x00,0x20, 0x20,0x20, 0x20,0x20, 0x20,0x20, -0xFF,0xF0, 0x25,0x20, 0x25,0x20, 0x25,0x20, -0x25,0x20, 0x25,0x30, 0xFF,0xE0, 0x20,0x20, -/* @qi11 (12x12,V)@ [suki software]*/ -0x10,0x80, 0x13,0x00, 0x1C,0x00, 0xFF,0xF0, -0x14,0x00, 0x12,0x00, 0x00,0x20, 0x20,0x20, -0xFF,0xE0, 0x25,0x20, 0x25,0x20, 0x25,0x20, -/* @qi12 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x01,0x00, 0x23,0x00, 0x23,0x70, -0x25,0x40, 0x25,0x40, 0x29,0x40, 0xF1,0x70, -0x29,0x00, 0x29,0x00, 0x25,0x00, 0x27,0xF0, -/* @qi13 (12x12,V)@ [suki software]*/ -0x00,0x10, 0x0F,0xF0, 0x00,0x10, 0x00,0x10, -0xFF,0xE0, 0x04,0x20, 0x15,0x20, 0x11,0x80, -0x11,0x60, 0xFF,0x10, 0x11,0x10, 0x11,0x20, -/* @qi14 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x3F,0xF0, 0x22,0x10, 0x3F,0xF0, -0x22,0x10, 0x3F,0xF0, 0x02,0x00, 0x12,0x20, -0x12,0x20, 0x12,0x20, 0xFF,0xF0, 0x12,0x20, -/* @qi15 (12x12,V)@ [suki software]*/ -0x00,0x10, 0x1F,0xF0, 0x00,0x10, 0xFF,0xF0, -0x00,0x20, 0x1F,0xE0, 0x22,0x00, 0x26,0xF0, -0x2A,0x90, 0x32,0x90, 0xE2,0xF0, 0x32,0x00, -/* @qi16 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x48,0x80, 0x48,0x80, -0x7F,0xF0, 0x00,0x80, 0x20,0x80, 0x31,0x00, -0x2A,0xF0, 0xA4,0x00, 0x64,0x00, 0x2A,0xF0, -/* @qi17 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x20,0x80, 0x20,0x80, 0x20,0x80, -0x21,0x10, 0x31,0xE0, 0xAA,0x00, 0x64,0x00, -0x24,0x00, 0x2A,0x00, 0x31,0xF0, 0x21,0x00, -/* @qi18 (12x12,V)@ [suki software]*/ -0x20,0x00, 0x20,0x10, 0xBF,0xE0, 0x62,0x00, -0x22,0x00, 0x23,0xF0, 0x0C,0x10, 0x34,0x10, -0xEF,0xF0, 0x25,0x50, 0x25,0x50, 0x25,0x50, -/* @qi19 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x80, 0x91,0x00, 0x77,0xF0, -0x18,0x80, 0x10,0x40, 0x00,0x00, 0x3F,0xF0, -0x22,0x00, 0x22,0x00, 0x42,0x00, 0x43,0xF0, -/* @qi20 (12x12,V)@ [suki software]*/ -0x00,0x20, 0x10,0x40, 0x10,0x80, 0x91,0x00, -0x53,0xF0, 0x15,0x00, 0x18,0xC0, 0x10,0x00, -0x00,0x00, 0x7F,0xF0, 0x40,0x00, 0x46,0x00, -/* @ji53 (12x12,V)@ [suki software]*/ -0x40,0x10, 0x5F,0x10, 0x41,0x20, 0x41,0x40, -0x7F,0x00, 0x01,0xF0, 0x22,0x00, 0x26,0xF0, -0x3A,0x90, 0xE2,0x90, 0x32,0xF0, 0x2A,0x00, -/* @qi21 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x12,0xF0, 0x12,0x00, 0x12,0x00, -0xFF,0xF0, 0x12,0x40, 0x12,0x40, 0x00,0x00, -0x23,0xE0, 0x22,0x10, 0x22,0x10, 0x22,0x10, -/* @qi22 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x72,0x70, 0x12,0x40, -0x12,0x40, 0x12,0x40, 0x12,0x40, 0xF2,0x40, -0x12,0x40, 0x12,0x40, 0x12,0x40, 0x13,0xC0, -/* @qi23 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x02,0x00, 0x0C,0x00, 0xF2,0x00, -0x62,0x10, 0x22,0x30, 0x22,0x60, 0x22,0xC0, -0x23,0x80, 0x23,0x00, 0x22,0x00, 0x20,0x00, -/* @qi24 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x01,0x00, 0x02,0x00, 0x02,0xF0, -0x04,0x40, 0x08,0x00, 0x10,0x00, 0xE3,0xF0, -0x51,0x40, 0x08,0x40, 0x04,0x40, 0x06,0xC0, -/* @qi25 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x10, 0x1F,0xE0, -0x12,0x00, 0x12,0x70, 0x12,0x40, 0x92,0x40, -0x72,0x40, 0x52,0x40, 0x12,0x40, 0x12,0x40, -/* @qi26 (12x12,V)@ [suki software]*/ -0x02,0x20, 0x2A,0x20, 0x2A,0x20, 0x2A,0x20, -0xFF,0xA0, 0x2A,0x20, 0x2A,0x30, 0x2A,0x60, -0x40,0xB0, 0x43,0x20, 0x7C,0x20, 0x41,0x20, -/* @qi27 (12x12,V)@ [suki software]*/ -0x40,0x80, 0x47,0x00, 0x7B,0xF0, 0x42,0x00, -0x43,0xF0, 0x44,0x00, 0x04,0x00, 0xFF,0xF0, -0x08,0x20, 0x28,0x00, 0x20,0xF0, 0x3F,0x00, -/* @qi28 (12x12,V)@ [suki software]*/ -0x02,0x40, 0x02,0x40, 0xF2,0x70, 0x92,0xA0, -0x92,0xA0, 0x93,0x20, 0xF3,0x30, 0x0E,0x00, -0x03,0x30, 0xF3,0x20, 0x92,0xA0, 0x9A,0xA0, -/* @qi29 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x04,0x00, 0x08,0x00, 0x31,0x00, -0xE5,0x00, 0x25,0x00, 0x25,0x00, 0x25,0x00, -0x25,0x00, 0x25,0x00, 0x25,0x00, 0x25,0xF0, -/* @qi30 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x42,0x00, 0x33,0xF0, 0x24,0x00, -0x08,0x00, 0x14,0x30, 0xE4,0x50, 0x24,0x90, -0x25,0x10, 0x26,0x10, 0x24,0x10, 0x20,0x10, -/* @qi31 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x20,0x40, 0x20,0x40, 0x22,0x40, -0x26,0x40, 0x2B,0xF0, 0x32,0x40, 0xA2,0x40, -0x64,0x40, 0x24,0x40, 0x35,0xF0, 0x2E,0x40, -/* @qi32 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x86,0x20, 0x60,0x70, 0x0F,0x80, -0x04,0x00, 0x1A,0x00, 0xEA,0x00, 0x2A,0x00, -0x2A,0x00, 0x2A,0x00, 0x2A,0x00, 0x2B,0xF0, -/* @qi33 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x20, 0x80,0xF0, 0x63,0x00, -0x0C,0x00, 0x10,0x00, 0x11,0x80, 0x10,0x70, -0x90,0x00, 0x70,0x00, 0x10,0x30, 0x11,0xC0, -/* @qi34 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x82,0x00, 0x73,0xF0, 0x20,0x00, -0x00,0x00, 0x02,0x00, 0x0C,0x00, 0xF2,0x10, -0x52,0x20, 0x12,0x40, 0x12,0x80, 0x13,0x00, -/* @qia0 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x12,0x00, 0x14,0x00, 0x04,0xF0, 0x18,0x90, -0xE0,0x90, 0x21,0x10, 0x20,0x00, 0x24,0x90, -/* @qia1 ǡ(12x12,V)@ [suki software]*/ -0x07,0x00, 0x00,0x00, 0xFF,0xF0, 0x10,0x00, -0x09,0x00, 0x02,0x00, 0x06,0x70, 0x1A,0x40, -0xE2,0x40, 0x22,0x40, 0x12,0x40, 0x0A,0x40, -/* @qia2 Ǣ(12x12,V)@ [suki software]*/ -0x08,0x20, 0x86,0x30, 0x60,0xC0, 0x07,0x00, -0x02,0x00, 0x04,0x70, 0x0A,0x40, 0x32,0x40, -0xC2,0x40, 0x22,0x40, 0x12,0x40, 0x0A,0x40, -/* @qian0 ǣ(12x12,V)@ [suki software]*/ -0x00,0x80, 0x03,0x00, 0x22,0x20, 0x26,0x40, -0x27,0xC0, 0x2A,0x40, 0x32,0x40, 0xE2,0x40, -0x23,0xF0, 0x32,0x40, 0x2A,0x40, 0x26,0x40, -/* @qian1 Ǥ(12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x12,0x00, 0x15,0x00, 0x01,0x00, 0x21,0x00, -0x21,0x00, 0x21,0x00, 0x7F,0xF0, 0x41,0x00, -/* @qian2 ǥ(12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0x34,0x80, 0xD7,0xF0, -0x14,0x80, 0x14,0x80, 0x10,0x80, 0x02,0x00, -0x22,0x00, 0x22,0x00, 0x3F,0xF0, 0x42,0x00, -/* @qian3 Ǧ(12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0x34,0x80, 0xD7,0xF0, -0x14,0x80, 0x14,0x80, 0x10,0x00, 0x02,0xF0, -0x7C,0x80, 0x40,0x80, 0x40,0x80, 0x40,0x80, -/* @qian4 ǧ(12x12,V)@ [suki software]*/ -0x02,0x00, 0x02,0x00, 0x22,0x00, 0x22,0x00, -0x22,0x00, 0x22,0x00, 0x22,0x00, 0x3F,0xF0, -0x42,0x00, 0x42,0x00, 0x42,0x00, 0xC2,0x00, -/* @qian5 Ǩ(12x12,V)@ [suki software]*/ -0x02,0x00, 0x42,0x00, 0x33,0xF0, 0x20,0x00, -0x02,0x00, 0x22,0x00, 0x22,0x00, 0x22,0x00, -0x22,0x00, 0x3F,0xF0, 0x42,0x00, 0x42,0x00, -/* @qian6 ǩ(12x12,V)@ [suki software]*/ -0x08,0x40, 0x10,0x40, 0xE0,0x80, 0x41,0x20, -0x62,0x90, 0x54,0x80, 0x48,0xA0, 0x18,0x90, -0x24,0x80, 0xC2,0x80, 0x42,0x90, 0x61,0x60, -/* @qian7 Ǫ(12x12,V)@ [suki software]*/ -0x01,0x00, 0x02,0x00, 0x04,0x00, 0x1F,0xF0, -0xE2,0x00, 0x42,0x00, 0x22,0x00, 0x22,0x00, -0x22,0x00, 0x3F,0xF0, 0x42,0x00, 0x42,0x00, -/* @qian8 ǫ(12x12,V)@ [suki software]*/ -0x82,0x00, 0x72,0x00, 0x23,0xF0, 0x00,0x00, -0x22,0x10, 0x2A,0x40, 0xAA,0x50, 0x7F,0xF0, -0x2A,0x40, 0x2A,0x40, 0x3F,0xF0, 0x6A,0x50, -/* @qian9 Ǭ(12x12,V)@ [suki software]*/ -0x20,0x10, 0x2F,0xD0, 0x2A,0x90, 0xFA,0x90, -0x2A,0xF0, 0x2A,0x90, 0x2F,0xD0, 0x22,0x10, -0x0C,0x00, 0xF2,0x30, 0x52,0x40, 0x12,0x80, -/* @qian10 ǭ(12x12,V)@ [suki software]*/ -0x7D,0x20, 0x55,0x20, 0x4D,0x30, 0x7F,0xC0, -0x4D,0x50, 0x55,0x40, 0x7D,0x50, 0x04,0x00, -0x08,0x40, 0x12,0x40, 0xE1,0xC0, 0x10,0x40, -/* @qian11 Ǯ(12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0xF7,0xF0, 0x24,0x80, -0x24,0x80, 0x20,0x80, 0x09,0x00, 0x09,0x00, -0xFF,0x00, 0x11,0xD0, 0x92,0x30, 0x72,0x20, -/* @qian12 ǯ(12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0x34,0x80, 0xD7,0xF0, -0x14,0x80, 0x14,0x80, 0x08,0x00, 0x08,0x00, -0xFF,0xF0, 0x08,0x80, 0x08,0x80, 0x08,0x80, -/* @qian13 ǰ(12x12,V)@ [suki software]*/ -0x10,0x00, 0x10,0x00, 0x17,0xF0, 0x15,0x20, -0x95,0x20, 0x75,0x20, 0x57,0xF0, 0x10,0x00, -0x10,0x00, 0x13,0xF0, 0x30,0x00, 0xD0,0x00, -/* @qian14 DZ(12x12,V)@ [suki software]*/ -0x08,0x20, 0x84,0x30, 0x61,0xC0, 0x06,0x00, -0x09,0x00, 0x2A,0x70, 0xFC,0x50, 0x2A,0x50, -0x29,0x50, 0x01,0x50, 0x2A,0x50, 0xFC,0x50, -/* @qian15 Dz(12x12,V)@ [suki software]*/ -0x02,0x00, 0x02,0x00, 0x43,0xF0, 0x30,0x00, -0x00,0x00, 0x04,0x00, 0x75,0xF0, 0x55,0x50, -0x55,0x50, 0xFD,0x50, 0x55,0x50, 0x55,0xD0, -/* @qian16 dz(12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x20, 0x80,0x70, 0x61,0x80, -0x06,0x00, 0x01,0x00, 0x09,0x00, 0x09,0x00, -0xFF,0xC0, 0x09,0x30, 0x09,0x10, 0x49,0x20, -/* @qian17 Ǵ(12x12,V)@ [suki software]*/ -0x02,0x00, 0x82,0x00, 0x73,0xF0, 0x20,0x00, -0x41,0x00, 0x31,0xF0, 0x04,0x00, 0x74,0x00, -0x55,0xF0, 0x55,0x50, 0xFD,0x50, 0x55,0x50, -/* @qian18 ǵ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x24,0x80, 0x2C,0x80, 0x34,0x90, -0xEF,0xF0, 0x25,0x10, 0x25,0x50, 0x20,0xB0, -0x03,0x10, 0x3C,0x10, 0x28,0x10, 0x28,0x10, -/* @qian19 Ƕ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x02,0x00, 0x6F,0xF0, 0x22,0x40, -0x22,0x40, 0x2F,0xF0, 0x22,0x00, 0xE0,0x80, -0x21,0x00, 0x2E,0x10, 0x22,0xE0, 0x22,0x10, -/* @qian20 Ƿ(12x12,V)@ [suki software]*/ -0x01,0x00, 0x02,0x00, 0x04,0x00, 0x18,0x00, -0xF0,0x00, 0x50,0x30, 0x10,0xC0, 0x17,0x00, -0x10,0xC0, 0x10,0x30, 0x12,0x00, 0x14,0x00, -/* @qian21 Ǹ(12x12,V)@ [suki software]*/ -0x01,0x00, 0x15,0x40, 0x95,0x50, 0x7F,0xF0, -0x15,0x40, 0x1F,0xF0, 0x35,0x60, 0xD7,0xD0, -0x11,0x00, 0x05,0x00, 0xF8,0x30, 0x13,0xC0, -/* @qiang0 ǹ(12x12,V)@ [suki software]*/ -0x10,0x20, 0x10,0xC0, 0x13,0x00, 0xFF,0xF0, -0x12,0x00, 0x11,0x80, 0x14,0x00, 0x0B,0xF0, -0x32,0x00, 0xE2,0x20, 0x22,0x10, 0x13,0xE0, -/* @qiang1 Ǻ(12x12,V)@ [suki software]*/ -0x3F,0xF0, 0x20,0x40, 0x20,0x40, 0x20,0x40, -0x3F,0xE0, 0x02,0x00, 0x07,0xF0, 0x0A,0x00, -0x12,0x00, 0xE2,0x20, 0x12,0x10, 0x0B,0xE0, -/* @qiang2 ǻ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x48,0x80, -0x48,0x80, 0x7F,0xF0, 0x10,0x80, 0x21,0x40, -0x2E,0x40, 0xA4,0x40, 0x60,0x70, 0x28,0x40, -/* @qiang3 Ǽ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x10,0x80, 0x10,0x80, 0x94,0x80, -0x54,0x80, 0x34,0x90, 0x14,0xE0, 0x1F,0x80, -0x14,0x80, 0x34,0xF0, 0xD4,0x80, 0x54,0x80, -/* @qiang4 ǽ(12x12,V)@ [suki software]*/ -0x08,0x10, 0x08,0x10, 0xFF,0xF0, 0x08,0x20, -0x08,0x20, 0x22,0x00, 0x2A,0xF0, 0x26,0x80, -0x22,0xB0, 0xFE,0xA0, 0x22,0xA0, 0x26,0xB0, -/* @qiang5 Ǿ(12x12,V)@ [suki software]*/ -0x41,0x00, 0x41,0x00, 0x49,0x70, 0x49,0x40, -0xED,0x40, 0x4B,0x50, 0x49,0x50, 0x5F,0x50, -0x49,0x50, 0xEB,0x50, 0x4D,0x40, 0x49,0x40, -/* @qiang6 ǿ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x4F,0x80, 0x48,0x80, 0x48,0x80, -0x78,0xF0, 0x00,0x00, 0x03,0xE0, 0x7A,0x20, -0x4A,0x20, 0x4F,0xF0, 0x4A,0x20, 0x4A,0x20, -/* @qiang7 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x80, 0xFF,0xF0, 0x11,0x00, -0x12,0x00, 0x12,0x00, 0x04,0x00, 0x0B,0xF0, -0x12,0x00, 0xE2,0x20, 0x12,0x10, 0x0B,0xE0, -/* @qiao0 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x11,0x80, 0x16,0x00, 0xFF,0xF0, -0x14,0x20, 0x12,0xA0, 0x08,0xF0, 0xA8,0xA0, -0xA8,0xA0, 0xFC,0x00, 0xAA,0xA0, 0xAA,0xF0, -/* @qiao1 (12x12,V)@ [suki software]*/ -0x04,0x80, 0x1C,0x80, 0xE7,0xF0, 0x24,0x80, -0x24,0xA0, 0x44,0x40, 0x45,0x80, 0x7F,0xF0, -0x84,0x80, 0x94,0x40, 0x08,0x30, 0xFF,0xC0, -/* @qiao2 (12x12,V)@ [suki software]*/ -0x20,0xF0, 0x20,0x80, 0x2E,0xB0, 0xAA,0xA0, -0x6A,0xA0, 0x2A,0xB0, 0x2E,0x80, 0x20,0xF0, -0x23,0x00, 0x02,0xC0, 0xFE,0x20, 0x12,0x10, -/* @qiao3 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x0C,0x00, 0x00,0x00, 0xFF,0xF0, -0x10,0x00, 0x08,0x00, 0x27,0xF0, 0x1D,0x20, -0x05,0x20, 0xFD,0x20, 0x05,0x20, 0x0D,0x20, -/* @qiao4 (12x12,V)@ [suki software]*/ -0x11,0x80, 0x16,0x00, 0xFF,0xF0, 0x14,0x00, -0x12,0x80, 0x18,0x80, 0x49,0x00, 0x4A,0xF0, -0x4C,0x00, 0x78,0x00, 0x4C,0x00, 0x4A,0xF0, -/* @qiao5 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x44,0x80, 0x44,0x80, -0x7F,0xF0, 0x08,0x00, 0x3F,0xF0, 0xE4,0x90, -0x24,0x90, 0xA4,0x90, 0x7F,0xF0, 0x24,0x90, -/* @qiao6 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x08,0x40, 0x48,0x80, 0x48,0x80, -0x49,0x10, 0x4A,0xE0, 0x4E,0x00, 0x7C,0x00, -0xC8,0x00, 0x8C,0x00, 0x8A,0xF0, 0x89,0x00, -/* @qiao7 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x1F,0xF0, 0xE0,0x00, -0x48,0x80, 0x09,0x00, 0x4B,0x10, 0x4E,0xE0, -0x7C,0x00, 0x48,0x00, 0x8C,0x00, 0x8A,0xF0, -/* @qiao8 (12x12,V)@ [suki software]*/ -0x00,0x10, 0x20,0x10, 0x20,0x20, 0x3F,0xE0, -0x20,0x20, 0x20,0x40, 0x00,0x40, 0x40,0x00, -0x42,0x00, 0x7F,0x00, 0x42,0x00, 0x42,0x00, -/* @qiao9 (12x12,V)@ [suki software]*/ -0x20,0x10, 0x23,0x90, 0xFA,0x90, 0x2F,0xF0, -0x2A,0x90, 0xFA,0x90, 0x23,0x90, 0x20,0x00, -0x17,0xF0, 0x0C,0x90, 0xFC,0x90, 0x04,0x90, -/* @qiao10 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x80, 0xFF,0xF0, 0x11,0x20, -0x12,0xA0, 0x08,0xF0, 0xA8,0xA0, 0xA8,0xA0, -0xA8,0x00, 0xFE,0xA0, 0xAA,0xA0, 0xAA,0xF0, -/* @qiao11 (12x12,V)@ [suki software]*/ -0x10,0x80, 0x11,0x80, 0xFA,0xF0, 0x24,0x80, -0x2A,0xF0, 0x24,0x80, 0x0A,0x40, 0x44,0x90, -0x43,0x00, 0x7F,0xF0, 0x10,0x40, 0x4C,0x90, -/* @qiao12 (12x12,V)@ [suki software]*/ -0x00,0x10, 0x1F,0xF0, 0x00,0x10, 0xFF,0xF0, -0x00,0x20, 0x1F,0xE0, 0x00,0x00, 0x27,0xF0, -0x1D,0x20, 0x05,0x20, 0xFD,0x20, 0x05,0x20, -/* @qiao13 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x02,0x00, 0x0C,0x00, 0x3F,0xF0, -0xE0,0x00, 0x40,0x00, 0x2F,0xF0, 0x19,0x20, -0x09,0x20, 0xF9,0x20, 0x09,0x20, 0x19,0x20, -/* @qiao14 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x35,0x00, 0x25,0x00, 0x29,0xF0, -0x29,0x10, 0x31,0x10, 0x21,0x00, 0xA2,0x00, -0x62,0x00, 0x33,0xC0, 0x2A,0x40, 0x2A,0x40, -/* @qie0 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x02,0x00, 0x02,0x00, 0xFF,0xF0, -0x04,0x10, 0x04,0x20, 0x24,0x40, 0x20,0x10, -0x20,0x60, 0x3F,0x80, 0x20,0x00, 0x20,0x00, -/* @qie1 (12x12,V)@ [suki software]*/ -0x20,0x00, 0x21,0x00, 0x21,0x00, 0x21,0x30, -0x27,0xC0, 0xF9,0x00, 0x21,0x00, 0x21,0xF0, -0x20,0x00, 0x23,0xF0, 0xFA,0x00, 0x22,0x00, -/* @qie2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x7F,0xF0, 0x44,0x40, 0x44,0x40, 0x44,0x40, -0x44,0x40, 0x44,0x40, 0x44,0x40, 0x7F,0xF0, -/* @qie3 (12x12,V)@ [suki software]*/ -0x0E,0x00, 0x00,0x00, 0xFF,0xF0, 0x10,0x00, -0x0C,0x00, 0x00,0x80, 0x00,0x80, 0x08,0x80, -0x08,0xB0, 0xFF,0xC0, 0x08,0x80, 0x08,0x80, -/* @qie4 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x00,0x40, 0x34,0x40, 0x27,0xF0, -0x28,0x80, 0x28,0x80, 0x30,0x90, 0xA1,0x00, -0x61,0x00, 0x21,0xF0, 0x31,0x00, 0x29,0x00, -/* @qin0 (12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0xF7,0xF0, 0x24,0x80, -0x24,0x80, 0x24,0x80, 0x20,0x00, 0x02,0x00, -0x1C,0x00, 0xE8,0x30, 0x0F,0xC0, 0x08,0x30, -/* @qin1 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x1F,0xF0, 0xE4,0x00, -0x40,0xC0, 0x01,0x00, 0x55,0x40, 0x55,0x70, -0x55,0x40, 0x55,0x40, 0x55,0x50, 0x55,0x60, -/* @qin2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x02,0x00, 0x22,0x40, 0x22,0x50, -0x32,0x40, 0x2E,0x40, 0xA2,0x40, 0x63,0xF0, -0x22,0x40, 0x26,0x40, 0x3A,0x50, 0x2A,0x40, -/* @qin3 (12x12,V)@ [suki software]*/ -0x04,0x40, 0x04,0x40, 0x54,0xA0, 0x54,0xA0, -0x55,0xA0, 0x56,0xA0, 0x7C,0xB0, 0xD4,0xF0, -0x55,0x20, 0x55,0x30, 0x57,0x20, 0x55,0x20, -/* @qin4 (12x12,V)@ [suki software]*/ -0x00,0x20, 0x44,0x20, 0x54,0x40, 0x54,0x40, -0x7C,0x90, 0x54,0x90, 0x55,0x10, 0x02,0x50, -0x45,0x30, 0x54,0x90, 0x54,0x90, 0x7C,0x50, -/* @qin5 (12x12,V)@ [suki software]*/ -0x20,0x00, 0x20,0x00, 0x23,0xA0, 0xFA,0xA0, -0x2A,0xA0, 0x2F,0xF0, 0x2A,0xA0, 0xFA,0xA0, -0x23,0xA0, 0x28,0x00, 0x08,0x30, 0xFF,0xC0, -/* @qin6 (12x12,V)@ [suki software]*/ -0x20,0x00, 0x20,0x00, 0x20,0x00, 0x27,0xF0, -0x24,0x80, 0xF4,0x80, 0x24,0x80, 0x24,0x80, -0x28,0x80, 0xF8,0xF0, 0x28,0x80, 0x28,0x80, -/* @qin7 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x12,0x00, 0x08,0x30, 0x0B,0xA0, 0x18,0xA0, -0x2D,0xB0, 0xDA,0xE0, 0x4D,0xB0, 0x28,0xA0, -/* @qin8 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x08,0x00, 0x10,0x30, 0x1B,0xA0, -0x28,0xA0, 0x28,0xB0, 0x4D,0xE0, 0xAA,0xA0, -0x5A,0xA0, 0x2D,0xB0, 0x28,0xA0, 0x1B,0xA0, -/* @qin9 (12x12,V)@ [suki software]*/ -0x08,0x10, 0x34,0x10, 0x23,0x20, 0x22,0x40, -0x3F,0xF0, 0x20,0x40, 0xA0,0x80, 0x6A,0xA0, -0x2A,0xB0, 0x2A,0xA0, 0x2A,0xA0, 0x2A,0xB0, -/* @qin10 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x86,0x30, 0x60,0xC0, 0x03,0x10, -0x0C,0x60, 0x01,0x80, 0x00,0x00, 0x0F,0xF0, -0x80,0x00, 0x40,0x00, 0x30,0x00, 0x00,0x00, -/* @qing0 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x02,0x00, 0x22,0x00, 0x2A,0xF0, -0x2A,0xA0, 0x2A,0xA0, 0x2A,0xA0, 0xFE,0xA0, -0x2A,0xA0, 0x2A,0xA0, 0x2A,0xA0, 0x2A,0xF0, -/* @qing1 (12x12,V)@ [suki software]*/ -0x23,0x10, 0x2D,0x10, 0xF1,0x10, 0x2F,0xF0, -0x21,0x20, 0x21,0x20, 0x20,0x80, 0x41,0x80, -0x42,0x80, 0x44,0x80, 0x48,0xF0, 0x54,0x80, -/* @qing2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x08,0x10, 0x15,0x10, 0x65,0x10, -0xD5,0x20, 0x55,0x20, 0x55,0x40, 0x55,0x40, -0x55,0xA0, 0x55,0x20, 0x54,0x10, 0x57,0xF0, -/* @qing3 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x08,0x00, 0x1F,0xF0, 0xE0,0x00, -0x5F,0xF0, 0x04,0x10, 0x04,0x20, 0x40,0x00, -0x4F,0xE0, 0x58,0x00, 0x6B,0xF0, 0x48,0x00, -/* @qing4 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xC0, 0x40,0x40, 0x40,0xB0, -0x9F,0xC0, 0x80,0x00, 0x7F,0xF0, 0x49,0x10, -0x49,0x60, 0x7F,0x30, 0x00,0x00, 0x7F,0xF0, -/* @qing5 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x86,0x20, 0x60,0xF0, 0x07,0x00, -0x18,0x00, 0x04,0x00, 0x55,0xF0, 0x55,0x50, -0x55,0x50, 0xFD,0x50, 0x55,0x50, 0x55,0x50, -/* @qing6 (12x12,V)@ [suki software]*/ -0x44,0x00, 0x58,0x00, 0x57,0x50, 0xF5,0x50, -0x57,0x50, 0xF0,0xD0, 0x5F,0xD0, 0x44,0x70, -0x18,0xD0, 0xE9,0x50, 0x26,0x50, 0x2C,0x50, -/* @qing7 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x3F,0xF0, 0x22,0x20, 0x22,0x20, -0x3F,0xF0, 0x04,0x00, 0x44,0x00, 0x55,0xF0, -0x55,0x50, 0xFD,0x50, 0x55,0x50, 0x55,0x50, -/* @qing8 (12x12,V)@ [suki software]*/ -0x10,0x00, 0x28,0x20, 0xCA,0xA0, 0xAA,0xB0, -0xAA,0xA0, 0xAF,0xE0, 0xAA,0xA0, 0xAA,0xA0, -0xAA,0xB0, 0xA8,0x20, 0xA8,0x20, 0xAF,0x80, -/* @qing9 (12x12,V)@ [suki software]*/ -0x0E,0x00, 0x00,0x00, 0xFF,0xF0, 0x10,0x00, -0x0A,0x00, 0x22,0x00, 0x2A,0xF0, 0x2A,0xA0, -0x2A,0xA0, 0xFE,0xA0, 0x2A,0xA0, 0x2A,0xA0, -/* @qing10 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x3F,0xF0, 0x04,0x20, -0x04,0x40, 0x04,0x80, 0x40,0x00, 0x4F,0xE0, -0x58,0x00, 0x68,0x10, 0x4B,0xE0, 0x48,0x10, -/* @qing11 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x42,0x00, 0x32,0x00, 0x23,0xF0, -0x00,0x00, 0x44,0x00, 0x55,0xF0, 0x55,0x50, -0x55,0x50, 0xFD,0x50, 0x55,0x50, 0x55,0x50, -/* @qing12 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x3F,0xF0, 0x22,0x00, -0x22,0x00, 0x22,0x00, 0x22,0x30, 0xA3,0xC0, -0x7E,0x00, 0x23,0x80, 0x22,0x60, 0x22,0x10, -/* @qiong0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x22,0x00, 0x22,0x00, 0x3F,0xF0, -0x22,0x10, 0x10,0x00, 0x17,0xB0, 0x14,0x80, -0x94,0x80, 0x74,0xF0, 0x14,0x80, 0x14,0xA0, -/* @qiong1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x31,0x00, 0x22,0x80, 0x2C,0x80, -0x20,0x80, 0x20,0xB0, 0xA3,0xC0, 0x60,0x80, -0x20,0x80, 0x20,0x80, 0x28,0x80, 0x24,0x80, -/* @qiu0 (12x12,V)@ [suki software]*/ -0x24,0x40, 0x24,0x80, 0x27,0x00, 0x3F,0xF0, -0x45,0x00, 0x44,0xC0, 0x44,0x00, 0x01,0x00, -0x0E,0x10, 0x00,0xE0, 0xFF,0x80, 0x02,0x60, -/* @qiu1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x7F,0xF0, -0x21,0x00, 0x21,0x00, 0x21,0x00, 0x21,0x00, -0x41,0x00, 0x41,0xF0, 0x41,0x00, 0x41,0x00, -/* @qiu2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x3F,0xF0, 0x24,0x00, -0x24,0x10, 0x47,0xF0, 0x44,0x10, 0x44,0x10, -0x00,0x00, 0x7F,0xF0, 0x40,0x00, 0x44,0x10, -/* @qiu3 (12x12,V)@ [suki software]*/ -0x20,0x00, 0x22,0x00, 0x3F,0xF0, 0x22,0x10, -0x22,0x10, 0x10,0x00, 0x14,0x10, 0x13,0x20, -0x10,0x40, 0xFF,0xF0, 0x10,0x80, 0x91,0x40, -/* @qiu4 (12x12,V)@ [suki software]*/ -0x10,0x00, 0x10,0x10, 0x14,0x10, 0x12,0x20, -0x11,0x40, 0x10,0x80, 0x10,0x00, 0xFF,0xF0, -0x10,0x80, 0x91,0x80, 0x52,0x40, 0x74,0x20, -/* @qiu5 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x40,0x00, 0x40,0x10, -0x40,0x20, 0x40,0x40, 0x41,0x80, 0x7E,0x00, -0x41,0x00, 0x40,0x80, 0x40,0x60, 0x40,0x30, -/* @qiu6 (12x12,V)@ [suki software]*/ -0x10,0x00, 0x10,0x00, 0x17,0xF0, 0x14,0x30, -0x94,0xD0, 0x7F,0x10, 0x14,0x10, 0x14,0x10, -0x1F,0x90, 0x34,0x50, 0xD4,0x50, 0x14,0x50, -/* @qiu7 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x86,0x20, 0x60,0xF0, 0x07,0x00, -0x00,0x00, 0x7F,0xF0, 0x40,0x10, 0x40,0x20, -0x40,0xC0, 0x7F,0x00, 0x40,0x80, 0x40,0x60, -/* @qu0 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x22,0x00, 0x22,0xF0, 0x22,0x00, -0xFF,0xF0, 0x22,0x40, 0x22,0x40, 0x0A,0x50, -0x14,0x90, 0xE4,0x90, 0x24,0x90, 0x2C,0x90, -/* @qu1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x40,0x00, 0x40,0x00, -0x48,0x10, 0x44,0x20, 0x44,0x40, 0x42,0x80, -0x41,0x00, 0x46,0x80, 0x78,0x60, 0x50,0x30, -/* @qu2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x1F,0xC0, 0x10,0x80, 0xFF,0xF0, -0x10,0x90, 0x1F,0xC0, 0x00,0x00, 0x7F,0xF0, -0x44,0x40, 0x44,0x40, 0x44,0x40, 0x44,0x40, -/* @qu3 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x1F,0xF0, 0x10,0x80, -0x10,0x80, 0xFF,0xF0, 0x10,0x80, 0x10,0x80, -0x10,0x80, 0xFF,0xF0, 0x10,0x80, 0x10,0x80, -/* @qu4 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x3F,0xC0, 0x6A,0x40, 0xAA,0x50, -0x2A,0x60, 0x3F,0xF0, 0x00,0x00, 0x00,0x00, -0x7F,0xF0, 0x44,0x10, 0x42,0x60, 0x41,0x80, -/* @qu5 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0xF0, 0xFF,0x00, -0x90,0x30, 0x93,0x80, 0x90,0x80, 0x90,0x80, -0x90,0x80, 0x97,0xF0, 0x90,0x80, 0x90,0x80, -/* @qu6 (12x12,V)@ [suki software]*/ -0x40,0x10, 0x5F,0x10, 0x41,0x20, 0x41,0x20, -0x7F,0x00, 0x01,0xF0, 0x00,0x00, 0x7F,0xF0, -0x48,0x00, 0x44,0x10, 0x42,0x60, 0x41,0x80, -/* @qu7 (12x12,V)@ [suki software]*/ -0x20,0x00, 0x12,0x40, 0x83,0xC0, 0x4C,0x40, -0x10,0x40, 0x00,0x50, 0x7F,0x60, 0x55,0xF0, -0x55,0x60, 0x55,0x50, 0x55,0x40, 0x55,0x40, -/* @qu8 ȡ(12x12,V)@ [suki software]*/ -0x40,0x00, 0x40,0x00, 0x7F,0xF0, 0x49,0x10, -0x49,0x10, 0x49,0x20, 0x7F,0xF0, 0x40,0x20, -0x40,0x40, 0x3E,0x00, 0x21,0x90, 0x20,0x60, -/* @qu9 Ȣ(12x12,V)@ [suki software]*/ -0x81,0x40, 0x81,0x40, 0xFF,0x40, 0xAA,0x40, -0xAA,0x50, 0xAA,0x60, 0xFF,0xC0, 0x85,0x40, -0x61,0x40, 0x5A,0x40, 0x44,0x70, 0x4A,0x40, -/* @qu10 ȣ(12x12,V)@ [suki software]*/ -0x08,0x00, 0x09,0xF0, 0x38,0x40, 0x0B,0x80, -0xF8,0x40, 0x28,0x20, 0x29,0xF0, 0x00,0x00, -0x5E,0xF0, 0x52,0x90, 0x7F,0xF0, 0x52,0x90, -/* @qu11 Ȥ(12x12,V)@ [suki software]*/ -0x02,0x00, 0x12,0xF0, 0x12,0x00, 0xFF,0xF0, -0x12,0x40, 0x12,0x50, 0x42,0x10, 0x7F,0xE0, -0x49,0x20, 0x7F,0xF0, 0x48,0x10, 0x54,0x60, -/* @qu12 ȥ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x80, 0x10,0x80, 0x10,0x80, -0x10,0x90, 0x10,0xA0, 0x10,0xE0, 0xFF,0x80, -0x10,0x80, 0x10,0x80, 0x10,0x90, 0x10,0x80, -/* @quan0 Ȧ(12x12,V)@ [suki software]*/ -0x00,0x00, 0xFF,0xF0, 0x82,0x40, 0x8A,0x40, -0xAA,0x80, 0x9B,0xF0, 0x8E,0x80, 0xBA,0xA0, -0x8A,0xE0, 0x9B,0x00, 0xAA,0x90, 0x8A,0xC0, -/* @quan1 ȧ(12x12,V)@ [suki software]*/ -0x40,0x40, 0x5D,0xF0, 0xF7,0x50, 0x5D,0x50, -0x43,0xF0, 0x5D,0x50, 0xF5,0x50, 0x5D,0x00, -0x00,0x00, 0x4F,0xE0, 0x58,0x10, 0x6B,0xE0, -/* @quan2 Ȩ(12x12,V)@ [suki software]*/ -0x10,0x20, 0x10,0xC0, 0x17,0x00, 0xFF,0xF0, -0x12,0x00, 0x11,0x80, 0x10,0x00, 0x20,0x00, -0x3E,0x00, 0x21,0xC0, 0x20,0x30, 0x20,0xC0, -/* @quan3 ȩ(12x12,V)@ [suki software]*/ -0x4F,0xF0, 0x48,0x60, 0x7F,0xA0, 0x48,0x20, -0x7F,0xA0, 0x4F,0xF0, 0x60,0x80, 0x21,0x10, -0xF2,0x90, 0x2C,0x90, 0x24,0xF0, 0xF2,0x90, -/* @quan4 Ȫ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x40, 0x00,0x40, 0x3E,0x40, -0x2A,0x50, 0x2A,0x60, 0x6A,0x00, 0xAB,0xF0, -0x2A,0x40, 0x2A,0x60, 0x2A,0x50, 0x3E,0x80, -/* @quan5 ȫ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x01,0x00, 0x02,0x00, 0x06,0x20, -0x0A,0x20, 0x12,0x20, 0x22,0x20, 0xC3,0xF0, -0x22,0x20, 0x12,0x20, 0x0A,0x20, 0x0E,0x60, -/* @quan6 Ȭ(12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x40, 0x00,0x90, 0x3F,0xE0, -0x20,0x80, 0x21,0x10, 0x22,0x90, 0x24,0x90, -0xA8,0x90, 0x70,0xF0, 0x28,0x90, 0x24,0x90, -/* @quan7 ȭ(12x12,V)@ [suki software]*/ -0x04,0x80, 0x14,0x80, 0x14,0x80, 0x55,0x20, -0x35,0x20, 0x16,0xA0, 0xFC,0xA0, 0x16,0xF0, -0x16,0xA0, 0x35,0x20, 0x55,0x20, 0x14,0xA0, -/* @quan8 Ȯ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x08,0x00, 0x08,0x00, 0x08,0x00, -0x08,0x10, 0x08,0x60, 0x0B,0x80, 0xFC,0x00, -0x0B,0x00, 0x08,0xC0, 0x48,0x30, 0x38,0x00, -/* @quan9 ȯ(12x12,V)@ [suki software]*/ -0x02,0x20, 0x02,0x20, 0x12,0x40, 0x92,0x80, -0x73,0xC0, 0x53,0x40, 0x16,0x70, 0xFA,0x40, -0x12,0x40, 0x12,0x40, 0x33,0x40, 0xD2,0xF0, -/* @quan10 Ȱ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x28,0x00, 0x24,0x10, 0x22,0x60, -0x21,0x80, 0x26,0xC0, 0x38,0x30, 0x08,0x00, -0x08,0x10, 0x08,0x60, 0xFF,0x80, 0x08,0x00, -/* @que0 ȱ(12x12,V)@ [suki software]*/ -0x06,0x00, 0x1A,0xF0, 0xF2,0x00, 0x5F,0xF0, -0x12,0x00, 0x12,0xF0, 0x02,0x00, 0x11,0x00, -0x11,0x70, 0xFF,0x80, 0x11,0x60, 0x11,0x10, -/* @que1 Ȳ(12x12,V)@ [suki software]*/ -0x01,0x00, 0x06,0x00, 0x00,0x30, 0xFF,0xC0, -0x08,0x20, 0x30,0x90, 0x10,0x80, 0x10,0xB0, -0x13,0xC0, 0xFC,0x80, 0x10,0xE0, 0x10,0x90, -/* @que2 ȳ(12x12,V)@ [suki software]*/ -0x08,0x80, 0x05,0x00, 0x7F,0xF0, 0x41,0x00, -0x52,0x00, 0x5C,0xF0, 0x72,0x90, 0xD1,0xA0, -0x5E,0xC0, 0x41,0xB0, 0x5E,0xC0, 0x52,0xA0, -/* @que3 ȴ(12x12,V)@ [suki software]*/ -0x01,0x00, 0x11,0x00, 0x11,0x30, 0x11,0xC0, -0xFF,0x00, 0x11,0x10, 0x11,0x50, 0x11,0x30, -0x00,0x10, 0x7F,0xF0, 0x40,0x00, 0x40,0x10, -/* @que4 ȵ(12x12,V)@ [suki software]*/ -0x02,0x00, 0x12,0x00, 0x7E,0xF0, 0x12,0x90, -0x12,0x90, 0x7E,0x90, 0x12,0xF0, 0x02,0x00, -0x00,0x10, 0x3F,0x90, 0x70,0x90, 0xA8,0x90, -/* @que5 ȶ(12x12,V)@ [suki software]*/ -0x11,0x80, 0x16,0x00, 0xFF,0xF0, 0x12,0x00, -0x11,0x40, 0x00,0x80, 0x31,0x00, 0x23,0xF0, -0x26,0x50, 0x3A,0x50, 0xEA,0x50, 0x27,0xF0, -/* @que6 ȷ(12x12,V)@ [suki software]*/ -0x00,0x80, 0x21,0x00, 0x27,0xF0, 0x3A,0x10, -0x22,0x10, 0x23,0xF0, 0x08,0x00, 0x1F,0xF0, -0xE9,0x20, 0x49,0x20, 0x4F,0xF0, 0x59,0x20, -/* @que7 ȸ(12x12,V)@ [suki software]*/ -0x01,0x00, 0x01,0x00, 0x11,0x00, 0x62,0x00, -0x03,0xF0, 0x05,0x50, 0x05,0x50, 0xF9,0x50, -0x0D,0xF0, 0x13,0x50, 0x21,0x50, 0x41,0x50, -/* @qun0 ȹ(12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x80, 0x91,0xF0, 0x76,0x80, -0x19,0x40, 0x0A,0x10, 0x4A,0x20, 0x4A,0xC0, -0x7F,0x70, 0x4A,0x40, 0x4A,0x40, 0x4A,0x40, -/* @qun1 Ⱥ(12x12,V)@ [suki software]*/ -0x10,0x10, 0x52,0x20, 0x52,0xF0, 0x7F,0x40, -0x52,0x40, 0x52,0x40, 0x7E,0x70, 0x00,0x00, -0x90,0x20, 0x52,0x20, 0x32,0x20, 0x1F,0xF0, -/* @ran0 Ȼ(12x12,V)@ [suki software]*/ -0x01,0x00, 0x02,0x10, 0x0E,0x20, 0x39,0x40, -0xE4,0x80, 0x23,0x20, 0x2C,0x20, 0x38,0x40, -0x09,0x80, 0xFE,0x00, 0x0B,0x00, 0x48,0x80, -/* @ran1 ȼ(12x12,V)@ [suki software]*/ -0x0F,0x00, 0x00,0x10, 0xFF,0xE0, 0x08,0x10, -0x14,0x20, 0x1A,0x40, 0xE5,0x90, 0x22,0x20, -0x2C,0x40, 0x34,0x90, 0x05,0x00, 0xFE,0x00, -/* @ran2 Ƚ(12x12,V)@ [suki software]*/ -0x00,0x40, 0x00,0x40, 0x3F,0xF0, 0x24,0x40, -0x24,0x40, 0x24,0x40, 0x24,0x40, 0xFF,0xC0, -0x24,0x40, 0x24,0x40, 0x24,0x40, 0x24,0x40, -/* @ran3 Ⱦ(12x12,V)@ [suki software]*/ -0x20,0x40, 0x14,0x40, 0x87,0x40, 0x48,0x40, -0x11,0x40, 0x01,0x50, 0x22,0x60, 0x2D,0xF0, -0xF0,0x60, 0x20,0x50, 0x20,0x40, 0x3E,0x40, -/* @rang0 ȿ(12x12,V)@ [suki software]*/ -0x40,0x40, 0x75,0x50, 0x5F,0xF0, 0xF5,0x40, -0x45,0x70, 0x5F,0xC0, 0x75,0x50, 0x40,0x40, -0x3F,0xF0, 0x20,0x00, 0x3F,0xF0, 0x40,0x00, -/* @rang1 (12x12,V)@ [suki software]*/ -0x08,0x10, 0x08,0x10, 0xFF,0xF0, 0x08,0x20, -0x48,0x20, 0x42,0xA0, 0x72,0xB0, 0x5F,0xF0, -0xF2,0xA0, 0x42,0xB0, 0x72,0xA0, 0x5F,0xF0, -/* @rang2 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x08,0x40, 0x08,0x80, 0xFF,0xF0, -0x0A,0x00, 0x40,0x10, 0x5D,0x50, 0x55,0x50, -0x5F,0xF0, 0xC1,0x50, 0x5D,0x50, 0x57,0xF0, -/* @rang3 (12x12,V)@ [suki software]*/ -0x3F,0xF0, 0x20,0x20, 0x20,0x20, 0x3F,0xF0, -0x20,0x20, 0x3A,0xA0, 0x2A,0xA0, 0x2F,0xF0, -0xBA,0xA0, 0x62,0xB0, 0x3A,0xA0, 0x2F,0xE0, -/* @rang4 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x82,0x00, 0x73,0xF0, 0x20,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0xFF,0xF0, 0x04,0x00, 0x04,0x00, -/* @rao0 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x0C,0x00, 0xF1,0xF0, 0x10,0x00, -0x14,0x00, 0x18,0x00, 0x00,0x80, 0x21,0x90, -0x21,0xE0, 0xE2,0x80, 0x3A,0xF0, 0x24,0x80, -/* @rao1 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x11,0x00, 0x12,0x00, 0x08,0x00, 0x08,0x30, -0x09,0xC0, 0xFE,0x00, 0x0F,0xF0, 0x48,0x00, -/* @rao2 (12x12,V)@ [suki software]*/ -0x04,0x40, 0x0C,0xC0, 0x35,0x40, 0xC6,0x40, -0x08,0x40, 0x00,0x80, 0x10,0x80, 0xD1,0xF0, -0x31,0x80, 0x2A,0x80, 0x24,0xF0, 0x2A,0x80, -/* @re0 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x24,0x40, 0x24,0x80, 0x25,0x00, -0xF7,0xD0, 0x25,0x40, 0x2D,0x40, 0x15,0x50, -0x25,0x40, 0xF5,0x40, 0x25,0x40, 0x25,0xC0, -/* @re1 (12x12,V)@ [suki software]*/ -0x22,0x00, 0x23,0x40, 0x22,0x20, 0xFF,0xC0, -0x24,0x20, 0x20,0x40, 0x28,0x80, 0x25,0x10, -0xFE,0x00, 0x23,0x00, 0x21,0x80, 0x3E,0x10, -/* @ren0 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x01,0x00, 0x21,0x00, 0x21,0x00, -0x21,0x00, 0x21,0x00, 0x21,0x00, 0x7F,0xF0, -0x41,0x00, 0x41,0x00, 0x41,0x00, 0x41,0x00, -/* @ren1 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x1F,0xF0, 0xF0,0x00, -0x40,0x00, 0x20,0x00, 0x20,0x00, 0x20,0x00, -0x20,0x00, 0x20,0x00, 0x20,0x00, 0x20,0x00, -/* @ren2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x30, 0x00,0xC0, 0x03,0x00, 0xFC,0x00, -0x43,0x80, 0x00,0x60, 0x00,0x30, 0x00,0x10, -/* @ren3 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x84,0x10, 0xB8,0x80, -0x81,0x30, 0x82,0x00, 0x8C,0x80, 0xF0,0x40, -0x81,0x30, 0x81,0x20, 0x81,0x80, 0x81,0x00, -/* @ren4 (12x12,V)@ [suki software]*/ -0x20,0x80, 0x24,0x80, 0x24,0x80, 0x24,0x80, -0xFF,0xF0, 0x24,0x90, 0x24,0x80, 0x22,0xF0, -0x0C,0x00, 0x40,0x00, 0x7F,0xF0, 0x40,0x00, -/* @ren5 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x02,0x00, 0x0C,0x00, 0x3F,0xF0, -0xE1,0x00, 0x41,0x00, 0x21,0x00, 0x21,0x00, -0x21,0x00, 0x3F,0xF0, 0x41,0x00, 0x41,0x00, -/* @ren6 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x82,0x00, 0x42,0x00, 0x33,0xF0, -0x20,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x10, -0x01,0xE0, 0xFE,0x00, 0x01,0xC0, 0x00,0x30, -/* @ren7 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x40,0x80, 0x41,0x80, -0x47,0x00, 0x40,0x10, 0x40,0x60, 0x7F,0x80, -0x40,0x00, 0x40,0x00, 0x40,0x00, 0x40,0x00, -/* @ren8 (12x12,V)@ [suki software]*/ -0x10,0x00, 0x10,0xC0, 0x1F,0x20, 0xF0,0x30, -0x50,0xC0, 0x1F,0x00, 0x01,0x00, 0x21,0x00, -0x21,0x00, 0x21,0x00, 0x3F,0xF0, 0x21,0x00, -/* @ren9 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x04,0x40, 0x0C,0xC0, 0x35,0x40, -0xC6,0x50, 0x0C,0x10, 0x10,0x60, 0x27,0x80, -0x20,0x00, 0x20,0x70, 0x3F,0x80, 0x20,0x00, -/* @reng0 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x08,0x40, 0x08,0x80, 0xFF,0xF0, -0x09,0x00, 0x0A,0x00, 0x40,0x30, 0x7F,0xC0, -0x40,0x00, 0x40,0x00, 0x46,0x00, 0x5A,0x00, -/* @reng1 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x1F,0xF0, 0xE8,0x00, -0x40,0x00, 0x00,0x00, 0x40,0x70, 0x7F,0x80, -0x40,0x00, 0x40,0x00, 0x42,0x00, 0x4F,0x00, -/* @ri0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x7F,0xF0, -0x42,0x00, 0x42,0x00, 0x42,0x00, 0x42,0x00, -0x42,0x00, 0x42,0x00, 0x42,0x00, 0x7F,0xF0, -/* @rong0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x10,0x80, 0x10,0x80, 0x10,0x90, -0x1F,0xE0, 0x10,0x80, 0x10,0x80, 0x10,0x80, -0x10,0x10, 0xFF,0x20, 0x10,0xF0, 0x57,0x80, -/* @rong1 (12x12,V)@ [suki software]*/ -0x20,0x00, 0x28,0x00, 0x28,0x00, 0x28,0x00, -0x2F,0xF0, 0xFA,0x40, 0x2A,0x40, 0x2A,0x40, -0x2A,0x40, 0xFA,0x40, 0x2F,0xF0, 0x28,0x00, -/* @rong2 (12x12,V)@ [suki software]*/ -0x40,0x00, 0x46,0x10, 0x48,0x90, 0x49,0x20, -0x4A,0x70, 0xFC,0xA0, 0x69,0x20, 0x5A,0x20, -0x49,0x20, 0xF8,0xA0, 0x4C,0x70, 0x4A,0x40, -/* @rong3 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x26,0x00, 0x24,0x80, 0x24,0x80, -0x24,0x80, 0xFC,0x90, 0x24,0xA0, 0x27,0xF0, -0x24,0xC0, 0xFC,0xA0, 0x24,0x90, 0x24,0x80, -/* @rong4 (12x12,V)@ [suki software]*/ -0x41,0xF0, 0x5D,0x20, 0x55,0xA0, 0x55,0x70, -0x55,0xA0, 0x5D,0x20, 0x41,0xF0, 0x00,0x00, -0x0F,0xC0, 0x08,0x80, 0x08,0x80, 0xFF,0xF0, -/* @rong5 (12x12,V)@ [suki software]*/ -0x0F,0x00, 0x00,0x00, 0xFF,0xF0, 0x04,0x20, -0x08,0x10, 0x09,0x20, 0x32,0x40, 0x24,0xB0, -0x29,0x20, 0xA2,0x20, 0x61,0x20, 0x28,0xA0, -/* @rong6 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x84,0x30, 0x61,0xC0, 0x06,0x00, -0x00,0x20, 0x31,0x20, 0x26,0x70, 0x28,0xA0, -0xA3,0x20, 0x61,0x20, 0x28,0xA0, 0x24,0x70, -/* @rong7 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x30,0x20, 0x22,0x40, 0x24,0x40, -0x2C,0xB0, 0x39,0x20, 0xA2,0x20, 0x6C,0x20, -0x22,0x20, 0x31,0x20, 0x28,0xB0, 0x2E,0x80, -/* @rong8 (12x12,V)@ [suki software]*/ -0x04,0x40, 0x0C,0xC0, 0x35,0x40, 0xC6,0x40, -0x08,0x00, 0x08,0x80, 0x08,0x90, 0x0F,0xE0, -0x08,0x80, 0x08,0x00, 0xFF,0x90, 0x08,0x70, -/* @rong9 (12x12,V)@ [suki software]*/ -0x10,0x00, 0x60,0x00, 0x40,0x00, 0x40,0x00, -0x40,0x30, 0x4F,0xC0, 0x48,0x00, 0x48,0x00, -0x48,0x00, 0x48,0x00, 0x4F,0xF0, 0x40,0x00, -/* @rou0 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x08,0x20, 0x08,0x40, 0x7F,0xF0, -0x09,0x00, 0x0A,0x00, 0x01,0x40, 0x49,0x40, -0x4A,0x50, 0x4C,0xE0, 0x5F,0xF0, 0x58,0x50, -/* @rou1 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x10,0x40, 0x12,0x40, 0x92,0x40, -0x94,0x40, 0x94,0x50, 0x99,0x60, 0xBF,0xF0, -0x90,0x60, 0xB0,0x50, 0xD0,0x40, 0x90,0x40, -/* @rou2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x1F,0xF0, 0x10,0x80, -0x11,0x00, 0x12,0x10, 0x14,0x60, 0xF9,0x80, -0x14,0x40, 0x12,0x20, 0x13,0x10, 0x10,0x10, -/* @ru0 (12x12,V)@ [suki software]*/ -0x22,0x00, 0x22,0x00, 0x22,0x60, 0x2F,0xA0, -0x22,0x10, 0xF2,0x30, 0x23,0xC0, 0x22,0x00, -0x20,0x00, 0xF3,0xF0, 0x22,0x00, 0x22,0x00, -/* @ru1 (12x12,V)@ [suki software]*/ -0x1F,0xC0, 0x11,0x00, 0xFF,0xF0, 0x11,0x20, -0x1F,0x10, 0x05,0x00, 0x59,0x70, 0x55,0x40, -0x53,0x70, 0x7D,0xC0, 0x51,0x70, 0x55,0x40, -/* @ru2 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x1F,0xF0, 0xE0,0x00, -0x50,0x80, 0xAA,0xB0, 0xAA,0xA0, 0xAA,0xA0, -0xA0,0xF0, 0xFC,0xA0, 0xAA,0xB0, 0xAA,0xA0, -/* @ru3 (12x12,V)@ [suki software]*/ -0x40,0x40, 0x40,0x40, 0x40,0x80, 0x5F,0xF0, -0x62,0x00, 0x31,0x00, 0xA1,0x70, 0xA9,0x40, -0xA5,0x70, 0xA1,0xC0, 0xFF,0x70, 0xA1,0x40, -/* @ru4 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x08,0x00, 0x0F,0xC0, 0xF8,0x20, -0x28,0x10, 0x08,0x60, 0x0F,0x80, 0x00,0x00, -0x00,0x00, 0x1F,0xF0, 0x10,0x00, 0x10,0x00, -/* @ru5 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x01,0xA0, 0xFE,0x20, 0x88,0x20, -0xA8,0x20, 0xAF,0xE0, 0xA8,0xA0, 0xAC,0x20, -0xAA,0x20, 0xA9,0x20, 0xA9,0x70, 0xAA,0xA0, -/* @ru6 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x52,0x20, 0x4A,0x20, 0x42,0x20, -0x5A,0x20, 0xC2,0xF0, 0x8B,0x40, 0xB2,0x40, -0x12,0x40, 0x00,0x00, 0xFF,0xF0, 0x00,0x00, -/* @ru7 (12x12,V)@ [suki software]*/ -0x10,0x20, 0x0C,0x20, 0x80,0x70, 0x61,0x80, -0x0A,0x00, 0x08,0x00, 0x08,0x80, 0x0B,0x40, -0x1C,0x40, 0xE8,0x30, 0x08,0x60, 0x09,0x90, -/* @ru8 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x10, -0x80,0x60, 0xC1,0x80, 0x6E,0x00, 0x18,0x00, -0x06,0x00, 0x01,0x00, 0x00,0xC0, 0x00,0x20, -/* @ru9 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x80, 0x91,0x00, 0x77,0xF0, -0x18,0x80, 0x01,0x50, 0x7F,0xE0, 0x54,0x20, -0x57,0xE0, 0x56,0xA0, 0x55,0x20, 0x55,0x20, -/* @ruan0 (12x12,V)@ [suki software]*/ -0x11,0x10, 0x13,0x10, 0x1D,0x10, 0xF1,0x10, -0x17,0xF0, 0x11,0x20, 0x11,0x20, 0x04,0x00, -0x38,0x10, 0xD0,0x60, 0x17,0x80, 0x10,0x60, -/* @ruan1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x44,0x20, 0x5A,0x10, -0x61,0xE0, 0x04,0x00, 0x44,0x10, 0x47,0xE0, -0x44,0x00, 0x44,0x00, 0x47,0xF0, 0x44,0x00, -/* @rui0 (12x12,V)@ [suki software]*/ -0x00,0x10, 0x21,0x00, 0x26,0x30, 0x20,0x80, -0x26,0x60, 0xF1,0x40, 0x21,0x10, 0x2D,0x00, -0x25,0x10, 0xF1,0x00, 0x23,0x10, 0x28,0x40, -/* @rui1 (12x12,V)@ [suki software]*/ -0x42,0x00, 0x42,0x00, 0x7F,0xF0, 0x42,0x10, -0x42,0x20, 0x00,0x00, 0x02,0xF0, 0x7A,0x80, -0x0A,0x80, 0x0B,0xF0, 0xFA,0x80, 0x0A,0xF0, -/* @rui2 (12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0xF7,0xF0, 0x24,0x80, -0x24,0x80, 0x24,0x90, 0x00,0x00, 0x9F,0x00, -0x51,0x10, 0x31,0xE0, 0x11,0x00, 0x31,0xF0, -/* @run0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x1F,0xF0, 0x80,0x10, -0x69,0x10, 0x09,0x10, 0x09,0x10, 0x4F,0xF0, -0x49,0x10, 0x49,0x10, 0x49,0x10, 0x49,0x10, -/* @run1 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x86,0x70, 0x61,0x80, 0x06,0x00, -0x00,0x00, 0x9F,0xF0, 0x44,0x90, 0x04,0x90, -0x47,0xF0, 0x44,0x90, 0x44,0x90, 0x44,0x90, -/* @ruo0 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x22,0x10, 0x22,0x20, 0x22,0x40, -0x22,0xF0, 0xFB,0x40, 0x26,0x40, 0x2A,0x40, -0x22,0x40, 0x22,0x40, 0xFA,0x40, 0x22,0x40, -/* @ruo1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x80,0x00, 0x9E,0x80, 0x92,0x50, -0x92,0x20, 0x92,0x00, 0xF3,0xF0, 0x00,0x00, -0x9E,0x00, 0x92,0x80, 0x92,0x40, 0x92,0x30, -/* @sa0 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x80, 0xFF,0xF0, 0x11,0x00, -0x24,0x00, 0xFD,0xF0, 0x25,0x50, 0xFD,0x50, -0x25,0xF0, 0x25,0x00, 0x07,0x00, 0xFC,0xC0, -/* @sa1 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x86,0x20, 0x60,0xF0, 0x07,0x00, -0x18,0x00, 0x47,0xF0, 0x44,0x10, 0x44,0x20, -0x7F,0xC0, 0x44,0x00, 0x7F,0xC0, 0x44,0x20, -/* @sa2 (12x12,V)@ [suki software]*/ -0x20,0x00, 0x27,0xF0, 0x24,0x90, 0x25,0x40, -0x26,0x30, 0xF8,0x00, 0x22,0x70, 0x22,0x40, -0x23,0x40, 0xFA,0xC0, 0x26,0x40, 0x22,0xC0, -/* @sai0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x48,0x80, 0x48,0x80, -0x7F,0xF0, 0x00,0x00, 0x7F,0x30, 0x49,0x00, -0x49,0x70, 0x7F,0x00, 0x49,0x40, 0x49,0x30, -/* @sai1 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x1F,0xE0, 0xE4,0xA0, 0x27,0xE0, -0x2C,0xA0, 0x37,0xE0, 0x00,0x10, 0x7F,0x00, -0x49,0x30, 0x49,0x00, 0x7F,0x40, 0x49,0x30, -/* @sai2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x30,0x80, 0x20,0x90, 0x2A,0x90, -0x2A,0xB0, 0x3F,0xD0, 0xAA,0x90, 0x6A,0xB0, -0x2A,0x90, 0x3F,0x90, 0x2A,0xD0, 0x2A,0xB0, -/* @sai3 (12x12,V)@ [suki software]*/ -0x10,0x20, 0x61,0x20, 0x55,0x40, 0x55,0x40, -0x55,0xF0, 0x7F,0x40, 0x55,0x40, 0xD5,0x70, -0x55,0x40, 0x7F,0x40, 0x55,0xF0, 0x55,0x80, -/* @san0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x20,0x00, 0x21,0x00, 0x21,0x00, -0x21,0x00, 0x21,0x00, 0x21,0x00, 0x21,0x00, -0x21,0x00, 0x21,0x00, 0x21,0x00, 0x21,0x00, -/* @san1 (12x12,V)@ [suki software]*/ -0x00,0x20, 0x02,0x20, 0x02,0x40, 0x12,0x80, -0x3B,0x50, 0x56,0x50, 0x9A,0x50, 0x12,0x50, -0x12,0x50, 0x52,0x50, 0x3B,0x50, 0x12,0x80, -/* @san2 ɡ(12x12,V)@ [suki software]*/ -0x02,0x20, 0x02,0x20, 0x04,0x20, 0x05,0x20, -0x08,0xE0, 0x10,0xA0, 0x20,0x20, 0xCF,0xF0, -0x20,0x20, 0x10,0x60, 0x13,0xA0, 0x09,0x20, -/* @san3 ɢ(12x12,V)@ [suki software]*/ -0x24,0x00, 0x25,0xF0, 0xFD,0x50, 0x25,0x50, -0x25,0x50, 0xFD,0x50, 0x25,0xF0, 0x25,0x00, -0x06,0x00, 0xFB,0x00, 0x48,0xC0, 0x08,0x30, -/* @sang0 ɣ(12x12,V)@ [suki software]*/ -0x00,0x40, 0x04,0xC0, 0x06,0xC0, 0x15,0x40, -0x95,0x40, 0x96,0xD0, 0xD0,0x60, 0xA1,0xF0, -0xA4,0x60, 0xD6,0xD0, 0x95,0x40, 0x15,0x40, -/* @sang1 ɤ(12x12,V)@ [suki software]*/ -0x3F,0xE0, 0x20,0x40, 0x20,0x40, 0x3F,0xE0, -0x00,0xC0, 0x0A,0xC0, 0x9B,0x40, 0xDB,0x50, -0xAC,0xE0, 0xA0,0xF0, 0xAD,0x50, 0xDA,0x40, -/* @sang2 ɥ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x21,0x00, 0x21,0x00, 0x29,0xF0, -0x2F,0x00, 0x25,0x00, 0x21,0x00, 0xFF,0xC0, -0x21,0x30, 0x23,0x10, 0x2D,0x20, 0x25,0x60, -/* @sao0 ɦ(12x12,V)@ [suki software]*/ -0x08,0x40, 0x08,0x40, 0x08,0x80, 0xFF,0xF0, -0x09,0x80, 0x4A,0x80, 0x61,0xF0, 0x51,0x90, -0x4A,0x90, 0x67,0xF0, 0x5C,0x90, 0x52,0x90, -/* @sao1 ɧ(12x12,V)@ [suki software]*/ -0x40,0x10, 0x5F,0x10, 0x41,0x20, 0x41,0x40, -0x7F,0x00, 0x01,0xF0, 0x02,0x00, 0x42,0xE0, -0x64,0xA0, 0x54,0xA0, 0x6B,0xF0, 0x54,0xA0, -/* @sao2 ɨ(12x12,V)@ [suki software]*/ -0x08,0x40, 0x08,0x40, 0x08,0x80, 0xFF,0xF0, -0x09,0x00, 0x0A,0x00, 0x08,0x00, 0x20,0x00, -0x21,0x00, 0x21,0x00, 0x21,0x00, 0x21,0x00, -/* @sao3 ɩ(12x12,V)@ [suki software]*/ -0x08,0x00, 0x08,0xC0, 0xFF,0x30, 0x08,0x20, -0x0F,0xD0, 0x00,0x00, 0x3F,0x40, 0x2A,0x60, -0x4A,0x50, 0x02,0x40, 0xFF,0xC0, 0x02,0x50, -/* @se0 ɪ(12x12,V)@ [suki software]*/ -0x02,0x00, 0x52,0x00, 0x52,0x70, 0x7E,0x00, -0x52,0x00, 0x52,0x70, 0x52,0x00, 0x01,0x10, -0x52,0xD0, 0x52,0x20, 0x7E,0x40, 0x53,0x80, -/* @se1 ɫ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x02,0x00, 0x04,0x00, 0x0F,0xF0, -0x14,0x40, 0xE4,0x40, 0x24,0x40, 0x27,0xC0, -0x24,0x40, 0x2C,0x40, 0x34,0x40, 0x27,0xC0, -/* @se2 ɬ(12x12,V)@ [suki software]*/ -0x08,0x20, 0x86,0x20, 0x60,0xF0, 0x0F,0x00, -0x00,0x00, 0x45,0x00, 0x59,0x70, 0x42,0x00, -0x4C,0x00, 0x70,0xF0, 0x40,0x20, 0x42,0x20, -/* @sen0 ɭ(12x12,V)@ [suki software]*/ -0x00,0x80, 0x22,0x80, 0x22,0x90, 0x24,0xA0, -0x25,0xF0, 0x28,0xA0, 0x30,0x90, 0xFE,0x00, -0x30,0x80, 0x28,0xB0, 0x29,0xF0, 0x24,0xA0, -/* @seng0 ɮ(12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x1F,0xF0, 0xE8,0x00, -0x40,0x00, 0x1F,0x80, 0x99,0x70, 0x77,0x50, -0x11,0x50, 0x1F,0x50, 0x33,0x50, 0xDD,0x50, -/* @sha0 ɯ(12x12,V)@ [suki software]*/ -0x00,0x10, 0x21,0x10, 0x28,0x90, 0x24,0x70, -0x23,0x80, 0xF0,0x40, 0x23,0x80, 0x21,0x00, -0x20,0x00, 0x2F,0xF0, 0xF0,0x00, 0x24,0x10, -/* @sha1 ɰ(12x12,V)@ [suki software]*/ -0x40,0x40, 0x41,0x80, 0x7F,0xF0, 0x42,0x00, -0x43,0xF0, 0x40,0x80, 0x03,0x00, 0x0C,0x00, -0x00,0x00, 0x00,0x00, 0xFF,0xC0, 0x00,0x10, -/* @sha2 ɱ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x80, 0x02,0x80, 0x42,0x80, -0x44,0xB0, 0x24,0x80, 0x28,0x80, 0x13,0xF0, -0x10,0x80, 0x28,0x80, 0xCC,0xA0, 0x06,0x90, -/* @sha3 ɲ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x05,0x10, 0x89,0x70, 0x59,0x20, -0x31,0x00, 0x27,0xF0, 0x51,0x40, 0x8D,0x20, -0x09,0x10, 0x00,0x00, 0x3F,0xF0, 0x00,0x00, -/* @sha4 ɳ(12x12,V)@ [suki software]*/ -0x00,0x20, 0x08,0x20, 0x84,0x70, 0x61,0x80, -0x06,0x00, 0x01,0x00, 0x06,0x00, 0x18,0x00, -0x00,0x00, 0xFF,0xC0, 0x00,0x00, 0x10,0x10, -/* @sha5 ɴ(12x12,V)@ [suki software]*/ -0x04,0x40, 0x0C,0xC0, 0x35,0x40, 0xC6,0x40, -0x04,0x50, 0x19,0x50, 0x02,0x00, 0x1C,0x00, -0x08,0x00, 0x00,0x00, 0xFF,0xD0, 0x00,0x20, -/* @sha6 ɵ(12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x1F,0xF0, 0xE8,0x00, -0x40,0x40, 0x01,0x90, 0x7E,0xE0, 0x42,0x60, -0xEA,0x50, 0x52,0x40, 0x52,0x50, 0x6A,0x60, -/* @sha7 ɶ(12x12,V)@ [suki software]*/ -0x3F,0xF0, 0x20,0x40, 0x20,0x40, 0x3F,0xE0, -0x02,0x00, 0x05,0x00, 0x09,0x30, 0x15,0x20, -0x25,0x20, 0xC7,0xE0, 0x25,0x20, 0x15,0x20, -/* @sha8 ɷ(12x12,V)@ [suki software]*/ -0x04,0x00, 0x08,0x00, 0x3A,0x40, 0xEA,0x40, -0x2A,0x40, 0x3A,0x40, 0x2F,0xE0, 0x04,0x20, -0x18,0x40, 0xF6,0x40, 0x11,0x80, 0x11,0x80, -/* @shai0 ɸ(12x12,V)@ [suki software]*/ -0x08,0x00, 0x13,0xF0, 0xE0,0x00, 0x40,0x00, -0x6F,0xF0, 0x50,0x00, 0x44,0x00, 0x55,0xF0, -0x25,0x00, 0xC5,0x00, 0x47,0xF0, 0x65,0x00, -/* @shai1 ɹ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x3F,0xF0, 0x22,0x20, 0x22,0x20, -0x3F,0xF0, 0x40,0x00, 0x47,0xF0, 0x44,0x20, -0x7F,0xC0, 0x44,0x00, 0x44,0x00, 0x7F,0xE0, -/* @shan0 ɺ(12x12,V)@ [suki software]*/ -0x42,0x00, 0x42,0x00, 0x7F,0xF0, 0x42,0x10, -0x42,0x10, 0x02,0x30, 0x7F,0xC0, 0x42,0x00, -0x7F,0xF0, 0x02,0x00, 0x7F,0xF0, 0x42,0x00, -/* @shan1 ɻ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x20,0x00, 0x20,0x70, 0x20,0x40, -0x20,0x40, 0xF8,0x40, 0x20,0x40, 0x2F,0xC0, -0x22,0x40, 0x22,0x40, 0xFA,0x40, 0x22,0x40, -/* @shan2 ɼ(12x12,V)@ [suki software]*/ -0x00,0x20, 0x10,0x40, 0x11,0x80, 0x16,0x00, -0xFF,0xF0, 0x14,0x00, 0x13,0x00, 0x10,0x40, -0x08,0x40, 0x08,0x80, 0x10,0x80, 0x21,0x00, -/* @shan3 ɽ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x07,0xF0, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0xFF,0xF0, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @shan4 ɾ(12x12,V)@ [suki software]*/ -0x02,0x00, 0x02,0x10, 0x7F,0xE0, 0x42,0x00, -0x7F,0xF0, 0x02,0x00, 0x7F,0xF0, 0x42,0x00, -0x7F,0xF0, 0x02,0x00, 0x02,0x00, 0x3F,0xF0, -/* @shan5 ɿ(12x12,V)@ [suki software]*/ -0x00,0x80, 0x07,0x00, 0x00,0x30, 0xFF,0xC0, -0x04,0x20, 0x08,0x10, 0x3F,0xE0, 0x2A,0x80, -0x2A,0x50, 0xAB,0xF0, 0x68,0x00, 0x2A,0x50, -/* @shan6 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x80, 0x91,0x00, 0x73,0xF0, -0x14,0x80, 0x19,0x40, 0x12,0x30, 0x00,0x20, -0x04,0x40, 0x08,0x80, 0x11,0x00, 0x22,0x00, -/* @shan7 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x1F,0xF0, 0x80,0x00, 0x60,0x10, -0x00,0x10, 0x00,0x20, 0x40,0xC0, 0x4F,0x00, -0x40,0x80, 0x40,0x40, 0x40,0x30, 0x40,0x00, -/* @shan8 (12x12,V)@ [suki software]*/ -0x7F,0xF0, 0x40,0x00, 0x44,0x20, 0x5A,0x10, -0x61,0xE0, 0x14,0x80, 0x13,0x80, 0x10,0xB0, -0xFF,0xC0, 0x10,0xA0, 0x11,0x90, 0x12,0x80, -/* @shan9 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x12,0x00, 0x44,0x00, 0x5F,0x00, 0x51,0x70, -0x57,0x50, 0xD5,0x50, 0x55,0x50, 0x57,0x50, -/* @shan10 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xE0, 0x40,0x00, 0x5F,0xF0, -0x40,0x00, 0x7F,0xE0, 0x10,0x10, 0x3F,0xE0, -0x54,0x00, 0xDA,0xA0, 0x52,0xA0, 0x56,0xA0, -/* @shan11 (12x12,V)@ [suki software]*/ -0x00,0x00, 0xFF,0xF0, 0x88,0x80, 0x88,0x80, -0xFF,0xF0, 0x20,0x40, 0x2B,0x50, 0xAA,0xD0, -0x6A,0x50, 0x3F,0xD0, 0x2A,0x50, 0x6A,0xD0, -/* @shan12 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x22,0x40, 0x22,0x40, 0x2B,0x50, -0xAA,0xD0, 0x6A,0x50, 0x2A,0x50, 0x3F,0xD0, -0x2A,0x50, 0x6A,0x50, 0xAA,0xD0, 0x2B,0x50, -/* @shan13 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x20, 0x80,0xF0, 0x67,0x00, -0x00,0x00, 0x07,0xF0, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x7F,0xF0, 0x00,0x00, 0x00,0x00, -/* @shan14 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x3F,0xF0, 0x28,0x00, -0x2A,0x80, 0x2A,0x50, 0x2A,0x20, 0xAB,0xF0, -0x68,0x00, 0x2A,0x00, 0x2A,0x90, 0x2A,0x60, -/* @shan15 (12x12,V)@ [suki software]*/ -0x04,0x40, 0x1C,0xC0, 0xE5,0x40, 0x46,0x40, -0x0C,0x00, 0x22,0x40, 0x2B,0x50, 0xAA,0xD0, -0x6A,0x50, 0x3F,0xD0, 0x2A,0x50, 0x6A,0xD0, -/* @shang0 (12x12,V)@ [suki software]*/ -0x08,0x10, 0x08,0x10, 0xFF,0xF0, 0x08,0x20, -0x08,0x20, 0x28,0x00, 0x27,0xF0, 0x34,0x80, -0xAD,0xF0, 0x66,0x90, 0x24,0x90, 0x2E,0xF0, -/* @shang1 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x02,0x00, 0x04,0x00, 0x1F,0xF0, -0xE2,0x00, 0x44,0x00, 0x0A,0x00, 0xF2,0x00, -0x52,0x30, 0x1F,0xC0, 0x12,0x00, 0x12,0x00, -/* @shang2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x20,0x00, 0x27,0xF0, 0x24,0x80, -0x24,0x80, 0x35,0xF0, 0x2E,0x90, 0xA4,0x90, -0x64,0x90, 0x2E,0xF0, 0x35,0x80, 0x24,0x00, -/* @shang3 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x30,0x00, 0x20,0x00, 0xA0,0xF0, -0x6E,0x80, 0x2A,0x80, 0x2A,0x80, 0xEA,0xF0, -0x2A,0x80, 0x2A,0x80, 0x6E,0x80, 0xA0,0xF0, -/* @shang4 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x1F,0xF0, 0x11,0x00, 0x11,0x00, -0x1F,0xF0, 0x00,0x00, 0x1F,0xF0, 0x10,0x00, -0x33,0xF0, 0xD2,0x10, 0x12,0x10, 0x13,0xF0, -/* @shang5 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x7F,0xF0, -0x02,0x00, 0x02,0x00, 0x02,0x00, 0x02,0x00, -/* @shang6 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x47,0xF0, 0x24,0x00, -0x1C,0x00, 0x15,0xF0, 0x05,0x10, 0xFD,0x10, -0x05,0x10, 0x0D,0x10, 0x15,0xF0, 0x64,0x00, -/* @shang7 (12x12,V)@ [suki software]*/ -0x04,0x40, 0x18,0x40, 0x10,0x40, 0x90,0x40, -0x57,0x50, 0x35,0x70, 0x15,0x60, 0xF5,0xC0, -0x15,0x60, 0x15,0x50, 0x37,0x40, 0xD0,0x50, -/* @shao0 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x11,0x80, 0x16,0x00, 0xFF,0xF0, -0x14,0x00, 0x13,0x00, 0x00,0x00, 0x27,0xF0, -0x1D,0x20, 0x05,0x20, 0xFD,0x20, 0x05,0x20, -/* @shao1 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x11,0x00, 0x12,0x00, 0x40,0x00, 0x37,0xF0, -0x1C,0x90, 0x04,0x90, 0xFC,0x90, 0x04,0x90, -/* @shao2 (12x12,V)@ [suki software]*/ -0x00,0x10, 0x48,0x60, 0x49,0x80, 0x4E,0x00, -0xFF,0xF0, 0x8A,0x00, 0x81,0x00, 0x4F,0xF0, -0x39,0x20, 0x09,0x20, 0xF9,0x20, 0x09,0x20, -/* @shao3 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x07,0x00, 0x00,0x30, 0xFF,0xC0, -0x09,0x20, 0x31,0x90, 0x22,0x80, 0x22,0xF0, -0xF4,0x80, 0x2C,0x80, 0x26,0xF0, 0x2A,0x80, -/* @shao4 (12x12,V)@ [suki software]*/ -0x20,0x00, 0x20,0x80, 0x21,0x00, 0x2E,0x00, -0x24,0x00, 0xF4,0x80, 0x24,0x40, 0x24,0x30, -0x24,0x20, 0xF4,0x00, 0x24,0x00, 0x24,0x00, -/* @shao5 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x02,0x00, 0x04,0x00, 0x18,0x00, -0xE0,0x00, 0x22,0x00, 0x21,0x00, 0x20,0xE0, -0x20,0x40, 0x20,0x00, 0x20,0x00, 0x20,0x00, -/* @shao6 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x24,0x00, 0x34,0xF0, 0xAC,0x90, -0x64,0x90, 0x2C,0x90, 0x34,0xF0, 0x24,0x00, -0x42,0x70, 0x44,0x40, 0x78,0x40, 0x42,0x40, -/* @shao7 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x80, 0x01,0x00, 0x02,0x00, -0x1C,0x00, 0x08,0x00, 0x00,0x00, 0xFF,0xC0, -0x00,0x00, 0x00,0x10, 0x20,0x30, 0x10,0x60, -/* @shao8 (12x12,V)@ [suki software]*/ -0x3F,0xF0, 0x20,0x40, 0x20,0x40, 0x20,0x40, -0x3F,0xF0, 0x40,0x00, 0x2F,0xF0, 0x39,0x20, -0x09,0x20, 0xF9,0x20, 0x09,0x20, 0x19,0x20, -/* @shao9 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x41,0x00, 0x46,0xF0, 0x78,0x80, -0x40,0x80, 0x42,0x80, 0x41,0x80, 0x7E,0xF0, -0x00,0x00, 0x7F,0xF0, 0x40,0x00, 0x44,0x10, -/* @shao10 (12x12,V)@ [suki software]*/ -0x04,0x40, 0x0C,0xC0, 0x35,0x40, 0xC6,0x40, -0x08,0x40, 0x00,0x00, 0x01,0x00, 0x42,0xF0, -0x4C,0x80, 0x70,0x80, 0x40,0x80, 0x42,0x80, -/* @she0 (12x12,V)@ [suki software]*/ -0x05,0x10, 0x45,0x10, 0x49,0x20, 0x49,0x20, -0x55,0x70, 0x65,0x50, 0xC5,0xD0, 0x4F,0xD0, -0x65,0x50, 0x55,0x50, 0x57,0x50, 0x4B,0x70, -/* @she1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xE0, 0x40,0x00, 0x4F,0xF0, -0x40,0x00, 0x7F,0xE0, 0x04,0x00, 0x08,0x80, -0x12,0xB0, 0x22,0x80, 0xC2,0xF0, 0x22,0x80, -/* @she2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x0F,0xC0, 0x08,0x80, 0xFF,0xF0, -0x08,0x80, 0x0F,0xD0, 0x04,0x00, 0x18,0x00, -0x17,0xF0, 0x90,0x40, 0x70,0x80, 0x50,0x80, -/* @she3 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x44,0x00, 0x44,0xF0, 0x44,0x80, -0x44,0x80, 0x44,0x80, 0x44,0x80, 0x7F,0x80, -0x84,0x80, 0x84,0x80, 0x84,0x80, 0x84,0x80, -/* @she4 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x05,0x00, 0x09,0x00, 0x09,0x30, -0x19,0x20, 0x29,0x20, 0x49,0x20, 0x8F,0xE0, -0x49,0x20, 0x29,0x20, 0x19,0x20, 0x11,0x30, -/* @she5 (12x12,V)@ [suki software]*/ -0x04,0xE0, 0x24,0x00, 0x27,0xF0, 0x24,0x00, -0xFC,0x00, 0x27,0xF0, 0x24,0x80, 0x04,0x60, -0x06,0x00, 0xFD,0x00, 0x08,0x90, 0x08,0x60, -/* @she6 (12x12,V)@ [suki software]*/ -0x10,0x80, 0x11,0x00, 0xFF,0xF0, 0x12,0x00, -0x14,0x80, 0x82,0xC0, 0x82,0xA0, 0xFE,0xB0, -0xAA,0xC0, 0xAA,0x00, 0xAA,0xC0, 0xFF,0xA0, -/* @she7 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x40, 0x3F,0xC0, 0x6A,0x40, -0xAA,0x50, 0x2A,0x60, 0x2A,0x40, 0x3F,0xF0, -0x08,0x00, 0x09,0x00, 0x08,0xE0, 0x08,0x00, -/* @she8 (12x12,V)@ [suki software]*/ -0x0E,0x00, 0x00,0x00, 0xFF,0xF0, 0x10,0x00, -0x0C,0x80, 0x42,0xA0, 0x42,0x90, 0x7E,0xA0, -0x4A,0xC0, 0x66,0x00, 0x52,0xA0, 0x4A,0x90, -/* @she9 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x06,0x40, 0x80,0xF0, 0x67,0x00, -0x1A,0x10, 0x02,0x20, 0x3E,0xC0, 0x02,0x00, -0x02,0x00, 0xFF,0xF0, 0x12,0x00, 0x12,0x10, -/* @she10 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x90,0x80, 0x71,0xF0, -0x16,0x80, 0x18,0x40, 0x02,0x00, 0x02,0x00, -0x02,0x00, 0xFF,0xF0, 0x02,0x00, 0x02,0x00, -/* @she11 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x82,0x00, 0x73,0xF0, 0x20,0x00, -0x00,0x00, 0x01,0x00, 0x02,0x00, 0x7D,0xC0, -0x41,0x30, 0x41,0x00, 0x41,0x00, 0x7D,0x30, -/* @shen0 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x41,0x00, 0x47,0xF0, 0x7A,0x00, -0x42,0x00, 0x43,0xF0, 0x00,0x00, 0x1F,0xF0, -0x12,0x20, 0x12,0x20, 0xFF,0xF0, 0x12,0x20, -/* @shen1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x3F,0xF0, 0x22,0x20, -0x22,0x20, 0x22,0x20, 0x22,0x20, 0xFF,0xF0, -0x22,0x20, 0x22,0x20, 0x22,0x20, 0x22,0x20, -/* @shen2 (12x12,V)@ [suki software]*/ -0x3F,0xE0, 0x20,0x40, 0x20,0x40, 0x20,0x40, -0x3F,0xE0, 0x00,0x00, 0x3F,0xE0, 0x24,0x40, -0x24,0x40, 0x24,0x40, 0xFF,0xF0, 0x24,0x40, -/* @shen3 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x02,0x00, 0x0C,0x00, 0x3F,0xF0, -0xE0,0x00, 0x5F,0xF0, 0x12,0x40, 0x12,0x40, -0x12,0x40, 0xFF,0xF0, 0x12,0x40, 0x12,0x40, -/* @shen4 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x40, 0x00,0x40, 0x00,0x40, -0x3F,0xC0, 0x6A,0x40, 0xAA,0x40, 0x2A,0x50, -0x2A,0x50, 0x2A,0x60, 0x2A,0x60, 0x3F,0xF0, -/* @shen5 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x86,0x30, 0x60,0xC0, 0x07,0x00, -0x00,0x00, 0x64,0x80, 0x44,0x80, 0x58,0x90, -0x40,0xA0, 0x43,0xF0, 0x50,0xA0, 0x48,0x90, -/* @shen6 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x09,0x80, 0xFE,0x50, 0x48,0x60, -0x0F,0x90, 0x08,0x00, 0x00,0xF0, 0x7F,0x00, -0x4B,0xF0, 0x4A,0x00, 0x4B,0xC0, 0x4A,0x30, -/* @shen7 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x0C,0x40, 0x14,0xC0, 0x65,0x50, -0x06,0x50, 0x08,0x50, 0x00,0x00, 0x1F,0xC0, -0x12,0x40, 0x12,0x40, 0xFF,0xF0, 0x12,0x40, -/* @shen8 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x80, 0x91,0x00, 0x73,0xF0, -0x15,0x00, 0x18,0xC0, 0x00,0x00, 0x1F,0xE0, -0x12,0x40, 0x12,0x40, 0xFF,0xF0, 0x12,0x40, -/* @shen9 (12x12,V)@ [suki software]*/ -0x10,0x20, 0x0C,0x20, 0x80,0xF0, 0x67,0x00, -0x08,0x00, 0x1C,0x00, 0x10,0x00, 0x10,0x30, -0x13,0xC0, 0xFF,0xF0, 0x10,0x00, 0x10,0x00, -/* @shen10 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x30,0x00, 0x20,0x00, 0x27,0xF0, -0x24,0x90, 0x24,0x90, 0xA4,0x90, 0x7F,0xF0, -0x24,0x90, 0x24,0x90, 0x24,0x90, 0x27,0xF0, -/* @shen11 (12x12,V)@ [suki software]*/ -0x10,0x00, 0x11,0x80, 0xFE,0x50, 0x10,0x20, -0x1F,0xD0, 0x00,0x00, 0x18,0x00, 0x27,0xF0, -0x24,0x90, 0xA4,0x90, 0x7F,0xF0, 0x24,0x90, -/* @shen12 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x20,0x40, 0x20,0x40, 0x20,0x70, -0xFF,0xC0, 0x2A,0x40, 0x2A,0x40, 0x2A,0x50, -0x2A,0x40, 0x2A,0x50, 0xFF,0xC0, 0x20,0x40, -/* @shen13 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7C,0x00, 0x01,0xF0, -0x01,0x40, 0xFF,0x40, 0x01,0x40, 0x43,0x40, -0xA5,0x40, 0x99,0x40, 0x91,0x40, 0xA9,0xF0, -/* @shen14 (12x12,V)@ [suki software]*/ -0x0E,0x00, 0x00,0x00, 0xFF,0xF0, 0x10,0x00, -0x0C,0x00, 0x20,0x00, 0x2F,0xF0, 0x2A,0xA0, -0x3A,0xA0, 0xEA,0xA0, 0x2A,0xA0, 0x2A,0xA0, -/* @shen15 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x86,0x30, 0x60,0xC0, 0x07,0x40, -0x00,0x40, 0x04,0xA0, 0x15,0x20, 0x36,0x40, -0xDC,0x50, 0x14,0x90, 0x16,0x20, 0x35,0x00, -/* @sheng0 (12x12,V)@ [suki software]*/ -0x40,0x00, 0x48,0x00, 0x4B,0xF0, 0x4A,0x40, -0x4A,0x40, 0x4A,0x40, 0x4A,0x40, 0xFB,0xC0, -0x4A,0x40, 0x4A,0x40, 0x4A,0x40, 0x4A,0x40, -/* @sheng1 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x01,0x00, 0x06,0x00, 0x78,0x80, -0x08,0x80, 0x08,0x80, 0x08,0x80, 0x08,0x80, -0xFF,0xF0, 0x48,0x80, 0x08,0x80, 0x08,0x80, -/* @sheng2 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x3D,0x00, 0x09,0x00, 0x09,0x00, -0xFF,0xF0, 0x09,0x10, 0x09,0x10, 0x00,0x80, -0xFE,0x80, 0x92,0x90, 0xFF,0xE0, 0x92,0x80, -/* @sheng3 (12x12,V)@ [suki software]*/ -0x04,0x40, 0x38,0x40, 0x08,0x80, 0xFF,0xF0, -0x09,0x00, 0x08,0x80, 0x07,0x00, 0x78,0x80, -0x08,0x80, 0x08,0x80, 0xFF,0xF0, 0x08,0x80, -/* @sheng4 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x02,0x00, 0x22,0x00, 0x22,0x00, -0x22,0x30, 0x7F,0xC0, 0x42,0x00, 0x42,0x00, -0x02,0x00, 0x02,0x00, 0x7F,0xF0, 0x02,0x00, -/* @sheng5 (12x12,V)@ [suki software]*/ -0x04,0x40, 0x1C,0xC0, 0xE5,0x40, 0x46,0x40, -0x0C,0x40, 0x00,0x00, 0x03,0xE0, 0x7A,0xA0, -0x4A,0xA0, 0x4F,0xF0, 0x4A,0xA0, 0x4A,0xA0, -/* @sheng6 ʡ(12x12,V)@ [suki software]*/ -0x00,0x80, 0x08,0x80, 0x09,0x00, 0x11,0x00, -0x61,0xF0, 0x03,0x50, 0x03,0x50, 0xFD,0x50, -0x05,0x50, 0x09,0x50, 0x09,0x50, 0x51,0x50, -/* @sheng7 ʢ(12x12,V)@ [suki software]*/ -0x00,0x20, 0x00,0xC0, 0x3F,0x00, 0x24,0x30, -0x24,0xA0, 0x24,0x60, 0x27,0xB0, 0x20,0x60, -0xF8,0xA0, 0x26,0xB0, 0xA1,0x20, 0x62,0xA0, -/* @sheng8 ʣ(12x12,V)@ [suki software]*/ -0x10,0x80, 0x54,0x80, 0x55,0x10, 0x5F,0xA0, -0x50,0x40, 0x7F,0xF0, 0x90,0x40, 0x9F,0x20, -0x92,0x90, 0x15,0x90, 0x00,0x00, 0x1F,0xE0, -/* @sheng9 ʤ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x48,0x80, -0x48,0x80, 0x7F,0xF0, 0x04,0x00, 0x38,0x80, -0x08,0x80, 0x08,0x80, 0xFF,0xF0, 0x08,0x80, -/* @sheng10 ʥ(12x12,V)@ [suki software]*/ -0x00,0x80, 0x00,0x80, 0x40,0x80, 0x41,0x20, -0x61,0x20, 0x52,0x20, 0x4A,0x20, 0x44,0xF0, -0x4A,0x20, 0x5A,0x20, 0x71,0x20, 0x61,0x20, -/* @shi1 ʦ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x3F,0xE0, 0x00,0x00, 0x00,0x70, -0xFF,0x80, 0x00,0x00, 0x4F,0xF0, 0x48,0x00, -0x48,0x00, 0x48,0x00, 0x7F,0xF0, 0x48,0x00, -/* @shi2 ʧ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x02,0x80, 0x04,0x80, 0x18,0x80, -0x68,0x80, 0x08,0x80, 0x08,0xB0, 0xFF,0xC0, -0x08,0xA0, 0x08,0x90, 0x08,0x80, 0x08,0x80, -/* @shi3 ʨ(12x12,V)@ [suki software]*/ -0x84,0x40, 0x48,0x80, 0x31,0x00, 0x2F,0xF0, -0x40,0x00, 0x3F,0xE0, 0x00,0x00, 0xFF,0xF0, -0x00,0x00, 0x4F,0xF0, 0x48,0x00, 0x7F,0xF0, -/* @shi4 ʩ(12x12,V)@ [suki software]*/ -0x10,0x00, 0x10,0x00, 0x9F,0xF0, 0x72,0x00, -0x12,0x00, 0x13,0xF0, 0x04,0x40, 0x18,0x40, -0xF3,0xF0, 0x50,0x80, 0x17,0xF0, 0x11,0x00, -/* @shi5 ʪ(12x12,V)@ [suki software]*/ -0x08,0x10, 0x06,0x10, 0x40,0x70, 0x33,0x80, -0x00,0x00, 0x00,0x40, 0x7C,0x30, 0x54,0x00, -0x55,0xF0, 0x54,0x00, 0x55,0xF0, 0x54,0x10, -/* @shi6 ʫ(12x12,V)@ [suki software]*/ -0x02,0x00, 0x82,0x00, 0x72,0x00, 0x23,0xF0, -0x00,0x00, 0x04,0x80, 0x24,0x80, 0x24,0xC0, -0x24,0xB0, 0xFC,0x80, 0x24,0x80, 0x24,0x80, -/* @shi7 ʬ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x44,0x00, -0x44,0x00, 0x44,0x00, 0x44,0x00, 0x44,0x00, -0x44,0x00, 0x44,0x00, 0x44,0x00, 0x44,0x00, -/* @shi8 ʭ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x48,0x00, 0x4B,0xE0, 0x4A,0x40, -0x4A,0x40, 0x4F,0xF0, 0x52,0x40, 0x52,0x40, -0x53,0xD0, 0x50,0x00, 0x40,0x00, 0x7F,0xE0, -/* @shi9 ʮ(12x12,V)@ [suki software]*/ -0x02,0x00, 0x02,0x00, 0x02,0x00, 0x02,0x00, -0x02,0x00, 0x02,0x00, 0x02,0x00, 0xFF,0xF0, -0x02,0x00, 0x02,0x00, 0x02,0x00, 0x02,0x00, -/* @shi10 ʯ(12x12,V)@ [suki software]*/ -0x40,0x00, 0x40,0x10, 0x40,0x20, 0x40,0x40, -0x41,0x80, 0x4F,0xF0, 0x72,0x00, 0x42,0x00, -0x42,0x00, 0x42,0x00, 0x42,0x00, 0x42,0x00, -/* @shi11 ʰ(12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x12,0x00, 0x12,0x00, 0x04,0x00, 0x0A,0x70, -0x12,0x40, 0xE2,0x40, 0x22,0x40, 0x1A,0x40, -/* @shi12 ʱ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x3F,0xE0, 0x22,0x20, 0x22,0x20, -0x22,0x20, 0x3F,0xE0, 0x08,0x00, 0x09,0x00, -0x08,0xC0, 0x08,0x00, 0x08,0x00, 0xFF,0xF0, -/* @shen16 ʲ(12x12,V)@ [suki software]*/ -0x01,0x00, 0x02,0x00, 0x04,0x00, 0x1F,0xF0, -0xF0,0x00, 0x42,0x00, 0x02,0x00, 0x02,0x00, -0x02,0x00, 0xFF,0xF0, 0x02,0x00, 0x02,0x00, -/* @shi13 ʳ(12x12,V)@ [suki software]*/ -0x04,0x00, 0x04,0x00, 0x08,0x00, 0x0F,0xF0, -0x15,0x40, 0x25,0x40, 0xD5,0x60, 0x4D,0x50, -0x25,0x50, 0x15,0x40, 0x0F,0xD0, 0x08,0x20, -/* @shi14 ʴ(12x12,V)@ [suki software]*/ -0x01,0x00, 0x06,0x00, 0x79,0xF0, 0x08,0x00, -0x0A,0x00, 0x0C,0x10, 0x00,0x00, 0x0F,0xC0, -0x08,0x80, 0x08,0x80, 0xFF,0xF0, 0x08,0x80, -/* @shi15 ʵ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x08,0x40, 0x30,0x40, 0x20,0x40, -0x32,0x40, 0x2D,0xC0, 0x29,0x40, 0xA0,0x50, -0x6F,0xE0, 0x20,0x50, 0x20,0x40, 0x20,0x40, -/* @shi16 ʶ(12x12,V)@ [suki software]*/ -0x02,0x00, 0x82,0x00, 0x72,0x00, 0x23,0xF0, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x7F,0x00, -0x41,0x70, 0x41,0x00, 0x41,0x00, 0x41,0x40, -/* @shi17 ʷ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x1F,0x80, 0x11,0x00, -0x11,0x40, 0x11,0x20, 0x11,0x10, 0xFF,0xE0, -0x11,0x00, 0x11,0x00, 0x11,0x00, 0x11,0x00, -/* @shi18 ʸ(12x12,V)@ [suki software]*/ -0x01,0x00, 0x03,0x00, 0x05,0x00, 0x19,0x00, -0xF1,0x00, 0x11,0x30, 0x11,0xC0, 0x1F,0x00, -0x11,0xC0, 0x11,0x30, 0x11,0x00, 0x11,0x00, -/* @shi19 ʹ(12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x0F,0xF0, 0x38,0x00, -0xE0,0x00, 0x4F,0x80, 0x29,0x40, 0x29,0x20, -0x29,0x30, 0xFF,0xC0, 0x29,0x00, 0x29,0x00, -/* @shi20 ʺ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0xFF,0xF0, 0x91,0x00, -0x95,0x00, 0x93,0x10, 0x91,0x20, 0x91,0xC0, -0x9F,0xF0, 0x91,0x40, 0x93,0x20, 0x9D,0x10, -/* @shi21 ʻ(12x12,V)@ [suki software]*/ -0x40,0x10, 0x5F,0x10, 0x41,0x10, 0x41,0x20, -0x7F,0x20, 0x01,0x00, 0x01,0xF0, 0x1F,0x40, -0x11,0x20, 0x11,0x10, 0xFF,0xE0, 0x11,0x00, -/* @shi22 ʼ(12x12,V)@ [suki software]*/ -0x08,0x00, 0x09,0x80, 0x0E,0x40, 0xF8,0x30, -0x48,0x60, 0x0F,0x90, 0x00,0x00, 0x04,0x00, -0x0E,0xF0, 0x14,0x80, 0xE4,0x80, 0x44,0x80, -/* @shi23 ʽ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x10,0x00, 0x11,0x00, 0x11,0x00, -0x11,0xF0, 0x11,0x00, 0x11,0x10, 0x10,0x10, -0xFF,0x00, 0x10,0xE0, 0x90,0x10, 0x70,0x00, -/* @shi24 ʾ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x04,0x10, 0x04,0x20, 0x44,0xC0, -0x44,0x00, 0x44,0x00, 0x44,0x00, 0x47,0xF0, -0x44,0x00, 0x44,0x00, 0x44,0x80, 0x44,0x40, -/* @shi25 ʿ(12x12,V)@ [suki software]*/ -0x04,0x00, 0x04,0x00, 0x04,0x00, 0x04,0x00, -0x04,0x00, 0x04,0x00, 0x04,0x00, 0xFF,0xF0, -0x04,0x00, 0x04,0x00, 0x04,0x00, 0x04,0x00, -/* @shi26 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x04,0x00, 0x04,0x00, 0x7F,0xF0, -0x04,0x00, 0x04,0x00, 0x7F,0xE0, 0x04,0x40, -0x04,0x40, 0x04,0x40, 0x04,0x40, 0x7F,0xE0, -/* @shi27 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x11,0x80, 0x16,0x00, 0xFF,0xF0, -0x12,0x00, 0x11,0x00, 0x00,0x00, 0x13,0xF0, -0x12,0x00, 0x92,0x00, 0x7F,0xF0, 0x12,0x10, -/* @shi28 (12x12,V)@ [suki software]*/ -0x40,0x40, 0x40,0x40, 0x41,0x50, 0x5D,0x50, -0x55,0x50, 0x55,0x50, 0x55,0x50, 0xFF,0xF0, -0x55,0x50, 0x55,0x50, 0x55,0x50, 0x55,0x50, -/* @shi29 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x08,0x40, 0x08,0x80, 0xFF,0xF0, -0x0A,0x00, 0x01,0x00, 0x09,0x00, 0x09,0xF0, -0x09,0x10, 0x09,0x20, 0xFF,0x00, 0x08,0xE0, -/* @shi30 (12x12,V)@ [suki software]*/ -0x41,0x00, 0x55,0x00, 0x53,0x00, 0xFD,0x50, -0x51,0x50, 0x53,0x50, 0x45,0x50, 0x09,0x50, -0x73,0x50, 0x51,0x50, 0x51,0x50, 0x5F,0x50, -/* @shi31 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x42,0x00, 0x33,0xF0, 0x00,0x00, -0x08,0x90, 0x09,0x00, 0x7F,0xF0, 0x0A,0x10, -0x08,0x60, 0x3F,0x80, 0x24,0x00, 0x27,0xF0, -/* @shi32 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x20,0x00, 0x25,0x20, 0x24,0xA0, -0xFF,0x20, 0x28,0xA0, 0x01,0x30, 0x2A,0xE0, -0x3C,0x20, 0xE6,0x20, 0x20,0x20, 0x3C,0x70, -/* @shi33 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x01,0x00, 0x01,0x00, 0x01,0x00, -0x7D,0x70, 0x55,0x00, 0x55,0x00, 0x55,0xF0, -0x55,0x20, 0x55,0x20, 0x55,0x20, 0x7D,0x20, -/* @shi34 (12x12,V)@ [suki software]*/ -0x3F,0xE0, 0x20,0x40, 0x20,0x40, 0x3F,0xE0, -0x01,0x00, 0x11,0x00, 0x52,0x30, 0x53,0xA0, -0x56,0xA0, 0xF6,0xA0, 0x5A,0xA0, 0x56,0xA0, -/* @shi35 (12x12,V)@ [suki software]*/ -0x3F,0xF0, 0x20,0x40, 0x20,0x40, 0x3F,0xE0, -0x08,0x00, 0x14,0x10, 0xE5,0xE0, 0x3C,0x10, -0x24,0x00, 0x2F,0xF0, 0xF4,0x00, 0x24,0x30, -/* @shi36 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x82,0x00, 0x63,0xF0, 0x00,0x00, -0x08,0x00, 0x08,0x00, 0x49,0xF0, 0x49,0x10, -0x49,0x10, 0x7F,0x10, 0x89,0x10, 0x89,0x10, -/* @shi37 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x02,0x00, 0x0F,0xF0, 0x38,0x00, -0xE4,0x00, 0x44,0x00, 0x04,0x00, 0x04,0x00, -0x04,0x00, 0xFF,0xF0, 0x04,0x00, 0x04,0x00, -/* @shi38 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x0F,0xF0, 0x30,0x00, -0xC4,0x00, 0x24,0x80, 0x24,0xA0, 0x24,0x90, -0x24,0x90, 0xFC,0x80, 0x24,0x80, 0x27,0xF0, -/* @shi39 (12x12,V)@ [suki software]*/ -0x04,0x10, 0x54,0x60, 0x4D,0x80, 0x7F,0xF0, -0x8D,0x00, 0x94,0x80, 0x00,0x20, 0x84,0xA0, -0xC4,0xA0, 0xA8,0xA0, 0x93,0xF0, 0xA8,0xA0, -/* @shi40 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x0C,0x00, 0xF3,0xF0, 0x10,0x00, -0x14,0x00, 0x19,0x00, 0x06,0x00, 0x1B,0xF0, -0xF2,0x00, 0x12,0x00, 0x1F,0xF0, 0x12,0x00, -/* @shi41 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x3F,0xF0, 0x22,0x00, -0x22,0x00, 0x22,0x00, 0x22,0x00, 0x3E,0x00, -0x43,0xC0, 0x42,0x30, 0x42,0x00, 0x42,0x00, -/* @shi42 (12x12,V)@ [suki software]*/ -0x20,0x00, 0x20,0x00, 0x20,0x00, 0x27,0xF0, -0x24,0x00, 0x24,0x00, 0xA4,0x00, 0x7F,0xF0, -0x24,0x00, 0x24,0x00, 0x24,0x00, 0x24,0x00, -/* @shi43 (12x12,V)@ [suki software]*/ -0x0E,0x00, 0x00,0x00, 0xFF,0xF0, 0x10,0x00, -0x08,0x00, 0x04,0x80, 0x24,0xA0, 0x24,0x90, -0x24,0x80, 0xFC,0x80, 0x24,0x80, 0x27,0xF0, -/* @shi44 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x08,0x00, 0x34,0x10, 0x24,0x90, -0x25,0x90, 0x26,0x90, 0xA4,0x90, 0x64,0xF0, -0x24,0x90, 0x24,0x90, 0x25,0x90, 0x24,0xD0, -/* @shi45 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x80, 0x91,0x00, 0x72,0xF0, -0x55,0x00, 0x18,0xE0, 0x00,0x40, 0x7F,0x80, -0x40,0x10, 0x40,0x60, 0x5F,0x80, 0x40,0x70, -/* @shi46 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x42,0x00, 0x3B,0xF0, 0x10,0x00, -0x00,0x00, 0x09,0x00, 0x09,0x00, 0x09,0xF0, -0x09,0x00, 0x09,0x00, 0xFF,0x80, 0x08,0x60, -/* @shou0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x1F,0xF0, 0x00,0x20, 0x00,0x40, -0xFF,0xF0, 0x00,0x00, 0x02,0x00, 0x0C,0x00, -0xFB,0x80, 0x08,0x60, 0x08,0x10, 0x08,0x60, -/* @shou1 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x24,0x40, 0x24,0x40, 0x24,0x40, -0x24,0x40, 0x24,0x40, 0x24,0x40, 0x7F,0xF0, -0x44,0x40, 0x44,0x40, 0x44,0x40, 0x44,0x40, -/* @shou2 (12x12,V)@ [suki software]*/ -0x20,0x00, 0x20,0x00, 0x20,0x00, 0x27,0xF0, -0xA4,0xA0, 0x64,0xA0, 0x2C,0xA0, 0x34,0xA0, -0x24,0xA0, 0x24,0xA0, 0x64,0xA0, 0xA7,0xF0, -/* @shou3 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x09,0x00, 0x31,0x00, 0x21,0x00, -0x21,0x40, 0x21,0x30, 0x21,0x10, 0xA1,0x00, -0x61,0x00, 0x21,0x00, 0x2F,0xF0, 0x21,0x00, -/* @shou4 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x22,0x00, 0x22,0x00, 0x2A,0x10, -0x2A,0x20, 0x2A,0xC0, 0x2F,0x20, 0xFA,0x50, -0x2A,0x40, 0x2A,0x40, 0x2A,0x40, 0x2B,0xF0, -/* @shou5 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x80, 0xFF,0xF0, 0x11,0x00, -0x12,0x00, 0x46,0x00, 0x54,0x80, 0x4C,0xC0, -0x64,0xA0, 0x5C,0x90, 0x84,0xA0, 0x8C,0xC0, -/* @shou6 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x08,0x00, 0x3F,0xB0, -0xEA,0xA0, 0x2A,0xA0, 0x2A,0xA0, 0xAA,0xA0, -0x7F,0xA0, 0x2A,0xA0, 0x2A,0xA0, 0x2A,0xA0, -/* @shou7 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x46,0x00, 0x64,0x00, 0x54,0x80, -0x4C,0xC0, 0x44,0xA0, 0x64,0x90, 0x5C,0x80, -0xD4,0x80, 0x84,0xB0, 0x8C,0xC0, 0xF4,0x00, -/* @shou8 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x40, 0x00,0x80, 0x3F,0xF0, -0x20,0x00, 0x2F,0xA0, 0x32,0xB0, 0xA0,0xA0, -0x7F,0xE0, 0x20,0xA0, 0x2A,0xA0, 0x2A,0xB0, -/* @shou9 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x00,0x40, 0x3F,0x40, 0x29,0x50, -0xA9,0x50, 0x69,0x50, 0x29,0x50, 0x3F,0x50, -0x29,0x50, 0x69,0x50, 0xA9,0x50, 0x29,0x50, -/* @shu0 (12x12,V)@ [suki software]*/ -0x40,0x00, 0x48,0xF0, 0x48,0x00, 0x4B,0xF0, -0x4C,0x40, 0xE8,0x40, 0x40,0x00, 0x49,0x70, -0x4B,0x00, 0xED,0x70, 0x59,0x00, 0x49,0x70, -/* @shu1 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x11,0x80, 0x16,0x00, 0xFF,0xF0, -0x12,0x00, 0x11,0x80, 0x00,0x00, 0x7F,0xF0, -0x40,0x10, 0x44,0x20, 0x42,0x40, 0x41,0x80, -/* @shu2 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x11,0x80, 0x16,0x00, 0xFF,0xF0, -0x12,0x00, 0x11,0x00, 0x22,0x00, 0x26,0xF0, -0x2A,0x00, 0xB2,0xF0, 0x62,0x00, 0x22,0x00, -/* @shu3 (12x12,V)@ [suki software]*/ -0x20,0x80, 0x23,0x00, 0x3C,0x80, 0x24,0x70, -0x24,0xC0, 0x27,0x00, 0x0A,0x00, 0x72,0x10, -0x12,0x60, 0x13,0x80, 0xFF,0xF0, 0x12,0xC0, -/* @shu4 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x11,0x00, 0x12,0x00, 0x00,0x00, 0x42,0x00, -0x52,0x00, 0x4A,0x00, 0x4F,0xF0, 0x52,0x00, -/* @shu5 (12x12,V)@ [suki software]*/ -0x22,0x20, 0x2F,0x20, 0xF2,0x20, 0x27,0xF0, -0x22,0x40, 0x26,0x40, 0x09,0xF0, 0x19,0x50, -0x29,0x50, 0xC9,0xF0, 0x28,0x00, 0x19,0xF0, -/* @shu6 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x02,0x30, 0x02,0xC0, 0x02,0x00, -0xFF,0xF0, 0x12,0x80, 0x12,0x40, 0x02,0x30, -0x3C,0x00, 0x23,0x90, 0x20,0x60, 0x20,0xD0, -/* @shu7 (12x12,V)@ [suki software]*/ -0x05,0x00, 0x0D,0x30, 0x35,0x20, 0xC7,0xE0, -0x25,0x20, 0x15,0x20, 0x0D,0x30, 0x4A,0x00, -0x42,0x00, 0x52,0x00, 0x4A,0x00, 0x4F,0xF0, -/* @shu8 (12x12,V)@ [suki software]*/ -0x10,0x20, 0x8C,0x70, 0x61,0x80, 0x02,0x30, -0x02,0x40, 0xFF,0xF0, 0x12,0x00, 0x12,0x40, -0x02,0x30, 0x3C,0x00, 0x23,0x90, 0x20,0x60, -/* @shu9 (12x12,V)@ [suki software]*/ -0x40,0x00, 0x43,0xF0, 0x50,0x00, 0x4F,0xF0, -0x51,0x10, 0x61,0x10, 0x22,0x00, 0x26,0xF0, -0x3A,0x00, 0xA2,0xF0, 0x62,0x00, 0x2A,0x00, -/* @shu10 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x01,0x00, 0x11,0x00, 0x11,0x00, -0x11,0x00, 0x11,0x00, 0xFF,0xF0, 0x11,0x00, -0x11,0x00, 0x11,0x00, 0x11,0x00, 0x5F,0x00, -/* @shu11 (12x12,V)@ [suki software]*/ -0x7F,0xE0, 0x40,0x00, 0x5F,0xF0, 0x40,0x00, -0x7F,0xC0, 0x01,0x20, 0x28,0xE0, 0x2A,0x20, -0x29,0xA0, 0x29,0x20, 0xFF,0xF0, 0x28,0x20, -/* @shu12 (12x12,V)@ [suki software]*/ -0x20,0x10, 0x2E,0x90, 0x2A,0x90, 0xAA,0xA0, -0x6A,0xB0, 0x2E,0xE0, 0x20,0xA0, 0x08,0x00, -0x09,0x30, 0xFF,0xC0, 0x08,0x80, 0x08,0x40, -/* @shu13 (12x12,V)@ [suki software]*/ -0x20,0x00, 0x22,0x40, 0x3A,0x50, 0xAA,0x40, -0x6A,0xF0, 0x3B,0x40, 0x22,0x50, 0x20,0x20, -0x14,0x40, 0x13,0x80, 0xFD,0x00, 0x10,0x10, -/* @shu14 (12x12,V)@ [suki software]*/ -0x40,0x00, 0x40,0x40, 0x41,0x40, 0x5D,0x50, -0x55,0x50, 0xF5,0x50, 0x5D,0x70, 0x57,0xF0, -0x55,0x50, 0x5D,0xD0, 0xF7,0x50, 0x55,0x50, -/* @shu15 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x00,0x80, 0x02,0x90, 0xFA,0x90, -0xAA,0xB0, 0xAA,0xA0, 0xAF,0xE0, 0xAA,0xE0, -0xAA,0xA0, 0xAA,0xA0, 0xAB,0xA0, 0xFA,0xB0, -/* @shu16 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x42,0x10, 0x42,0x10, -0x7F,0xF0, 0x01,0x20, 0xF5,0x20, 0x95,0x70, -0xF5,0x50, 0x9F,0xD0, 0x95,0xD0, 0xF5,0x50, -/* @shu17 (12x12,V)@ [suki software]*/ -0x01,0x10, 0x01,0x10, 0xF1,0x20, 0x95,0x20, -0x95,0x70, 0x95,0x50, 0xF5,0xD0, 0x9F,0x50, -0x95,0x50, 0xF5,0x50, 0x97,0x50, 0x9D,0x70, -/* @shu18 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x80, 0x01,0x00, 0x7E,0xF0, -0x54,0xA0, 0x54,0xA0, 0x74,0xA0, 0x57,0xF0, -0x54,0xA0, 0x74,0xA0, 0x54,0xB0, 0x54,0xE0, -/* @shu19 (12x12,V)@ [suki software]*/ -0x01,0x10, 0x11,0x10, 0x11,0x10, 0x52,0x20, -0x52,0x20, 0x54,0x50, 0x58,0x80, 0x7F,0x70, -0x98,0x80, 0x94,0x50, 0x94,0x20, 0x92,0x20, -/* @shu20 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7D,0xF0, 0x55,0x40, -0x54,0xA0, 0x94,0x00, 0x04,0x00, 0x55,0xF0, -0x55,0x20, 0x54,0x90, 0x54,0x00, 0x7D,0xF0, -/* @shu21 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0xFF,0xF0, 0xA0,0x00, -0xA8,0x30, 0xAB,0xA0, 0xAA,0xA0, 0xAA,0xA0, -0xAF,0xF0, 0xAA,0xA0, 0xAA,0xB0, 0xAA,0xA0, -/* @shu22 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x08,0x00, 0x08,0x10, 0x08,0x20, -0x08,0x40, 0x09,0x80, 0x0A,0x00, 0xFF,0xF0, -0x0A,0x00, 0x09,0x00, 0x48,0x80, 0x28,0x60, -/* @shu23 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x82,0x00, 0x73,0xF0, 0x20,0x00, -0x00,0x20, 0x08,0x40, 0x08,0x80, 0x0B,0x00, -0x0C,0x00, 0xFF,0xF0, 0x0A,0x00, 0x49,0x00, -/* @shu24 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x08,0xC0, 0x0B,0x00, 0xFF,0xF0, -0x0A,0x00, 0x09,0x90, 0x16,0x20, 0x11,0xC0, -0x16,0x80, 0x18,0x60, 0x09,0x00, 0x08,0x80, -/* @shu25 (12x12,V)@ [suki software]*/ -0x20,0x00, 0x20,0x00, 0x2F,0x80, 0x29,0x00, -0x29,0x10, 0x29,0x60, 0x29,0x80, 0xFF,0xF0, -0x29,0x40, 0x29,0x20, 0x29,0x10, 0x29,0x10, -/* @shu26 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x1F,0xF0, 0x12,0x00, -0x11,0x00, 0x10,0x80, 0x10,0x40, 0x10,0x00, -0xFC,0x10, 0x13,0xA0, 0x90,0x60, 0x70,0x90, -/* @shu27 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7E,0x40, 0x00,0x40, -0x00,0x60, 0xFF,0x50, 0x02,0x40, 0x43,0x40, -0x64,0xC0, 0x58,0x40, 0x48,0x50, 0x54,0x60, -/* @shu28 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x40, 0x7D,0x50, 0x55,0x50, -0x7F,0xD0, 0x55,0x50, 0x7D,0x50, 0x00,0x30, -0x08,0x10, 0x48,0x90, 0x68,0x50, 0x5F,0x90, -/* @shu29 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x3F,0xF0, 0x22,0x00, -0x22,0x00, 0x22,0x00, 0x3F,0xE0, 0xA2,0x40, -0x62,0x40, 0x22,0x40, 0x3F,0xE0, 0x22,0x00, -/* @shu30 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x49,0x40, 0x2A,0x50, 0x1C,0x70, -0xFF,0xC0, 0x1C,0x50, 0x2A,0x60, 0x4A,0x40, -0x01,0x00, 0x0F,0x00, 0xF8,0xC0, 0x48,0x30, -/* @shu31 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x84,0x30, 0x61,0xC0, 0x06,0x00, -0x2F,0x90, 0x28,0xA0, 0xFF,0xF0, 0x28,0xA0, -0x2F,0x90, 0x04,0x00, 0xF8,0x10, 0x17,0xE0, -/* @shu32 ˡ(12x12,V)@ [suki software]*/ -0x20,0x40, 0x24,0x40, 0x3C,0x90, 0xE3,0x00, -0x26,0x30, 0x39,0x00, 0x20,0x80, 0x00,0x20, -0x3F,0x10, 0x21,0x00, 0x21,0x00, 0x21,0x00, -/* @shua0 ˢ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x01,0xF0, 0xFE,0x00, 0x89,0xF0, -0x89,0x00, 0x89,0x00, 0x8F,0xF0, 0x89,0x00, -0xF9,0x00, 0x01,0xF0, 0x00,0x00, 0x3F,0xF0, -/* @shua1 ˣ(12x12,V)@ [suki software]*/ -0x00,0x40, 0x80,0x40, 0x9F,0x40, 0x90,0x40, -0x90,0x60, 0xB0,0xD0, 0xDF,0x50, 0xD0,0x40, -0x90,0x40, 0x9E,0x40, 0x90,0x50, 0x92,0x60, -/* @shuai0 ˤ(12x12,V)@ [suki software]*/ -0x10,0x80, 0x10,0x80, 0xFF,0xF0, 0x11,0x00, -0x12,0x90, 0x29,0x10, 0x26,0x10, 0x20,0x90, -0xAD,0x90, 0x76,0xF0, 0x25,0x90, 0x28,0xD0, -/* @shuai1 ˥(12x12,V)@ [suki software]*/ -0x00,0x00, 0x44,0x00, 0x44,0x10, 0x44,0x10, -0x5F,0x30, 0x55,0x20, 0x55,0x40, 0xD5,0x80, -0x55,0x40, 0x55,0x20, 0x55,0x10, 0x5F,0x20, -/* @shuai2 ˦(12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x49,0x00, -0x49,0x00, 0x49,0x00, 0x49,0x00, 0x7F,0xF0, -0x49,0x00, 0x49,0x00, 0x49,0x10, 0x49,0x00, -/* @shuai3 ˧(12x12,V)@ [suki software]*/ -0x00,0x00, 0x1F,0xE0, 0x00,0x00, 0x00,0x10, -0xFF,0xE0, 0x00,0x00, 0x1F,0xF0, 0x10,0x00, -0x10,0x00, 0x10,0x00, 0xFF,0xF0, 0x10,0x00, -/* @shuan0 ˨(12x12,V)@ [suki software]*/ -0x08,0x20, 0x08,0xC0, 0x0B,0x00, 0xFF,0xF0, -0x0A,0x00, 0x09,0x00, 0x04,0x00, 0x0A,0x40, -0x32,0x40, 0xC3,0xF0, 0x32,0x40, 0x0A,0x40, -/* @shuan1 ˩(12x12,V)@ [suki software]*/ -0x08,0x40, 0x08,0x40, 0xFF,0xF0, 0x09,0x00, -0x0A,0x00, 0x00,0x00, 0x0A,0x40, 0x12,0x40, -0x22,0x40, 0xC3,0xF0, 0x22,0x40, 0x12,0x40, -/* @shuang0 ˪(12x12,V)@ [suki software]*/ -0x00,0x00, 0x30,0x40, 0x20,0x50, 0xAA,0x60, -0xAB,0xF0, 0xAA,0x60, 0xA0,0x50, 0xFE,0x00, -0xA0,0xF0, 0xAA,0xA0, 0xAA,0xA0, 0xAA,0xA0, -/* @shuang1 ˫(12x12,V)@ [suki software]*/ -0x00,0x00, 0x48,0x00, 0x44,0x10, 0x42,0x60, -0x41,0x80, 0x46,0xC0, 0x78,0x70, 0x00,0x20, -0x78,0x00, 0x47,0x90, 0x40,0x60, 0x40,0x90, -/* @shuang2 ˬ(12x12,V)@ [suki software]*/ -0x20,0x00, 0x21,0x10, 0x2A,0xA0, 0x24,0x40, -0x2A,0xA0, 0x31,0x10, 0x20,0x60, 0xFF,0x80, -0x20,0x60, 0x2B,0x10, 0x24,0xA0, 0x2A,0x40, -/* @shui0 ˭(12x12,V)@ [suki software]*/ -0x04,0x00, 0x84,0x00, 0x77,0xF0, 0x20,0x00, -0x02,0x10, 0x04,0x00, 0x1F,0xF0, 0xF2,0x40, -0x12,0x40, 0x92,0x40, 0x7F,0xF0, 0x52,0x40, -/* @shui1 ˮ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x08,0x00, 0x08,0x10, 0x08,0x60, -0x09,0x80, 0x0E,0x00, 0x00,0x00, 0xFF,0xF0, -0x04,0x00, 0x06,0x00, 0x09,0x80, 0x10,0x60, -/* @shui2 ˯(12x12,V)@ [suki software]*/ -0x7F,0xF0, 0x44,0x80, 0x44,0x80, 0x7F,0xF0, -0x00,0x00, 0x49,0x10, 0x4F,0xF0, 0x49,0x10, -0x49,0x10, 0x7F,0xF0, 0x89,0x10, 0x89,0x10, -/* @shui3 ˰(12x12,V)@ [suki software]*/ -0x08,0x20, 0x48,0xC0, 0x4B,0x00, 0x7F,0xF0, -0x8A,0x00, 0x89,0x00, 0x00,0x00, 0x4F,0x80, -0x28,0xF0, 0x08,0x80, 0x18,0xF0, 0x28,0x80, -/* @shun0 ˱(12x12,V)@ [suki software]*/ -0x3F,0xE0, 0x20,0x80, 0x20,0x80, 0x20,0x80, -0x3F,0xC0, 0x04,0x00, 0x0C,0x10, 0x15,0xE0, -0x24,0x00, 0xCC,0x00, 0x49,0xF0, 0x08,0x00, -/* @shun1 ˲(12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x44,0x80, 0x7F,0xF0, -0x02,0x20, 0x4C,0x40, 0x6B,0xA0, 0x59,0x30, -0x49,0xC0, 0x68,0x10, 0x99,0x60, 0x89,0x20, -/* @shun2 ˳(12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x00,0x00, 0x3F,0xF0, -0x00,0x00, 0x7F,0xF0, 0x00,0x00, 0x4F,0xE0, -0x48,0x00, 0x58,0x00, 0x69,0xF0, 0x48,0x00, -/* @shun3 ˴(12x12,V)@ [suki software]*/ -0x00,0x10, 0x02,0x20, 0x4C,0xC0, 0x6B,0x20, -0x59,0x10, 0x49,0x20, 0x69,0xC0, 0x58,0x20, -0x49,0x60, 0x49,0x20, 0x9B,0xF0, 0xE9,0x20, -/* @shuo0 ˵(12x12,V)@ [suki software]*/ -0x04,0x00, 0x84,0x00, 0x77,0xF0, 0x20,0x00, -0x00,0x10, 0x00,0x00, 0x9F,0x80, 0x71,0x10, -0x51,0xE0, 0x11,0x00, 0x11,0xF0, 0x31,0x00, -/* @shuo1 ˶(12x12,V)@ [suki software]*/ -0x00,0x80, 0x41,0x00, 0x4F,0xF0, 0x72,0x10, -0x42,0x10, 0x43,0xF0, 0x00,0x00, 0x4F,0xF0, -0x48,0x00, 0x58,0x10, 0x6B,0xE0, 0x48,0x10, -/* @shuo2 ˷(12x12,V)@ [suki software]*/ -0x00,0x00, 0x10,0x00, 0x97,0x80, 0x70,0x90, -0x1F,0xE0, 0x10,0x80, 0x30,0x80, 0xD7,0x80, -0x10,0x00, 0x00,0x30, 0x7F,0xC0, 0x49,0x00, -/* @shuo3 ˸(12x12,V)@ [suki software]*/ -0x01,0x00, 0x0E,0x00, 0x00,0x30, 0xFF,0xC0, -0x08,0x40, 0x10,0x30, 0x3E,0x00, 0x22,0x30, -0x22,0x60, 0x22,0x00, 0x5F,0xF0, 0x42,0x00, -/* @si0 ˹(12x12,V)@ [suki software]*/ -0x20,0x20, 0x20,0x20, 0xFF,0xE0, 0x29,0x20, -0x29,0x20, 0x29,0x20, 0xFF,0xE0, 0x20,0x20, -0x00,0x00, 0x7F,0xF0, 0x44,0x00, 0x44,0x00, -/* @si1 ˺(12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x80, 0xFF,0xF0, 0x11,0x00, -0x22,0x40, 0xFF,0xD0, 0x2A,0x40, 0x2A,0x60, -0xFF,0xD0, 0x20,0x40, 0x3F,0xF0, 0x24,0x00, -/* @si2 ˻(12x12,V)@ [suki software]*/ -0x3F,0xE0, 0x20,0x80, 0x20,0x80, 0x3F,0xE0, -0x20,0x40, 0xFF,0xF0, 0x29,0x40, 0x29,0x60, -0xFF,0xD0, 0x20,0x40, 0x3F,0xF0, 0x24,0x00, -/* @si3 ˼(12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x10, 0x00,0x00, 0x7F,0x00, -0x49,0x30, 0x49,0x00, 0x49,0x00, 0x7F,0x40, -0x49,0x30, 0x49,0x00, 0x49,0x00, 0x49,0x00, -/* @si4 ˽(12x12,V)@ [suki software]*/ -0x08,0x10, 0x48,0x60, 0x49,0x80, 0x4E,0x00, -0x7F,0xF0, 0x49,0x00, 0xC8,0xC0, 0x48,0x30, -0x01,0xC0, 0x0E,0x00, 0xF0,0x00, 0x40,0x00, -/* @si5 ˾(12x12,V)@ [suki software]*/ -0x00,0x00, 0x08,0x00, 0x49,0xF0, 0x49,0x20, -0x49,0x20, 0x49,0x20, 0x49,0x20, 0x49,0x20, -0x49,0x20, 0x49,0xF0, 0x48,0x00, 0x40,0x00, -/* @si6 ˿(12x12,V)@ [suki software]*/ -0x00,0x00, 0x02,0x00, 0x07,0x20, 0x1A,0x60, -0x72,0xA0, 0x23,0x20, 0x06,0x20, 0x00,0x00, -0x02,0x20, 0x0F,0x60, 0x7A,0xA0, 0x23,0x20, -/* @si7 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x40,0x80, 0x43,0x00, 0x4D,0x00, -0x78,0xC0, 0x48,0x30, 0x49,0xC0, 0x4E,0x00, -0x40,0x00, 0x7F,0xF0, 0x41,0x00, 0x42,0x00, -/* @si8 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x00,0x80, 0x7F,0xF0, 0x52,0x80, -0x52,0xA0, 0x52,0x90, 0x40,0x90, 0x2A,0x50, -0x2A,0x50, 0x2A,0x50, 0xFF,0xF0, 0x2A,0x50, -/* @si9 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x04,0x80, 0x24,0x80, 0x24,0x80, -0x24,0xA0, 0x24,0x90, 0x24,0x80, 0xFC,0x80, -0x24,0x80, 0x24,0x80, 0x27,0xF0, 0x24,0x80, -/* @si10 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7B,0xF0, 0x4A,0x40, 0x4B,0xF0, -0x4A,0x40, 0x4B,0xF0, 0x4A,0x40, 0x7B,0xF0, -0x00,0x00, 0x53,0xF0, 0x52,0x20, 0x53,0xF0, -/* @si11 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x40,0x10, 0x40,0x20, -0x40,0xC0, 0x7F,0x00, 0x40,0x00, 0x40,0x00, -0x7F,0x80, 0x40,0x40, 0x40,0x40, 0x40,0x40, -/* @si12 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x01,0x00, 0x06,0x00, 0x1F,0xF0, -0xE0,0x00, 0x48,0x00, 0x4B,0xF0, 0x4A,0x20, -0x4A,0x20, 0x4A,0x20, 0x4B,0xF0, 0x48,0x00, -/* @si13 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x02,0x00, 0x1F,0xF0, 0xE8,0x00, -0x40,0x00, 0x1F,0xF0, 0x00,0x10, 0x80,0x20, -0x70,0x40, 0x20,0x80, 0x00,0x00, 0x00,0x30, -/* @si14 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x0C,0x00, 0x30,0x00, 0xD1,0xF0, -0x14,0x00, 0x18,0x00, 0x10,0x00, 0x40,0x00, -0x4B,0xC0, 0x4A,0x40, 0x4A,0x40, 0x4B,0xC0, -/* @si15 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x42,0x00, -0x42,0x00, 0x42,0x00, 0x42,0x00, 0x42,0x00, -0x42,0x00, 0x42,0x00, 0x42,0x00, 0x7F,0x00, -/* @song0 (12x12,V)@ [suki software]*/ -0x10,0x20, 0x10,0xC0, 0x13,0x00, 0xFF,0xF0, -0x12,0x00, 0x11,0x80, 0x11,0x00, 0x06,0x10, -0x78,0x60, 0x21,0xC0, 0x00,0x80, 0xF0,0x00, -/* @song1 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x0A,0x00, 0x12,0x00, -0xE3,0xF0, 0x12,0xA0, 0x0E,0xA0, 0x06,0xA0, -0x1A,0xA0, 0xE2,0xA0, 0x13,0xF0, 0x0A,0x00, -/* @song2 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x01,0x30, 0x02,0x00, 0x0C,0x00, -0xF0,0x30, 0x08,0x00, 0x06,0x80, 0x01,0x40, -0x06,0x30, 0xF8,0x00, 0x04,0x00, 0x02,0x00, -/* @song3 (12x12,V)@ [suki software]*/ -0x02,0x10, 0x0C,0x30, 0x70,0xD0, 0x87,0x10, -0x40,0x50, 0x30,0x30, 0x40,0x00, 0x4F,0xE0, -0x48,0x00, 0x58,0x10, 0x6B,0xE0, 0x48,0x10, -/* @song4 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x82,0x00, 0x63,0xF0, 0x00,0x00, -0x02,0x00, 0x12,0x10, 0x92,0x20, 0x72,0xC0, -0x1F,0x00, 0x32,0x80, 0xD2,0x40, 0x12,0x30, -/* @song5 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x32,0x00, 0x22,0x00, 0x22,0x10, -0x22,0x20, 0x22,0xC0, 0xA3,0x00, 0x7F,0xF0, -0x23,0x80, 0x22,0x40, 0x22,0x20, 0x22,0x10, -/* @song6 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x84,0x00, 0x77,0xF0, 0x20,0x00, -0x00,0x00, 0x01,0x00, 0x02,0x00, 0x0C,0x30, -0x71,0xC0, 0x00,0x00, 0xE0,0x00, 0x18,0x10, -/* @song7 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x82,0x00, 0x72,0x00, 0x23,0xF0, -0x00,0x00, 0x00,0x00, 0x4F,0xF0, 0x49,0x20, -0x49,0x20, 0x69,0x20, 0x5F,0xF0, 0x59,0x20, -/* @sou0 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x12,0x00, 0x14,0x00, 0x3E,0x00, 0x2A,0x80, -0x4A,0xE0, 0x02,0x90, 0xFF,0x80, 0x02,0x90, -/* @sou1 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x01,0x00, 0x7F,0xF0, 0xA9,0x40, -0x25,0x20, 0x3F,0xF0, 0x00,0x00, 0x7E,0x80, -0x92,0xE0, 0x02,0x90, 0xFE,0x80, 0x02,0x90, -/* @sou2 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x80, 0xFF,0xF0, 0x12,0x00, -0x11,0x40, 0x2A,0x60, 0x1C,0xD0, 0xFF,0x50, -0x1C,0x60, 0x2B,0x40, 0x06,0x00, 0xF9,0x80, -/* @sou3 (12x12,V)@ [suki software]*/ -0x3F,0xE0, 0x20,0x80, 0x3F,0xC0, 0x00,0x00, -0x2F,0xB0, 0x29,0x40, 0xFF,0xF0, 0x29,0x40, -0x2F,0x30, 0x24,0x00, 0x18,0x30, 0xF7,0xC0, -/* @su0 (12x12,V)@ [suki software]*/ -0x20,0x00, 0x20,0x00, 0x22,0x30, 0x22,0xE0, -0x22,0x00, 0xFA,0x30, 0x22,0xE0, 0x2F,0x80, -0x22,0x00, 0xFA,0x00, 0x22,0x00, 0x23,0xF0, -/* @su1 (12x12,V)@ [suki software]*/ -0x4F,0xF0, 0x48,0x90, 0x7F,0x10, 0x48,0x10, -0x7F,0x90, 0x48,0x90, 0x4F,0xF0, 0x04,0x10, -0x44,0x60, 0x45,0x80, 0x7F,0xF0, 0x84,0x80, -/* @su2 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x1F,0xF0, 0xF0,0x00, -0x48,0x40, 0x10,0x80, 0x21,0x70, 0xC2,0x40, -0x04,0x40, 0x38,0x40, 0x84,0x40, 0x42,0x40, -/* @su3 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x44,0x00, 0x54,0x20, 0x54,0xA0, -0x54,0xA0, 0x55,0xE0, 0x56,0xA0, 0xFC,0xB0, -0x54,0xA0, 0x55,0x20, 0x54,0x20, 0x54,0x60, -/* @su4 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x42,0x00, 0x33,0xF0, 0x00,0x00, -0x20,0x10, 0x27,0x90, 0x24,0xA0, 0x24,0xC0, -0xFF,0xF0, 0x24,0x80, 0x24,0xC0, 0x24,0xA0, -/* @su5 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x40,0x40, 0x5E,0x40, 0x53,0x40, -0x52,0xC0, 0x7E,0x50, 0x52,0x60, 0x53,0xF0, -0x52,0x60, 0x7E,0x50, 0x52,0xC0, 0x53,0x40, -/* @su6 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x1F,0xF0, 0xE8,0x00, -0x40,0x40, 0x5E,0x40, 0x53,0x40, 0x52,0xD0, -0x7E,0x60, 0x53,0xF0, 0x7E,0x60, 0x52,0xD0, -/* @su7 (12x12,V)@ [suki software]*/ -0x10,0x00, 0x57,0x10, 0x31,0x30, 0x11,0xD0, -0x1F,0x10, 0x31,0x10, 0x57,0x90, 0x10,0x30, -0x00,0xD0, 0x7F,0x10, 0x52,0x10, 0x52,0x90, -/* @su8 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x86,0x30, 0x61,0xC0, 0x06,0x00, -0x90,0x00, 0x53,0xC0, 0x10,0x40, 0x3F,0xF0, -0xD0,0x40, 0x13,0xC0, 0x00,0x00, 0x7F,0xF0, -/* @xiu0 (12x12,V)@ [suki software]*/ -0x00,0x20, 0x18,0x40, 0x20,0x80, 0x23,0xF0, -0x3C,0x00, 0x28,0x00, 0xA9,0xF0, 0x69,0x20, -0x2B,0x20, 0x2D,0x20, 0x29,0x20, 0x29,0x20, -/* @su9 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x82,0x00, 0x73,0xF0, 0x20,0x00, -0x00,0x10, 0x00,0x00, 0x00,0x00, 0x3F,0xF0, -0x24,0x00, 0x25,0x00, 0x24,0x80, 0x47,0xF0, -/* @su10 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x08,0x00, 0x2A,0xF0, 0x2A,0x00, -0x2A,0x00, 0x2A,0x70, 0x2A,0x00, 0xFF,0xF0, -0x2A,0x00, 0x2A,0x40, 0x2A,0x30, 0x2A,0x00, -/* @suan0 (12x12,V)@ [suki software]*/ -0x4F,0xF0, 0x48,0xA0, 0x7F,0x20, 0x48,0x20, -0x7F,0xA0, 0x48,0xA0, 0x4F,0xF0, 0x41,0x20, -0x16,0x40, 0x31,0xA0, 0xD0,0x90, 0x10,0x90, -/* @suan1 (12x12,V)@ [suki software]*/ -0x21,0x00, 0x25,0x70, 0x25,0x20, 0x25,0x00, -0xF5,0xF0, 0x25,0x40, 0x25,0x30, 0x20,0x00, -0x25,0x70, 0xF5,0x20, 0x25,0x00, 0x25,0xF0, -/* @suan2 (12x12,V)@ [suki software]*/ -0x10,0x10, 0xE0,0x10, 0x5F,0xD0, 0x55,0x50, -0x75,0x70, 0x55,0x50, 0x55,0x50, 0x15,0x50, -0x35,0x50, 0xD5,0x70, 0x55,0x50, 0x7F,0xD0, -/* @sui0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x03,0xE0, 0xFA,0x40, -0x92,0x40, 0x92,0x40, 0x92,0x40, 0x9F,0xF0, -0x92,0x40, 0x92,0x40, 0x92,0x40, 0xFA,0x40, -/* @sui1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x48,0x20, 0x56,0x10, -0x61,0xE0, 0x04,0x00, 0x2A,0x00, 0x3A,0xF0, -0xEA,0xA0, 0x2E,0xA0, 0x2A,0xA0, 0x2A,0xA0, -/* @sui2 (12x12,V)@ [suki software]*/ -0x7F,0xF0, 0x44,0x20, 0x4A,0x10, 0x71,0xE0, -0x42,0x00, 0x33,0xF0, 0x00,0x00, 0x24,0x00, -0x2F,0xF0, 0x39,0x40, 0xE9,0x50, 0x29,0x40, -/* @sui3 (12x12,V)@ [suki software]*/ -0x04,0x40, 0x0C,0xC0, 0x15,0x40, 0x66,0x40, -0x0C,0x00, 0x01,0x00, 0x51,0x20, 0x4D,0x60, -0x49,0x90, 0x53,0x00, 0xCD,0x10, 0x81,0x20, -/* @sui4 (12x12,V)@ [suki software]*/ -0x06,0x00, 0x7D,0xF0, 0x5D,0x50, 0x45,0x50, -0x7F,0xF0, 0x04,0x00, 0x02,0x40, 0x25,0x70, -0x2A,0x00, 0x3A,0xF0, 0xEA,0xA0, 0x2E,0xD0, -/* @sui5 (12x12,V)@ [suki software]*/ -0x40,0x80, 0x41,0x00, 0x4F,0xF0, 0x72,0x00, -0x43,0xF0, 0x61,0x20, 0x22,0x20, 0x3C,0x20, -0xA2,0x20, 0x61,0x70, 0x22,0x20, 0x3C,0x20, -/* @sui6 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x20, 0x78,0x40, 0x08,0x80, -0x09,0x00, 0x0F,0x40, 0x09,0x30, 0xF9,0x00, -0x09,0x00, 0x09,0x10, 0x09,0x20, 0x09,0xC0, -/* @sui7 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x48,0xC0, 0x4B,0x00, 0x7F,0xF0, -0x89,0x00, 0x88,0x80, 0x5F,0x40, 0x55,0x50, -0x55,0x40, 0xFF,0xD0, 0x55,0x40, 0x55,0x40, -/* @sui8 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x42,0x00, 0x33,0xF0, 0x00,0x00, -0x12,0xA0, 0x92,0xA0, 0x55,0x20, 0x39,0x40, -0x16,0x80, 0x31,0xF0, 0xD2,0x80, 0x14,0x40, -/* @sui9 (12x12,V)@ [suki software]*/ -0x7F,0xF0, 0x40,0x40, 0x4C,0x20, 0x73,0xC0, -0x42,0x00, 0x33,0xF0, 0x00,0x80, 0x24,0xA0, -0xA5,0x20, 0x6A,0x50, 0x34,0x80, 0x23,0xF0, -/* @sui10 (12x12,V)@ [suki software]*/ -0x00,0x20, 0x00,0x20, 0x0E,0xA0, 0x62,0xA0, -0x22,0xA0, 0x22,0xA0, 0x22,0xA0, 0xFE,0xB0, -0x22,0xA0, 0x22,0xA0, 0x22,0xA0, 0x22,0xA0, -/* @sun0 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x40,0x80, 0x41,0x00, 0x4F,0xF0, -0x52,0x00, 0x62,0x20, 0x40,0xC0, 0x07,0x00, -0x02,0x00, 0x00,0x00, 0xFF,0xF0, 0x00,0x00, -/* @sun1 (12x12,V)@ [suki software]*/ -0x10,0x80, 0x10,0x80, 0x11,0x00, 0xFF,0xF0, -0x12,0x00, 0x14,0x00, 0x00,0x00, 0xF7,0xF0, -0x94,0x00, 0x94,0x10, 0x95,0xE0, 0x94,0x00, -/* @sun2 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x11,0x00, 0xE5,0x20, 0x35,0x20, -0x2D,0x20, 0x25,0x20, 0x27,0xF0, 0x0D,0x20, -0x15,0x20, 0xE5,0x20, 0x35,0x20, 0x2D,0x20, -/* @suo0 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x48,0x80, 0x48,0x80, 0x48,0x80, -0x4B,0xE0, 0xEA,0xB0, 0x4A,0xA0, 0x6A,0xA0, -0x5A,0xA0, 0x4A,0xB0, 0xEA,0xA0, 0x4B,0xE0, -/* @suo1 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x08,0xC0, 0x0B,0x00, 0xFF,0xF0, -0x0A,0x00, 0x08,0x80, 0x01,0x10, 0x16,0x20, -0x30,0xC0, 0x51,0xA0, 0x90,0x90, 0x10,0xA0, -/* @suo2 (12x12,V)@ [suki software]*/ -0x3F,0xF0, 0x20,0x40, 0x20,0x40, 0x3F,0xE0, -0x00,0x90, 0x11,0x10, 0x32,0x20, 0xDC,0xC0, -0x15,0xB0, 0x10,0x80, 0x10,0x80, 0x54,0xF0, -/* @suo3 (12x12,V)@ [suki software]*/ -0x04,0x40, 0x0C,0xC0, 0x35,0x40, 0xE6,0x40, -0x44,0x40, 0x08,0x80, 0x31,0xF0, 0x26,0x00, -0x20,0x00, 0xA5,0xF0, 0x65,0x20, 0x27,0x20, -/* @suo4 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x44,0x10, 0x44,0x10, 0x7F,0xE0, -0x44,0x20, 0x44,0x20, 0x00,0x00, 0x4F,0xF0, -0x38,0x00, 0x08,0x30, 0xFB,0xE0, 0x08,0x10, -/* @suo5 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x0C,0x00, 0x48,0x00, 0x49,0x20, -0x49,0x60, 0x4B,0x60, 0x4D,0xA0, 0xF9,0xB0, -0x4B,0x20, 0x49,0x20, 0x48,0x60, 0x48,0x30, -/* @suo6 (12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0x34,0x80, 0xE7,0xF0, -0x24,0x80, 0x24,0x80, 0x40,0x00, 0x2F,0xF0, -0x18,0x00, 0x08,0x10, 0xF9,0xE0, 0x08,0x00, -/* @suo7 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x48,0x80, 0x48,0x80, -0x88,0x80, 0x8F,0x80, 0x80,0x00, 0x00,0x30, -0x7F,0xC0, 0x44,0x00, 0x44,0x00, 0x84,0x00, -/* @ta0 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x08,0x00, 0xFF,0xF0, 0x08,0x10, -0x08,0x10, 0x09,0x40, 0x01,0x30, 0x7D,0x00, -0x55,0xF0, 0x54,0x00, 0x55,0x80, 0x55,0x50, -/* @ta1 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x0F,0xF0, 0xF4,0x00, -0x42,0x00, 0x02,0x00, 0x3F,0xF0, 0x02,0x00, -0x04,0x00, 0xFF,0xF0, 0x04,0x00, 0x08,0x40, -/* @ta2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x08,0x00, 0x30,0x00, 0x20,0x00, -0x27,0xF0, 0x20,0x40, 0xA0,0x40, 0x60,0x80, -0x20,0x80, 0x21,0x00, 0x23,0x00, 0x21,0x00, -/* @ta3 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x09,0xC0, 0x7E,0x20, 0x08,0x10, -0x08,0x60, 0x0F,0x80, 0x04,0x00, 0x04,0x00, -0x7F,0xF0, 0x04,0x00, 0xFF,0xF0, 0x08,0x40, -/* @ta4 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x08,0x00, 0xFF,0xF0, 0x08,0x10, -0x08,0x50, 0x28,0x80, 0x21,0xB0, 0xFA,0xA0, -0x24,0xA0, 0x28,0xA0, 0x24,0xA0, 0xFA,0xA0, -/* @ta5 ̡(12x12,V)@ [suki software]*/ -0x44,0x40, 0x28,0x80, 0x19,0x00, 0x27,0xF0, -0xCF,0x20, 0x29,0x40, 0xFF,0xF0, 0x29,0x40, -0x2F,0xB0, 0x28,0x00, 0x17,0xF0, 0xE4,0x00, -/* @ta6 ̢(12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x12,0x00, 0x15,0x00, 0x41,0x00, 0x31,0xF0, -0x08,0x00, 0x08,0x10, 0x08,0x60, 0xFF,0x80, -/* @ta7 ̣(12x12,V)@ [suki software]*/ -0x00,0x00, 0xFC,0xF0, 0x88,0x00, 0x8F,0xF0, -0x88,0x80, 0xFC,0x80, 0x01,0x00, 0xFD,0x50, -0xA9,0x20, 0xA9,0xF0, 0xA8,0x00, 0xA9,0x00, -/* @ta8 ̤(12x12,V)@ [suki software]*/ -0x00,0x00, 0x7C,0xF0, 0x44,0x00, 0x47,0xF0, -0x44,0x80, 0x7C,0x80, 0x21,0x00, 0x22,0xF0, -0x2C,0x90, 0x31,0x90, 0xFF,0x90, 0x08,0x90, -/* @tai0 ̥(12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x48,0x80, -0x48,0x80, 0x7F,0xF0, 0x04,0x00, 0x0E,0xF0, -0x14,0x80, 0xE4,0x80, 0x44,0x80, 0x04,0x80, -/* @tai1 ̦(12x12,V)@ [suki software]*/ -0x00,0x00, 0x20,0x00, 0x20,0x80, 0x21,0xB0, -0x22,0xA0, 0xF4,0xA0, 0x28,0xA0, 0x20,0xA0, -0x21,0xA0, 0xF1,0x20, 0x21,0x20, 0x25,0x30, -/* @tai2 ̧(12x12,V)@ [suki software]*/ -0x08,0x40, 0x08,0x40, 0x08,0x80, 0xFF,0xF0, -0x0A,0x00, 0x08,0x00, 0x02,0x00, 0x06,0x70, -0x1A,0x40, 0xE2,0x40, 0x42,0x40, 0x02,0x40, -/* @tai3 ̨(12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x02,0x00, 0x06,0xF0, -0x0A,0x80, 0x12,0x80, 0x22,0x80, 0xC6,0x80, -0x44,0x80, 0x04,0x80, 0x04,0x80, 0x14,0xF0, -/* @tai4 ̩(12x12,V)@ [suki software]*/ -0x04,0x20, 0x44,0x20, 0x54,0x40, 0x54,0x80, -0x55,0x40, 0x56,0x30, 0xFC,0x20, 0x55,0xF0, -0x54,0x10, 0x56,0x30, 0x55,0x40, 0x54,0x80, -/* @tai5 ̪(12x12,V)@ [suki software]*/ -0x4F,0xF0, 0x48,0xA0, 0x7F,0x20, 0x48,0x20, -0x7F,0xA0, 0x48,0xA0, 0x4F,0xF0, 0x40,0x00, -0x08,0x10, 0x08,0xF0, 0xFF,0x00, 0x08,0xE0, -/* @tai6 ̫(12x12,V)@ [suki software]*/ -0x00,0x00, 0x08,0x00, 0x08,0x00, 0x08,0x00, -0x08,0x00, 0x08,0x30, 0x08,0xC0, 0xFF,0x10, -0x08,0x80, 0x08,0x40, 0x08,0x20, 0x08,0x10, -/* @tai7 ̬(12x12,V)@ [suki software]*/ -0x00,0x00, 0x20,0x00, 0x20,0x90, 0x20,0x80, -0x21,0x00, 0x22,0x30, 0x2C,0x00, 0xF2,0x40, -0x29,0x30, 0x24,0x00, 0x22,0x00, 0x21,0x00, -/* @tai8 ̭(12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x30, 0x80,0xC0, 0x63,0x00, -0x08,0x00, 0x08,0x00, 0x08,0x30, 0x08,0xD0, -0xFF,0x00, 0x08,0x80, 0x08,0x60, 0x08,0x10, -/* @tan0 ̮(12x12,V)@ [suki software]*/ -0x08,0x10, 0x08,0x10, 0x08,0x10, 0xFF,0xF0, -0x08,0x20, 0x09,0x20, 0x01,0x40, 0x7F,0xF0, -0x41,0x00, 0x51,0x00, 0x4D,0x00, 0x49,0x00, -/* @tan1 ̯(12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x80, 0xFF,0xF0, 0x11,0x10, -0x12,0x20, 0x2C,0xC0, 0x23,0x00, 0x3C,0xE0, -0x08,0x00, 0xFF,0xF0, 0x52,0x40, 0x92,0x40, -/* @tan2 ̰(12x12,V)@ [suki software]*/ -0x04,0x00, 0x04,0x00, 0x08,0x00, 0x09,0xF0, -0x15,0x00, 0x25,0x00, 0x55,0x00, 0x8D,0x70, -0x45,0x00, 0x27,0x00, 0x15,0x00, 0x11,0xF0, -/* @tan3 ̱(12x12,V)@ [suki software]*/ -0x08,0x40, 0x04,0x80, 0x3F,0xF0, 0x21,0x00, -0x28,0xB0, 0x28,0x60, 0x2F,0x90, 0xA2,0x00, -0x7F,0xF0, 0x24,0x90, 0x34,0x90, 0x2F,0xF0, -/* @tan4 ̲(12x12,V)@ [suki software]*/ -0x08,0x20, 0x86,0x30, 0x60,0xC0, 0x0B,0x10, -0x24,0x60, 0x23,0x80, 0x2E,0xE0, 0x34,0x00, -0x1F,0xF0, 0xF2,0x20, 0x12,0x20, 0x9F,0xF0, -/* @tan5 ̳(12x12,V)@ [suki software]*/ -0x04,0x00, 0x04,0x00, 0x04,0x10, 0x7F,0xF0, -0x04,0x20, 0x04,0x20, 0x02,0x00, 0x42,0x10, -0x42,0x60, 0x43,0x80, 0x42,0x80, 0x42,0x00, -/* @tan6 ̴(12x12,V)@ [suki software]*/ -0x08,0xC0, 0x0B,0x00, 0xFF,0xF0, 0x0A,0x00, -0x09,0x00, 0x40,0x00, 0x5F,0x00, 0x51,0x70, -0x57,0x50, 0xD5,0x50, 0x55,0x50, 0x57,0x50, -/* @tan7 ̵(12x12,V)@ [suki software]*/ -0x10,0x40, 0x0C,0x80, 0x01,0x10, 0x3F,0xE0, -0x20,0x90, 0x2E,0xE0, 0x21,0x00, 0xA2,0x10, -0x7C,0xE0, 0x24,0x10, 0x22,0x20, 0x2A,0x40, -/* @tan8 ̶(12x12,V)@ [suki software]*/ -0x08,0x10, 0x84,0x10, 0x60,0x30, 0x01,0xC0, -0x06,0x00, 0xB8,0x00, 0xAB,0xE0, 0xAA,0xA0, -0xFA,0xA0, 0xAA,0xB0, 0xFA,0xA0, 0xAA,0xA0, -/* @tan9 ̷(12x12,V)@ [suki software]*/ -0x04,0x00, 0x44,0x00, 0x37,0xF0, 0x20,0x00, -0x00,0x10, 0xB8,0x00, 0xAB,0xE0, 0xAA,0xA0, -0xFA,0xA0, 0xAA,0xB0, 0xFA,0xA0, 0xAA,0xA0, -/* @tan10 ̸(12x12,V)@ [suki software]*/ -0x02,0x00, 0x82,0x00, 0x73,0xF0, 0x20,0x00, -0x00,0x00, 0x09,0x00, 0x32,0x20, 0x04,0xC0, -0x08,0x10, 0xF1,0xE0, 0x08,0x10, 0x14,0x20, -/* @tan11 ̹(12x12,V)@ [suki software]*/ -0x04,0x00, 0x04,0x00, 0x04,0x10, 0x7F,0xF0, -0x04,0x20, 0x04,0x20, 0x00,0x00, 0x7F,0xF0, -0x44,0x20, 0x44,0x20, 0x44,0x20, 0x44,0x20, -/* @tan12 ̺(12x12,V)@ [suki software]*/ -0x00,0x40, 0x22,0x40, 0x22,0x40, 0x3F,0xF0, -0x44,0x80, 0x44,0x80, 0x02,0x00, 0x32,0xC0, -0x04,0x10, 0xFB,0xE0, 0x10,0x60, 0x28,0x50, -/* @tan13 ̻(12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x80, 0x91,0x00, 0x73,0xF0, -0x54,0x80, 0x19,0x60, 0x02,0x00, 0x7F,0xE0, -0x44,0x40, 0x44,0x40, 0x44,0x40, 0x44,0x40, -/* @tan14 ̼(12x12,V)@ [suki software]*/ -0x40,0x40, 0x41,0x80, 0x7F,0xF0, 0x42,0x10, -0x43,0xF0, 0x02,0x00, 0x7A,0x30, 0x17,0xC0, -0x12,0x40, 0xF2,0x30, 0x13,0xC0, 0x12,0x30, -/* @tan15 ̽(12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x12,0x00, 0x11,0x00, 0x65,0x10, 0x59,0x60, -0x41,0x80, 0x47,0xF0, 0x41,0x40, 0x51,0x20, -/* @tan16 ̾(12x12,V)@ [suki software]*/ -0x7F,0xF0, 0x40,0x40, 0x40,0x40, 0x40,0x40, -0x7F,0xC0, 0x40,0x00, 0x78,0x00, 0x46,0x10, -0x41,0xA0, 0x40,0x40, 0x41,0xB0, 0x46,0x10, -/* @tan17 ̿(12x12,V)@ [suki software]*/ -0x04,0x00, 0x04,0x00, 0x74,0x10, 0x14,0xE0, -0x1F,0x10, 0x14,0x60, 0x14,0x00, 0xF4,0x30, -0x17,0xC0, 0x14,0x30, 0x14,0x00, 0x14,0x40, -/* @tang0 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x06,0x40, 0x80,0xF0, 0x63,0x00, -0x0C,0x00, 0x00,0x20, 0x40,0x20, 0x42,0x40, -0x47,0x80, 0x4A,0x10, 0x52,0x60, 0x63,0x80, -/* @tang1 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x08,0x00, 0x7F,0xF0, 0x08,0x10, -0x08,0x10, 0x3F,0xF0, 0x22,0x00, 0x2A,0xB0, -0xAA,0xA0, 0x7F,0xE0, 0x2A,0xA0, 0x2A,0xA0, -/* @tang2 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x08,0x40, 0x08,0x80, 0xFF,0xF0, -0x0A,0x00, 0x08,0x10, 0x3F,0xE0, 0x2A,0xB0, -0x2A,0xA0, 0xAA,0xA0, 0x7F,0xE0, 0x2A,0xA0, -/* @tang3 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x02,0x00, 0x0C,0x10, 0x48,0x10, -0x3B,0xD0, 0x2A,0x50, 0x0A,0x50, 0xFA,0x70, -0x0A,0x50, 0x0A,0x50, 0x1B,0xD0, 0x68,0x10, -/* @tang4 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x18,0x40, 0x10,0x40, 0x10,0x40, -0x57,0x40, 0x35,0x50, 0x15,0x60, 0xF5,0xF0, -0x15,0x60, 0x35,0x50, 0x57,0x40, 0x10,0x40, -/* @tang5 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x48,0x80, 0x48,0x80, -0x7F,0xF0, 0x04,0x00, 0x18,0x00, 0x57,0x90, -0x34,0x90, 0x14,0x90, 0xF4,0xF0, 0x14,0x90, -/* @tang6 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x3F,0xF0, 0x22,0x00, -0x2A,0xB0, 0x2A,0xA0, 0x2A,0xA0, 0xAA,0xA0, -0x7F,0xE0, 0x2A,0xA0, 0x2A,0xA0, 0x2F,0xB0, -/* @tang7 (12x12,V)@ [suki software]*/ -0x24,0x10, 0x1C,0xE0, 0x07,0x00, 0xFF,0xF0, -0x0D,0x00, 0x14,0x80, 0x3F,0xF0, 0x2A,0x90, -0x2A,0x90, 0xAA,0x90, 0x7F,0xF0, 0x2A,0x90, -/* @tang8 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x02,0x00, 0x0F,0xF0, 0xF0,0x00, -0x40,0x00, 0x07,0xF0, 0x24,0x00, 0x1D,0xF0, -0x05,0x10, 0xFD,0x10, 0x05,0x10, 0x0D,0xF0, -/* @tang9 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x3F,0x80, 0x6A,0x90, 0xAA,0xA0, -0x3F,0xF0, 0x00,0x00, 0x27,0xF0, 0x14,0x00, -0x05,0xF0, 0xFD,0x10, 0x05,0x10, 0x15,0xF0, -/* @tang10 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x20, 0x80,0xF0, 0x63,0x00, -0x0C,0x00, 0x07,0xF0, 0x24,0x00, 0x1C,0xF0, -0x04,0x90, 0xFC,0x90, 0x04,0xF0, 0x0C,0x00, -/* @tang11 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x12,0xF0, 0x12,0x00, 0xFF,0xF0, -0x12,0x40, 0x12,0x40, 0x47,0xF0, 0x34,0x00, -0x05,0xE0, 0xFD,0x20, 0x05,0xE0, 0x14,0x00, -/* @tang12 (12x12,V)@ [suki software]*/ -0x20,0x00, 0x1A,0x00, 0x83,0x80, 0x4C,0x30, -0x30,0x00, 0x00,0x80, 0x92,0x90, 0x95,0xE0, -0xB9,0x10, 0xB2,0x20, 0xD4,0x40, 0xD9,0x40, -/* @tao0 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x08,0x40, 0x08,0x80, 0xFF,0xF0, -0x09,0x00, 0x00,0x80, 0x0A,0xB0, 0x34,0x90, -0xEC,0x90, 0x27,0xF0, 0x24,0x90, 0x24,0x90, -/* @tao1 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x86,0x30, 0x61,0xC0, 0x0E,0x00, -0x02,0x10, 0x2A,0x60, 0x2B,0x80, 0x2E,0x40, -0xFA,0x50, 0x2A,0x40, 0x2A,0x40, 0x2B,0xF0, -/* @tao2 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x84,0x30, 0x61,0xC0, 0x0E,0x00, -0x00,0x00, 0x40,0x00, 0x51,0xF0, 0x49,0x20, -0x42,0x20, 0x62,0x20, 0x98,0x00, 0x81,0x20, -/* @tao3 (12x12,V)@ [suki software]*/ -0x02,0x40, 0x0E,0xC0, 0xF3,0x40, 0x42,0x40, -0x0C,0x40, 0x01,0x00, 0x09,0x40, 0x32,0x50, -0xEA,0x40, 0x25,0xF0, 0x2A,0x40, 0x32,0x40, -/* @tao4 (12x12,V)@ [suki software]*/ -0x41,0x00, 0x42,0x40, 0x44,0x40, 0x58,0xD0, -0x4F,0x40, 0xFA,0x40, 0x4A,0x40, 0x4B,0xF0, -0x4A,0x40, 0x4A,0x40, 0xFA,0x40, 0x48,0x50, -/* @tao5 (12x12,V)@ [suki software]*/ -0x11,0x80, 0x16,0x00, 0xFF,0xF0, 0x14,0x00, -0x12,0x00, 0x00,0x40, 0x08,0x40, 0x04,0x90, -0xFF,0xE0, 0x00,0x00, 0xFF,0xF0, 0x01,0x00, -/* @tao6 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x42,0x00, 0x33,0xF0, 0x00,0x00, -0x20,0x80, 0x19,0x10, 0x02,0x60, 0xFF,0x80, -0x00,0x00, 0xFF,0xE0, 0x0A,0x10, 0x11,0x10, -/* @tao7 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x20, 0x80,0xF0, 0x67,0x00, -0x00,0x00, 0x0A,0xB0, 0x34,0x80, 0xEC,0x80, -0x27,0xF0, 0x24,0x80, 0x24,0x80, 0x24,0xB0, -/* @tao8 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x44,0x40, 0x4A,0x20, -0x71,0xC0, 0x08,0x00, 0x33,0x00, 0xED,0x70, -0x25,0x10, 0x27,0xF0, 0x25,0x10, 0x25,0x70, -/* @tao9 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x82,0x00, 0x72,0x00, 0x23,0xF0, -0x00,0x00, 0x08,0x00, 0x08,0x00, 0x09,0x00, -0x08,0xE0, 0x08,0x40, 0x08,0x00, 0x08,0x00, -/* @tao10 (12x12,V)@ [suki software]*/ -0x02,0x20, 0x22,0x20, 0x24,0x20, 0x24,0x20, -0x2F,0xE0, 0x3A,0xB0, 0xEA,0xA0, 0x2A,0xA0, -0x2A,0xA0, 0x3A,0xA0, 0x2A,0xA0, 0x24,0x20, -/* @te0 (12x12,V)@ [suki software]*/ -0x04,0x40, 0x38,0x40, 0x08,0x80, 0xFF,0xF0, -0x09,0x00, 0x0D,0x00, 0x24,0x80, 0x24,0xA0, -0x24,0x90, 0xFC,0x80, 0x24,0x80, 0x27,0xF0, -/* @teng0 (12x12,V)@ [suki software]*/ -0x20,0x00, 0x2F,0xF0, 0x29,0x20, 0x29,0x20, -0x2F,0xF0, 0xF0,0x10, 0x2A,0xA0, 0x26,0xD0, -0x23,0x80, 0xFE,0xB0, 0x22,0x80, 0x26,0xC0, -/* @teng1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x48,0x80, 0x48,0x80, -0x7F,0xF0, 0x94,0x80, 0x75,0x00, 0x57,0xE0, -0x1D,0x20, 0xF5,0x20, 0x15,0xE0, 0x36,0x20, -/* @teng2 (12x12,V)@ [suki software]*/ -0x10,0x20, 0x0C,0x40, 0x00,0xB0, 0x3F,0xC0, -0x22,0x40, 0x24,0x40, 0x28,0x80, 0xBC,0x80, -0x6B,0x40, 0x29,0x20, 0x2A,0xB0, 0x2C,0x80, -/* @teng3 (12x12,V)@ [suki software]*/ -0x08,0x80, 0x08,0x80, 0x29,0x00, 0xA9,0x00, -0x6B,0x50, 0x2D,0x50, 0x39,0x50, 0xED,0x50, -0x2B,0x50, 0x29,0x50, 0x6D,0x50, 0xAA,0x00, -/* @ti0 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x11,0x80, 0x16,0x00, 0xFF,0xF0, -0x14,0x00, 0x02,0x00, 0x13,0xC0, 0x92,0x50, -0x72,0x60, 0x1F,0xF0, 0x32,0x40, 0x52,0x40, -/* @ti1 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x00,0x80, 0x7F,0x10, 0x55,0x60, -0x55,0x80, 0x55,0x30, 0x55,0xC0, 0x7D,0x00, -0x01,0xF0, 0x00,0x00, 0x3F,0xE0, 0x00,0x00, -/* @ti2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7C,0xF0, 0x44,0x00, 0x47,0xF0, -0x44,0x80, 0x7C,0xA0, 0x00,0x40, 0x7F,0x90, -0x52,0xA0, 0x52,0xC0, 0x52,0x90, 0x52,0xE0, -/* @ti3 (12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0xF4,0x80, 0x27,0xF0, -0x24,0x80, 0x24,0x80, 0x00,0x00, 0x27,0x80, -0xA4,0xB0, 0x64,0xC0, 0x3F,0xF0, 0x24,0x80, -/* @ti4 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x80, 0x11,0x00, 0xFF,0xF0, -0x12,0x00, 0x11,0x00, 0x01,0x70, 0x7D,0x00, -0x55,0x00, 0x55,0xF0, 0x55,0x20, 0x55,0x20, -/* @ti5 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x01,0x00, 0x7D,0x70, 0x55,0x00, -0x55,0xF0, 0x7D,0x20, 0x01,0x20, 0x40,0x00, -0x4F,0xC0, 0x58,0x10, 0x6B,0xE0, 0x48,0x20, -/* @ti6 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7C,0xF0, 0x44,0x00, 0x47,0xF0, -0x44,0x80, 0x7C,0x80, 0x27,0x00, 0x34,0xF0, -0x2C,0x80, 0xA4,0x80, 0x67,0xF0, 0x2C,0x80, -/* @ti7 (12x12,V)@ [suki software]*/ -0x3F,0xF0, 0x20,0x40, 0x20,0x40, 0x3F,0xE0, -0x01,0x00, 0x26,0x00, 0x24,0xF0, 0x34,0x80, -0xAC,0x80, 0x67,0xF0, 0x24,0x80, 0x2C,0x80, -/* @ti8 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x1F,0xF0, 0xE8,0x00, -0x40,0x10, 0x08,0x20, 0x08,0x50, 0x09,0x90, -0x0E,0x10, 0xFF,0xF0, 0x0B,0x10, 0x08,0x90, -/* @ti9 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x08,0x80, 0x29,0x00, 0x2A,0xF0, -0xFC,0xA0, 0x2A,0xA0, 0x29,0xA0, 0x00,0xA0, -0x09,0xA0, 0x2A,0xA0, 0x2C,0xA0, 0xFC,0xF0, -/* @ti10 (12x12,V)@ [suki software]*/ -0x3F,0xF0, 0x20,0x20, 0x20,0x20, 0x3F,0xF0, -0x00,0x00, 0x50,0x40, 0x57,0xD0, 0x55,0x40, -0x55,0x40, 0xF7,0xF0, 0x55,0x50, 0x55,0x50, -/* @ti11 (12x12,V)@ [suki software]*/ -0x0E,0x00, 0x00,0x00, 0xFF,0xF0, 0x10,0x00, -0x0C,0x40, 0x00,0x50, 0x7C,0x90, 0x57,0xA0, -0x54,0xC0, 0x54,0x80, 0x54,0x90, 0x54,0xE0, -/* @ti12 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x04,0x30, 0x81,0xC0, 0x66,0x00, -0x00,0x00, 0x13,0xC0, 0x92,0x40, 0x72,0x50, -0x12,0x60, 0x1F,0xF0, 0x32,0x40, 0xD2,0x40, -/* @ti13 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x27,0x80, 0xA4,0x90, 0x64,0xA0, -0x24,0xC0, 0x3F,0xF0, 0x64,0x80, 0xA4,0x90, -0x3E,0x90, 0x00,0xF0, 0x00,0x00, 0x1F,0xE0, -/* @ti14 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x49,0x00, -0x4F,0xF0, 0x49,0x00, 0x49,0x00, 0x4F,0xF0, -0x49,0x10, 0x49,0x10, 0x49,0x10, 0x4F,0xF0, -/* @tian0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x02,0x00, 0x42,0x00, 0x42,0x00, -0x42,0x00, 0x42,0x10, 0x42,0x60, 0x7F,0x80, -0x42,0x40, 0x42,0x20, 0x42,0x10, 0x42,0x00, -/* @tian1 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x20, 0x80,0xF0, 0x63,0x40, -0x08,0x40, 0x48,0x90, 0x49,0x00, 0x4E,0x00, -0x78,0xF0, 0x4C,0x10, 0x4A,0x00, 0x49,0x00, -/* @tian2 (12x12,V)@ [suki software]*/ -0x08,0x10, 0x08,0x10, 0xFF,0xF0, 0x08,0x20, -0x08,0x20, 0x20,0x00, 0x2F,0xF0, 0x2A,0xA0, -0x2A,0xA0, 0xFA,0xA0, 0x2A,0xA0, 0x2A,0xA0, -/* @tian3 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x3F,0xF0, 0x21,0x00, -0x21,0x00, 0x21,0x00, 0x21,0x00, 0x3F,0xF0, -0x21,0x00, 0x21,0x00, 0x21,0x00, 0x21,0x00, -/* @tian4 (12x12,V)@ [suki software]*/ -0x44,0x00, 0x44,0xF0, 0x44,0x80, 0x7F,0x80, -0x84,0x80, 0x84,0xF0, 0x84,0x00, 0x08,0x00, -0xFF,0xF0, 0x08,0x80, 0x08,0x80, 0x08,0x80, -/* @tian5 (12x12,V)@ [suki software]*/ -0x0E,0x00, 0x00,0x00, 0xFF,0xF0, 0x10,0x00, -0x08,0x00, 0x24,0x00, 0x24,0x70, 0x24,0x40, -0x24,0x40, 0x7F,0xC0, 0x44,0x40, 0x44,0x40, -/* @tian6 (12x12,V)@ [suki software]*/ -0x48,0x00, 0x48,0xF0, 0x48,0x80, 0x7F,0x80, -0x88,0x80, 0x88,0xF0, 0x48,0x80, 0x49,0x70, -0x4E,0x00, 0x79,0xF0, 0x48,0x40, 0x4C,0x30, -/* @tian7 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x49,0x00, 0x49,0x00, -0x7F,0xF0, 0x00,0x40, 0x3F,0xC0, 0x22,0x50, -0xFF,0xC0, 0x22,0x40, 0xFF,0xD0, 0x22,0x40, -/* @tiao0 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x11,0x20, 0x12,0x20, 0x04,0x40, 0x02,0xB0, -0xFF,0xC0, 0x00,0x00, 0xFF,0xF0, 0x05,0x00, -/* @tiao1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x04,0x80, 0x04,0x80, 0x08,0xC0, -0x31,0x50, 0xF1,0x40, 0x2A,0x40, 0x25,0xF0, -0x24,0x40, 0x2A,0x40, 0x32,0x50, 0x21,0x40, -/* @tiao2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x82,0x00, 0x72,0x00, 0x23,0xF0, -0x00,0x00, 0x42,0x00, 0x45,0xF0, 0x49,0x10, -0x71,0x10, 0x41,0x10, 0x45,0x10, 0x47,0x10, -/* @tiao3 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x44,0x80, 0x44,0x80, -0x7F,0xF0, 0x10,0x40, 0x0C,0x80, 0x01,0x10, -0xFF,0xE0, 0x00,0x00, 0xFF,0xF0, 0x05,0x00, -/* @tiao4 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7D,0xF0, 0x44,0x00, 0x47,0xF0, -0x7C,0x80, 0x10,0xC0, 0x08,0x80, 0x05,0x10, -0xFF,0xE0, 0x00,0x00, 0xFF,0xF0, 0x04,0x80, -/* @tie0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xE0, 0x40,0x00, 0x47,0xF0, -0x40,0x00, 0x7F,0xE0, 0x00,0x00, 0x00,0xF0, -0x00,0x80, 0x00,0x80, 0xFF,0x80, 0x08,0x80, -/* @tie1 (12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0x34,0x80, 0xD7,0xF0, -0x14,0x80, 0x10,0x80, 0x03,0x10, 0x3D,0x00, -0x09,0x00, 0x09,0x30, 0xFF,0xC0, 0x09,0x30, -/* @tie2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x1F,0xE0, 0x10,0x00, 0xFF,0xF0, -0x10,0x20, 0x1F,0xE0, 0x00,0x00, 0x00,0xF0, -0x00,0x80, 0xFF,0x80, 0x08,0x80, 0x08,0x80, -/* @ting0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x40,0x00, -0x44,0x00, 0x44,0x00, 0x44,0x00, 0x44,0x00, -0x44,0x00, 0x47,0xF0, 0x44,0x00, 0x44,0x00, -/* @ting1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xE0, 0x40,0x80, 0x40,0x80, -0x7F,0xC0, 0x00,0x00, 0x00,0x30, 0x7F,0xC0, -0x44,0x00, 0x44,0x00, 0x44,0x00, 0x47,0xF0, -/* @ting2 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x0E,0x00, 0x00,0x70, 0xFF,0x80, -0x04,0x40, 0x19,0x30, 0x41,0x00, 0x42,0x40, -0x42,0x40, 0x44,0x40, 0x48,0x70, 0x54,0x40, -/* @ting3 ͡(12x12,V)@ [suki software]*/ -0x08,0x20, 0x04,0x20, 0x80,0xF0, 0x63,0x00, -0x04,0x00, 0x20,0x00, 0x20,0x00, 0x20,0x00, -0x20,0x00, 0x20,0x00, 0x3F,0xF0, 0x20,0x00, -/* @ting4 ͢(12x12,V)@ [suki software]*/ -0x40,0x00, 0x42,0xC0, 0x46,0x20, 0x5A,0x10, -0x63,0xE0, 0x02,0x00, 0x22,0x20, 0x22,0x20, -0x22,0x20, 0x22,0x20, 0x7F,0xE0, 0x42,0x20, -/* @ting5 ͣ(12x12,V)@ [suki software]*/ -0x01,0x00, 0x02,0x00, 0x04,0x00, 0x1F,0xF0, -0xE0,0x00, 0x40,0xC0, 0x20,0x80, 0x2E,0xA0, -0x2A,0xA0, 0xAA,0xA0, 0x6A,0xB0, 0x2A,0xA0, -/* @ting6 ͤ(12x12,V)@ [suki software]*/ -0x00,0x40, 0x41,0x80, 0x41,0x00, 0x5D,0x40, -0x55,0x40, 0x55,0x40, 0x55,0x40, 0xD5,0x40, -0x55,0x70, 0x55,0x40, 0x55,0x40, 0x5D,0x40, -/* @ting7 ͥ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x3F,0xF0, 0x20,0x10, -0x28,0x80, 0x29,0x70, 0x2E,0x00, 0xA0,0x10, -0x65,0x10, 0x25,0x10, 0x27,0xF0, 0x29,0x10, -/* @ting8 ͦ(12x12,V)@ [suki software]*/ -0x10,0x80, 0x10,0x80, 0x11,0x00, 0xFF,0xF0, -0x12,0x40, 0x31,0x20, 0x27,0x10, 0x39,0x60, -0x01,0x80, 0x22,0x10, 0x22,0x10, 0x3F,0xF0, -/* @ting9 ͧ(12x12,V)@ [suki software]*/ -0x01,0x00, 0x01,0x00, 0x3F,0xF0, 0x69,0x40, -0xA5,0x20, 0x3F,0xF0, 0x42,0x20, 0x7E,0x10, -0x03,0xE0, 0x22,0x00, 0x22,0x20, 0x3F,0xE0, -/* @tong1 ͨ(12x12,V)@ [suki software]*/ -0x02,0x00, 0x82,0x00, 0x63,0xF0, 0x00,0x00, -0x00,0x00, 0x4F,0xF0, 0x4A,0x40, 0x4A,0x40, -0x6A,0x40, 0x5F,0xF0, 0x5A,0x50, 0x6A,0x40, -/* @tong2 ͩ(12x12,V)@ [suki software]*/ -0x10,0xC0, 0x17,0x00, 0xFF,0xF0, 0x14,0x00, -0x13,0x00, 0x00,0x00, 0x7F,0xF0, 0x40,0x00, -0x53,0xE0, 0x52,0x20, 0x52,0x20, 0x53,0xE0, -/* @tong3 ͪ(12x12,V)@ [suki software]*/ -0x4F,0xF0, 0x48,0xA0, 0x7F,0x20, 0x48,0x20, -0x7F,0xA0, 0x48,0xA0, 0x4F,0xF0, 0x00,0x00, -0x7F,0xF0, 0x48,0x00, 0x4B,0xE0, 0x4A,0x20, -/* @tong4 ͫ(12x12,V)@ [suki software]*/ -0x7F,0xF0, 0x44,0x80, 0x44,0x80, 0x7F,0xF0, -0x08,0x00, 0x48,0x00, 0x4B,0xE0, 0x6A,0xA0, -0x5A,0xA0, 0xCB,0xF0, 0x5A,0xA0, 0x6A,0xA0, -/* @tong5 ͬ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x40,0x00, 0x48,0x00, -0x49,0xF0, 0x49,0x10, 0x49,0x10, 0x49,0x10, -0x49,0x10, 0x49,0x10, 0x49,0xF0, 0x48,0x00, -/* @tong6 ͭ(12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0xF7,0xF0, 0x24,0x80, -0x24,0x80, 0x24,0x80, 0x00,0x00, 0x7F,0xF0, -0x48,0x00, 0x4B,0xE0, 0x4A,0x20, 0x4A,0x20, -/* @tong7 ͮ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x01,0x00, 0x7F,0xF0, 0x51,0x00, -0x49,0x00, 0x4D,0x00, 0x41,0x00, 0x7F,0xF0, -0x05,0x00, 0x08,0x40, 0x10,0x80, 0x71,0x00, -/* @tong8 ͯ(12x12,V)@ [suki software]*/ -0x08,0x00, 0x08,0x00, 0x28,0x00, 0x2B,0xE0, -0x3A,0xA0, 0x2A,0xA0, 0xAA,0xA0, 0x6B,0xF0, -0x2A,0xA0, 0x2A,0xA0, 0x3A,0xA0, 0x2B,0xE0, -/* @tong9 Ͱ(12x12,V)@ [suki software]*/ -0x10,0x40, 0x11,0x80, 0x16,0x00, 0xFF,0xF0, -0x14,0x00, 0x12,0x00, 0x0F,0xF0, 0x49,0x20, -0x49,0x20, 0x69,0x20, 0x5F,0xF0, 0x59,0x20, -/* @tong10 ͱ(12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x11,0x00, 0x12,0x00, 0x00,0x00, 0x4F,0xF0, -0x49,0x20, 0x69,0x20, 0x5F,0xF0, 0x49,0x20, -/* @tong11 Ͳ(12x12,V)@ [suki software]*/ -0x08,0x00, 0x10,0x00, 0xEF,0xF0, 0x48,0x00, -0x69,0x00, 0x59,0x70, 0x49,0x40, 0x19,0x40, -0x29,0x40, 0xC9,0x40, 0x69,0x70, 0x59,0x00, -/* @tong12 ͳ(12x12,V)@ [suki software]*/ -0x04,0x00, 0x0C,0x40, 0x34,0xC0, 0xC5,0x40, -0x06,0x40, 0x08,0x40, 0x21,0x00, 0x23,0x00, -0x25,0xF0, 0xB9,0x00, 0x61,0x00, 0x21,0xF0, -/* @tong13 ʹ(12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x40, 0x00,0x90, 0x3F,0xE0, -0x22,0x00, 0x29,0xF0, 0x29,0x50, 0xA9,0x50, -0x6B,0x50, 0x29,0xF0, 0x2B,0x50, 0x2D,0x50, -/* @tou0 ͵(12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x1F,0xF0, 0xE8,0x00, -0x44,0x00, 0x0B,0xF0, 0x12,0x50, 0x2A,0x50, -0xCB,0xF0, 0x28,0x00, 0x29,0xF0, 0x10,0x00, -/* @tou1 Ͷ(12x12,V)@ [suki software]*/ -0x08,0x20, 0x08,0x20, 0x08,0x40, 0xFF,0xF0, -0x09,0x00, 0x08,0x00, 0x04,0x80, 0x78,0xC0, -0x40,0xB0, 0x40,0x80, 0x40,0x90, 0x7C,0xE0, -/* @tou2 ͷ(12x12,V)@ [suki software]*/ -0x00,0x80, 0x00,0x80, 0x00,0x80, 0x48,0x80, -0x26,0x80, 0x34,0x80, 0x00,0x90, 0x00,0xA0, -0xFF,0xC0, 0x00,0xA0, 0x00,0x90, 0x00,0x80, -/* @tou3 ͸(12x12,V)@ [suki software]*/ -0x02,0x00, 0x42,0x00, 0x33,0xF0, 0x00,0x00, -0x12,0x10, 0x52,0x60, 0x57,0x80, 0x5A,0x00, -0x7E,0x00, 0x9B,0x80, 0x9A,0x90, 0x94,0x80, -/* @tu0 ͹(12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x03,0xF0, 0x02,0x00, -0x02,0x00, 0xFF,0x00, 0x80,0x00, 0x80,0x00, -0x80,0x00, 0x82,0x00, 0xFF,0x00, 0x02,0x00, -/* @tu1 ͺ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x48,0x00, 0x48,0x40, 0x48,0x80, -0x49,0x00, 0x4A,0x70, 0x4C,0x40, 0x7F,0xC0, -0x88,0x40, 0x8C,0x70, 0x8A,0x00, 0x89,0x00, -/* @tu2 ͻ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x30,0x80, 0x22,0x80, 0x22,0x80, -0x24,0x80, 0x28,0x80, 0xB0,0xB0, 0x67,0xC0, -0x20,0xA0, 0x32,0x90, 0x29,0x80, 0x24,0x80, -/* @tu3 ͼ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x42,0x40, 0x42,0x40, -0x44,0x80, 0x78,0x80, 0x55,0x10, 0x52,0x40, -0x55,0x20, 0x59,0x00, 0x50,0x80, 0x40,0xC0, -/* @tu4 ͽ(12x12,V)@ [suki software]*/ -0x08,0x80, 0x11,0x00, 0x23,0xF0, 0xDC,0x00, -0x48,0x00, 0x02,0x00, 0x12,0x30, 0x12,0x00, -0x12,0x00, 0xFE,0xF0, 0x12,0x20, 0x12,0x20, -/* @tu5 ;(12x12,V)@ [suki software]*/ -0x02,0x00, 0x42,0x00, 0x33,0xF0, 0x00,0x00, -0x08,0x10, 0x09,0x10, 0x11,0x20, 0x29,0x40, -0xC9,0x00, 0x4F,0xF0, 0x29,0x00, 0x11,0x40, -/* @tu6 Ϳ(12x12,V)@ [suki software]*/ -0x10,0x40, 0x8C,0x70, 0x61,0x80, 0x06,0x00, -0x00,0x00, 0x04,0x80, 0x08,0xB0, 0x14,0x80, -0x24,0x80, 0xC7,0xF0, 0x24,0x80, 0x14,0xA0, -/* @tu7 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0xFF,0xF0, 0xA1,0x20, -0xA1,0x40, 0xA5,0x70, 0xA5,0xD0, 0xA5,0xD0, -0xBF,0x50, 0xA5,0x50, 0xA7,0x50, 0xA5,0x50, -/* @tu8 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x04,0x00, 0x04,0x00, 0x04,0x00, -0x04,0x00, 0x04,0x00, 0x04,0x00, 0x7F,0xF0, -0x04,0x00, 0x04,0x00, 0x04,0x00, 0x04,0x00, -/* @tu9 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x1F,0xF0, 0x10,0x10, 0x10,0x10, -0x10,0x10, 0x1F,0xF0, 0x04,0x00, 0x04,0x00, -0x04,0x00, 0xFF,0xF0, 0x04,0x00, 0x04,0x00, -/* @tu10 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x08,0x00, 0x1F,0x80, -0x28,0x80, 0xC8,0x90, 0x48,0xE0, 0x4F,0x80, -0x48,0xF0, 0x58,0x80, 0x68,0xC0, 0x48,0xB0, -/* @tuan0 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x86,0x20, 0x60,0xF0, 0x07,0x00, -0x18,0x00, 0x02,0xF0, 0x7A,0x80, 0x0A,0x80, -0x0B,0xF0, 0xFA,0x80, 0x0A,0xF0, 0x0A,0x80, -/* @tuan1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x40,0x10, 0x48,0x20, -0x48,0x40, 0x48,0x80, 0x49,0x00, 0x4E,0x00, -0x7F,0xF0, 0x48,0x00, 0x48,0x00, 0x48,0x00, -/* @tui0 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x11,0x00, 0x14,0x00, 0x08,0x00, 0xFF,0xF0, -0x52,0x20, 0x12,0x20, 0x92,0x20, 0x7F,0xF0, -/* @tui1 (12x12,V)@ [suki software]*/ -0x29,0x00, 0x2A,0x00, 0x2C,0xF0, 0x7F,0x80, -0x4C,0x80, 0x4A,0xF0, 0x08,0x00, 0x40,0x00, -0x4F,0xE0, 0x58,0x00, 0x6B,0xF0, 0x48,0x10, -/* @tui2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x48,0x80, 0x48,0x80, -0x7F,0xF0, 0x42,0x00, 0x33,0xF0, 0x00,0x10, -0x7F,0xF0, 0x52,0x10, 0x53,0x20, 0x52,0xC0, -/* @tui3 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x1F,0xC0, 0x10,0x80, 0xFF,0xF0, -0x10,0xA0, 0x1F,0x90, 0x80,0x00, 0x5F,0x80, -0x70,0xF0, 0x10,0x80, 0x10,0x80, 0x30,0xF0, -/* @tui4 (12x12,V)@ [suki software]*/ -0x10,0x80, 0x91,0x00, 0x73,0xF0, 0x55,0x80, -0x1A,0x40, 0x41,0x00, 0x39,0xF0, 0x10,0x00, -0x00,0x00, 0x7F,0xF0, 0x52,0x10, 0x53,0xA0, -/* @tui5 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x82,0x00, 0x63,0xF0, 0x00,0x00, -0x00,0x00, 0x7F,0xF0, 0x52,0x10, 0x52,0x20, -0x53,0x00, 0x52,0x80, 0x52,0x40, 0x7E,0xB0, -/* @tun0 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x08,0x40, 0x48,0x80, 0x49,0x70, -0x4A,0x40, 0x4C,0x40, 0x78,0x40, 0x48,0x40, -0x4C,0x40, 0x4A,0x40, 0x49,0x40, 0x48,0xF0, -/* @tun1 (12x12,V)@ [suki software]*/ -0x10,0x00, 0x10,0x00, 0x17,0xE0, 0x10,0x40, -0x10,0x40, 0x10,0x40, 0xFF,0xF0, 0x10,0x40, -0x10,0x40, 0x10,0x40, 0x10,0x40, 0x17,0xE0, -/* @tun2 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x02,0x00, 0xFC,0x00, 0xAA,0xF0, -0xBF,0x50, 0xAA,0x50, 0xBF,0x50, 0xEA,0xD0, -0x10,0xD0, 0xED,0x50, 0x8A,0x50, 0x8A,0x70, -/* @tuo0 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x11,0x00, 0x14,0x80, 0x08,0x80, 0x33,0xF0, -0xE1,0x00, 0x21,0x00, 0x2F,0xF0, 0x22,0x20, -/* @tuo1 (12x12,V)@ [suki software]*/ -0x10,0x80, 0x10,0x80, 0xFF,0xF0, 0x11,0x00, -0x12,0x00, 0x01,0x00, 0x21,0x00, 0x21,0x00, -0x21,0x00, 0x3F,0xF0, 0x41,0x00, 0x41,0x00, -/* @tuo2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x10, 0x7F,0xE0, 0x48,0x80, -0x48,0x80, 0x7F,0xF0, 0x00,0x00, 0x9F,0x00, -0x71,0x00, 0x51,0xF0, 0x11,0x00, 0x31,0xF0, -/* @tuo3 (12x12,V)@ [suki software]*/ -0x00,0x10, 0x3F,0x90, 0x30,0x90, 0x6A,0xA0, -0xA1,0xA0, 0x3E,0x80, 0x00,0xF0, 0x1C,0x00, -0x10,0x00, 0x93,0xF0, 0x70,0x80, 0x10,0x80, -/* @tuo4 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x48,0x40, 0x54,0x20, -0x63,0xC0, 0x00,0x00, 0x18,0x00, 0x10,0x00, -0x17,0xF0, 0x90,0x80, 0x70,0x80, 0x11,0x00, -/* @tuo5 (12x12,V)@ [suki software]*/ -0x40,0x20, 0x5F,0x20, 0x41,0x40, 0x41,0x40, -0x7F,0x00, 0x01,0xF0, 0x08,0x00, 0x08,0x10, -0x08,0x60, 0xFF,0x80, 0x08,0x60, 0x08,0x10, -/* @tuo6 (12x12,V)@ [suki software]*/ -0x40,0x10, 0x5F,0x10, 0x41,0x20, 0x41,0x20, -0x7F,0x00, 0x01,0xF0, 0x1C,0x00, 0x10,0x00, -0x17,0xF0, 0x90,0x40, 0x70,0x40, 0x10,0x80, -/* @tuo7 (12x12,V)@ [suki software]*/ -0x11,0x80, 0x16,0x00, 0xFF,0xF0, 0x14,0x00, -0x12,0x00, 0x7F,0xF0, 0x44,0x20, 0x5A,0x10, -0x61,0xE0, 0x22,0x00, 0x2F,0xF0, 0xF5,0x20, -/* @tuo8 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x01,0x00, 0x21,0x00, 0x31,0x20, -0x2D,0x60, 0x23,0x90, 0x31,0x10, 0x4D,0x00, -0x49,0x10, 0x45,0x20, 0x79,0xC0, 0xD1,0x00, -/* @tuo9 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x12,0x00, 0x14,0x10, 0x50,0x20, 0x40,0xC0, -0x47,0xF0, 0x79,0x00, 0x41,0x00, 0x41,0x00, -/* @tuo10 (12x12,V)@ [suki software]*/ -0x3F,0xE0, 0x20,0x40, 0x20,0x40, 0x3F,0xE0, -0x00,0x10, 0x29,0x10, 0x2F,0xF0, 0x29,0x10, -0x29,0x10, 0x3F,0xF0, 0x49,0x10, 0x4F,0xF0, -/* @wa0 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x12,0x00, 0x10,0x00, 0x19,0x00, 0x12,0x80, -0x94,0x90, 0x50,0xA0, 0x70,0xC0, 0x14,0x80, -/* @wa1 (12x12,V)@ [suki software]*/ -0x3F,0xF0, 0x20,0x40, 0x20,0x40, 0x3F,0xE0, -0x02,0x00, 0x12,0x20, 0x12,0x20, 0x12,0x20, -0x12,0x20, 0xFF,0xF0, 0x12,0x20, 0x12,0x20, -/* @wa2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x1F,0xC0, 0x10,0x80, 0xFF,0xF0, -0x10,0x90, 0x1F,0xB0, 0x02,0x10, 0x12,0x20, -0x12,0x20, 0x12,0x20, 0x7E,0xF0, 0x12,0x20, -/* @wa3 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x20, 0x80,0x70, 0x61,0x80, -0x06,0x00, 0x12,0x20, 0x12,0x20, 0x12,0x20, -0x12,0x20, 0xFF,0xF0, 0x12,0x20, 0x12,0x20, -/* @wa4 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x08,0x00, 0x0F,0xC0, 0xF8,0x30, -0x4B,0xC0, 0x0C,0x00, 0x02,0x20, 0x12,0x20, -0x12,0x20, 0xFE,0xF0, 0x12,0x20, 0x12,0x20, -/* @wa5 (12x12,V)@ [suki software]*/ -0x40,0x00, 0x40,0x00, 0x40,0x00, 0x40,0x10, -0x7F,0xE0, 0x45,0x00, 0x44,0xC0, 0x44,0x60, -0x44,0x00, 0x44,0x10, 0x47,0xE0, 0x40,0x00, -/* @wa6 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x80, 0x91,0x00, 0x73,0xF0, -0x14,0x40, 0x1A,0xA0, 0x12,0x10, 0x12,0x20, -0x12,0xC0, 0xFF,0xF0, 0x12,0xC0, 0x12,0x20, -/* @wai0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x45,0x00, 0x45,0x00, 0x45,0x30, -0x49,0x00, 0x49,0x00, 0x51,0x00, 0x5F,0xF0, -0x61,0x20, 0x51,0x20, 0x51,0x20, 0x49,0x20, -/* @wai1 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x02,0x00, 0x04,0x00, 0x1A,0x10, -0xE1,0xA0, 0x20,0xC0, 0x23,0x00, 0x3C,0x00, -0x00,0x00, 0x00,0x00, 0xFF,0xF0, 0x04,0x00, -/* @wan1 (12x12,V)@ [suki software]*/ -0x40,0x40, 0x4F,0x30, 0x49,0x00, 0x49,0x10, -0x4F,0x60, 0x40,0x40, 0x31,0x80, 0x2E,0x50, -0x23,0xE0, 0xA0,0x00, 0x67,0xF0, 0x24,0x40, -/* @wan2 (12x12,V)@ [suki software]*/ -0x40,0x00, 0x42,0x00, 0x46,0x00, 0x5A,0xF0, -0x4A,0x90, 0x42,0x90, 0x7E,0x90, 0xC2,0x90, -0x42,0x90, 0x7E,0x90, 0x42,0x90, 0x52,0x90, -/* @wan3 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x20, 0x80,0xF0, 0x67,0x00, -0x18,0x00, 0x24,0x00, 0x2A,0xE0, 0x22,0xA0, -0xBE,0xA0, 0x62,0xA0, 0x3E,0xA0, 0x22,0xA0, -/* @wan4 (12x12,V)@ [suki software]*/ -0x42,0x10, 0x42,0x10, 0x7F,0xE0, 0x42,0x20, -0x42,0x20, 0x00,0x00, 0x04,0x00, 0x44,0x30, -0x47,0xC0, 0x44,0x00, 0x44,0x00, 0x47,0xF0, -/* @wan5 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x48,0x10, 0x4F,0xE0, 0x48,0x00, -0x4F,0xF0, 0x48,0x10, 0x08,0x20, 0x40,0x00, -0x4F,0xE0, 0x58,0x00, 0x6B,0xF0, 0x48,0x10, -/* @wan6 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x08,0x00, 0x08,0x00, 0x08,0x00, -0x09,0x00, 0x08,0xB0, 0xFF,0xC0, 0x08,0x30, -0x08,0x00, 0x08,0x00, 0x1F,0xF0, 0x08,0x00, -/* @wan7 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x06,0x00, 0x00,0x70, 0xFF,0x80, -0x04,0x40, 0x08,0xB0, 0x30,0x80, 0x24,0xF0, -0x24,0x80, 0xA4,0x80, 0x64,0xF0, 0x24,0x80, -/* @wan8 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x09,0x00, 0x31,0x00, 0x25,0x00, -0x25,0x10, 0x25,0xE0, 0xA5,0x00, 0x65,0x00, -0x25,0x00, 0x25,0xF0, 0x25,0x00, 0x25,0x00, -/* @wan9 (12x12,V)@ [suki software]*/ -0x40,0x80, 0x41,0x00, 0x4F,0xF0, 0x72,0x00, -0x43,0xF0, 0x48,0x80, 0x31,0x00, 0x2E,0x90, -0x22,0x60, 0xA3,0x80, 0x63,0xF0, 0x22,0x20, -/* @wan10 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x11,0x00, 0x12,0x00, 0x0F,0x80, 0x38,0x80, -0xE8,0xB0, 0x2F,0xC0, 0x28,0xF0, 0x38,0x80, -/* @wan11 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x3F,0xF0, 0x22,0x10, 0x22,0x10, -0x3F,0xF0, 0x08,0x00, 0x17,0xC0, 0x24,0x80, -0xE4,0xB0, 0x27,0xC0, 0x2C,0xB0, 0x34,0x80, -/* @wan12 (12x12,V)@ [suki software]*/ -0x1F,0xF0, 0x31,0x10, 0xD1,0x10, 0x51,0x10, -0x1F,0xF0, 0x08,0x80, 0x30,0x80, 0x24,0xF0, -0x24,0x80, 0xA4,0x80, 0x64,0xF0, 0x24,0x80, -/* @wan13 (12x12,V)@ [suki software]*/ -0x0E,0x00, 0x00,0x00, 0xFF,0xF0, 0x10,0x00, -0x08,0x40, 0x31,0x80, 0x2E,0x60, 0x22,0x10, -0xA3,0xE0, 0x60,0x00, 0x23,0xF0, 0x22,0x40, -/* @wan14 (12x12,V)@ [suki software]*/ -0x00,0x20, 0x08,0x40, 0x30,0x80, 0x23,0x80, -0x2C,0x40, 0x24,0x30, 0x27,0xC0, 0xA0,0x00, -0x60,0x00, 0x27,0xF0, 0x24,0x20, 0x24,0x30, -/* @wan15 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x0F,0x80, 0xF8,0x50, 0x48,0xA0, -0x0F,0x50, 0x08,0x90, 0x31,0x60, 0x2E,0x10, -0x23,0xE0, 0xA0,0x00, 0x63,0xF0, 0x22,0x00, -/* @wan16 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x40,0x00, 0x40,0x00, 0x40,0x00, -0x40,0x30, 0x41,0xC0, 0x7E,0x00, 0x44,0x00, -0x44,0x00, 0x44,0x00, 0x44,0x00, 0x4F,0xF0, -/* @wan17 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x48,0x80, 0x48,0x80, -0x7F,0xF0, 0x08,0x40, 0x30,0x80, 0x27,0x40, -0x22,0x30, 0xA3,0xC0, 0x60,0x00, 0x23,0xF0, -/* @wang0 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x06,0x40, 0x80,0xF0, 0x63,0x00, -0x0C,0x00, 0x40,0x00, 0x41,0x00, 0x41,0x00, -0x41,0x00, 0x7F,0xF0, 0x41,0x00, 0x41,0x00, -/* @wang1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x40,0x00, 0x41,0x00, 0x41,0x00, -0x41,0x00, 0x41,0x00, 0x41,0x00, 0x7F,0xF0, -0x41,0x00, 0x41,0x00, 0x41,0x00, 0x41,0x00, -/* @wang2 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x08,0x00, 0x08,0x00, 0x0F,0xF0, -0x08,0x00, 0x08,0x00, 0x88,0x00, 0x48,0x00, -0x28,0x00, 0x08,0x00, 0x08,0x00, 0x08,0x00, -/* @wang3 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x11,0x80, 0x16,0x00, 0xFF,0xF0, -0x12,0x00, 0x11,0x80, 0x40,0x00, 0x41,0x00, -0x41,0x00, 0x41,0x00, 0x7F,0xF0, 0x41,0x00, -/* @wang4 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x40,0x10, 0x48,0x20, -0x44,0xC0, 0x43,0x00, 0x44,0xC0, 0x58,0x30, -0x44,0x20, 0x42,0x40, 0x41,0x80, 0x4E,0x60, -/* @wang5 (12x12,V)@ [suki software]*/ -0x04,0x40, 0x08,0x80, 0x11,0x00, 0xEF,0xF0, -0x44,0x00, 0x10,0x00, 0x10,0x80, 0x10,0x80, -0x90,0x80, 0x7F,0xF0, 0x50,0x80, 0x10,0x80, -/* @wang6 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x3F,0xF0, 0x22,0x10, 0x22,0x10, -0x22,0x10, 0x3F,0xF0, 0x40,0x00, 0x41,0x00, -0x41,0x00, 0x7F,0xF0, 0x41,0x00, 0x41,0x00, -/* @wang7 (12x12,V)@ [suki software]*/ -0x20,0x00, 0x20,0x00, 0x3F,0x40, 0xA1,0x50, -0x62,0x50, 0x24,0x50, 0x20,0x50, 0x01,0x70, -0x7E,0x50, 0x54,0x50, 0x54,0x50, 0x55,0x50, -/* @wang8 (12x12,V)@ [suki software]*/ -0x20,0x00, 0x20,0x00, 0x20,0x30, 0x3F,0x00, -0x21,0x70, 0x21,0x00, 0x21,0x00, 0xA1,0x40, -0x61,0x30, 0x21,0x00, 0x21,0x00, 0x21,0x00, -/* @wang9 (12x12,V)@ [suki software]*/ -0x20,0x80, 0x20,0x80, 0x20,0x80, 0x3C,0x80, -0x24,0xB0, 0x24,0xD0, 0xA7,0x90, 0x64,0x80, -0x24,0x80, 0x24,0x90, 0x24,0xE0, 0x24,0x80, -/* @wei0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x1F,0xF0, 0x14,0x80, -0x17,0xE0, 0x14,0x90, 0x14,0x90, 0x14,0xE0, -0x10,0x00, 0xFF,0x80, 0x10,0x70, 0x50,0xC0, -/* @wei1 Ρ(12x12,V)@ [suki software]*/ -0x02,0x20, 0x0A,0xB0, 0x6B,0x60, 0x2F,0xA0, -0x2B,0x30, 0x2A,0xA0, 0x22,0x00, 0xEF,0xC0, -0x3A,0x40, 0x2A,0x70, 0x2F,0xC0, 0x2A,0x70, -/* @wei2 ΢(12x12,V)@ [suki software]*/ -0x08,0x80, 0x11,0x00, 0xEF,0xF0, 0x44,0x00, -0x3A,0x00, 0x0A,0xF0, 0xFA,0x80, 0x0A,0x80, -0x3A,0xF0, 0x04,0x00, 0x1F,0x80, 0xE8,0x60, -/* @wei3 Σ(12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x08,0x10, 0x1F,0xE0, -0x28,0x00, 0xC8,0x00, 0x49,0xF0, 0x49,0x00, -0x49,0x00, 0x59,0x20, 0x69,0x10, 0x49,0xE0, -/* @wei4 Τ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x20,0x80, 0x24,0x80, 0x24,0x80, -0x24,0x80, 0x24,0x80, 0x24,0x80, 0xFF,0xF0, -0x24,0x80, 0x24,0x80, 0x24,0x80, 0x24,0x80, -/* @wei5 Υ(12x12,V)@ [suki software]*/ -0x02,0x00, 0x82,0x00, 0x72,0x00, 0x23,0xF0, -0x00,0x00, 0x21,0x00, 0x29,0x00, 0x29,0x00, -0x29,0x00, 0xFF,0xF0, 0x29,0x00, 0x29,0x20, -/* @wei6 Φ(12x12,V)@ [suki software]*/ -0x10,0xC0, 0x17,0x00, 0xFF,0xF0, 0x14,0x00, -0x13,0x00, 0x08,0x10, 0x1F,0xE0, 0x2A,0x00, -0xCB,0xF0, 0x4A,0x00, 0x5A,0x40, 0x6A,0x20, -/* @wei7 Χ(12x12,V)@ [suki software]*/ -0x00,0x00, 0xFF,0xF0, 0x80,0x00, 0x91,0x00, -0x95,0x00, 0x95,0x00, 0xFF,0xF0, 0x95,0x00, -0x95,0x10, 0x95,0x00, 0x95,0xF0, 0x90,0x00, -/* @wei8 Ψ(12x12,V)@ [suki software]*/ -0x3F,0xE0, 0x20,0x40, 0x20,0x40, 0x3F,0xE0, -0x01,0x00, 0x06,0x00, 0x18,0x00, 0xFF,0xF0, -0x52,0x40, 0x12,0x40, 0x52,0x40, 0x3F,0xF0, -/* @wei9 Ω(12x12,V)@ [suki software]*/ -0x0E,0x00, 0x00,0x00, 0xFF,0xF0, 0x10,0x00, -0x0A,0x00, 0x04,0x00, 0x1F,0xF0, 0xF2,0x40, -0x12,0x40, 0x92,0x40, 0x7F,0xF0, 0x12,0x40, -/* @wei10 Ϊ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x08,0x00, 0x08,0x00, 0x48,0x00, -0x28,0x00, 0x38,0x10, 0x08,0x60, 0x0F,0x80, -0xF9,0x00, 0x08,0x80, 0x08,0x60, 0x08,0x00, -/* @wei11 Ϋ(12x12,V)@ [suki software]*/ -0x08,0x20, 0x84,0xF0, 0x67,0x00, 0x08,0x80, -0x19,0x80, 0x6E,0x80, 0x08,0x90, 0x04,0x10, -0x08,0x00, 0x7F,0xF0, 0x12,0x40, 0x5F,0xF0, -/* @wei12 ά(12x12,V)@ [suki software]*/ -0x04,0x40, 0x1C,0xC0, 0xE5,0x40, 0x46,0x40, -0x08,0x40, 0x04,0x00, 0x18,0x00, 0xFF,0xF0, -0x52,0x40, 0x12,0x40, 0x52,0x40, 0x3F,0xF0, -/* @wei13 έ(12x12,V)@ [suki software]*/ -0x20,0x00, 0x24,0x20, 0x25,0x20, 0x25,0x20, -0xF5,0x20, 0x25,0x20, 0x25,0x20, 0x2F,0xF0, -0x25,0x20, 0xF5,0x20, 0x25,0x20, 0x25,0x20, -/* @wei14 ή(12x12,V)@ [suki software]*/ -0x20,0x20, 0x22,0x20, 0x2A,0x20, 0x2A,0x60, -0x2A,0xA0, 0xFB,0x70, 0x2A,0x20, 0x2F,0xE0, -0x2A,0x20, 0xFB,0x20, 0x2B,0x30, 0x2A,0xA0, -/* @wei15 ί(12x12,V)@ [suki software]*/ -0x00,0x40, 0x11,0x40, 0x11,0x40, 0x52,0x40, -0x52,0x70, 0x54,0xD0, 0x58,0x40, 0xFF,0x40, -0x90,0x40, 0x98,0x50, 0x94,0x60, 0x92,0x40, -/* @wei16 ΰ(12x12,V)@ [suki software]*/ -0x00,0x80, 0x01,0x00, 0x06,0x00, 0x1F,0xF0, -0xE0,0x00, 0x50,0x80, 0x14,0x80, 0x14,0x80, -0x14,0x80, 0xFF,0xF0, 0x14,0x80, 0x14,0x80, -/* @wei17 α(12x12,V)@ [suki software]*/ -0x00,0x80, 0x01,0x00, 0x06,0x00, 0x1B,0xF0, -0xE0,0x00, 0x44,0x00, 0x24,0x00, 0x1C,0x30, -0x05,0xC0, 0xFE,0x00, 0x04,0x80, 0x04,0x60, -/* @wei18 β(12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x50,0x10, -0x52,0x50, 0x52,0x50, 0x52,0x50, 0x53,0xF0, -0x54,0xA0, 0x54,0xA0, 0x54,0xA0, 0x54,0xA0, -/* @wei19 γ(12x12,V)@ [suki software]*/ -0x04,0x40, 0x0C,0xC0, 0x35,0x40, 0xC6,0x40, -0x04,0x50, 0x18,0x10, 0x24,0x80, 0x24,0x80, -0x24,0x80, 0xFF,0xF0, 0x24,0x80, 0x24,0x80, -/* @wei20 δ(12x12,V)@ [suki software]*/ -0x02,0x00, 0x02,0x00, 0x12,0x00, 0x12,0x00, -0x12,0x10, 0x12,0x60, 0x13,0x80, 0xFF,0xF0, -0x12,0x80, 0x12,0x40, 0x12,0x20, 0x12,0x10, -/* @wei21 ε(12x12,V)@ [suki software]*/ -0x20,0x00, 0x20,0x10, 0x2F,0xE0, 0x29,0x50, -0x29,0x50, 0xF9,0x50, 0x29,0x50, 0x2F,0x10, -0x21,0x00, 0xF9,0x40, 0x21,0x30, 0x21,0x00, -/* @wei22 ζ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x3F,0xF0, 0x20,0x10, 0x20,0x10, -0x7F,0xF0, 0x21,0x00, 0x11,0x10, 0x11,0x20, -0x11,0x40, 0xFF,0xF0, 0x11,0x40, 0x11,0x30, -/* @wei23 η(12x12,V)@ [suki software]*/ -0x00,0x80, 0x00,0x80, 0x00,0x80, 0xFE,0xF0, -0x92,0x80, 0x92,0x80, 0x92,0xC0, 0xFE,0xA0, -0x92,0x90, 0x92,0x80, 0x92,0x90, 0xFE,0xA0, -/* @wei24 θ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7E,0x00, 0x55,0xF0, -0x55,0x50, 0x55,0x50, 0x55,0x50, 0x7D,0x50, -0x55,0x50, 0x55,0x50, 0x55,0x50, 0x55,0xF0, -/* @wei25 ι(12x12,V)@ [suki software]*/ -0x3F,0xE0, 0x20,0x40, 0x20,0x40, 0x3F,0xE0, -0x01,0x00, 0x01,0x00, 0x7D,0xF0, 0x55,0x00, -0x55,0xC0, 0x7D,0x20, 0x55,0x10, 0x55,0x20, -/* @wei26 κ(12x12,V)@ [suki software]*/ -0x12,0x40, 0x54,0x50, 0x58,0xE0, 0x7F,0x40, -0x98,0x70, 0x94,0x40, 0x10,0x00, 0x3F,0x00, -0x25,0x10, 0x65,0xE0, 0xBF,0x00, 0x25,0xF0, -/* @wei27 λ(12x12,V)@ [suki software]*/ -0x00,0x80, 0x03,0x00, 0x0C,0x00, 0x37,0xF0, -0xC0,0x00, 0x54,0x00, 0x13,0x00, 0x90,0xE0, -0x50,0x00, 0x70,0x00, 0x10,0x70, 0x17,0x80, -/* @wei28 μ(12x12,V)@ [suki software]*/ -0x10,0x20, 0x0C,0x20, 0x80,0xF0, 0x67,0x00, -0x00,0x00, 0x7C,0x00, 0x55,0xF0, 0x55,0x50, -0x55,0x50, 0x7D,0x50, 0x55,0x50, 0x55,0x50, -/* @wei29 ν(12x12,V)@ [suki software]*/ -0x00,0x00, 0x82,0x00, 0x72,0x00, 0x23,0xF0, -0x00,0x00, 0x00,0x00, 0x7C,0x00, 0x55,0xF0, -0x55,0x50, 0x55,0x50, 0x7D,0x50, 0x55,0x50, -/* @wei30 ξ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x54,0x80, 0x54,0xB0, -0x54,0x80, 0x54,0xF0, 0x54,0x80, 0x74,0xA0, -0x08,0x90, 0x09,0x00, 0x08,0xC0, 0x08,0x00, -/* @wei31 ο(12x12,V)@ [suki software]*/ -0x00,0xC0, 0xFF,0x00, 0xA2,0x80, 0xAB,0x40, -0xAA,0x20, 0xAB,0xC0, 0xAB,0x00, 0xE2,0x90, -0x00,0x00, 0x14,0x00, 0x12,0x40, 0x10,0x20, -/* @wei32 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x40,0x00, 0x40,0x00, -0x40,0x00, 0x40,0x00, 0x40,0x00, 0x7F,0xF0, -0x40,0x00, 0x40,0x00, 0x40,0x40, 0x40,0x60, -/* @wen0 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x40, 0x00,0x90, 0x3F,0xE0, -0x20,0x00, 0x20,0x30, 0x2F,0xA0, 0xAA,0xB0, -0x6A,0xA0, 0x2A,0xA0, 0x2A,0xB0, 0x2F,0xA0, -/* @wen1 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x84,0x70, 0x61,0x80, 0x0E,0x00, -0x00,0xF0, 0x7E,0x80, 0x52,0x80, 0x52,0xF0, -0x52,0x80, 0x52,0x80, 0x52,0xF0, 0x7E,0x80, -/* @wen2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x1F,0x80, 0x10,0x80, 0xFF,0xF0, -0x10,0x80, 0x1F,0xA0, 0x10,0x10, 0x1C,0x00, -0x13,0x00, 0x90,0x90, 0x70,0x60, 0x51,0x90, -/* @wen3 (12x12,V)@ [suki software]*/ -0x10,0x00, 0x10,0x00, 0x10,0x00, 0x10,0x00, -0x1E,0x00, 0x11,0x80, 0x90,0x50, 0x70,0x20, -0x10,0x50, 0x11,0x80, 0x1E,0x00, 0x10,0x00, -/* @wen4 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x3F,0xF0, 0x00,0x00, 0x88,0x10, -0x48,0x10, 0x0F,0xF0, 0x4A,0x90, 0x4A,0x90, -0x4A,0xA0, 0x4F,0xF0, 0x48,0x20, 0x48,0x20, -/* @wen5 (12x12,V)@ [suki software]*/ -0x04,0x40, 0x1C,0xC0, 0xE5,0x40, 0x46,0x40, -0x08,0x40, 0x10,0x00, 0x10,0x00, 0x17,0x00, -0x90,0xC0, 0x70,0x30, 0x50,0xC0, 0x1F,0x00, -/* @wen6 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x3F,0xE0, 0x20,0x40, 0x20,0x40, -0x3F,0xC0, 0x02,0x10, 0x0C,0x20, 0xF0,0xC0, -0x53,0x00, 0x1C,0x30, 0x10,0xC0, 0x1F,0x00, -/* @wen7 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x48,0xC0, 0x4B,0x00, 0x7F,0xF0, -0x89,0x00, 0x88,0x90, 0x10,0x00, 0x2A,0xB0, -0xCA,0x80, 0x4A,0xC0, 0x5A,0xB0, 0x6A,0x80, -/* @wen8 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x42,0x00, 0x42,0x00, 0x42,0xA0, -0x64,0xA0, 0x55,0xE0, 0x4A,0xA0, 0xCA,0xB0, -0x48,0xA0, 0x55,0x20, 0x65,0x60, 0x44,0x20, -/* @wen9 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x1F,0xF0, 0x80,0x00, -0x60,0x00, 0x07,0xC0, 0x44,0x40, 0x44,0x40, -0x44,0x40, 0x44,0x40, 0x47,0xC0, 0x40,0x00, -/* @weng0 (12x12,V)@ [suki software]*/ -0x3F,0xE0, 0x20,0x40, 0x20,0x40, 0x3F,0xE0, -0x04,0x00, 0x09,0x00, 0x15,0x50, 0xEF,0x20, -0x55,0xF0, 0x04,0x00, 0xC5,0x40, 0x2F,0x20, -/* @weng1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x09,0x00, 0x11,0x40, 0x21,0x30, -0xC5,0x00, 0x0D,0xF0, 0x34,0x00, 0x05,0x00, -0x05,0x00, 0x8D,0x50, 0x67,0x20, 0x31,0x00, -/* @weng2 (12x12,V)@ [suki software]*/ -0x05,0x00, 0x0D,0x00, 0x09,0x00, 0x11,0x00, -0x25,0xF0, 0x4D,0x40, 0x15,0x50, 0x05,0x40, -0x4D,0x40, 0x25,0x40, 0x13,0x70, 0x11,0x00, -/* @wo0 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x80, 0xFF,0xF0, 0x11,0x00, -0x12,0x00, 0x42,0x00, 0x33,0xF0, 0x00,0x00, -0x12,0x00, 0x11,0x80, 0x10,0x10, 0x10,0x00, -/* @wo1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x0F,0xC0, 0x08,0x80, 0xFF,0xF0, -0x08,0x80, 0x0F,0x80, 0x01,0xF0, 0x7D,0x10, -0x49,0x20, 0x4F,0xC0, 0x49,0x20, 0x49,0x10, -/* @wo2 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x20, 0x80,0xF0, 0x63,0x00, -0x0C,0x00, 0x01,0xF0, 0x79,0x10, 0x49,0x10, -0x49,0x20, 0x4F,0xC0, 0x49,0x20, 0x49,0x10, -/* @wo3 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x30,0x00, 0x24,0x30, 0x28,0x20, -0x2F,0xA0, 0x34,0xA0, 0xA4,0xA0, 0x64,0xF0, -0x24,0xA0, 0x24,0xA0, 0x37,0xA0, 0x28,0x20, -/* @wo4 (12x12,V)@ [suki software]*/ -0x04,0x20, 0x04,0x20, 0x44,0x40, 0x44,0x40, -0x7F,0xF0, 0x84,0x80, 0x84,0x80, 0x04,0x00, -0x04,0x00, 0xFF,0x10, 0x04,0xE0, 0x44,0x50, -/* @wo5 (12x12,V)@ [suki software]*/ -0x20,0x10, 0x2F,0x90, 0x2A,0x90, 0xFA,0xF0, -0x2A,0x90, 0x2A,0x90, 0x2F,0x90, 0x04,0x00, -0x08,0x90, 0x32,0x50, 0xC1,0x10, 0x27,0xF0, -/* @wo6 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x44,0x80, 0x44,0x80, -0x7C,0xF0, 0x44,0x80, 0x44,0x80, 0x47,0x80, -0x00,0x00, 0xFF,0xF0, 0x04,0x00, 0x02,0x00, -/* @wo7 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x80, 0xFF,0xF0, 0x11,0x00, -0x12,0x00, 0x00,0x00, 0x7F,0xF0, 0x54,0x90, -0x55,0x90, 0x56,0x90, 0x54,0xF0, 0x54,0x90, -/* @wo8 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x20, 0x80,0x70, 0x61,0x80, -0x02,0x00, 0x22,0x00, 0x22,0x10, 0x22,0x60, -0x3F,0x80, 0x42,0x40, 0x42,0x30, 0x42,0x00, -/* @wu0 (12x12,V)@ [suki software]*/ -0x00,0x10, 0x40,0x60, 0x41,0x80, 0x5E,0x00, -0x49,0x80, 0x40,0x60, 0x40,0x00, 0x7F,0xF0, -0x40,0x10, 0x40,0x20, 0x40,0xC0, 0x5F,0x00, -/* @wu1 (12x12,V)@ [suki software]*/ -0x3F,0xE0, 0x20,0x80, 0x20,0x80, 0x20,0x80, -0x3F,0xD0, 0x00,0x10, 0x3F,0xD0, 0x60,0x90, -0xA0,0x90, 0x20,0x90, 0x22,0x90, 0x23,0x90, -/* @wu2 (12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0xF7,0xF0, 0x24,0x80, -0x24,0x80, 0x24,0x80, 0x00,0x10, 0x3F,0x90, -0x60,0x90, 0xA0,0x90, 0x22,0x90, 0x21,0x90, -/* @wu3 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x10, 0x00,0x10, 0x7F,0x90, -0x20,0x90, 0x20,0x90, 0x60,0x90, 0xA0,0x90, -0x22,0x90, 0x21,0x90, 0x7E,0x90, 0x20,0x90, -/* @wu4 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x20, 0x80,0x70, 0x61,0x80, -0x06,0x00, 0x00,0x00, 0x44,0x00, 0x44,0x00, -0x47,0x80, 0x44,0x80, 0x44,0x80, 0x44,0x80, -/* @wu5 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x82,0x00, 0x73,0xF0, 0x20,0x00, -0x00,0x50, 0x40,0x80, 0x5F,0x00, 0x40,0xC0, -0x40,0x00, 0x7F,0xF0, 0x40,0x40, 0x41,0x80, -/* @wu6 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x54,0x10, -0x54,0x90, 0x55,0x90, 0x56,0x90, 0x54,0x90, -0x54,0xF0, 0x54,0x90, 0x56,0x90, 0x55,0xD0, -/* @wu7 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x02,0x00, 0x42,0x00, 0x42,0x00, -0x42,0x10, 0x42,0x20, 0x42,0xC0, 0x7F,0x00, -0x43,0xF0, 0x42,0x00, 0x42,0x00, 0x42,0x00, -/* @wu8 (12x12,V)@ [suki software]*/ -0x20,0x00, 0x20,0x80, 0x24,0x80, 0x24,0x80, -0x24,0x80, 0xF4,0xB0, 0x27,0xC0, 0x24,0x80, -0x24,0xF0, 0xF4,0x80, 0x24,0x80, 0x24,0x80, -/* @wu9 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x08,0xC0, 0x0B,0x00, 0xFF,0xF0, -0x0A,0x00, 0x01,0x80, 0x49,0x00, 0x49,0x70, -0x4F,0x40, 0x79,0x40, 0x49,0x40, 0x49,0x40, -/* @wu10 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x81,0x00, 0x91,0x00, 0x91,0x70, -0x91,0x40, 0x9F,0x40, 0xF1,0x40, 0x91,0x40, -0x91,0x40, 0x91,0x40, 0x91,0x40, 0x9F,0x70, -/* @wu11 (12x12,V)@ [suki software]*/ -0x00,0x20, 0x00,0x20, 0x01,0x20, 0x7D,0x20, -0x45,0x20, 0x45,0x20, 0x45,0x30, 0x45,0xE0, -0x45,0x30, 0x45,0x20, 0x45,0x20, 0x7D,0x20, -/* @wu12 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x02,0x00, 0x03,0xE0, 0x7E,0x20, -0x42,0x20, 0x42,0x20, 0x42,0x70, 0x7F,0xA0, -0x42,0x20, 0x42,0x20, 0x42,0x20, 0x7F,0xF0, -/* @wu13 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x08,0x00, 0x28,0xF0, 0x28,0x00, -0x28,0x00, 0x2B,0xF0, 0x28,0x80, 0x28,0x80, -0x08,0x80, 0xFE,0x00, 0x09,0xE0, 0x48,0x10, -/* @wu14 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x40,0x00, 0x41,0x00, 0x41,0x00, -0x41,0x00, 0x41,0xF0, 0x7F,0x00, 0x41,0x00, -0x41,0x00, 0x41,0x00, 0x43,0xF0, 0x41,0x00, -/* @wu15 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x08,0x40, 0x08,0x80, 0xFF,0xF0, -0x09,0x00, 0x0A,0x00, 0x41,0x00, 0x49,0x30, -0x4F,0x20, 0x79,0x20, 0x49,0x20, 0x49,0x20, -/* @wu16 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x03,0x00, 0x0D,0x00, 0x31,0x00, -0xE1,0x00, 0x21,0x00, 0x21,0x00, 0x3F,0xF0, -0x21,0x00, 0x21,0x00, 0x21,0x00, 0x21,0x00, -/* @wu17 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x12,0x10, 0x2A,0x60, 0xCB,0xD0, -0x7E,0x40, 0x4A,0x50, 0x7E,0x60, 0x4A,0x00, -0x4A,0x50, 0x7E,0x60, 0x4A,0x40, 0x7F,0xF0, -/* @wu18 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x1F,0xF0, 0xF0,0x00, -0x40,0x00, 0x01,0x00, 0x21,0x00, 0x21,0xF0, -0x3F,0x00, 0x21,0x00, 0x21,0x00, 0x21,0x00, -/* @wu19 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x1F,0xF0, 0xF0,0x00, -0x48,0x80, 0x10,0x80, 0xEF,0xF0, 0x28,0x80, -0x2C,0xC0, 0x2B,0xB0, 0x28,0x80, 0x28,0x80, -/* @wu20 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x04,0x00, 0x04,0x10, 0x7F,0xF0, -0x04,0x20, 0x04,0x20, 0x00,0x10, 0x3F,0x90, -0x20,0x90, 0x60,0x90, 0xA0,0x90, 0x22,0x90, -/* @wu21 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x0F,0xF0, 0x08,0x00, -0x08,0x00, 0x08,0x00, 0x08,0x00, 0x08,0x00, -0xFF,0x10, 0x08,0xE0, 0x08,0x70, 0x48,0x80, -/* @wu22 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x38,0x00, 0x20,0x20, 0xAA,0x40, -0xAB,0x90, 0xAA,0xD0, 0xA0,0xA0, 0xFE,0xB0, -0xA0,0xA0, 0xAA,0xD0, 0xAA,0x90, 0xAA,0x00, -/* @wu23 (12x12,V)@ [suki software]*/ -0x3F,0xF0, 0x22,0x20, 0x22,0x20, 0x22,0x20, -0x3F,0xF0, 0x41,0x00, 0x49,0x30, 0x4F,0x20, -0x79,0x20, 0x49,0x20, 0x49,0x20, 0x4F,0x20, -/* @wu24 (12x12,V)@ [suki software]*/ -0x02,0x20, 0x3C,0x20, 0x08,0x40, 0xFF,0xF0, -0x08,0x80, 0x0B,0x20, 0x04,0x40, 0x18,0x80, -0xF3,0x10, 0x1C,0x20, 0x10,0xC0, 0x1F,0x00, -/* @wu25 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x01,0x00, 0x02,0x10, 0x0C,0x20, -0xF0,0x40, 0x50,0x80, 0x13,0x10, 0x1C,0x20, -0x10,0x40, 0x11,0x80, 0x1E,0x00, 0x10,0x00, -/* @wu26 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x08,0x80, 0x08,0x80, 0x11,0x40, -0x21,0x40, 0xF2,0x40, 0x4A,0x70, 0x45,0xC0, -0x44,0x40, 0x4A,0x40, 0x52,0x40, 0x61,0x70, -/* @wu27 (12x12,V)@ [suki software]*/ -0x0E,0x00, 0x00,0x00, 0xFF,0xF0, 0x10,0x00, -0x09,0x00, 0x41,0x00, 0x49,0x70, 0x4F,0x40, -0x79,0x40, 0x49,0x40, 0x49,0x40, 0x4F,0x40, -/* @wu28 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x82,0x00, 0x73,0xF0, 0x20,0x00, -0x00,0x10, 0x02,0x40, 0xFA,0x40, 0x8A,0x40, -0x8A,0x50, 0x8B,0xE0, 0x8A,0x50, 0x8A,0x40, -/* @xi0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x02,0x00, 0x12,0x00, 0x12,0x00, -0x12,0xF0, 0xFE,0x90, 0x12,0x90, 0x12,0x90, -0x12,0x90, 0x12,0x90, 0xFE,0x90, 0x12,0xF0, -/* @yi0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xE0, 0x40,0x50, 0x4E,0x40, -0x4A,0x50, 0x7B,0xC0, 0x4E,0x40, 0x40,0x40, -0x00,0x10, 0x7F,0x80, 0x48,0x40, 0x48,0x40, -/* @xi1 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x11,0x80, 0x16,0x00, 0xFF,0xF0, -0x12,0x00, 0x11,0x80, 0x00,0x00, 0x3F,0xF0, -0x24,0x00, 0x24,0x00, 0x44,0x00, 0x47,0xF0, -/* @xi2 (12x12,V)@ [suki software]*/ -0x40,0x00, 0x4F,0xF0, 0x48,0x10, 0x48,0x20, -0x48,0x40, 0x7F,0x80, 0x48,0x00, 0x48,0x00, -0x48,0x00, 0x7F,0x80, 0x48,0x40, 0x48,0x40, -/* @xi3 (12x12,V)@ [suki software]*/ -0x40,0x80, 0x43,0x00, 0x7F,0xF0, 0x42,0x00, -0x43,0xF0, 0x00,0x00, 0x4F,0xF0, 0x48,0x10, -0x48,0x60, 0x7F,0x80, 0x48,0x00, 0x7F,0xC0, -/* @xi4 (12x12,V)@ [suki software]*/ -0x40,0x80, 0x41,0x00, 0x47,0xF0, 0x7A,0x00, -0x42,0x00, 0x43,0xF0, 0x41,0x00, 0x02,0x00, -0x0D,0x00, 0xF0,0xC0, 0x50,0x10, 0x10,0x60, -/* @xi5 (12x12,V)@ [suki software]*/ -0x3F,0xF0, 0x22,0x10, 0x22,0x10, 0x3F,0xF0, -0x08,0x40, 0x09,0x80, 0xFF,0xF0, 0x0A,0x00, -0x09,0x00, 0x3F,0xF0, 0x24,0x00, 0x24,0x00, -/* @xi6 (12x12,V)@ [suki software]*/ -0x3F,0xF0, 0x20,0x40, 0x20,0x40, 0x3F,0xE0, -0x00,0x20, 0x40,0x20, 0x57,0x20, 0x55,0xA0, -0x55,0x60, 0xF5,0x20, 0x55,0x20, 0x55,0x60, -/* @xi7 (12x12,V)@ [suki software]*/ -0x3F,0xE0, 0x20,0x80, 0x20,0x80, 0x3F,0xC0, -0x00,0x10, 0x40,0x60, 0x47,0x80, 0x78,0x00, -0x47,0x80, 0x40,0x40, 0x40,0x30, 0x7C,0xD0, -/* @xi8 (12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0xF4,0x80, 0x27,0xF0, -0x24,0x80, 0x24,0x80, 0x00,0x20, 0xFC,0xC0, -0x97,0x90, 0x94,0xE0, 0x94,0x80, 0x94,0x90, -/* @xi9 (12x12,V)@ [suki software]*/ -0x01,0x40, 0x3E,0x40, 0x08,0x80, 0xFF,0xF0, -0x09,0x00, 0x4A,0x00, 0x47,0xF0, 0x44,0x10, -0x7F,0xE0, 0x44,0x00, 0x44,0x00, 0x7F,0xC0, -/* @xi10 ϡ(12x12,V)@ [suki software]*/ -0x08,0x20, 0x48,0xC0, 0x4B,0x00, 0x7F,0xF0, -0x8A,0x20, 0x89,0x40, 0x0C,0x80, 0x05,0xF0, -0x8E,0x80, 0x54,0x80, 0x2D,0xF0, 0x54,0x80, -/* @xi11 Ϣ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x10, 0x3F,0x80, -0x2A,0xB0, 0x2A,0x80, 0x6A,0x80, 0xAA,0xA0, -0x2A,0x90, 0x2A,0x80, 0x2A,0x80, 0x3F,0x80, -/* @xi12 ϣ(12x12,V)@ [suki software]*/ -0x04,0x10, 0x04,0x20, 0x0C,0x40, 0x0C,0x80, -0x95,0xF0, 0x56,0x80, 0x5C,0x80, 0x24,0x80, -0x27,0xF0, 0x54,0x80, 0x94,0x80, 0x0C,0x80, -/* @xi13 Ϥ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x08,0x80, 0x08,0x90, 0x49,0x00, -0x69,0x10, 0x5A,0x00, 0x4C,0x00, 0x7F,0xD0, -0x8C,0x00, 0x9A,0x00, 0xA9,0x00, 0x88,0x80, -/* @xi14 ϥ(12x12,V)@ [suki software]*/ -0x00,0x00, 0xFF,0xF0, 0x88,0x80, 0x88,0x80, -0xFF,0xF0, 0x02,0x40, 0x24,0x40, 0x28,0xA0, -0x31,0x10, 0xFE,0xF0, 0x21,0x10, 0x30,0xA0, -/* @xi15 Ϧ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x01,0x00, 0x02,0x00, -0x04,0x00, 0x1C,0x00, 0xE2,0x00, 0x21,0x10, -0x20,0xA0, 0x20,0x40, 0x21,0x80, 0x26,0x00, -/* @xi16 ϧ(12x12,V)@ [suki software]*/ -0x0E,0x00, 0x00,0x00, 0xFF,0xF0, 0x10,0x00, -0x0A,0x00, 0x12,0x00, 0x12,0xF0, 0xFE,0x90, -0x12,0x90, 0x12,0x90, 0x12,0x90, 0xFE,0x90, -/* @xi17 Ϩ(12x12,V)@ [suki software]*/ -0x01,0x00, 0x0E,0x00, 0x00,0xF0, 0xFF,0x40, -0x08,0x30, 0x10,0x30, 0x00,0x00, 0x3F,0xB0, -0x2A,0xC0, 0x6A,0xA0, 0xAA,0x90, 0x2A,0x80, -/* @xi18 ϩ(12x12,V)@ [suki software]*/ -0x03,0x00, 0x00,0x10, 0xFF,0xE0, 0x04,0x40, -0x18,0x30, 0x04,0x40, 0x8C,0xF0, 0x4D,0x80, -0x56,0x80, 0x2D,0xF0, 0x24,0x80, 0x54,0x80, -/* @xi19 Ϫ(12x12,V)@ [suki software]*/ -0x08,0x20, 0x84,0x30, 0x61,0xC0, 0x06,0x00, -0x40,0x20, 0x60,0xA0, 0x52,0xA0, 0x47,0xA0, -0x6A,0xA0, 0x92,0xF0, 0x84,0xA0, 0x91,0xA0, -/* @xi20 ϫ(12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x20, 0x80,0x70, 0x61,0x80, -0x06,0x00, 0x08,0x00, 0x01,0x00, 0x02,0x00, -0x0E,0x00, 0xF1,0x10, 0x10,0xA0, 0x10,0x40, -/* @xi21 Ϭ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x50,0x80, -0x58,0x90, 0x55,0x60, 0x50,0x20, 0x50,0x20, -0x5F,0x70, 0x50,0x20, 0x50,0x20, 0x55,0x20, -/* @xi22 ϭ(12x12,V)@ [suki software]*/ -0x08,0xC0, 0x0B,0x00, 0xFF,0xF0, 0x0A,0x00, -0x08,0x80, 0x7C,0x90, 0xD6,0xE0, 0x55,0xA0, -0x7C,0xB0, 0x02,0x80, 0x0E,0x00, 0xF1,0xC0, -/* @xi23 Ϯ(12x12,V)@ [suki software]*/ -0x01,0x00, 0x21,0x80, 0x22,0x80, 0x22,0x90, -0x24,0x90, 0x3A,0xA0, 0xE2,0xC0, 0x25,0xC0, -0x3E,0xA0, 0xAA,0x90, 0x6A,0xA0, 0x32,0xA0, -/* @xi24 ϯ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x3F,0xF0, 0x24,0x00, -0x24,0x70, 0x24,0x40, 0x3F,0x40, 0xA5,0x40, -0x65,0xF0, 0x25,0x40, 0x3F,0x40, 0x24,0x40, -/* @xi25 ϰ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x40,0x20, 0x40,0x30, -0x50,0x20, 0x48,0x40, 0x44,0x40, 0x46,0x80, -0x40,0x80, 0x41,0x00, 0x41,0x00, 0x42,0x00, -/* @xi26 ϱ(12x12,V)@ [suki software]*/ -0x08,0x00, 0x08,0xC0, 0xFF,0x50, 0x08,0x20, -0x0B,0xD0, 0x0C,0x00, 0x00,0x10, 0x3F,0x80, -0x2A,0x90, 0xEA,0xC0, 0xAA,0xB0, 0x2A,0x80, -/* @xi27 ϲ(12x12,V)@ [suki software]*/ -0x00,0x40, 0x40,0x40, 0x50,0x40, 0x57,0x50, -0x55,0x50, 0x55,0xD0, 0x55,0x50, 0xF5,0x50, -0x55,0x50, 0x55,0xD0, 0x55,0x50, 0x57,0x50, -/* @xi28 ϳ(12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0xF7,0xF0, 0x24,0x80, -0x24,0x80, 0x20,0x80, 0x05,0x00, 0x79,0x10, -0x11,0xE0, 0x11,0x00, 0xFF,0x00, 0x11,0xF0, -/* @xi29 ϴ(12x12,V)@ [suki software]*/ -0x08,0x20, 0x86,0x20, 0x60,0xF0, 0x0F,0x00, -0x05,0x00, 0x19,0x00, 0x71,0x10, 0x11,0xE0, -0x11,0x00, 0xFF,0x00, 0x11,0xF0, 0x11,0x00, -/* @xi30 ϵ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x40,0x80, 0x44,0xC0, -0x4D,0x90, 0x55,0xA0, 0x66,0x80, 0x46,0x80, -0x44,0xF0, 0x88,0x80, 0xB2,0xA0, 0x81,0x90, -/* @xi31 ϶(12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x44,0x40, 0x4A,0x20, -0x51,0xC0, 0x60,0x00, 0x17,0xC0, 0x65,0x40, -0x05,0x40, 0x05,0x40, 0xFD,0x70, 0x05,0x40, -/* @xi32 Ϸ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x28,0x00, 0x24,0x10, 0x22,0x60, -0x23,0x80, 0x2C,0xC0, 0x30,0x30, 0x04,0x00, -0x04,0x00, 0xFF,0x10, 0x04,0xE0, 0x44,0x50, -/* @xi33 ϸ(12x12,V)@ [suki software]*/ -0x08,0x00, 0x18,0x80, 0x29,0x80, 0xCA,0x90, -0x4C,0x90, 0x10,0x90, 0x00,0x00, 0x3F,0xF0, -0x21,0x00, 0x21,0x00, 0x3F,0xF0, 0x21,0x00, -/* @xia0 Ϲ(12x12,V)@ [suki software]*/ -0x7F,0xF0, 0x44,0x80, 0x44,0x80, 0x7F,0xF0, -0x08,0x00, 0x30,0x80, 0x2A,0xB0, 0x2A,0xA0, -0xAA,0xA0, 0x7F,0xE0, 0x2A,0xA0, 0x2A,0xA0, -/* @xia1 Ϻ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x0F,0xC0, 0x08,0x80, 0xFF,0xF0, -0x08,0x80, 0x0F,0xA0, 0x40,0x10, 0x40,0x00, -0x40,0x00, 0x40,0x00, 0x7F,0xF0, 0x44,0x00, -/* @xia2 ϻ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x40,0x00, 0x40,0x00, -0x5F,0xC0, 0x52,0x40, 0x52,0x40, 0x52,0x40, -0x5F,0xF0, 0x52,0x40, 0x52,0x40, 0x52,0x40, -/* @xia3 ϼ(12x12,V)@ [suki software]*/ -0x30,0x00, 0x21,0xF0, 0x29,0x50, 0xA5,0x50, -0xB1,0x50, 0xA9,0xD0, 0xA0,0x00, 0xFD,0x50, -0xA1,0x50, 0xA9,0x50, 0xA5,0x50, 0xB1,0x50, -/* @xia4 Ͻ(12x12,V)@ [suki software]*/ -0x23,0x10, 0x2D,0x10, 0x31,0x20, 0xEF,0xF0, -0x21,0x20, 0x21,0x20, 0x10,0x80, 0x28,0xB0, -0x2A,0xA0, 0xAA,0xA0, 0x7F,0xE0, 0x2A,0xA0, -/* @xia5 Ͼ(12x12,V)@ [suki software]*/ -0x3F,0xF0, 0x22,0x10, 0x22,0x10, 0x3F,0xF0, -0x00,0x00, 0x7F,0xF0, 0x49,0x20, 0x49,0x20, -0x79,0x20, 0x00,0x00, 0x49,0xC0, 0x49,0x30, -/* @xia6 Ͽ(12x12,V)@ [suki software]*/ -0x1F,0xF0, 0x00,0x10, 0xFF,0xF0, 0x00,0x20, -0x1F,0xF0, 0x00,0x80, 0x28,0x80, 0x27,0x80, -0x20,0xB0, 0xFF,0xC0, 0x20,0xB0, 0x21,0x80, -/* @xia7 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x02,0x00, 0x04,0x00, 0x1F,0xF0, -0xE0,0x80, 0x54,0x80, 0x13,0x80, 0x12,0x90, -0x10,0xE0, 0xFF,0x80, 0x10,0xE0, 0x11,0x90, -/* @xia8 (12x12,V)@ [suki software]*/ -0x44,0x20, 0x28,0x40, 0x10,0x80, 0x2D,0x00, -0xC3,0xF0, 0x24,0x80, 0x22,0x80, 0x21,0x90, -0x20,0xE0, 0xFF,0x80, 0x21,0xE0, 0x22,0x90, -/* @xia9 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x40,0x00, 0x40,0x00, 0x40,0x00, -0x40,0x00, 0x40,0x00, 0x40,0x00, 0x7F,0xF0, -0x44,0x00, 0x46,0x00, 0x43,0x80, 0x41,0x00, -/* @sha9 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0xFF,0xF0, 0xA0,0x00, -0xAF,0x90, 0xAA,0xE0, 0xBA,0xB0, 0xAA,0xA0, -0xAA,0xA0, 0xAA,0xA0, 0xAA,0xB0, 0xAF,0xA0, -/* @xia10 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x80,0x00, 0x80,0x00, 0xBF,0x80, -0xAA,0xF0, 0xAA,0xA0, 0xEA,0xA0, 0xAA,0xA0, -0xAA,0xA0, 0xAA,0xA0, 0xAA,0xB0, 0xBF,0xA0, -/* @xia11 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xE0, 0x40,0x40, 0x40,0x40, -0x40,0x40, 0x7F,0xE0, 0x40,0x00, 0x40,0x00, -0x40,0x00, 0x7F,0xF0, 0x44,0x00, 0x42,0x00, -/* @xian0 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x08,0x80, 0xFF,0xF0, 0x09,0x00, -0x0A,0x00, 0x3F,0xF0, 0x24,0x00, 0x47,0xF0, -0x44,0x00, 0x06,0x00, 0x78,0x70, 0x2F,0x80, -/* @xian1 (12x12,V)@ [suki software]*/ -0x06,0x80, 0x1A,0x80, 0xF3,0xF0, 0x12,0x80, -0x12,0x80, 0x7F,0xF0, 0x44,0x00, 0x47,0xF0, -0x84,0x00, 0x06,0x00, 0x18,0x30, 0xEF,0xC0, -/* @xian2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x01,0x00, 0x07,0x00, 0x79,0x00, -0x11,0x10, 0x11,0xE0, 0x11,0x00, 0xFF,0x00, -0x11,0x00, 0x11,0xF0, 0x11,0x00, 0x11,0x00, -/* @xian3 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x01,0x00, 0x06,0x00, 0x1F,0xF0, -0xE0,0x00, 0x40,0x00, 0x07,0xF0, 0x00,0x00, -0x00,0x00, 0x00,0x00, 0xFF,0xF0, 0x00,0x00, -/* @xian4 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x1F,0xE0, 0xE9,0x20, 0x4F,0xE0, -0x59,0x20, 0x6F,0xE0, 0x00,0x00, 0x08,0x20, -0x49,0x20, 0x39,0x20, 0x0F,0xF0, 0x19,0x20, -/* @xian5 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x0E,0x40, 0x34,0xE0, 0xC5,0x40, -0x06,0x40, 0x1A,0x40, 0x42,0x00, 0x42,0x00, -0x42,0x00, 0x7F,0xF0, 0x82,0x00, 0x82,0x00, -/* @xian6 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x3F,0xF0, 0x24,0x00, -0x25,0xF0, 0x25,0x10, 0x25,0x10, 0x25,0xF0, -0x20,0x00, 0xFF,0x10, 0x20,0xE0, 0xA0,0x50, -/* @xian7 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7C,0x00, 0x00,0x00, 0x01,0xF0, -0xFF,0x00, 0x01,0x00, 0x03,0x00, 0xC3,0x70, -0xA5,0x00, 0x95,0x00, 0x89,0x00, 0x95,0xF0, -/* @xian8 (12x12,V)@ [suki software]*/ -0x08,0x80, 0x11,0x00, 0xE3,0xF0, 0x5C,0x00, -0x08,0x80, 0x14,0x80, 0xE4,0x80, 0x27,0xF0, -0x24,0x80, 0x24,0x80, 0x00,0x80, 0x44,0x00, -/* @xian9 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x01,0x00, 0x3F,0xF0, 0x69,0x40, -0xA5,0x20, 0x3F,0xF0, 0x00,0x00, 0x21,0x00, -0x23,0x00, 0xBD,0x10, 0x69,0x60, 0x21,0x80, -/* @xian10 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x9F,0xF0, 0x40,0x00, -0x64,0x10, 0x04,0x60, 0x45,0x80, 0x5F,0xF0, -0x45,0x00, 0x44,0x80, 0x44,0x60, 0x44,0x00, -/* @xian11 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x86,0x30, 0x61,0xC0, 0x06,0x00, -0x20,0x60, 0x26,0x10, 0x2A,0xE0, 0x33,0x00, -0x00,0x00, 0x27,0xE0, 0x20,0x20, 0x3F,0xE0, -/* @xian12 (12x12,V)@ [suki software]*/ -0x40,0x80, 0x4F,0xC0, 0x48,0x80, 0x48,0x80, -0x7C,0xF0, 0x00,0x00, 0x20,0x80, 0x21,0x80, -0x22,0x90, 0xAD,0xA0, 0x61,0x40, 0x21,0x80, -/* @xian13 (12x12,V)@ [suki software]*/ -0x10,0x00, 0x13,0x80, 0xFC,0x50, 0x10,0x60, -0x1F,0x90, 0x22,0x00, 0xAA,0x40, 0x6A,0x70, -0x3F,0xF0, 0x2A,0x40, 0x3F,0xF0, 0x6A,0x50, -/* @xian14 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x80, 0x00,0x40, 0x7C,0x30, -0x54,0x00, 0x57,0xF0, 0x54,0x00, 0x54,0x00, -0x54,0x00, 0x57,0xF0, 0x54,0x10, 0x7C,0x20, -/* @xian15 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x46,0x20, 0x59,0x10, -0x62,0xE0, 0x02,0x00, 0x04,0x40, 0x0A,0x30, -0x12,0x80, 0xE2,0x60, 0x12,0x00, 0x0A,0x30, -/* @xian16 (12x12,V)@ [suki software]*/ -0x40,0x10, 0x42,0x10, 0x42,0x10, 0x7F,0xE0, -0x42,0x20, 0x42,0x20, 0x7F,0xC0, 0x40,0x10, -0x40,0x60, 0x5F,0x80, 0x40,0x70, 0x40,0x00, -/* @xian17 (12x12,V)@ [suki software]*/ -0x20,0x00, 0x27,0xF0, 0x24,0xA0, 0x3F,0xA0, -0xE4,0xF0, 0x27,0xA0, 0x24,0xA0, 0x27,0xF0, -0x24,0x00, 0x04,0xF0, 0xFF,0x00, 0x04,0xE0, -/* @xian18 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x00,0x40, 0x00,0x40, 0x00,0x40, -0x7F,0xC0, 0x52,0x50, 0x52,0x60, 0x52,0x40, -0x52,0x40, 0x52,0x60, 0x52,0x50, 0x7F,0xC0, -/* @xian19 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x48,0x80, -0x48,0x80, 0x7F,0xF0, 0x00,0x80, 0x3E,0x90, -0x2A,0xE0, 0x6A,0x00, 0xAB,0xF0, 0x2A,0x20, -/* @xian20 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x0C,0x00, 0xF3,0xF0, 0x10,0x00, -0x14,0x00, 0x18,0x10, 0x12,0x00, 0x05,0xF0, -0x19,0x20, 0xE2,0x20, 0x20,0x00, 0x25,0x20, -/* @xian21 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x22,0x00, 0x2A,0x80, 0x2A,0x50, -0xAA,0x00, 0x6A,0x20, 0x2A,0x40, 0x3F,0x80, -0x2A,0xB0, 0x6A,0x80, 0xAA,0x80, 0x2A,0xA0, -/* @xian22 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x08,0x80, 0x30,0x80, 0x21,0x80, -0x2E,0x80, 0x24,0xF0, 0xA4,0x80, 0x7F,0x80, -0x24,0x80, 0x24,0xF0, 0x24,0x80, 0x24,0x80, -/* @xian23 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x44,0x20, 0x5A,0x10, -0x61,0xE0, 0x00,0x00, 0x05,0xF0, 0x09,0x20, -0x32,0x20, 0xE0,0x00, 0x20,0x20, 0x29,0x20, -/* @xian24 (12x12,V)@ [suki software]*/ -0x7F,0xF0, 0x40,0x00, 0x4C,0x40, 0x72,0x20, -0x41,0xC0, 0x00,0x00, 0x7F,0xF0, 0x52,0x00, -0x53,0x00, 0x52,0xC0, 0x52,0x30, 0x52,0x40, -/* @xian25 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x06,0x40, 0x1A,0xC0, 0xE3,0x40, -0x46,0x40, 0x00,0x40, 0x09,0x00, 0x09,0x00, -0x09,0x00, 0xFF,0xC0, 0x09,0x30, 0x49,0x20, -/* @xiang0 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x08,0xC0, 0x0B,0x00, 0xFF,0xF0, -0x0C,0x00, 0x0A,0x00, 0x09,0x80, 0x00,0x00, -0x7F,0xF0, 0x44,0x40, 0x44,0x40, 0x44,0x40, -/* @xiang1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x30, 0x7F,0xC0, 0x44,0x30, -0x45,0xC0, 0x7F,0xF0, 0x45,0x00, 0x44,0xC0, -0x40,0x00, 0x5F,0xF0, 0x52,0x40, 0x52,0x40, -/* @xiang2 (12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0xF7,0xF0, 0x14,0x80, -0x14,0x80, 0x00,0x10, 0x5D,0x50, 0x55,0x50, -0x5F,0xF0, 0x41,0x50, 0xDD,0x50, 0x55,0x50, -/* @xiang3 (12x12,V)@ [suki software]*/ -0x10,0x80, 0x10,0x80, 0x51,0x00, 0x51,0x00, -0x52,0xF0, 0x54,0x90, 0x58,0x90, 0xFF,0x90, -0x98,0x90, 0x94,0x90, 0x92,0x90, 0x92,0xF0, -/* @xiang4 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x11,0x00, 0xE1,0x30, 0x41,0xC0, -0x6F,0xF0, 0x51,0x40, 0x41,0x30, 0x48,0x00, -0x17,0xF0, 0xE4,0x90, 0x44,0x90, 0x64,0x90, -/* @xiang5 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x40,0x40, 0x45,0x40, 0x75,0x40, -0x55,0x50, 0x5F,0xF0, 0x75,0x40, 0xC5,0x40, -0x45,0x60, 0x7F,0xD0, 0x55,0x40, 0x55,0x50, -/* @xiang6 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x86,0x20, 0x60,0xF0, 0x03,0x20, -0x08,0xC0, 0x0B,0x00, 0xFF,0xF0, 0x09,0x00, -0x08,0x00, 0x3F,0xF0, 0x24,0x40, 0x24,0x40, -/* @xiang7 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x04,0x40, -0x0C,0xE0, 0x14,0xC0, 0x35,0x40, 0xE5,0x40, -0x46,0x40, 0x04,0x80, 0x0C,0x90, 0x38,0xE0, -/* @xiang8 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x92,0x40, 0x72,0x40, 0x1F,0xF0, -0x32,0x40, 0xD2,0x40, 0x48,0x20, 0x46,0x40, -0x40,0x80, 0x7F,0xF0, 0x08,0x20, 0x46,0x40, -/* @xiang9 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x80, 0x91,0x00, 0x73,0xF0, -0x15,0x00, 0x18,0xC0, 0x00,0x20, 0x92,0x20, -0x52,0x20, 0x32,0x20, 0x1F,0xF0, 0x32,0x20, -/* @xiang10 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x84,0x00, 0x77,0xF0, 0x20,0x00, -0x00,0x10, 0x10,0x40, 0x92,0x40, 0x52,0x40, -0x32,0x40, 0x1F,0xF0, 0x32,0x40, 0x52,0x40, -/* @xiang11 (12x12,V)@ [suki software]*/ -0x10,0x80, 0x13,0x00, 0x1C,0x00, 0xFF,0x80, -0x18,0x10, 0x16,0x00, 0x10,0x00, 0x00,0x20, -0x7F,0x90, 0x54,0x80, 0x54,0x80, 0x54,0x80, -/* @xiang12 (12x12,V)@ [suki software]*/ -0x3F,0xE0, 0x20,0x40, 0x20,0x40, 0x3F,0xE0, -0x00,0x00, 0x1F,0xF0, 0x10,0x00, 0x13,0xF0, -0x32,0x10, 0xD2,0x10, 0x52,0x10, 0x12,0x10, -/* @xiang13 (12x12,V)@ [suki software]*/ -0x00,0x10, 0x20,0x10, 0x20,0x90, 0x2E,0x90, -0x2A,0x90, 0x2A,0x90, 0xAA,0x90, 0x6A,0x90, -0x2A,0xB0, 0x2A,0xD0, 0x2A,0xD0, 0x2E,0x90, -/* @xiang14 (12x12,V)@ [suki software]*/ -0x20,0x10, 0x20,0x10, 0x20,0x10, 0x3F,0xE0, -0x20,0x20, 0x20,0x20, 0x40,0x00, 0x4F,0xF0, -0x48,0x00, 0x58,0x00, 0x6B,0xF0, 0x48,0x10, -/* @xiang15 (12x12,V)@ [suki software]*/ -0x04,0x20, 0x24,0x20, 0x24,0x40, 0x24,0x80, -0x25,0xF0, 0xFE,0x90, 0x24,0x90, 0x24,0x90, -0x24,0x90, 0x24,0x90, 0xFE,0xF0, 0x25,0x00, -/* @xiang16 (12x12,V)@ [suki software]*/ -0x11,0x80, 0x16,0x00, 0xFF,0xF0, 0x14,0x00, -0x13,0x00, 0x10,0x50, 0x3E,0x50, 0xD2,0xA0, -0x53,0xC0, 0x5E,0xF0, 0x72,0x70, 0x52,0x60, -/* @xiang17 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x1F,0xF0, 0xE8,0x00, -0x40,0x50, 0x1F,0x50, 0x32,0x60, 0xD2,0xA0, -0x53,0x90, 0x5E,0x60, 0x72,0x50, 0x52,0xA0, -/* @xiang18 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x3F,0xF0, 0x20,0x00, -0x20,0x00, 0x67,0xF0, 0xA4,0x20, 0x24,0x20, -0x24,0x20, 0x24,0x20, 0x27,0xF0, 0x20,0x00, -/* @xiang19 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x08,0x50, 0x10,0x50, 0x3E,0xA0, -0xD4,0xA0, 0x55,0x50, 0x56,0x50, 0x5D,0xA0, -0x54,0xF0, 0x74,0x40, 0x54,0xA0, 0x17,0x10, -/* @xiao0 (12x12,V)@ [suki software]*/ -0x22,0x00, 0x22,0x00, 0x2A,0xB0, 0x2A,0x80, -0x2A,0x80, 0xFA,0xB0, 0x2A,0x80, 0x3F,0xF0, -0x2A,0x80, 0xFA,0x90, 0x2A,0x80, 0x2F,0x80, -/* @xiao1 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x41,0x00, 0x47,0xF0, 0x7A,0x00, -0x42,0x00, 0x43,0xF0, 0x00,0x00, 0x27,0xF0, -0x14,0x90, 0x04,0x90, 0xFC,0x90, 0x04,0x90, -/* @xiao2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x30,0x00, 0x20,0x00, 0xAA,0x70, -0xAB,0x50, 0xAA,0xD0, 0xA0,0x50, 0xFD,0xD0, -0xA0,0x50, 0xAA,0xD0, 0xAB,0x50, 0xAA,0x70, -/* @xue0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x27,0xF0, 0x1D,0x20, 0x05,0x20, -0xFD,0x20, 0x05,0x20, 0x0D,0x20, 0x77,0xF0, -0x20,0x00, 0x00,0x00, 0x1F,0xF0, 0x00,0x00, -/* @xiao3 (12x12,V)@ [suki software]*/ -0x3F,0xE0, 0x20,0x40, 0x20,0x50, 0x3F,0xD0, -0x08,0x20, 0x08,0x60, 0x28,0xA0, 0x29,0x20, -0xFB,0x20, 0x2D,0x70, 0x29,0xA0, 0x19,0x20, -/* @xiao4 (12x12,V)@ [suki software]*/ -0x00,0x10, 0x08,0x10, 0xE8,0x30, 0xAB,0xF0, -0xAA,0x30, 0xAE,0x50, 0xEA,0x50, 0x0B,0x80, -0x0A,0x50, 0xEA,0x50, 0xAA,0x30, 0xAA,0x30, -/* @xiao5 (12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0x34,0x80, 0xE7,0xF0, -0x24,0x80, 0x24,0x80, 0x20,0x00, 0x4F,0xF0, -0x29,0x20, 0x19,0x20, 0xF9,0x20, 0x09,0x20, -/* @xiao6 (12x12,V)@ [suki software]*/ -0x10,0x20, 0x0C,0x20, 0x80,0xF0, 0x63,0x00, -0x0C,0x00, 0x00,0x00, 0x27,0xF0, 0x1C,0x90, -0x04,0x90, 0xFC,0x90, 0x04,0x90, 0x0C,0x90, -/* @xiao7 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x30,0x00, 0x20,0x00, 0x33,0xF0, -0x2A,0x90, 0x26,0x90, 0xA2,0x90, 0x7E,0x90, -0x22,0x90, 0x26,0x90, 0x3A,0x90, 0x2B,0xF0, -/* @xiao8 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x20, 0x80,0x70, 0x63,0x80, -0x0C,0x00, 0x00,0x40, 0x04,0x80, 0x95,0xF0, -0x57,0x50, 0x2D,0x50, 0x25,0x50, 0x55,0x50, -/* @xiao9 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x42,0x20, 0x42,0x20, -0x7F,0xF0, 0x00,0x80, 0x21,0x90, 0x21,0xE0, -0xE2,0x80, 0x3A,0x80, 0x24,0xF0, 0x26,0x80, -/* @xiao10 С(12x12,V)@ [suki software]*/ -0x00,0x20, 0x00,0x40, 0x00,0x80, 0x03,0x00, -0x0E,0x00, 0x04,0x00, 0x00,0x00, 0xFF,0xF0, -0x00,0x00, 0x08,0x00, 0x04,0x00, 0x03,0x00, -/* @xiao11 Т(12x12,V)@ [suki software]*/ -0x08,0x20, 0x08,0x20, 0x08,0x40, 0x28,0x40, -0x28,0xA0, 0x28,0xA0, 0x29,0x20, 0xFB,0x20, -0x2D,0x70, 0x2D,0xA0, 0x29,0x20, 0x19,0x20, -/* @xiao12 У(12x12,V)@ [suki software]*/ -0x10,0x40, 0x11,0x80, 0x16,0x00, 0xFF,0xF0, -0x14,0x00, 0x12,0x00, 0x00,0x40, 0x11,0x80, -0x16,0x60, 0x90,0x10, 0x70,0x10, 0x10,0x60, -/* @xiao13 Ф(12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x40,0x00, 0x27,0xF0, -0x15,0x20, 0x05,0x20, 0x05,0x20, 0xFD,0x20, -0x05,0x20, 0x05,0x20, 0x15,0x20, 0x25,0x20, -/* @xiao14 Х(12x12,V)@ [suki software]*/ -0x3F,0xE0, 0x20,0x40, 0x20,0x40, 0x3F,0xE0, -0x00,0x00, 0x2A,0xF0, 0x2A,0x30, 0x2A,0x40, -0xFF,0xF0, 0x2A,0x80, 0x2A,0x70, 0x2A,0x20, -/* @xiao15 Ц(12x12,V)@ [suki software]*/ -0x08,0x00, 0x30,0x40, 0xC2,0x40, 0x62,0x40, -0x52,0x40, 0x42,0x40, 0x4A,0x70, 0x13,0xC0, -0xE4,0x60, 0x44,0x50, 0x64,0x40, 0x54,0x40, -/* @xiao16 Ч(12x12,V)@ [suki software]*/ -0x00,0x00, 0x10,0x80, 0x13,0x80, 0x9C,0x40, -0x70,0x30, 0x18,0x50, 0x15,0x80, 0x12,0x00, -0x02,0x00, 0x0F,0x00, 0xF8,0xC0, 0x48,0x30, -/* @xie0 Ш(12x12,V)@ [suki software]*/ -0x11,0x80, 0x16,0x00, 0xFF,0xF0, 0x14,0x00, -0x12,0x00, 0x2A,0x40, 0x2A,0x40, 0xFF,0xC0, -0x2A,0x50, 0x2A,0xE0, 0x41,0x50, 0x7E,0x40, -/* @xie1 Щ(12x12,V)@ [suki software]*/ -0x00,0x80, 0x3F,0x80, 0x10,0xA0, 0x01,0x20, -0xFF,0x20, 0x11,0x20, 0x12,0x20, 0x12,0x20, -0x00,0x20, 0xFF,0xA0, 0x08,0xA0, 0x10,0xA0, -/* @xie2 Ъ(12x12,V)@ [suki software]*/ -0x00,0x80, 0x00,0xF0, 0x7D,0x10, 0x57,0x20, -0x55,0xC0, 0x55,0x20, 0x7D,0x10, 0x01,0xF0, -0x04,0x00, 0x18,0x10, 0x73,0xE0, 0x10,0x10, -/* @xie3 Ы(12x12,V)@ [suki software]*/ -0x00,0x00, 0x1F,0xC0, 0x10,0x80, 0xFF,0xF0, -0x10,0xA0, 0x1F,0xD0, 0x00,0x80, 0x7F,0xF0, -0x55,0x10, 0x55,0x20, 0x55,0xC0, 0x55,0x20, -/* @xie4 Ь(12x12,V)@ [suki software]*/ -0x20,0x10, 0x23,0x90, 0xFA,0x90, 0x2F,0xF0, -0x2A,0x90, 0xFA,0x90, 0x23,0x90, 0x12,0x20, -0x12,0x20, 0x12,0x20, 0xFE,0xF0, 0x12,0x20, -/* @xie5 Э(12x12,V)@ [suki software]*/ -0x08,0x00, 0x08,0x00, 0xFF,0xF0, 0x08,0x00, -0x08,0x00, 0x08,0xC0, 0x13,0x00, 0x10,0x10, -0x10,0xE0, 0xFF,0x00, 0x10,0x00, 0x10,0x00, -/* @jia18 Ю(12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x11,0x00, 0x12,0x00, 0x04,0x80, 0x12,0x80, -0x11,0xB0, 0xFF,0xC0, 0x11,0xA0, 0x12,0x90, -/* @xie6 Я(12x12,V)@ [suki software]*/ -0x08,0x20, 0x08,0x20, 0x08,0x40, 0xFF,0xF0, -0x09,0x00, 0x08,0x00, 0x3F,0xA0, 0xEA,0xA0, -0x2A,0xB0, 0xAA,0xA0, 0x7F,0xA0, 0x2A,0xA0, -/* @xie7 а(12x12,V)@ [suki software]*/ -0x00,0x00, 0x44,0x00, 0x7C,0x10, 0x44,0x20, -0x44,0xC0, 0x45,0x00, 0x7F,0xF0, 0x44,0x00, -0x00,0x00, 0x7F,0xF0, 0x40,0x00, 0x44,0x20, -/* @xie8 б(12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0xB0, 0x0C,0x80, 0x34,0x80, -0xC7,0xF0, 0x24,0x80, 0x14,0xA0, 0x18,0x90, -0x02,0x40, 0x21,0x40, 0x18,0x40, 0x00,0x40, -/* @xie9 в(12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x44,0x80, 0x44,0x80, -0x7F,0xF0, 0x00,0x40, 0x13,0x80, 0x10,0x00, -0x10,0x70, 0xFF,0x80, 0x10,0x00, 0x10,0x00, -/* @xie10 г(12x12,V)@ [suki software]*/ -0x02,0x00, 0x82,0x00, 0x73,0xF0, 0x20,0x00, -0x00,0x00, 0xFF,0x00, 0x12,0xF0, 0x14,0x90, -0x11,0x90, 0x02,0x90, 0xFC,0x90, 0x12,0x90, -/* @xie11 д(12x12,V)@ [suki software]*/ -0x00,0x00, 0x10,0x20, 0x60,0x20, 0x41,0x20, -0x5F,0xA0, 0x49,0x20, 0x49,0x20, 0x49,0x20, -0x49,0x20, 0x49,0x20, 0x49,0x60, 0x49,0x20, -/* @xie12 е(12x12,V)@ [suki software]*/ -0x08,0x60, 0x0B,0x80, 0xFF,0xF0, 0x0A,0x00, -0x09,0x00, 0x00,0x90, 0x17,0xE0, 0x10,0x80, -0x17,0xF0, 0x10,0x80, 0xFF,0xC0, 0x10,0x30, -/* @xie13 ж(12x12,V)@ [suki software]*/ -0x00,0x00, 0x14,0x00, 0xE5,0xF0, 0x24,0x00, -0x24,0x00, 0x3F,0xF0, 0x24,0x90, 0x24,0x90, -0x00,0x00, 0x7F,0xF0, 0x40,0x00, 0x40,0x10, -/* @xie14 з(12x12,V)@ [suki software]*/ -0x10,0x40, 0x20,0x80, 0xDF,0x00, 0x55,0x70, -0x5F,0xD0, 0x75,0x50, 0x5F,0xD0, 0x08,0xF0, -0x52,0x50, 0x6D,0x50, 0x45,0x50, 0x4F,0xF0, -/* @xie15 и(12x12,V)@ [suki software]*/ -0x0E,0x00, 0x00,0x00, 0xFF,0xF0, 0x08,0x00, -0x1F,0xF0, 0xE9,0x40, 0x4F,0xF0, 0x59,0x40, -0x6F,0xF0, 0x04,0xA0, 0x4B,0x20, 0x71,0x20, -/* @xie16 й(12x12,V)@ [suki software]*/ -0x08,0x40, 0x86,0x40, 0x60,0x70, 0x03,0x80, -0x0C,0x00, 0x04,0x00, 0x7F,0xF0, 0x04,0x00, -0x04,0x00, 0x7F,0xE0, 0x04,0x20, 0x04,0x20, -/* @xie17 к(12x12,V)@ [suki software]*/ -0x08,0x20, 0x86,0x20, 0x60,0xF0, 0x03,0x00, -0x0C,0x00, 0x00,0x10, 0x60,0x10, 0x43,0x90, -0x5C,0x90, 0x44,0x90, 0x44,0x90, 0x44,0x90, -/* @xie18 л(12x12,V)@ [suki software]*/ -0x02,0x00, 0x42,0x00, 0x33,0xF0, 0x20,0x00, -0x00,0x90, 0x3F,0x80, 0x6A,0xB0, 0xAA,0xC0, -0x3F,0xF0, 0x0A,0x00, 0x09,0x80, 0x08,0x00, -/* @xie19 м(12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0xFF,0xF0, 0x90,0x00, -0x90,0x00, 0x95,0xF0, 0x93,0x50, 0x91,0x50, -0x9F,0x50, 0x91,0x50, 0x93,0x50, 0x9D,0x50, -/* @xin0 н(12x12,V)@ [suki software]*/ -0x20,0x00, 0x24,0xA0, 0x26,0xA0, 0x35,0xA0, -0x2C,0xF0, 0xF5,0xA0, 0x26,0xA0, 0x24,0xA0, -0x20,0x00, 0xF7,0xF0, 0x24,0x80, 0x24,0x80, -/* @xin1 о(12x12,V)@ [suki software]*/ -0x00,0x00, 0x20,0x70, 0x20,0x00, 0x20,0x00, -0x21,0xF0, 0xF8,0x00, 0x24,0x00, 0x23,0x00, -0x21,0xC0, 0x20,0x00, 0xF8,0x00, 0x21,0x10, -/* @xin2 п(12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0xF4,0x80, 0x27,0xF0, -0x24,0x80, 0x24,0x80, 0x01,0x00, 0x21,0x20, -0x29,0x20, 0xA5,0x20, 0x63,0xF0, 0x25,0x20, -/* @xin3 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x10, 0x7F,0xE0, 0x44,0x00, -0x44,0x00, 0x47,0xF0, 0x84,0x00, 0x82,0x00, -0x0C,0x00, 0xF0,0x30, 0x17,0xC0, 0x10,0x20, -/* @xin4 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x21,0x20, 0x21,0x20, 0x29,0x20, -0x25,0x20, 0x23,0x20, 0xA1,0x20, 0x61,0xF0, -0x21,0x20, 0x23,0x20, 0x25,0x20, 0x29,0x20, -/* @xin5 (12x12,V)@ [suki software]*/ -0x04,0x80, 0x24,0x80, 0x34,0xB0, 0xAC,0x80, -0x67,0xF0, 0x2C,0xA0, 0x34,0x90, 0x24,0x80, -0x00,0x10, 0x3F,0xE0, 0x24,0x00, 0x24,0x00, -/* @xin6 (12x12,V)@ [suki software]*/ -0x0F,0x00, 0x00,0x00, 0xFF,0xF0, 0x10,0x00, -0x0C,0x00, 0x00,0x00, 0x7F,0xF0, 0x42,0x00, -0x42,0x00, 0x42,0x00, 0xC3,0xF0, 0x82,0x00, -/* @xin7 (12x12,V)@ [suki software]*/ -0x00,0x20, 0x01,0xC0, 0x00,0x00, 0x00,0x00, -0x0F,0xF0, 0x00,0x00, 0x80,0x00, 0x40,0x00, -0x38,0x00, 0x10,0x00, 0x00,0x00, 0x02,0x10, -/* @xin8 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x02,0x00, 0x0C,0x00, 0x3F,0xF0, -0xE0,0x00, 0x50,0x00, 0x15,0x70, 0x15,0x40, -0x95,0x40, 0x75,0x40, 0x55,0x40, 0x15,0x40, -/* @xin9 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x3F,0xF0, 0x60,0x00, 0xBF,0xF0, -0x20,0x10, 0x3F,0xF0, 0x20,0x10, 0x3F,0xF0, -0x24,0x50, 0x1C,0x40, 0x04,0x40, 0xFF,0xF0, -/* @xing0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x10, 0x00,0x60, 0x7D,0x80, -0x54,0x90, 0x54,0x90, 0x54,0x90, 0x57,0xF0, -0x54,0x90, 0x54,0x90, 0x54,0x90, 0x54,0x90, -/* @xing1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x48,0x80, 0x48,0x80, -0x7F,0xF0, 0x00,0x00, 0x00,0x20, 0x7D,0xD0, -0x54,0x90, 0x54,0x90, 0x57,0xF0, 0x54,0x90, -/* @xing2 (12x12,V)@ [suki software]*/ -0x82,0x20, 0x44,0x40, 0x29,0x80, 0x1A,0x00, -0x27,0xF0, 0xC0,0x10, 0x00,0x60, 0x7F,0x90, -0x54,0x90, 0x54,0x90, 0x57,0xF0, 0x54,0x90, -/* @xing3 (12x12,V)@ [suki software]*/ -0x0E,0x00, 0x00,0x00, 0xFF,0xF0, 0x10,0x00, -0x0C,0x20, 0x00,0x40, 0x7D,0x90, 0x54,0x90, -0x54,0x90, 0x57,0xF0, 0x54,0x90, 0x54,0x90, -/* @xing4 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x41,0x00, 0x31,0x00, 0x1D,0x10, -0x09,0x70, 0x41,0x20, 0x31,0x00, 0x1D,0x00, -0x09,0x00, 0x01,0x40, 0x03,0x20, 0x0D,0x10, -/* @xing5 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x42,0x00, 0x42,0x10, 0x7F,0xE0, -0x42,0x00, 0x42,0x00, 0x7F,0xF0, 0x42,0x00, -0x42,0x00, 0x00,0x00, 0x3F,0xE0, 0x00,0x00, -/* @xing6 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x48,0x40, 0x49,0x90, 0x7E,0x10, -0x48,0x10, 0x48,0x10, 0x7F,0x90, 0x48,0x70, -0x48,0x10, 0x08,0x10, 0x3F,0x10, 0x00,0x50, -/* @xing7 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x42,0x00, 0x42,0x00, 0x7F,0xF0, -0x42,0x00, 0x42,0x00, 0x7F,0xF0, 0x42,0x00, -0x42,0x20, 0x02,0x40, 0x08,0x80, 0x11,0x00, -/* @xing8 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x42,0x00, 0x42,0x10, 0x7F,0xE0, -0x42,0x00, 0x42,0x00, 0x7F,0xF0, 0x42,0x00, -0x02,0x00, 0x00,0x00, 0x7F,0xF0, 0x44,0x10, -/* @hang3 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x10,0x80, 0x21,0x00, 0x63,0xF0, -0xCE,0x00, 0x44,0x00, 0x02,0x00, 0x22,0x00, -0x22,0x00, 0x22,0x00, 0x23,0xF0, 0x22,0x00, -/* @xing9 (12x12,V)@ [suki software]*/ -0x4F,0xF0, 0x48,0x60, 0x7F,0xA0, 0x48,0x20, -0x7F,0xA0, 0x48,0xA0, 0x4F,0xF0, 0x00,0x40, -0x7D,0x90, 0x54,0x90, 0x57,0xF0, 0x54,0x90, -/* @xing10 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x08,0x10, 0x28,0x90, 0x2C,0x90, -0x2A,0x90, 0x29,0x90, 0x28,0x90, 0xF8,0xF0, -0x28,0x90, 0x29,0x90, 0x2E,0x90, 0x2A,0x90, -/* @xing11 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x10,0x80, 0x10,0x80, 0x11,0x30, -0x11,0x20, 0x12,0x20, 0x14,0x20, 0x7F,0xE0, -0x18,0x20, 0x14,0x20, 0x12,0x20, 0x13,0x30, -/* @xing12 (12x12,V)@ [suki software]*/ -0x0E,0x00, 0x00,0x00, 0xFF,0xF0, 0x10,0x00, -0x0C,0x00, 0x02,0x00, 0x0C,0x00, 0x78,0x80, -0x08,0x80, 0x08,0x80, 0xFF,0xF0, 0x08,0x80, -/* @xing13 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x09,0x80, 0xFE,0x50, 0x48,0x20, -0x08,0xD0, 0x0F,0x00, 0x02,0x00, 0x3C,0x40, -0x08,0x40, 0x08,0x40, 0xFF,0xF0, 0x08,0x40, -/* @xiong0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x7F,0x00, -0x42,0x10, 0x43,0xE0, 0x42,0x00, 0x42,0x00, -0x42,0x00, 0x43,0xF0, 0x42,0x00, 0x7F,0x00, -/* @xiong1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x1F,0xF0, 0x40,0x10, -0x20,0x20, 0x10,0x40, 0x0D,0x80, 0x02,0x00, -0x07,0x00, 0x08,0xC0, 0x70,0x60, 0x20,0x00, -/* @xiong2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x48,0x80, 0x48,0x80, -0x7F,0xF0, 0x00,0x00, 0x0B,0xF0, 0xF4,0x50, -0x22,0x90, 0x21,0x10, 0x2E,0x90, 0x24,0x50, -/* @xiong3 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x0B,0xF0, 0x30,0x30, -0xE4,0x50, 0x22,0x90, 0x21,0x10, 0x22,0x90, -0x2C,0x70, 0x20,0x10, 0x27,0xF0, 0x20,0x00, -/* @xiong4 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x86,0x20, 0x60,0xF0, 0x0F,0x00, -0x00,0x00, 0x07,0xF0, 0x20,0x00, 0x10,0x30, -0x0C,0xC0, 0x03,0x00, 0x1C,0xC0, 0x60,0x30, -/* @xiong5 (12x12,V)@ [suki software]*/ -0x10,0x20, 0x11,0xC0, 0x1E,0x30, 0xF0,0xC0, -0x13,0x10, 0x10,0x00, 0x04,0x00, 0x1F,0xF0, -0xF2,0x40, 0x12,0x40, 0x92,0x40, 0x7F,0xF0, -/* @xiong6 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x18,0x00, 0x37,0xF0, 0xD5,0x40, -0x15,0x40, 0x55,0x50, 0x37,0xF0, 0x18,0x00, -0x00,0x00, 0xF9,0xE0, 0x24,0x90, 0x64,0x90, -/* @xiu1 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x03,0x00, 0x0F,0xF0, 0xF0,0x00, -0x40,0x00, 0x08,0x10, 0x08,0x60, 0x09,0x80, -0x0E,0x00, 0xFF,0xF0, 0x4B,0x00, 0x08,0xC0, -/* @xiu2 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x08,0x00, 0x3F,0xF0, 0xE0,0x00, -0x4F,0xC0, 0x04,0x20, 0x19,0x20, 0xF1,0x50, -0x2A,0xD0, 0x25,0xA0, 0x24,0xA0, 0x2A,0x40, -/* @xiu3 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x02,0x00, 0x22,0x00, 0x2A,0x10, -0xAA,0x20, 0x6A,0xD0, 0x2B,0x50, 0x3E,0x70, -0x2A,0x50, 0x2A,0x50, 0x6A,0x50, 0xAA,0x70, -/* @xiu4 (12x12,V)@ [suki software]*/ -0x10,0x20, 0x10,0xC0, 0x13,0x00, 0xFF,0xF0, -0x12,0x00, 0x11,0x80, 0x50,0x00, 0x40,0x00, -0x42,0x00, 0x7E,0x00, 0x42,0x00, 0x42,0x00, -/* @xiu5 (12x12,V)@ [suki software]*/ -0x3F,0xF0, 0x20,0x40, 0x20,0x40, 0x3F,0xE0, -0x00,0x20, 0x00,0x20, 0x3F,0xA0, 0x2A,0xB0, -0x6A,0xE0, 0xAA,0xB0, 0x2A,0xA0, 0x2A,0xA0, -/* @xiu6 (12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0xF7,0xF0, 0x24,0x80, -0x24,0x80, 0x24,0x80, 0x12,0x00, 0x55,0x30, -0x59,0xC0, 0x7F,0x00, 0x59,0x20, 0x55,0xE0, -/* @xiu7 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x11,0x00, 0x52,0x00, 0x52,0x80, -0x54,0x80, 0x54,0x90, 0x58,0xE0, 0x7F,0x80, -0x98,0x90, 0x98,0xB0, 0x94,0xD0, 0x94,0x90, -/* @xiu8 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x80, 0x91,0x00, 0x73,0xF0, -0x54,0xC0, 0x19,0x20, 0x00,0x00, 0x0F,0xF0, -0x08,0x80, 0x08,0x80, 0xFF,0xF0, 0x08,0x80, -/* @xiu9 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x0C,0x80, 0x15,0x80, 0xE6,0x90, -0x4C,0x90, 0x00,0x10, 0x52,0x80, 0x54,0x90, -0x58,0xE0, 0x7F,0x80, 0xD0,0x90, 0x98,0xF0, -/* @xu0 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x08,0x30, 0xFF,0xE0, 0x08,0x40, -0x08,0x40, 0x1F,0xF0, 0x10,0x20, 0x14,0x10, -0x14,0xF0, 0xFE,0x00, 0x55,0x00, 0x55,0xF0, -/* @xu1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x1F,0xF0, 0x10,0x80, -0x10,0x80, 0x10,0x80, 0x10,0x80, 0x10,0x00, -0x10,0x10, 0xFF,0xA0, 0x10,0x70, 0x50,0x80, -/* @xu2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x30,0x80, 0xA0,0xB0, 0xAA,0xA0, -0xAA,0xA0, 0xAA,0xB0, 0xA0,0xE0, 0xFE,0xA0, -0xA0,0xA0, 0xAA,0xB0, 0xAA,0xA0, 0xAA,0xA0, -/* @xu3 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x1F,0xF0, 0x12,0x20, -0x12,0x10, 0x12,0x00, 0x12,0x70, 0xFF,0x00, -0x55,0x00, 0x55,0x70, 0x55,0x00, 0x55,0x00, -/* @xu4 (12x12,V)@ [suki software]*/ -0x1F,0xE0, 0x10,0x40, 0x10,0x40, 0x1F,0xE0, -0x00,0x00, 0x1F,0xF0, 0x12,0x10, 0x12,0x00, -0x1E,0x70, 0xF5,0x00, 0x55,0x00, 0x55,0x70, -/* @xu5 (12x12,V)@ [suki software]*/ -0x10,0x80, 0x10,0x80, 0x21,0x00, 0x42,0x10, -0x84,0x20, 0x08,0x40, 0x40,0x00, 0x4F,0xE0, -0x48,0x00, 0x58,0x10, 0x6B,0xE0, 0x48,0x10, -/* @xu6 (12x12,V)@ [suki software]*/ -0x08,0x80, 0x11,0x00, 0x23,0xF0, 0xCE,0x00, -0x44,0x00, 0x04,0x80, 0x08,0xB0, 0x14,0x90, -0x24,0x80, 0xC7,0xF0, 0x24,0x80, 0x14,0xA0, -/* @hu18 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x82,0x00, 0x72,0x00, 0x23,0xF0, -0x00,0x00, 0x02,0x80, 0x0C,0x80, 0xF0,0x80, -0x10,0x80, 0x10,0x80, 0x1F,0xF0, 0x10,0x80, -/* @xu7 (12x12,V)@ [suki software]*/ -0x40,0x00, 0x48,0x00, 0x48,0x50, 0x4A,0xD0, -0x4E,0xD0, 0xEA,0xD0, 0x4B,0x50, 0x5B,0x50, -0x4A,0x50, 0xEE,0x50, 0x4C,0x50, 0x49,0x50, -/* @xu8 (12x12,V)@ [suki software]*/ -0x4F,0xF0, 0x48,0xA0, 0x7F,0x20, 0x48,0x20, -0x7F,0x20, 0x49,0x20, 0x4F,0xF0, 0x40,0x00, -0x0F,0xF0, 0x10,0x20, 0x0C,0xC0, 0x07,0x00, -/* @xu9 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0xB0, 0x0C,0x90, 0x34,0x80, -0xC7,0xF0, 0x44,0x80, 0x24,0xA0, 0x18,0x90, -0x10,0x00, 0x3F,0x00, 0x20,0xD0, 0x20,0x30, -/* @xu10 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x08,0x00, 0x08,0x70, 0xFF,0x80, -0x08,0x00, 0x0F,0xF0, 0x00,0x00, 0x00,0x00, -0x7F,0xE0, 0x44,0x20, 0x44,0x20, 0x44,0x20, -/* @xu11 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x3F,0xF0, 0x20,0x00, -0x20,0x80, 0x28,0x80, 0x28,0x80, 0xAC,0x80, -0x6A,0x80, 0x29,0xF0, 0x2A,0x80, 0x2C,0x80, -/* @chu16 (12x12,V)@ [suki software]*/ -0x20,0x00, 0x20,0x00, 0x25,0x00, 0x25,0x70, -0x2F,0x50, 0x2F,0x50, 0xB5,0x50, 0x65,0x70, -0x29,0x50, 0x29,0x50, 0x25,0x50, 0x23,0x50, -/* @xu12 (12x12,V)@ [suki software]*/ -0x0E,0x00, 0x00,0x00, 0xFF,0xF0, 0x10,0x00, -0x0C,0x00, 0x00,0x00, 0x1F,0xF0, 0x30,0x00, -0xDF,0xF0, 0x10,0x00, 0x1F,0xF0, 0x10,0x00, -/* @xu13 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x42,0x00, 0x52,0x00, 0x6A,0x00, -0xC4,0xA0, 0x4D,0xA0, 0x72,0xE0, 0x40,0xA0, -0x00,0xB0, 0x7D,0x20, 0x44,0x20, 0x44,0x60, -/* @xu14 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x0F,0x80, 0xF8,0x50, 0x48,0x60, -0x0F,0x90, 0x01,0x00, 0x46,0x00, 0x58,0xF0, -0x44,0xA0, 0x42,0xA0, 0x7E,0xA0, 0x52,0xA0, -/* @xu15 (12x12,V)@ [suki software]*/ -0x04,0x40, 0x0C,0xC0, 0x35,0x40, 0xC6,0x40, -0x0C,0x40, 0x00,0x20, 0x04,0x40, 0x24,0xF0, -0x24,0x90, 0xFD,0x90, 0x26,0x90, 0x24,0x90, -/* @xu16 (12x12,V)@ [suki software]*/ -0x04,0x40, 0x0C,0xC0, 0x15,0x40, 0xE6,0x40, -0x48,0x00, 0x00,0x40, 0x09,0x40, 0x2C,0xC0, -0x2B,0x40, 0xF8,0x50, 0x2F,0xE0, 0x28,0x50, -/* @xuan0 (12x12,V)@ [suki software]*/ -0x21,0x10, 0x23,0x10, 0x2D,0x20, 0xF1,0x20, -0x27,0xF0, 0x21,0x40, 0x20,0x40, 0x41,0x00, -0x41,0x00, 0x41,0x00, 0x7F,0xF0, 0x41,0x00, -/* @xuan1 (12x12,V)@ [suki software]*/ -0x3F,0xE0, 0x20,0x40, 0x20,0x40, 0x3F,0xE0, -0x00,0x00, 0x10,0x00, 0x25,0xF0, 0x25,0x50, -0xA5,0x50, 0x65,0x50, 0x25,0x50, 0x25,0x50, -/* @xuan2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x10,0x00, 0x20,0x00, 0x28,0x00, -0x2B,0xF0, 0x2A,0x90, 0xAA,0x90, 0x6A,0x90, -0x2A,0x90, 0x2A,0x90, 0x2A,0x90, 0x2B,0xF0, -/* @xuan3 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x02,0x00, 0x02,0x00, 0x02,0x40, -0xFE,0xD0, 0xAB,0x40, 0xAA,0x40, 0xAA,0x50, -0xAA,0x40, 0xAA,0x40, 0xAA,0x40, 0xFE,0xC0, -/* @xuan4 (12x12,V)@ [suki software]*/ -0x10,0x00, 0x10,0x10, 0x9F,0xE0, 0x72,0x00, -0x12,0x00, 0x13,0xF0, 0x08,0x00, 0x15,0xF0, -0xE4,0x00, 0x24,0x00, 0x27,0xF0, 0x24,0x40, -/* @xuan5 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x10,0x00, 0x10,0x00, 0x10,0x80, -0x11,0xC0, 0x12,0x90, 0x14,0xA0, 0x98,0xC0, -0x70,0x80, 0x11,0x00, 0x16,0x20, 0x10,0x10, -/* @xuan6 ѡ(12x12,V)@ [suki software]*/ -0x02,0x00, 0x02,0x00, 0x42,0x00, 0x33,0xF0, -0x00,0x00, 0x0A,0x10, 0x72,0x60, 0x13,0x80, -0x12,0x00, 0xFE,0x00, 0x13,0xE0, 0x12,0x10, -/* @xuan7 Ѣ(12x12,V)@ [suki software]*/ -0x08,0x40, 0x04,0x80, 0x3F,0xF0, 0x22,0x00, -0x27,0xF0, 0x3A,0xA0, 0x2B,0xE0, 0xAE,0xA0, -0x63,0xF0, 0x2A,0x00, 0x26,0x40, 0x23,0xF0, -/* @xuan8 ѣ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x44,0x40, 0x44,0x40, -0x7F,0xF0, 0x10,0x00, 0x10,0x00, 0x11,0x00, -0x93,0x10, 0x7D,0x20, 0x11,0x40, 0x11,0x80, -/* @xun1 Ѥ(12x12,V)@ [suki software]*/ -0x04,0x40, 0x0C,0xC0, 0x35,0x40, 0xC6,0x40, -0x08,0x40, 0x04,0x00, 0x08,0x00, 0x37,0xF0, -0xD4,0x90, 0x14,0x90, 0x14,0x90, 0x17,0xF0, -/* @xue1 ѥ(12x12,V)@ [suki software]*/ -0x20,0x10, 0x23,0x90, 0xFA,0x90, 0x2F,0xF0, -0x2A,0x90, 0xFA,0x90, 0x27,0x90, 0x08,0x00, -0x1F,0xF0, 0xE0,0x80, 0x01,0x00, 0xFF,0xF0, -/* @xue2 Ѧ(12x12,V)@ [suki software]*/ -0x20,0x00, 0x27,0xF0, 0x2C,0xA0, 0x24,0xA0, -0xF4,0xA0, 0x27,0xB0, 0x20,0x40, 0x26,0x50, -0x25,0x50, 0xF4,0xD0, 0x2C,0x70, 0x24,0xD0, -/* @xue3 ѧ(12x12,V)@ [suki software]*/ -0x02,0x00, 0x0C,0x40, 0x08,0x40, 0x48,0x40, -0x3A,0x40, 0x2A,0x40, 0x0A,0x40, 0x8A,0x40, -0x7A,0xF0, 0x2B,0x40, 0x0A,0x40, 0x18,0x40, -/* @xue4 Ѩ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x1C,0x00, 0x10,0x00, -0x10,0x30, 0x13,0xC0, 0x90,0x00, 0x70,0x00, -0x10,0x00, 0x13,0x80, 0x10,0x70, 0x10,0x00, -/* @xue5 ѩ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x18,0x00, 0x50,0x40, 0x55,0x50, -0x55,0x50, 0x55,0x50, 0x50,0x50, 0x7F,0x50, -0x50,0x50, 0x55,0x50, 0x55,0x50, 0x55,0x50, -/* @xue6 Ѫ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x0F,0xF0, 0x08,0x00, -0x08,0x00, 0x1F,0xF0, 0xE8,0x00, 0x48,0x00, -0x0F,0xF0, 0x08,0x00, 0x08,0x00, 0x08,0x00, -/* @xun2 ѫ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x7B,0xF0, 0x4A,0x00, 0x4A,0x00, -0x4A,0xF0, 0x4A,0x00, 0x4A,0x00, 0x7B,0xF0, -0x08,0x00, 0x08,0x00, 0xFF,0xF0, 0x08,0x00, -/* @xun3 Ѭ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x10,0x00, 0x50,0x20, 0x57,0xA0, -0x54,0xA0, 0x57,0xA0, 0x54,0xA0, 0x7F,0xF0, -0x94,0xA0, 0x97,0xA0, 0x94,0xA0, 0x97,0xA0, -/* @xun4 ѭ(12x12,V)@ [suki software]*/ -0x09,0x00, 0x12,0x00, 0x27,0xF0, 0xDC,0x00, -0x48,0x00, 0x00,0x00, 0x7F,0xF0, 0x48,0x00, -0x4B,0xF0, 0x4A,0x90, 0xFE,0x90, 0x8A,0x90, -/* @xun5 Ѯ(12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x08,0x00, 0x37,0xF0, -0xE4,0x90, 0x24,0x90, 0x24,0x90, 0x24,0x90, -0x24,0x90, 0x27,0xF0, 0x20,0x00, 0x20,0x00, -/* @xun6 ѯ(12x12,V)@ [suki software]*/ -0x02,0x00, 0x42,0x00, 0x33,0xF0, 0x20,0x00, -0x00,0x00, 0x08,0x00, 0x17,0xF0, 0xE4,0x90, -0x24,0x90, 0x24,0x90, 0x27,0xF0, 0x20,0x00, -/* @xun7 Ѱ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x80, 0x42,0x80, 0x52,0x80, -0x52,0xA0, 0x52,0x90, 0x52,0x80, 0x52,0x80, -0x52,0x80, 0x52,0x80, 0x53,0xF0, 0x52,0x80, -/* @xun8 ѱ(12x12,V)@ [suki software]*/ -0x00,0x10, 0x40,0x10, 0x5F,0x10, 0x41,0x20, -0x41,0x20, 0x7F,0x00, 0x01,0xF0, 0x00,0x00, -0xFF,0xF0, 0x00,0x00, 0x3F,0xF0, 0x00,0x00, -/* @xun9 Ѳ(12x12,V)@ [suki software]*/ -0x02,0x00, 0x42,0x00, 0x32,0x00, 0x03,0xF0, -0x02,0x00, 0x05,0x00, 0x18,0xC0, 0xE0,0x30, -0x46,0x00, 0x19,0x80, 0xE0,0x70, 0x46,0x20, -/* @xun10 ѳ(12x12,V)@ [suki software]*/ -0x40,0x80, 0x43,0x00, 0x4D,0x00, 0x78,0xB0, -0x48,0xC0, 0x4F,0x00, 0x44,0x00, 0x08,0x00, -0x33,0xF0, 0xD2,0x40, 0x12,0x40, 0x13,0xF0, -/* @xun11 Ѵ(12x12,V)@ [suki software]*/ -0x08,0x20, 0x04,0x20, 0x80,0x70, 0x61,0x80, -0x06,0x00, 0x42,0x00, 0x42,0x00, 0x7F,0xF0, -0x42,0x00, 0x42,0x00, 0x40,0x00, 0x7F,0xC0, -/* @xun12 ѵ(12x12,V)@ [suki software]*/ -0x02,0x00, 0x82,0x00, 0x72,0x00, 0x23,0xF0, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0xFF,0xF0, -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x00,0x00, -/* @xun13 Ѷ(12x12,V)@ [suki software]*/ -0x04,0x00, 0x84,0x00, 0x74,0x00, 0x27,0xF0, -0x00,0x00, 0x42,0x00, 0x42,0x00, 0x7F,0xF0, -0x42,0x00, 0x42,0x00, 0x42,0x00, 0x40,0x00, -/* @xun14 ѷ(12x12,V)@ [suki software]*/ -0x02,0x00, 0x42,0x00, 0x33,0xF0, 0x00,0x00, -0x40,0x90, 0x41,0x00, 0x4F,0xF0, 0x52,0x40, -0x61,0x80, 0x06,0x10, 0x00,0x00, 0xFF,0xF0, -/* @xun15 Ѹ(12x12,V)@ [suki software]*/ -0x02,0x00, 0x82,0x00, 0x73,0xF0, 0x20,0x00, -0x04,0x00, 0x44,0x00, 0x44,0x00, 0x7F,0xF0, -0x44,0x00, 0x44,0x00, 0x40,0x00, 0x7F,0xC0, -/* @ya0 ѹ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x10, 0x7F,0xE0, 0x40,0x00, -0x42,0x00, 0x42,0x00, 0x42,0x00, 0x42,0x00, -0x5F,0xF0, 0x42,0x00, 0x42,0x80, 0x42,0x70, -/* @ya1 Ѻ(12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x11,0x00, 0x12,0x00, 0x00,0x00, 0x7F,0x80, -0x44,0x80, 0x44,0x80, 0x7F,0xF0, 0x44,0x80, -/* @ya2 ѻ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x5C,0x10, 0x44,0x60, 0x45,0x80, -0x7F,0xF0, 0x44,0x00, 0x44,0x10, 0x00,0x10, -0x3F,0x90, 0x60,0x90, 0xB0,0x90, 0x2A,0x90, -/* @ya3 Ѽ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0x80, 0x44,0x80, 0x7F,0xF0, -0x44,0x80, 0x7F,0x80, 0x00,0x10, 0x00,0x10, -0x3F,0x90, 0x70,0x90, 0xAC,0x90, 0x20,0x90, -/* @ya4 ѽ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x3F,0xE0, 0x20,0x80, 0x20,0x80, -0x3F,0xC0, 0x00,0x00, 0x42,0x00, 0x5E,0x10, -0x42,0x20, 0x42,0xC0, 0x43,0x00, 0x7F,0xF0, -/* @ya5 Ѿ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x40,0x00, 0x30,0x00, 0x18,0x00, 0x07,0xF0, -0x08,0x00, 0x10,0x00, 0x60,0x00, 0x20,0x00, -/* @ya6 ѿ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x20,0x00, 0x28,0x00, 0x2C,0xC0, -0xAB,0x80, 0x7A,0x80, 0xA8,0x90, 0x28,0xA0, -0x28,0x40, 0xB8,0x80, 0x77,0xF0, 0x28,0x80, -/* @ya7 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x42,0x00, 0x47,0x00, -0x5A,0x10, 0x42,0x20, 0x42,0x40, 0x42,0x80, -0x43,0x00, 0x7F,0xF0, 0x42,0x00, 0x42,0x00, -/* @ya8 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x1F,0x80, 0x10,0x80, 0xFF,0xF0, -0x10,0x90, 0x1F,0xB0, 0x00,0x10, 0x42,0x00, -0x5F,0x00, 0x42,0x30, 0x42,0xC0, 0x43,0x00, -/* @ya9 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x6F,0xF0, 0x28,0x40, -0x2A,0x50, 0x2A,0x50, 0x2A,0x50, 0xEA,0x50, -0x2F,0xF0, 0x2A,0x50, 0x2A,0x50, 0x2A,0x50, -/* @ya10 (12x12,V)@ [suki software]*/ -0x11,0x00, 0x22,0x00, 0xCF,0xF0, 0x44,0x00, -0x01,0x00, 0x49,0x70, 0x7F,0x40, 0x49,0x40, -0x49,0x40, 0x4F,0x70, 0x01,0x00, 0x44,0x00, -/* @ya11 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x86,0x30, 0x61,0xC0, 0x0E,0x00, -0x00,0x10, 0x7F,0xE0, 0x41,0x20, 0x49,0x20, -0x49,0x20, 0x7F,0xF0, 0x49,0x20, 0x49,0x20, -/* @ya12 (12x12,V)@ [suki software]*/ -0x40,0x10, 0x7C,0x20, 0x44,0xC0, 0x45,0x00, -0x7F,0xF0, 0x44,0x00, 0x42,0x00, 0x0F,0xF0, -0x32,0x40, 0xD2,0x40, 0x12,0x40, 0x5F,0xF0, -/* @ya13 (12x12,V)@ [suki software]*/ -0x3F,0xE0, 0x20,0x40, 0x20,0x40, 0x20,0x40, -0x3F,0xE0, 0x42,0x00, 0x41,0x00, 0x7F,0xF0, -0x40,0x00, 0x40,0x00, 0x7F,0xF0, 0x40,0x40, -/* @ya14 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x40,0x00, 0x44,0x00, 0x43,0x00, -0x40,0xE0, 0x40,0x00, 0x7F,0xF0, 0x40,0x00, -0x40,0x00, 0x7F,0xF0, 0x40,0x20, 0x40,0xC0, -/* @ya15 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x44,0x00, 0x34,0x00, 0x27,0xF0, -0x00,0x00, 0x00,0x10, 0x40,0x00, 0x5E,0x00, -0x42,0x30, 0x42,0xC0, 0x43,0x00, 0x7F,0xF0, -/* @yan0 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x84,0x00, 0x84,0x50, 0xBC,0xC0, -0x87,0x50, 0x85,0x40, 0x85,0x40, 0xFD,0x50, -0xA5,0x40, 0xA5,0x40, 0xA5,0x50, 0xA5,0x40, -/* @yan1 (12x12,V)@ [suki software]*/ -0x1F,0xF0, 0x10,0x10, 0x10,0x10, 0x10,0x10, -0x1F,0xF0, 0x00,0x00, 0x7F,0xF0, 0x44,0x10, -0x44,0x60, 0x5F,0x80, 0x44,0x40, 0x44,0x30, -/* @yan2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x1F,0xF0, 0x00,0x00, 0x81,0x00, -0x69,0x00, 0x0B,0xF0, 0x4D,0x50, 0x7B,0xF0, -0x49,0x50, 0x4D,0x50, 0x4B,0xF0, 0x49,0x00, -/* @yan3 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x0E,0x00, 0x00,0x30, 0xFF,0xC0, -0x04,0x30, 0x08,0x00, 0x7F,0xF0, 0x40,0x10, -0x44,0x20, 0x44,0xC0, 0x7F,0x00, 0x44,0xC0, -/* @yan4 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x86,0x70, 0x61,0x80, 0x06,0x00, -0x22,0x00, 0x27,0xF0, 0x2A,0x90, 0x32,0x90, -0xE7,0xF0, 0x32,0x90, 0x2A,0x90, 0x2B,0xF0, -/* @yan5 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x11,0x80, 0x11,0x00, 0x11,0x70, -0xFF,0x40, 0x12,0x40, 0x12,0x70, 0x12,0x40, -0x00,0x40, 0xFF,0x70, 0x00,0x40, 0x10,0x40, -/* @yan6 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x40,0x00, 0x67,0xF0, 0x54,0x00, -0x4C,0x00, 0x44,0x00, 0x7C,0x00, 0x44,0x00, -0x44,0x00, 0x7C,0x00, 0x44,0x00, 0x4C,0x00, -/* @yan7 (12x12,V)@ [suki software]*/ -0x40,0x80, 0x43,0x00, 0x4F,0xF0, 0x72,0x00, -0x43,0xF0, 0x40,0x00, 0x02,0x00, 0x42,0x10, -0x7F,0xE0, 0x42,0x00, 0x42,0x00, 0x42,0x00, -/* @yan8 (12x12,V)@ [suki software]*/ -0x1F,0x80, 0x10,0x80, 0xFF,0xF0, 0x10,0xA0, -0x1F,0x90, 0x42,0x00, 0x46,0x40, 0x7A,0x30, -0x43,0xC0, 0x20,0x00, 0x23,0xE0, 0x20,0x20, -/* @yan9 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x02,0x10, 0x7A,0x20, 0x0A,0x40, -0x0A,0xF0, 0x0B,0x40, 0x0A,0x40, 0xFA,0x40, -0x0A,0x40, 0x0A,0x40, 0x0A,0x40, 0x0A,0x40, -/* @yan10 (12x12,V)@ [suki software]*/ -0x40,0x00, 0x44,0xC0, 0x4E,0x20, 0x74,0x10, -0x47,0xE0, 0x00,0x00, 0x20,0x00, 0x27,0xE0, -0x20,0x20, 0x20,0x20, 0x3F,0xE0, 0x42,0x20, -/* @yan11 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x20,0x00, 0x20,0x00, 0x25,0x30, -0x25,0x20, 0x25,0x20, 0xA5,0x20, 0x65,0x20, -0x25,0x20, 0x25,0x20, 0x25,0x20, 0x25,0x30, -/* @yan12 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x27,0xF0, 0x34,0x90, 0xAC,0x90, -0x65,0x20, 0x2E,0x40, 0x34,0x80, 0x24,0x10, -0x00,0x00, 0x4F,0xE0, 0x58,0x10, 0x6B,0xE0, -/* @yan13 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x9F,0xF0, 0x42,0x00, -0x63,0xF0, 0x05,0x50, 0x5A,0x50, 0x48,0x10, -0x49,0x50, 0x4D,0x50, 0x49,0x50, 0x41,0xF0, -/* @yan14 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x01,0x00, 0x01,0x00, 0x0A,0x20, -0x32,0xC0, 0x04,0x00, 0x08,0x30, 0xF3,0xC0, -0x09,0x20, 0x14,0x10, 0x24,0x20, 0x42,0xC0, -/* @yan15 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x0C,0x40, 0x80,0xF0, 0x63,0x00, -0x0C,0x00, 0x01,0x00, 0x02,0x70, 0x7C,0x40, -0x40,0x40, 0x40,0x40, 0x40,0x40, 0x7C,0x40, -/* @yan16 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x21,0x00, 0x22,0x00, 0x23,0xF0, -0x25,0x50, 0x29,0x50, 0x31,0x50, 0xE7,0xF0, -0x31,0x50, 0x29,0x50, 0x25,0x50, 0x25,0xF0, -/* @yan17 (12x12,V)@ [suki software]*/ -0x10,0x80, 0x10,0x80, 0x11,0x00, 0xFF,0xF0, -0x13,0x00, 0x15,0x00, 0x23,0xF0, 0x25,0x50, -0x29,0x50, 0xF7,0xF0, 0x29,0x50, 0x25,0x50, -/* @yan18 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x48,0x80, 0x48,0x80, -0x7F,0xF0, 0x00,0x00, 0x00,0x00, 0x7F,0xF0, -0x49,0x00, 0x49,0xC0, 0x49,0x30, 0x49,0x00, -/* @yan19 (12x12,V)@ [suki software]*/ -0x08,0x80, 0x11,0x00, 0x23,0xF0, 0xCC,0x00, -0x44,0x40, 0x80,0x40, 0x60,0xF0, 0x4F,0x00, -0x00,0x00, 0x44,0x00, 0x44,0x00, 0x44,0x00, -/* @yan20 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x84,0x30, 0x61,0xC0, 0x06,0x00, -0x00,0x00, 0x30,0x00, 0x2B,0xF0, 0x2A,0x90, -0xAA,0x90, 0x6F,0xF0, 0x2A,0x90, 0x2A,0x90, -/* @yan21 (12x12,V)@ [suki software]*/ -0x10,0x20, 0x12,0x20, 0x12,0x20, 0xFF,0xF0, -0x12,0x20, 0x12,0x20, 0x14,0x20, 0x0F,0xF0, -0xF4,0x40, 0x24,0x40, 0x27,0xC0, 0x24,0x40, -/* @yan22 (12x12,V)@ [suki software]*/ -0x04,0x10, 0x04,0x10, 0x7F,0xF0, 0x04,0x20, -0x04,0x20, 0x7F,0xF0, 0x40,0x40, 0x5F,0x40, -0x55,0x60, 0x55,0xD0, 0x55,0x50, 0x55,0x60, -/* @yan23 (12x12,V)@ [suki software]*/ -0x22,0x40, 0x22,0x40, 0x22,0x90, 0x2F,0xC0, -0x20,0x10, 0xFB,0xC0, 0x2A,0x40, 0x2A,0x40, -0x2A,0x50, 0xFB,0xC0, 0x20,0x00, 0x27,0x80, -/* @ya16 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x42,0x00, -0x42,0x00, 0x42,0x10, 0x42,0x60, 0x7F,0x80, -0x42,0x40, 0x52,0x30, 0x4E,0x10, 0x4A,0x00, -/* @yan24 (12x12,V)@ [suki software]*/ -0x40,0x80, 0x41,0x00, 0x4F,0xF0, 0x72,0x00, -0x42,0x00, 0x43,0xF0, 0x00,0x00, 0x7F,0xC0, -0x40,0x10, 0x40,0x60, 0x5F,0xC0, 0x40,0x30, -/* @yan25 (12x12,V)@ [suki software]*/ -0x00,0x00, 0xFF,0xF0, 0x81,0x00, 0x82,0x00, -0x8F,0xF0, 0xB1,0x00, 0x86,0x00, 0x8F,0xF0, -0xB5,0x20, 0x85,0x20, 0xA7,0xF0, 0x9D,0x20, -/* @yan26 (12x12,V)@ [suki software]*/ -0x3F,0xE0, 0x20,0x40, 0x20,0x40, 0x20,0x40, -0x3F,0xE0, 0x20,0x00, 0x20,0x70, 0x29,0x40, -0x29,0x40, 0xA9,0x40, 0x69,0x40, 0x29,0x40, -/* @yan27 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x27,0xF0, 0x24,0x00, -0x24,0x40, 0x34,0x40, 0x2C,0x50, 0xA4,0x90, -0x64,0xA0, 0x25,0x20, 0x2D,0x20, 0x34,0x40, -/* @yan28 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x0E,0x00, 0x00,0x30, 0xFF,0xC0, -0x08,0xA0, 0x10,0x90, 0x05,0xF0, 0x09,0x20, -0x32,0x20, 0xE2,0x00, 0x20,0x20, 0x25,0x20, -/* @yan29 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x30,0x20, 0x20,0x20, 0x20,0x20, -0x2F,0xB0, 0x2A,0xE0, 0xAA,0xA0, 0x6A,0xA0, -0x2A,0xA0, 0x2A,0xA0, 0x2F,0xB0, 0x20,0x20, -/* @yan30 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x82,0x00, 0x72,0x00, 0x23,0xF0, -0x00,0x00, 0x00,0x00, 0x27,0xF0, 0x34,0x50, -0x2C,0x50, 0xA4,0xA0, 0x64,0xA0, 0x2C,0xA0, -/* @yan31 (12x12,V)@ [suki software]*/ -0x40,0x10, 0x5F,0x10, 0x41,0x20, 0x41,0x20, -0x7F,0x00, 0x01,0xF0, 0x02,0x40, 0x06,0x30, -0x1A,0x80, 0x62,0x70, 0x12,0x00, 0x0A,0x00, -/* @yang0 (12x12,V)@ [suki software]*/ -0x41,0x00, 0x46,0x00, 0x79,0x90, 0x48,0x60, -0x49,0x80, 0x4E,0x00, 0x40,0x80, 0x1F,0x80, -0x10,0xB0, 0xFF,0xC0, 0x10,0xA0, 0x10,0x90, -/* @yang1 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x00,0x80, 0x00,0x80, 0x1F,0x80, -0x10,0x80, 0x10,0x80, 0x10,0xB0, 0xFF,0xC0, -0x10,0xA0, 0x10,0x90, 0x10,0x80, 0x1F,0x80, -/* @yang2 (12x12,V)@ [suki software]*/ -0x10,0x00, 0x12,0x00, 0x12,0x00, 0x72,0x00, -0x53,0xE0, 0x56,0x20, 0x5B,0x20, 0xF6,0xA0, -0x5A,0x20, 0x56,0x20, 0x56,0xA0, 0x73,0xA0, -/* @yang3 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x48,0xC0, 0x4B,0x00, 0x7F,0xF0, -0x8A,0x00, 0x89,0x80, 0x00,0x80, 0x1F,0x80, -0x10,0x90, 0x10,0xE0, 0xFF,0x80, 0x10,0xE0, -/* @yang4 (12x12,V)@ [suki software]*/ -0x10,0x20, 0x10,0xC0, 0x13,0x00, 0xFF,0xF0, -0x12,0x00, 0x11,0x80, 0x50,0x10, 0x42,0x20, -0x46,0xC0, 0x4B,0x10, 0x52,0x60, 0x63,0x80, -/* @yang5 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x11,0x00, 0x12,0x10, 0x40,0x10, 0x42,0x20, -0x46,0xC0, 0x4B,0x00, 0x52,0x30, 0x63,0xC0, -/* @yang6 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x1F,0xF0, 0xE4,0x00, -0x50,0x40, 0x12,0x40, 0x92,0x40, 0x72,0x40, -0x12,0x40, 0x1F,0xF0, 0x32,0x40, 0xD2,0x40, -/* @yang7 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x0C,0x80, 0x01,0x10, 0x3F,0xE0, -0x20,0x00, 0x28,0x10, 0x29,0x20, 0xAB,0x40, -0x6B,0x80, 0x2D,0x10, 0x2D,0x20, 0x29,0xC0, -/* @yang8 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x40, 0x10,0x40, 0x12,0x40, -0x92,0x40, 0x52,0x40, 0x32,0x40, 0x1F,0xF0, -0x12,0x40, 0x32,0x40, 0xD2,0x40, 0x52,0x40, -/* @yang9 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x20, 0x80,0xF0, 0x67,0x00, -0x00,0x40, 0x12,0x40, 0x92,0x40, 0x72,0x40, -0x12,0x40, 0x1F,0xF0, 0x32,0x40, 0xD2,0x40, -/* @yang10 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x40,0x20, 0x44,0x10, -0x5A,0x20, 0x61,0xC0, 0x00,0x00, 0x7F,0xF0, -0x42,0x00, 0x42,0x00, 0x42,0x00, 0x42,0x00, -/* @yang11 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x14,0x00, 0x24,0xA0, 0xD6,0xA0, -0x55,0xA0, 0x54,0xA0, 0x54,0xF0, 0x55,0xA0, -0x56,0xA0, 0x54,0xA0, 0x54,0x00, 0x57,0xF0, -/* @yang12 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x02,0x00, 0x0F,0xF0, 0x38,0x00, -0xC0,0x00, 0x3F,0xF0, 0x20,0x10, 0x20,0x20, -0x40,0x40, 0x40,0x00, 0x3F,0xF0, 0x20,0x00, -/* @yang13 (12x12,V)@ [suki software]*/ -0x10,0x20, 0x0C,0x40, 0x00,0x90, 0x3F,0xE0, -0x20,0x10, 0x24,0x90, 0x34,0x90, 0xAC,0x90, -0x64,0x90, 0x27,0xF0, 0x24,0x90, 0x2C,0x90, -/* @yang14 (12x12,V)@ [suki software]*/ -0x00,0x10, 0x02,0x10, 0x22,0x20, 0x2A,0x20, -0xAA,0x40, 0x6A,0xF0, 0x2B,0x80, 0x3F,0x00, -0x2A,0x00, 0x6B,0x00, 0xAA,0xB0, 0x2A,0x40, -/* @yang15 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x11,0x80, 0x16,0x00, 0xFF,0xF0, -0x12,0x00, 0x11,0x00, 0x00,0x20, 0x92,0x20, -0x72,0x20, 0x12,0x20, 0x1F,0xF0, 0x32,0x20, -/* @yang16 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x84,0x30, 0x61,0xC0, 0x06,0x00, -0x20,0x20, 0x2A,0x20, 0xAA,0xA0, 0x6A,0xB0, -0x2B,0x80, 0x3E,0xF0, 0x6A,0x20, 0xAA,0x50, -/* @yao1 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x42,0x00, 0x33,0xF0, 0x01,0x00, -0x3D,0x10, 0x75,0xE0, 0xAF,0x40, 0x25,0x40, -0x3D,0x70, 0x03,0x00, 0xFE,0x10, 0x11,0x20, -/* @yao2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x48,0x80, 0x48,0x80, -0x7F,0xF0, 0x00,0x00, 0x5E,0x80, 0x52,0xB0, -0x53,0xD0, 0x7E,0x90, 0x52,0x80, 0x7E,0x90, -/* @yao3 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x08,0x80, 0x0F,0x50, 0xF8,0x20, -0x08,0xD0, 0x0F,0x00, 0x22,0x00, 0x22,0x00, -0x22,0x30, 0x3F,0xC0, 0x42,0x30, 0x42,0x00, -/* @yao4 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x22,0x00, 0x22,0x00, 0x3F,0xF0, -0x22,0x10, 0x22,0x20, 0x51,0x40, 0x4E,0x50, -0x42,0x40, 0x62,0x40, 0x9B,0xF0, 0x82,0x40, -/* @yao5 ҡ(12x12,V)@ [suki software]*/ -0x08,0x20, 0x08,0x20, 0x08,0x40, 0xFF,0xF0, -0x09,0x00, 0x0A,0x40, 0x51,0x50, 0x4E,0x40, -0x62,0x40, 0x5A,0x40, 0x43,0xF0, 0x86,0x40, -/* @yao6 Ң(12x12,V)@ [suki software]*/ -0x10,0x40, 0x11,0x40, 0x11,0x40, 0x11,0x40, -0x22,0x40, 0xE2,0x70, 0x32,0x40, 0x2C,0x40, -0x24,0x40, 0x2A,0x70, 0x5A,0x40, 0x49,0x40, -/* @yao7 ң(12x12,V)@ [suki software]*/ -0x02,0x00, 0x42,0x00, 0x33,0xF0, 0x00,0x00, -0x00,0x00, 0x52,0x80, 0x4C,0xB0, 0x64,0x80, -0x54,0x80, 0x87,0xF0, 0x8C,0x80, 0x94,0x80, -/* @yao8 Ҥ(12x12,V)@ [suki software]*/ -0x02,0x40, 0x32,0x40, 0x24,0xD0, 0x27,0x40, -0x2A,0x40, 0x2A,0x40, 0xA2,0x40, 0x63,0xF0, -0x22,0x40, 0x32,0x40, 0x2A,0x40, 0x2A,0x40, -/* @yao9 ҥ(12x12,V)@ [suki software]*/ -0x02,0x00, 0x82,0x00, 0x73,0xF0, 0x20,0x00, -0x00,0x00, 0x60,0x80, 0x57,0x50, 0x4A,0x40, -0x62,0x40, 0x5A,0x40, 0x43,0xF0, 0x86,0x40, -/* @yao10 Ҧ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x08,0x80, 0x0F,0x40, 0xF8,0x30, -0x08,0xD0, 0x0F,0x40, 0x10,0x60, 0x08,0x80, -0xFF,0xF0, 0x00,0x00, 0xFF,0xF0, 0x05,0x00, -/* @yao11 ҧ(12x12,V)@ [suki software]*/ -0x3F,0xF0, 0x20,0x40, 0x20,0x40, 0x3F,0xE0, -0x00,0x00, 0x21,0x00, 0x22,0x00, 0x2D,0xC0, -0xA4,0x20, 0x60,0x10, 0x20,0x20, 0x29,0xC0, -/* @yao12 Ҩ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x40,0x00, 0x43,0xF0, 0x62,0x40, -0x5A,0x40, 0x44,0x40, 0x44,0x40, 0x60,0x00, -0x5A,0x40, 0x92,0x40, 0x82,0x40, 0x8A,0x40, -/* @yao13 ҩ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x21,0x20, 0x23,0x30, 0x2D,0x60, -0x21,0xA0, 0xFB,0x20, 0x20,0x20, 0x20,0x80, -0x21,0x00, 0xFE,0x40, 0x22,0x30, 0x22,0x00, -/* @yao14 Ҫ(12x12,V)@ [suki software]*/ -0x40,0x40, 0x40,0x40, 0x5F,0x40, 0x52,0x40, -0x52,0x70, 0x7F,0xD0, 0x52,0x50, 0x52,0x40, -0x52,0x40, 0x7E,0x40, 0x52,0x50, 0x52,0x60, -/* @yao15 ҫ(12x12,V)@ [suki software]*/ -0x24,0x00, 0x14,0x00, 0x07,0xF0, 0xFC,0x00, -0x07,0xF0, 0x34,0x40, 0xC4,0x90, 0xAB,0xF0, -0x95,0x50, 0xFD,0x50, 0x03,0xF0, 0xA9,0x50, -/* @ye0 Ҭ(12x12,V)@ [suki software]*/ -0x11,0x80, 0x16,0x00, 0xFF,0xF0, 0x12,0x00, -0x11,0x00, 0x40,0x00, 0x7F,0xF0, 0x48,0x90, -0x48,0x90, 0x7F,0xF0, 0x40,0x20, 0x7F,0xF0, -/* @ye1 ҭ(12x12,V)@ [suki software]*/ -0x3F,0xF0, 0x20,0x40, 0x20,0x40, 0x3F,0xE0, -0x02,0x00, 0x44,0x00, 0x55,0x70, 0x55,0x50, -0x55,0x50, 0xF5,0x50, 0x55,0x50, 0x55,0x50, -/* @ye2 Ү(12x12,V)@ [suki software]*/ -0x00,0x10, 0x40,0x10, 0x7F,0xF0, 0x49,0x10, -0x49,0x20, 0x49,0x20, 0x7F,0xF0, 0x40,0x20, -0x00,0x00, 0x7F,0xF0, 0x40,0x00, 0x44,0x10, -/* @ye3 ү(12x12,V)@ [suki software]*/ -0x11,0x00, 0x11,0x00, 0x21,0x00, 0x22,0x80, -0x42,0x80, 0xA4,0x80, 0x14,0xF0, 0x08,0x80, -0x08,0x80, 0x14,0x80, 0xA4,0x80, 0x42,0xF0, -/* @ye4 Ұ(12x12,V)@ [suki software]*/ -0x00,0x40, 0x7E,0x40, 0x52,0x40, 0x7F,0xF0, -0x52,0x40, 0x52,0x40, 0x7E,0x40, 0x00,0x00, -0x42,0x00, 0x4A,0x00, 0x4B,0xF0, 0x56,0x00, -/* @ye5 ұ(12x12,V)@ [suki software]*/ -0x00,0x40, 0x40,0x40, 0x38,0xF0, 0x17,0x00, -0x00,0x00, 0x02,0x00, 0x06,0xF0, 0x1A,0x80, -0xE2,0x80, 0x44,0x80, 0x04,0x80, 0x14,0x80, -/* @ye6 Ҳ(12x12,V)@ [suki software]*/ -0x02,0x00, 0x02,0x00, 0x02,0x00, 0x3F,0xF0, -0x12,0x00, 0x04,0x00, 0x04,0x00, 0xFF,0xE0, -0x44,0x00, 0x08,0x40, 0x08,0x20, 0x08,0x10, -/* @xie20 ҳ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x80,0x00, 0x80,0x00, 0x80,0x00, -0x9F,0xF0, 0x90,0x00, 0xB0,0x00, 0xD7,0xF0, -0x90,0x10, 0x90,0x00, 0x90,0x00, 0x9F,0xF0, -/* @ye7 Ҵ(12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x12,0x00, 0x15,0x00, 0x23,0xF0, 0x24,0x80, -0x39,0x80, 0xA6,0x40, 0x6D,0x30, 0x34,0xB0, -/* @ye8 ҵ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x08,0x00, 0x06,0x00, 0x01,0xC0, -0x00,0x80, 0xFF,0xF0, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0xFF,0xF0, 0x00,0x40, 0x01,0x80, -/* @ye9 Ҷ(12x12,V)@ [suki software]*/ -0x3F,0xF0, 0x20,0x40, 0x20,0x40, 0x20,0x40, -0x3F,0xE0, 0x02,0x00, 0x02,0x00, 0x02,0x00, -0x02,0x00, 0xFF,0xF0, 0x02,0x00, 0x02,0x00, -/* @ye10 ҷ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x3F,0x80, 0x24,0x80, -0x24,0x80, 0x24,0x80, 0xFF,0x80, 0x24,0xE0, -0x24,0x90, 0x24,0x80, 0x24,0x90, 0x3F,0xB0, -/* @ye11 Ҹ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x48,0x80, 0x48,0x80, -0x7F,0xF0, 0x20,0x80, 0x21,0x00, 0x27,0xF0, -0x38,0x80, 0xA1,0x00, 0x7F,0xE0, 0x25,0x10, -/* @ye12 ҹ(12x12,V)@ [suki software]*/ -0x20,0x40, 0x20,0x80, 0x21,0x00, 0x23,0xF0, -0x3C,0x00, 0x28,0x40, 0xA1,0x80, 0x66,0x40, -0x3D,0x20, 0x24,0x90, 0x24,0x20, 0x24,0xC0, -/* @ye13 Һ(12x12,V)@ [suki software]*/ -0x08,0x20, 0x86,0x20, 0x60,0xF0, 0x07,0x00, -0x18,0x80, 0x21,0x00, 0x27,0xF0, 0x38,0x80, -0x21,0x80, 0xA6,0x40, 0x7D,0x30, 0x24,0xD0, -/* @yi1 һ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x01,0x00, 0x01,0x00, 0x01,0x00, -0x01,0x00, 0x01,0x00, 0x01,0x00, 0x01,0x00, -0x01,0x00, 0x01,0x00, 0x01,0x00, 0x01,0x00, -/* @yi2 Ҽ(12x12,V)@ [suki software]*/ -0x02,0x00, 0x44,0x00, 0x45,0x00, 0x55,0x70, -0x55,0x50, 0x55,0x50, 0x55,0x50, 0xF5,0x50, -0x55,0x50, 0x55,0x50, 0x55,0x50, 0x55,0x70, -/* @yi3 ҽ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x42,0x00, 0x45,0x00, -0x79,0x00, 0x49,0x10, 0x49,0x20, 0x49,0xC0, -0x4F,0x00, 0x49,0x80, 0x49,0x40, 0x49,0x30, -/* @yi4 Ҿ(12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x80, 0xFF,0xF0, 0x11,0x00, -0x12,0x00, 0x00,0x00, 0x04,0x00, 0x77,0xF0, -0x55,0x40, 0x55,0x40, 0x55,0x40, 0x55,0x40, -/* @yi5 ҿ(12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0xF7,0xF0, 0x24,0x80, -0x24,0x80, 0x20,0x00, 0x10,0x40, 0x10,0x80, -0x13,0xF0, 0x9C,0x00, 0x7F,0x00, 0x10,0xE0, -/* @yi6 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x06,0x00, 0x18,0x00, 0xFF,0xF0, -0x50,0x20, 0x10,0x40, 0x11,0x80, 0x93,0xF0, -0x7C,0x00, 0x56,0x00, 0x11,0xD0, 0x11,0x60, -/* @yi7 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x02,0x00, 0x0F,0xF0, 0xF0,0x00, -0x40,0x00, 0x09,0x00, 0x49,0x00, 0x49,0x30, -0x7F,0xC0, 0x49,0x00, 0x49,0x00, 0x49,0x00, -/* @yi8 (12x12,V)@ [suki software]*/ -0x20,0x10, 0x20,0x20, 0x20,0x40, 0x20,0x80, -0x21,0xF0, 0x22,0x00, 0xA4,0x00, 0x7C,0x00, -0x23,0x00, 0x20,0xC0, 0x20,0xB0, 0x21,0x00, -/* @yi9 (12x12,V)@ [suki software]*/ -0x7F,0xF0, 0x40,0x00, 0x4F,0x80, 0x48,0x80, -0x78,0xF0, 0x48,0x80, 0x4F,0x80, 0x00,0x00, -0x4F,0xE0, 0x58,0x10, 0x6B,0xE0, 0x48,0x10, -/* @yi10 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x40,0x00, 0x53,0xC0, 0x52,0x40, -0x52,0x40, 0x52,0x40, 0x52,0x50, 0xFF,0xE0, -0x52,0x50, 0x52,0x40, 0x52,0x40, 0x52,0x50, -/* @yi11 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x82,0x00, 0x63,0xF0, 0x00,0x00, -0x04,0x00, 0x04,0x00, 0x75,0xE0, 0x55,0x00, -0x55,0x10, 0xFD,0xE0, 0x55,0x10, 0x55,0x00, -/* @yi12 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x49,0x80, 0x4E,0x00, 0x7F,0xF0, -0x89,0x00, 0x98,0x80, 0x09,0x10, 0x11,0x20, -0x22,0x60, 0xCA,0x90, 0x45,0x80, 0x4A,0x90, -/* @yi13 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x0F,0xF0, 0x30,0x00, -0xC0,0x00, 0x00,0x00, 0x1C,0x00, 0x03,0x00, -0x80,0xD0, 0x70,0x20, 0x20,0xD0, 0x07,0x00, -/* @yi14 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x48,0x80, -0x48,0x80, 0x7F,0xF0, 0x00,0x00, 0x2B,0xC0, -0x2A,0x40, 0x2A,0x50, 0xFF,0xE0, 0x2A,0x50, -/* @yi15 (12x12,V)@ [suki software]*/ -0x00,0x60, 0x03,0xA0, 0xF9,0x20, 0x25,0x30, -0x45,0xF0, 0x45,0x20, 0x19,0x20, 0x44,0x00, -0x44,0xF0, 0x54,0x00, 0x4F,0xF0, 0x54,0x40, -/* @yi16 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x30, 0x80,0xC0, 0x63,0x00, -0x0C,0x00, 0x00,0x10, 0x3F,0xE0, 0x22,0x00, -0x22,0x00, 0x22,0x00, 0x43,0xF0, 0x42,0x00, -/* @yi17 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x08,0x00, 0x30,0x00, 0x20,0x00, -0x27,0xF0, 0x24,0x90, 0x24,0x90, 0xA4,0x90, -0x64,0x90, 0x24,0x90, 0x27,0xF0, 0x20,0x00, -/* @yi18 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x09,0x80, 0xFE,0x50, 0x48,0x60, -0x0F,0x90, 0x20,0x00, 0x2B,0xC0, 0x2A,0x80, -0x2A,0xB0, 0xFF,0xC0, 0x2A,0xB0, 0x2A,0x80, -/* @yi19 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x06,0x90, 0x05,0xA0, 0x34,0xC0, -0xD7,0xF0, 0x54,0xC0, 0x55,0xA0, 0x56,0x80, -0x54,0x50, 0x55,0x60, 0xFF,0xC0, 0x45,0x70, -/* @yi20 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x08,0xC0, 0x0B,0x00, 0xFF,0xF0, -0x0A,0x00, 0x09,0x00, 0x22,0x00, 0x26,0xF0, -0x2A,0x90, 0xF2,0x90, 0x2A,0xF0, 0x26,0x00, -/* @yi21 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x1F,0xC0, 0x10,0x80, 0xFF,0xF0, -0x10,0xA0, 0x1F,0x90, 0x00,0x00, 0x3E,0x00, -0x81,0xC0, 0x70,0x30, 0x20,0x40, 0x03,0x80, -/* @yi22 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x1F,0xF0, 0xE0,0x00, -0x42,0x00, 0x22,0xF0, 0x26,0x90, 0x2A,0x90, -0x32,0x90, 0xE2,0xF0, 0x32,0x00, 0x2A,0x00, -/* @yi23 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x47,0xF0, 0x42,0x00, -0x42,0x00, 0x42,0x00, 0x42,0x00, 0x42,0x00, -0x42,0x00, 0x42,0x00, 0x42,0x00, 0x7E,0x00, -/* @yi24 (12x12,V)@ [suki software]*/ -0x40,0x00, 0x40,0x10, 0x40,0x70, 0x40,0xC0, -0x41,0x80, 0x43,0x00, 0x46,0x00, 0x4C,0x00, -0x58,0x00, 0x70,0x00, 0x60,0x00, 0x40,0x00, -/* @yi25 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x40, 0x00,0xC0, 0x01,0x40, -0x16,0x40, 0x32,0x40, 0x52,0x70, 0x93,0xC0, -0x12,0x60, 0x12,0x50, 0x52,0x40, 0x32,0x40, -/* @yi26 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x10, 0x7F,0xF0, 0x00,0x30, -0x00,0x60, 0x40,0x40, 0x38,0x80, 0x11,0x00, -0x00,0x00, 0x00,0x10, 0x00,0x70, 0xFF,0xE0, -/* @yi27 (12x12,V)@ [suki software]*/ -0x20,0x00, 0x20,0x00, 0x20,0x00, 0x24,0x10, -0x24,0x20, 0xFC,0x40, 0x24,0x40, 0x24,0x80, -0x25,0x00, 0xFE,0x00, 0x26,0x00, 0x24,0x00, -/* @yi28 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x11,0x00, 0x00,0x00, 0x3F,0xF0, 0x20,0x20, -0x40,0x40, 0xC0,0x00, 0x3F,0xF0, 0x20,0x00, -/* @yi29 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x40, 0x00,0x40, 0x00,0x90, -0x7D,0x10, 0x57,0x20, 0x55,0x40, 0x55,0x80, -0x55,0x10, 0x55,0x20, 0x55,0xC0, 0x7D,0x00, -/* @yi30 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x03,0xF0, 0x7A,0x40, -0x4A,0x40, 0x4A,0x40, 0x4A,0x40, 0x4B,0xC0, -0x4A,0x40, 0x4A,0x40, 0x4A,0x40, 0x7A,0x40, -/* @yi31 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x0F,0xF0, 0x00,0x00, 0xFF,0xF0, -0x00,0x10, 0x0F,0xF0, 0x04,0x00, 0x0A,0x00, -0xF2,0x10, 0x52,0x20, 0x12,0x40, 0x12,0x80, -/* @yi32 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x02,0x00, 0x04,0x00, 0x1F,0xF0, -0xE0,0x00, 0x40,0x00, 0x00,0x30, 0x40,0xC0, -0x41,0x00, 0x42,0x00, 0x44,0x00, 0x48,0x00, -/* @yi33 (12x12,V)@ [suki software]*/ -0x08,0x80, 0x11,0x00, 0x22,0x00, 0xC7,0xF0, -0x58,0x00, 0x0A,0x00, 0x05,0x00, 0x79,0xC0, -0x41,0x30, 0x41,0x00, 0x41,0x30, 0x79,0xC0, -/* @yi34 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x48,0x80, 0x48,0x80, -0x7F,0xF0, 0x08,0x00, 0x28,0x00, 0x2B,0xE0, -0xBA,0xA0, 0x6A,0xB0, 0x2A,0xA0, 0x3A,0xA0, -/* @yi35 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x41,0x00, 0x31,0xF0, 0x04,0x00, -0x08,0x00, 0x3F,0x00, 0xC9,0x30, 0x49,0xC0, -0x4F,0x00, 0x59,0xF0, 0x69,0x40, 0x49,0x20, -/* @yi36 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0xA0, 0xFB,0x20, 0x29,0x20, -0x29,0xF0, 0x59,0x20, 0x09,0x30, 0x2A,0x90, -0x2A,0x90, 0x2A,0x90, 0xFF,0xF0, 0x2A,0x90, -/* @yi37 (12x12,V)@ [suki software]*/ -0x04,0x20, 0x03,0x20, 0x00,0x40, 0x3F,0xF0, -0x20,0x80, 0x21,0x00, 0x2E,0x70, 0xA8,0x40, -0x68,0x40, 0x28,0x40, 0x2E,0x70, 0x21,0x00, -/* @yi38 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x10,0x20, 0x10,0x40, 0x13,0x80, -0x11,0x10, 0x10,0x60, 0x9F,0x80, 0x50,0x00, -0x70,0x00, 0x1F,0xF0, 0x10,0x00, 0x12,0x00, -/* @yi39 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x44,0x00, 0x45,0xF0, 0x45,0x10, -0x49,0x20, 0x4F,0x70, 0x53,0xA0, 0xE5,0x20, -0x51,0x20, 0x49,0xA0, 0x49,0x70, 0x55,0x60, -/* @yi40 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x08,0x00, 0x48,0x10, 0x4B,0xC0, -0x6A,0x50, 0x5A,0x40, 0x4B,0x40, 0xCA,0xD0, -0x4A,0x40, 0x5A,0x40, 0x6A,0x40, 0x4B,0xC0, -/* @yi41 (12x12,V)@ [suki software]*/ -0x04,0xA0, 0x24,0xA0, 0x35,0x50, 0xAF,0x90, -0x64,0xE0, 0x2C,0xF0, 0x35,0x40, 0x20,0x20, -0x04,0x80, 0x79,0x60, 0x41,0x10, 0x41,0x20, -/* @yi42 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x07,0x00, 0x00,0x00, 0xFF,0xF0, -0x00,0x00, 0x08,0x00, 0x26,0x10, 0x20,0x60, -0x20,0x80, 0x21,0x00, 0x22,0x00, 0x24,0x00, -/* @yi43 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x30,0x00, 0x0C,0x00, -0x02,0x00, 0x41,0x10, 0x20,0xA0, 0x18,0x40, -0x01,0xA0, 0x06,0x10, 0x78,0x00, 0x20,0x00, -/* @yi44 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x08,0x80, 0x09,0x00, 0x49,0x70, -0x2A,0x40, 0x1C,0x40, 0x08,0x70, 0x08,0x40, -0x18,0x40, 0x28,0x70, 0xCC,0x40, 0x4A,0x40, -/* @yi45 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x04,0x20, 0x80,0xF0, 0x67,0x00, -0x00,0x00, 0x09,0x00, 0x49,0x70, 0x3A,0x40, -0x0C,0x70, 0x08,0x40, 0x18,0x70, 0x2C,0x40, -/* @yi46 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x84,0x00, 0x74,0x00, 0x27,0xF0, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0xFC,0xF0, -0x12,0xA0, 0x12,0xA0, 0x12,0xA0, 0x22,0xA0, -/* @yi47 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x84,0x00, 0x77,0xF0, 0x20,0x00, -0x00,0x00, 0x00,0x10, 0x3C,0x00, 0x83,0x00, -0x40,0xD0, 0x30,0x20, 0x00,0xD0, 0x03,0x00, -/* @yi48 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x42,0x00, 0x33,0xF0, 0x20,0x00, -0x00,0x00, 0x30,0x00, 0x27,0xF0, 0x24,0xA0, -0xA4,0xA0, 0x64,0xA0, 0x24,0xA0, 0x27,0xF0, -/* @yi49 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x42,0x00, 0x3B,0xF0, 0x10,0x00, -0x01,0x10, 0x01,0x10, 0x42,0x90, 0x62,0x90, -0x54,0x90, 0x4B,0xF0, 0x48,0x90, 0x54,0x90, -/* @yi50 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x20, 0x00,0x20, 0x7E,0x20, -0x49,0x20, 0x49,0xF0, 0x49,0x20, 0x49,0x20, -0x49,0x20, 0x49,0x20, 0x49,0xF0, 0x79,0x20, -/* @yi51 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x80,0x10, 0x88,0x10, 0xD7,0xD0, -0xA5,0x70, 0x85,0x50, 0xFD,0x50, 0x07,0xD0, -0x85,0x50, 0xC5,0x50, 0xAD,0x70, 0x97,0xD0, -/* @yi52 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x42,0x00, 0x42,0x80, 0x74,0x80, -0x44,0xA0, 0x48,0x90, 0x7E,0x80, 0x02,0x80, -0x41,0x80, 0x62,0x90, 0x54,0xF0, 0x48,0xA0, -/* @yi53 (12x12,V)@ [suki software]*/ -0x04,0x40, 0x0C,0xC0, 0x35,0x40, 0xC6,0x40, -0x08,0x40, 0x00,0x00, 0x02,0x10, 0x42,0x90, -0x64,0x90, 0x58,0x90, 0x49,0xF0, 0x54,0x90, -/* @yin0 (12x12,V)@ [suki software]*/ -0x20,0x00, 0x20,0x00, 0x2F,0xF0, 0x28,0x00, -0xF9,0x00, 0x29,0x10, 0x29,0x20, 0x2F,0xC0, -0x29,0x20, 0x29,0x10, 0xF9,0x10, 0x28,0x00, -/* @yin1 (12x12,V)@ [suki software]*/ -0x20,0x00, 0x20,0x00, 0x27,0xF0, 0x24,0x20, -0x25,0x90, 0xFE,0x60, 0x20,0x00, 0x20,0x00, -0x27,0xF0, 0xFD,0x20, 0x25,0x20, 0x25,0x20, -/* @yin2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x40,0x00, 0x44,0x00, -0x44,0x10, 0x44,0x60, 0x45,0xC0, 0x7F,0x00, -0x44,0x80, 0x44,0x40, 0x44,0x30, 0x44,0x10, -/* @yin3 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x3F,0xF0, 0x2A,0x40, -0xEA,0x40, 0x2A,0x40, 0x3E,0x70, 0x02,0x00, -0x0D,0x80, 0x71,0x40, 0x41,0x20, 0x41,0x30, -/* @yin4 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x02,0x00, 0x22,0x00, 0x22,0xF0, -0x32,0x90, 0x2E,0x90, 0x22,0x90, 0xA2,0x90, -0x62,0x90, 0x26,0x90, 0x3A,0x90, 0x22,0xF0, -/* @yin5 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x40,0x00, 0x44,0x40, -0x5A,0x20, 0x61,0xC0, 0x00,0x00, 0x7F,0xF0, -0x48,0x80, 0x48,0x80, 0x48,0x80, 0x48,0x80, -/* @yin6 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x08,0xC0, 0xFF,0x40, 0x08,0x30, -0x08,0xD0, 0x0F,0x00, 0x00,0x00, 0x7F,0xF0, -0x44,0x10, 0x44,0x60, 0x7F,0x80, 0x44,0x40, -/* @yin7 (12x12,V)@ [suki software]*/ -0x7F,0xE0, 0x40,0x80, 0x40,0x80, 0x40,0x80, -0x7F,0xE0, 0x02,0x00, 0x04,0x80, 0x08,0x80, -0x30,0x80, 0xC4,0x80, 0x23,0x80, 0x10,0x90, -/* @yin8 (12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0x34,0x80, 0xD7,0xF0, -0x14,0x80, 0x14,0x80, 0x00,0x00, 0x7F,0xF0, -0x49,0x00, 0x49,0x80, 0x49,0x60, 0x49,0x10, -/* @yin9 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x30, 0x80,0xC0, 0x67,0x00, -0x00,0x20, 0x29,0x20, 0x27,0x20, 0x21,0x20, -0x31,0x20, 0x4D,0xF0, 0x41,0x20, 0x43,0x20, -/* @yin10 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x30,0x00, 0x20,0x00, 0x2B,0xF0, -0x2A,0x40, 0x2A,0x40, 0xAA,0x40, 0x6F,0xF0, -0x2A,0x40, 0x2A,0x40, 0x2A,0x40, 0x2B,0xF0, -/* @yin11 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x0C,0x00, 0xF0,0x00, 0x13,0xF0, -0x14,0x00, 0x1A,0x00, 0x04,0x00, 0x18,0x10, -0xF0,0x60, 0x17,0x80, 0x10,0x60, 0x10,0x10, -/* @yin12 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x08,0x00, 0x49,0x00, 0x49,0x00, -0x49,0x00, 0x49,0x30, 0x7F,0xC0, 0x49,0x00, -0x49,0x00, 0x49,0x00, 0x49,0x00, 0x49,0x00, -/* @yin13 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x40,0x80, 0x4F,0xC0, 0x48,0x80, -0x48,0x80, 0x48,0x80, 0x48,0x80, 0x79,0xF0, -0x00,0x80, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @yin14 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x48,0x40, 0x56,0x20, -0x61,0xC0, 0x08,0x10, 0x1A,0x80, 0x2A,0xB0, -0xCA,0x80, 0x4A,0xA0, 0x5A,0x90, 0x6A,0x80, -/* @yin15 ӡ(12x12,V)@ [suki software]*/ -0x00,0x10, 0x3F,0xF0, 0x22,0x10, 0x22,0x20, -0x42,0x20, 0x42,0x40, 0x42,0x00, 0x00,0x00, -0x7F,0xF0, 0x40,0x00, 0x40,0x00, 0x40,0x20, -/* @ying0 Ӣ(12x12,V)@ [suki software]*/ -0x20,0x40, 0x20,0x40, 0x20,0x40, 0x27,0xC0, -0x24,0x40, 0xF4,0x40, 0x24,0x50, 0x2F,0xE0, -0x24,0x50, 0x24,0x40, 0xF4,0x40, 0x27,0xC0, -/* @ying1 ӣ(12x12,V)@ [suki software]*/ -0x08,0xC0, 0x0B,0x00, 0xFF,0xF0, 0x0A,0x00, -0x01,0x20, 0x7C,0xA0, 0x41,0x20, 0x7E,0x30, -0x42,0xE0, 0x7D,0x20, 0x7C,0xA0, 0x41,0x30, -/* @ying2 Ӥ(12x12,V)@ [suki software]*/ -0x00,0x40, 0x00,0xC0, 0xFD,0x40, 0x83,0x50, -0xBC,0x70, 0x82,0x50, 0xFD,0xD0, 0x00,0xC0, -0xFD,0x40, 0x82,0x50, 0xBC,0x60, 0x84,0x40, -/* @ying3 ӥ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x44,0x00, 0x48,0x00, -0x7F,0x80, 0x48,0x70, 0x5F,0xC0, 0xF5,0xC0, -0x55,0x60, 0x55,0x50, 0x7F,0x40, 0x55,0x50, -/* @ying4 Ӧ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x10, 0x3F,0xE0, 0x22,0x00, -0x21,0x00, 0x20,0xF0, 0x28,0x20, 0xA4,0x00, -0x63,0xC0, 0x21,0x00, 0x20,0x30, 0x20,0xC0, -/* @ying5 ӧ(12x12,V)@ [suki software]*/ -0x06,0x40, 0x0A,0xC0, 0x73,0x40, 0x26,0x40, -0x01,0x00, 0x7A,0x40, 0x4C,0x50, 0x42,0x60, -0x78,0xC0, 0x00,0x40, 0x79,0x40, 0x42,0x70, -/* @ying6 Ө(12x12,V)@ [suki software]*/ -0x01,0x00, 0x26,0x00, 0x24,0x00, 0x25,0x20, -0x25,0x20, 0xFD,0x20, 0x25,0x20, 0x25,0xF0, -0x25,0x20, 0xFD,0x30, 0x25,0x20, 0x25,0x20, -/* @ying7 ө(12x12,V)@ [suki software]*/ -0x21,0x00, 0x26,0x00, 0x24,0x00, 0x24,0xF0, -0x24,0x90, 0xFC,0x90, 0x24,0x90, 0x27,0xF0, -0x24,0x90, 0xFC,0x90, 0x24,0x90, 0x24,0x90, -/* @ying8 Ӫ(12x12,V)@ [suki software]*/ -0x02,0x00, 0x2C,0x00, 0x28,0x00, 0x28,0x10, -0x2B,0xD0, 0xFA,0x50, 0x2A,0x50, 0x2A,0x50, -0x2A,0x50, 0xFA,0x50, 0x2B,0xD0, 0x28,0x10, -/* @ying9 ӫ(12x12,V)@ [suki software]*/ -0x01,0x00, 0x26,0x00, 0x24,0x00, 0x24,0x20, -0x24,0xC0, 0xFC,0x00, 0x24,0x10, 0x25,0xE0, -0x24,0x10, 0x24,0x20, 0xFC,0xC0, 0x24,0x40, -/* @ying10 Ӭ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x1F,0x80, 0x10,0x80, 0xFF,0xF0, -0x10,0xA0, 0x1F,0x90, 0x00,0x00, 0x7B,0xF0, -0x4A,0x90, 0x4A,0x90, 0x4F,0xF0, 0x4A,0x90, -/* @ying11 ӭ(12x12,V)@ [suki software]*/ -0x02,0x00, 0x82,0x00, 0x73,0xF0, 0x20,0x00, -0x00,0x00, 0x3F,0xE0, 0x20,0x40, 0x40,0x80, -0x40,0x00, 0x3F,0xF0, 0x20,0x00, 0x20,0x40, -/* @ying12 Ӯ(12x12,V)@ [suki software]*/ -0x40,0x00, 0x40,0x70, 0x47,0x50, 0x75,0x70, -0x55,0x00, 0x55,0x70, 0x55,0x40, 0xD5,0x70, -0x55,0x40, 0x55,0x70, 0x55,0x00, 0x55,0x70, -/* @ying13 ӯ(12x12,V)@ [suki software]*/ -0x00,0x40, 0x00,0x80, 0x41,0x30, 0x46,0x20, -0x78,0x20, 0x40,0xB0, 0x55,0x20, 0x52,0x20, -0x5D,0x20, 0x40,0xB0, 0x58,0x60, 0x68,0xA0, -/* @ying14 Ӱ(12x12,V)@ [suki software]*/ -0x02,0x00, 0xFA,0xE0, 0xAA,0xA0, 0xAA,0xA0, -0xAE,0xB0, 0xAA,0xA0, 0xAA,0xA0, 0xFA,0xE0, -0x02,0x00, 0x00,0x00, 0x04,0x20, 0x08,0x40, -/* @ying15 ӱ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x80, 0xF2,0x90, 0x2A,0xA0, -0x2B,0xF0, 0x4A,0xA0, 0x1A,0x90, 0x40,0x00, -0x4F,0xF0, 0x58,0x00, 0x6B,0xF0, 0x48,0x00, -/* @ying16 Ӳ(12x12,V)@ [suki software]*/ -0x40,0x80, 0x43,0x00, 0x4F,0xF0, 0x72,0x10, -0x42,0x10, 0x43,0xF0, 0x00,0x20, 0x5F,0xD0, -0x52,0x40, 0x52,0x70, 0x7F,0xC0, 0x52,0x40, -/* @ying17 ӳ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x3F,0xF0, 0x22,0x10, 0x22,0x10, -0x3F,0xF0, 0x00,0x80, 0x1F,0x80, 0x10,0x80, -0x10,0x90, 0xFF,0xE0, 0x10,0x90, 0x10,0x80, -/* @yo0 Ӵ(12x12,V)@ [suki software]*/ -0x3F,0xE0, 0x20,0x40, 0x20,0x40, 0x3F,0xE0, -0x02,0x40, 0x0C,0xE0, 0xF5,0x40, 0x46,0x40, -0x0C,0x40, 0x02,0x00, 0x1C,0x80, 0xE8,0x70, -/* @yong0 ӵ(12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x11,0x00, 0x12,0x00, 0x7F,0xF0, 0x44,0x80, -0x44,0x80, 0x44,0x80, 0x7F,0xF0, 0x44,0x80, -/* @yong1 Ӷ(12x12,V)@ [suki software]*/ -0x01,0x00, 0x02,0x00, 0x0C,0x00, 0x3F,0xF0, -0xC0,0x00, 0x00,0x10, 0x7F,0xE0, 0x44,0x80, -0x44,0x80, 0x7F,0xF0, 0x44,0x80, 0x44,0x80, -/* @yong2 ӷ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x44,0x80, 0x44,0x80, -0x7F,0xF0, 0x26,0x40, 0x3B,0xC0, 0x22,0x70, -0x24,0xC0, 0xBF,0xF0, 0x65,0x20, 0x35,0x20, -/* @yong3 Ӹ(12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x40, 0x00,0x90, 0x3F,0xE0, -0x20,0x00, 0x2F,0xF0, 0x29,0x20, 0xA9,0x20, -0x69,0x20, 0x2F,0xF0, 0x29,0x20, 0x29,0x20, -/* @yong4 ӹ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x44,0x00, -0x55,0x70, 0x55,0x50, 0x55,0x50, 0x55,0x50, -0xFF,0xF0, 0x55,0x50, 0x55,0x50, 0x55,0x50, -/* @yong5 Ӻ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x22,0x20, 0x26,0x60, 0x3B,0xA0, -0x22,0x30, 0x24,0x60, 0xA1,0x00, 0x67,0xF0, -0x3C,0x90, 0x24,0x90, 0x34,0x90, 0x2F,0xF0, -/* @yong6 ӻ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x7C,0xF0, 0x44,0x00, 0x47,0xF0, -0x44,0x40, 0x7C,0x40, 0x00,0x00, 0x47,0xF0, -0x44,0x90, 0x54,0x90, 0x4F,0xF0, 0x4C,0x90, -/* @yong7 Ӽ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x0F,0xC0, 0x08,0x80, 0xFF,0xF0, -0x08,0x80, 0x0F,0xD0, 0x00,0x00, 0x47,0xF0, -0x45,0x20, 0x55,0x20, 0x4F,0xF0, 0x55,0x20, -/* @yong8 ӽ(12x12,V)@ [suki software]*/ -0x3F,0xE0, 0x20,0x40, 0x20,0x40, 0x3F,0xE0, -0x00,0x00, 0x02,0x10, 0x12,0x60, 0x93,0x80, -0x90,0x00, 0x5F,0xF0, 0x00,0x80, 0x01,0x40, -/* @yong9 Ӿ(12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x20, 0x80,0x70, 0x67,0x80, -0x00,0x00, 0x12,0x30, 0x12,0xC0, 0x13,0x00, -0x90,0x00, 0x5F,0xF0, 0x01,0x80, 0x02,0x40, -/* @yong10 ӿ(12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x20, 0x80,0x70, 0x63,0x80, -0x0C,0x00, 0x00,0x00, 0x8F,0xF0, 0x89,0x20, -0xA9,0x20, 0x9F,0xF0, 0x99,0x20, 0xA9,0x20, -/* @yong11 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x02,0x00, 0x02,0x00, 0x12,0x30, -0x12,0xC0, 0x13,0x00, 0x90,0x00, 0x5F,0xF0, -0x62,0x00, 0x01,0x00, 0x02,0xC0, 0x04,0x20, -/* @yong12 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x9F,0xC0, -0x95,0x10, 0x95,0x00, 0xD5,0x20, 0xBF,0xD0, -0x95,0x00, 0xB5,0x00, 0xD5,0x40, 0x95,0x20, -/* @yong13 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x20, 0x9F,0xA0, 0x95,0x20, -0x95,0x20, 0x95,0x20, 0xD5,0x70, 0xBF,0xA0, -0xB5,0x20, 0xD5,0x20, 0xD5,0x20, 0x95,0x20, -/* @yong14 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x7F,0xF0, -0x44,0x40, 0x44,0x40, 0x44,0x40, 0x44,0x40, -0x7F,0xF0, 0x44,0x40, 0x44,0x40, 0x44,0x40, -/* @you0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x1F,0xF0, 0x03,0x20, 0x05,0x60, -0x19,0xA0, 0x0B,0x70, 0x00,0x20, 0xFF,0xF0, -0x01,0x20, 0x07,0x60, 0x19,0xA0, 0x0B,0x70, -/* @you1 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x1F,0xF0, 0xE8,0x00, -0x40,0x00, 0x08,0x00, 0x08,0x10, 0x0F,0xE0, -0xF8,0x00, 0x0F,0xF0, 0x48,0x00, 0x38,0x00, -/* @you2 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x08,0x00, 0x3F,0xC0, 0xC0,0x00, -0x1F,0x10, 0x04,0x00, 0x08,0x00, 0x30,0xA0, -0xE8,0x90, 0x25,0x00, 0x22,0x00, 0x2D,0x00, -/* @you3 (12x12,V)@ [suki software]*/ -0x0E,0x00, 0x00,0x00, 0xFF,0xF0, 0x10,0x00, -0x08,0x00, 0x04,0x00, 0x04,0x10, 0x04,0xE0, -0xFF,0x00, 0x04,0x00, 0x07,0xF0, 0x44,0x00, -/* @you4 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x08,0x00, 0x08,0x00, 0x08,0x00, -0x08,0x10, 0x08,0x60, 0xFF,0x80, 0x08,0x00, -0x08,0x00, 0x4F,0xF0, 0x28,0x00, 0x38,0x00, -/* @you5 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x0F,0xF0, 0x08,0x80, -0x08,0x80, 0x08,0x80, 0x08,0x80, 0xFF,0xF0, -0x08,0x80, 0x08,0x80, 0x08,0x80, 0x08,0x80, -/* @you6 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x1F,0xF0, 0x11,0x10, 0x11,0x10, -0xFF,0xF0, 0x11,0x10, 0x11,0x10, 0x1F,0xF0, -0x00,0x00, 0x7F,0xF0, 0x40,0x00, 0x44,0x10, -/* @you7 (12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0x34,0x80, 0xD7,0xF0, -0x14,0x80, 0x14,0x80, 0x10,0x00, 0x0F,0xF0, -0x08,0x80, 0x08,0x80, 0xFF,0xF0, 0x08,0x80, -/* @you8 (12x12,V)@ [suki software]*/ -0x00,0x20, 0x44,0x40, 0x28,0x80, 0x19,0x00, -0x27,0xF0, 0x48,0x00, 0x08,0x00, 0x08,0x70, -0xFF,0x80, 0x08,0x00, 0x8F,0xF0, 0x68,0x00, -/* @you9 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x86,0x20, 0x60,0xF0, 0x0F,0x00, -0x00,0x00, 0x0F,0xF0, 0x08,0x40, 0x08,0x40, -0x08,0x40, 0xFF,0xF0, 0x08,0x40, 0x08,0x40, -/* @you10 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x86,0x30, 0x61,0xC0, 0x06,0x00, -0x10,0x10, 0x9F,0xE0, 0x72,0x00, 0x13,0xF0, -0x14,0x00, 0x08,0x40, 0xF4,0x40, 0x15,0xF0, -/* @you11 (12x12,V)@ [suki software]*/ -0x40,0x00, 0x40,0x00, 0x4F,0xF0, 0x48,0x60, -0x48,0xA0, 0x4B,0x20, 0x7C,0x20, 0x48,0x20, -0x7F,0x20, 0x48,0xA0, 0x48,0xA0, 0x48,0xA0, -/* @you12 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x20,0x80, 0x21,0x00, 0x22,0x00, -0x27,0xF0, 0x2C,0x90, 0x34,0x90, 0xE4,0x90, -0x24,0x90, 0x24,0x90, 0x24,0x90, 0x27,0xF0, -/* @you13 (12x12,V)@ [suki software]*/ -0x10,0x00, 0x10,0x00, 0x10,0x00, 0x10,0x10, -0x10,0x60, 0x13,0x80, 0xFE,0x80, 0x12,0x40, -0x12,0x30, 0x12,0x30, 0x12,0xC0, 0x13,0x00, -/* @you14 (12x12,V)@ [suki software]*/ -0x10,0x20, 0x10,0x40, 0x10,0x80, 0x11,0x00, -0x13,0xF0, 0x1C,0x80, 0xF0,0x80, 0x10,0x80, -0x10,0x80, 0x10,0x80, 0x10,0x80, 0x10,0x80, -/* @you15 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x1F,0xF0, 0xE0,0x10, -0x50,0x20, 0x10,0x40, 0x11,0xF0, 0x17,0x00, -0xF9,0x00, 0x11,0x00, 0x11,0x00, 0x11,0x00, -/* @you16 (12x12,V)@ [suki software]*/ -0x04,0x10, 0x54,0x60, 0x4D,0x80, 0x7F,0xF0, -0x4D,0x00, 0x94,0xC0, 0x80,0x00, 0x0F,0xF0, -0x08,0x80, 0x08,0x80, 0xFF,0xF0, 0x08,0x80, -/* @you17 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x82,0x00, 0x73,0xF0, 0x20,0x00, -0x00,0x10, 0x11,0x00, 0x53,0x00, 0x55,0x10, -0x59,0xE0, 0x7F,0x00, 0x99,0x00, 0x95,0x60, -/* @you18 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x40,0x00, 0x60,0x00, -0x58,0x00, 0x46,0x00, 0x41,0x90, 0x40,0x60, -0x40,0x60, 0x41,0x90, 0x46,0x00, 0x58,0x00, -/* @you19 (12x12,V)@ [suki software]*/ -0x02,0x10, 0x07,0x10, 0x1A,0x30, 0xE2,0xD0, -0x43,0x10, 0x0E,0x30, 0x04,0x10, 0x08,0x00, -0x08,0x70, 0xFF,0x80, 0x08,0x00, 0x08,0x00, -/* @yu0 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x82,0x00, 0x73,0xF0, 0x20,0x00, -0x04,0x00, 0x44,0x00, 0x44,0x00, 0x44,0x10, -0x44,0x00, 0x7F,0xF0, 0x44,0x00, 0x44,0x00, -/* @yu1 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x86,0x30, 0x60,0xE0, 0x07,0x00, -0x10,0x10, 0x9F,0xE0, 0x72,0x00, 0x13,0xF0, -0x11,0x00, 0x02,0x00, 0x0C,0x10, 0xF1,0x00, -/* @yu2 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x02,0x00, 0x42,0x00, 0x42,0x00, -0x42,0x00, 0x42,0x00, 0x42,0x00, 0x7F,0xF0, -0x42,0x00, 0x42,0x00, 0x42,0x00, 0x42,0x00, -/* @yu3 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x08,0x00, 0x48,0x70, 0x48,0x40, -0x48,0x40, 0x49,0x70, 0x48,0xC0, 0x7F,0x40, -0x48,0x70, 0x48,0x40, 0x48,0x40, 0x48,0x70, -/* @yu4 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x11,0x80, 0x16,0x00, 0xFF,0xF0, -0x14,0x00, 0x0A,0x00, 0x0B,0xF0, 0x12,0xA0, -0x2A,0xA0, 0xCB,0xF0, 0x48,0x00, 0x29,0xF0, -/* @yu5 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x1F,0xF0, 0x10,0x00, -0x14,0xE0, 0x14,0xA0, 0xFE,0xA0, 0x55,0xB0, -0x55,0xA0, 0x55,0xA0, 0x51,0xA0, 0x52,0xE0, -/* @yu6 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x03,0xE0, 0xFA,0x00, -0xAA,0x90, 0xAA,0x80, 0xAA,0x80, 0xFF,0x90, -0xAA,0x80, 0xAB,0x80, 0xAA,0xC0, 0xAA,0x00, -/* @yu7 (12x12,V)@ [suki software]*/ -0x00,0x20, 0x00,0x20, 0x7F,0xE0, 0x51,0x20, -0x91,0x20, 0x2D,0x20, 0xF5,0x20, 0x2F,0xE0, -0x25,0x20, 0x25,0x20, 0x49,0x20, 0x49,0x20, -/* @yu8 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x02,0x00, 0x04,0x80, 0x04,0xB0, -0x0C,0x90, 0x14,0x80, 0x24,0x80, 0xC7,0xF0, -0x24,0x80, 0x14,0xA0, 0x14,0x90, 0x0C,0x90, -/* @yu9 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x04,0x00, 0x0B,0xF0, 0x0A,0x90, -0x1A,0x90, 0x2A,0x90, 0x4B,0xF0, 0x88,0x00, -0x48,0x00, 0x29,0xF0, 0x18,0x00, 0x08,0x00, -/* @yu10 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x82,0x00, 0x63,0xF0, 0x00,0x00, -0x08,0x00, 0x0B,0xF0, 0x12,0xA0, 0x2A,0xA0, -0xCB,0xF0, 0x28,0x00, 0x19,0xE0, 0x10,0x00, -/* @yu11 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x02,0x00, 0x04,0x00, 0x1F,0xF0, -0xE8,0x90, 0x48,0x90, 0x48,0x90, 0x4F,0xF0, -0x48,0x90, 0x58,0x90, 0x68,0x90, 0x08,0x90, -/* @yu12 (12x12,V)@ [suki software]*/ -0x0E,0x00, 0x00,0x00, 0xFF,0xF0, 0x10,0x00, -0x08,0x00, 0x0B,0xF0, 0x12,0xA0, 0x1A,0xA0, -0x2B,0xF0, 0xC8,0x00, 0x28,0x00, 0x19,0xF0, -/* @yu13 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x86,0x30, 0x60,0xC0, 0x03,0x00, -0x08,0x00, 0x0B,0xF0, 0x12,0xA0, 0x1A,0xA0, -0x2B,0xF0, 0xC8,0x00, 0x29,0xF0, 0x18,0x00, -/* @yu14 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x20, 0x80,0xF0, 0x63,0x00, -0x04,0x00, 0x08,0x00, 0x37,0xF0, 0xE4,0x90, -0x24,0x90, 0x27,0xF0, 0x2C,0x90, 0x34,0x90, -/* @yu15 (12x12,V)@ [suki software]*/ -0x00,0x00, 0xFF,0xF0, 0x88,0x40, 0xB4,0x20, -0xC3,0xC0, 0x00,0xF0, 0x7C,0x90, 0x54,0x90, -0x54,0x90, 0x7F,0xF0, 0x54,0x90, 0x54,0xB0, -/* @yu16 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x04,0x00, 0x04,0x00, 0x84,0x00, -0x84,0x00, 0xA4,0x00, 0x94,0x00, 0x8F,0xF0, -0x94,0x00, 0xA4,0x00, 0xE4,0x00, 0xC4,0x80, -/* @yu17 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x08,0x80, 0x0F,0x40, 0xF8,0x30, -0x49,0xD0, 0x0E,0x00, 0x02,0x40, 0x7A,0x40, -0x4A,0x40, 0x4A,0x50, 0x4B,0xE0, 0x4A,0x50, -/* @yu18 (12x12,V)@ [suki software]*/ -0x40,0x00, 0x40,0x00, 0x4F,0xF0, 0x4C,0x80, -0x4A,0x40, 0x49,0x20, 0x48,0x00, 0x7F,0xF0, -0x4C,0x80, 0x4A,0x40, 0x49,0x20, 0x48,0x00, -/* @yu19 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x20, 0x00,0x20, 0x00,0x20, -0x7E,0x20, 0x12,0x20, 0x12,0x20, 0x12,0x20, -0x12,0x20, 0x12,0x20, 0x12,0x60, 0x12,0x20, -/* @yu20 (12x12,V)@ [suki software]*/ -0x00,0x10, 0x0F,0xF0, 0x00,0x10, 0xFF,0xE0, -0x00,0x20, 0x0F,0xF0, 0x00,0x00, 0x02,0x20, -0xFF,0x20, 0x12,0x20, 0x12,0x20, 0x12,0x20, -/* @yu21 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0xF0, 0x40,0x80, 0x5E,0x90, -0x52,0x90, 0x52,0x90, 0x52,0x90, 0x7F,0xF0, -0x52,0x90, 0x52,0x90, 0x52,0xD0, 0x52,0xB0, -/* @yu22 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x08,0x80, 0x30,0x80, 0x24,0x80, -0x24,0x80, 0x24,0x80, 0x24,0x80, 0xA4,0x80, -0x67,0xF0, 0x24,0x80, 0x24,0x80, 0x24,0x80, -/* @yu23 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x84,0x00, 0x77,0xF0, 0x20,0x00, -0x00,0x00, 0x01,0x00, 0x49,0x00, 0x49,0x70, -0x4F,0x40, 0x79,0x40, 0x49,0x40, 0x49,0x40, -/* @yu24 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x40,0x20, 0x48,0x20, 0x46,0x40, -0x40,0x80, 0x41,0x00, 0x7F,0xF0, 0x00,0x00, -0x40,0x20, 0x48,0x20, 0x46,0x40, 0x40,0x80, -/* @yu25 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x40,0x00, 0x42,0x00, 0x42,0x00, -0x42,0x00, 0x42,0x00, 0x42,0x00, 0x7F,0xF0, -0x42,0x00, 0x42,0x80, 0x42,0x60, 0x42,0x30, -/* @yu26 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x08,0x00, 0xFF,0xF0, 0x08,0x10, -0x08,0x10, 0x13,0xE0, 0x12,0x40, 0x12,0x40, -0x13,0xE0, 0x10,0x00, 0xFF,0xD0, 0x10,0x30, -/* @yu27 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x20,0x80, 0x24,0x80, 0x24,0x80, -0x24,0x80, 0xF4,0x80, 0x24,0x80, 0x27,0xF0, -0x24,0x80, 0xF4,0x80, 0x24,0x80, 0x24,0x80, -/* @yu28 (12x12,V)@ [suki software]*/ -0x21,0x00, 0x22,0x00, 0x27,0xF0, 0x3D,0x20, -0xE5,0x20, 0x25,0x20, 0x25,0x20, 0x27,0xF0, -0x20,0x00, 0x7F,0xF0, 0x40,0x00, 0x44,0x00, -/* @xu17 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xE0, 0x40,0x40, 0x40,0x40, -0x40,0x40, 0x7F,0xE0, 0x42,0x00, 0x42,0x00, -0x42,0x00, 0x42,0x00, 0x7F,0xF0, 0x42,0x00, -/* @yu29 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x42,0x00, 0x33,0xF0, 0x00,0x00, -0x00,0x00, 0x01,0xF0, 0x7D,0x00, 0x55,0x20, -0x55,0x20, 0x7F,0xE0, 0x55,0x20, 0x55,0x60, -/* @yu30 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x3F,0xE0, 0x20,0x40, 0x20,0x40, -0x3F,0xE0, 0x08,0x00, 0x0B,0xF0, 0x12,0xA0, -0x2A,0xA0, 0xCB,0xF0, 0x28,0x00, 0x19,0xF0, -/* @yu31 (12x12,V)@ [suki software]*/ -0x0F,0xF0, 0x00,0x10, 0xFF,0xF0, 0x00,0x20, -0x0F,0xF0, 0x04,0x40, 0x08,0x80, 0x11,0x70, -0xE6,0x40, 0x58,0x40, 0x04,0x40, 0x82,0x40, -/* @yu32 (12x12,V)@ [suki software]*/ -0x08,0x80, 0x11,0x00, 0x73,0xF0, 0x2C,0x00, -0x06,0x00, 0x1A,0xF0, 0xE2,0x00, 0x3F,0xF0, -0x22,0x40, 0x22,0x40, 0x00,0x00, 0x3F,0xF0, -/* @yu33 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x08,0x00, 0x17,0xE0, 0x15,0x00, -0x26,0x80, 0x35,0x20, 0x57,0xE0, 0x90,0x00, -0x53,0x80, 0x30,0x40, 0x20,0x20, 0x17,0xC0, -/* @yu34 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x08,0x80, 0x31,0xF0, 0xC2,0x80, -0x0C,0x80, 0x42,0x80, 0x31,0xF0, 0x04,0x80, -0x08,0x00, 0x30,0x30, 0xD7,0xC0, 0x10,0x30, -/* @yu35 (12x12,V)@ [suki software]*/ -0x44,0x20, 0x28,0x40, 0x10,0x80, 0x2F,0xF0, -0xC4,0x00, 0x04,0x00, 0x47,0xF0, 0x20,0x10, -0x04,0x10, 0x04,0xE0, 0xFF,0x00, 0x04,0xC0, -/* @yu36 (12x12,V)@ [suki software]*/ -0x20,0x00, 0x20,0x00, 0x24,0x00, 0x27,0xF0, -0x2D,0x50, 0x35,0x50, 0xA5,0x50, 0x65,0x50, -0x25,0x50, 0x25,0x50, 0x35,0x50, 0x2F,0xF0, -/* @yu37 (12x12,V)@ [suki software]*/ -0x10,0x80, 0x11,0x00, 0x92,0x00, 0x56,0x00, -0x1A,0xA0, 0x12,0xA0, 0x9A,0xA0, 0x56,0xA0, -0x12,0xA0, 0x12,0xA0, 0x3A,0xA0, 0x56,0x00, -/* @yu38 ԡ(12x12,V)@ [suki software]*/ -0x10,0x20, 0x0C,0x20, 0x80,0xF0, 0x67,0x40, -0x00,0x40, 0x08,0x80, 0x11,0x70, 0x62,0x40, -0x0C,0x40, 0x04,0x40, 0x82,0x40, 0x41,0x40, -/* @yu39 Ԣ(12x12,V)@ [suki software]*/ -0x08,0x00, 0x30,0x00, 0x20,0x30, 0x2F,0xA0, -0x2A,0xA0, 0x2A,0xA0, 0xAA,0xA0, 0x6F,0xF0, -0x2A,0xA0, 0x2A,0xB0, 0x2A,0xA0, 0x2F,0xA0, -/* @yu40 ԣ(12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x80, 0x91,0x00, 0x53,0xF0, -0x1C,0xC0, 0x09,0x20, 0x10,0x80, 0xE1,0x70, -0x46,0x40, 0x18,0x40, 0x04,0x40, 0x82,0x40, -/* @yu41 Ԥ(12x12,V)@ [suki software]*/ -0x04,0x00, 0x44,0x00, 0x54,0x00, 0x4F,0xF0, -0x54,0x00, 0x66,0x00, 0x04,0x00, 0x40,0x00, -0x4F,0xE0, 0x58,0x10, 0x6B,0xE0, 0x48,0x10, -/* @yu42 ԥ(12x12,V)@ [suki software]*/ -0x44,0x00, 0x54,0x00, 0x4F,0xF0, 0x54,0x00, -0x66,0x50, 0x4C,0x50, 0x10,0xA0, 0x3C,0xA0, -0xD5,0x40, 0x56,0x90, 0x5C,0x70, 0x74,0xA0, -/* @yu43 Ԧ(12x12,V)@ [suki software]*/ -0x40,0x10, 0x5F,0x10, 0x41,0x20, 0x41,0x20, -0x7F,0x00, 0x01,0xF0, 0x20,0x00, 0x38,0x00, -0x27,0x00, 0x20,0xD0, 0x20,0x60, 0x21,0x90, -/* @yuan0 ԧ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x0A,0x00, 0x32,0x00, 0xD4,0x00, -0x4B,0xE0, 0x56,0x20, 0x63,0x20, 0x02,0xA0, -0x7A,0x20, 0x46,0x20, 0x56,0xA0, 0x57,0xA0, -/* @yuan1 Ԩ(12x12,V)@ [suki software]*/ -0x10,0x40, 0x0C,0x70, 0x81,0x80, 0x66,0x00, -0x00,0x00, 0xFF,0xF0, 0x12,0x10, 0x0A,0x60, -0x06,0x80, 0x7F,0xF0, 0x06,0x80, 0x1A,0x60, -/* @yuan2 ԩ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x10,0x00, 0x60,0x00, 0x47,0xC0, -0x4A,0x80, 0x72,0x80, 0x52,0xB0, 0x53,0xC0, -0x52,0x80, 0x56,0xF0, 0x5A,0x80, 0x42,0xA0, -/* @yuan3 Ԫ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x04,0x00, 0x04,0x00, 0x44,0x00, -0x44,0x30, 0x47,0xC0, 0x44,0x00, 0x44,0x00, -0x44,0x00, 0x47,0xF0, 0x44,0x00, 0x44,0x00, -/* @yuan4 ԫ(12x12,V)@ [suki software]*/ -0x04,0x10, 0x04,0x10, 0xFF,0xF0, 0x04,0x20, -0x04,0x20, 0x40,0x00, 0x4F,0xF0, 0x49,0x10, -0x49,0x10, 0x49,0x10, 0x49,0x10, 0x49,0x10, -/* @yuan5 Ԭ(12x12,V)@ [suki software]*/ -0x08,0x00, 0x08,0x00, 0x28,0x00, 0x2B,0x80, -0x2A,0x90, 0x2A,0xA0, 0x2A,0xC0, 0xFA,0xC0, -0x2A,0xA0, 0x2A,0x90, 0x2A,0x80, 0x2B,0x90, -/* @yuan6 ԭ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x40,0x00, -0x40,0x00, 0x4F,0xD0, 0x4A,0x40, 0x7A,0x40, -0x6A,0x70, 0x4A,0x40, 0x4A,0x50, 0x4F,0xC0, -/* @yuan7 Ԯ(12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x12,0x00, 0x55,0x00, 0x61,0x10, 0x59,0x60, -0x6F,0xD0, 0x59,0x40, 0x89,0x50, 0x99,0x60, -/* @yuan8 ԯ(12x12,V)@ [suki software]*/ -0x22,0x10, 0x27,0x10, 0x3A,0x20, 0xE7,0xF0, -0x22,0x40, 0x22,0x40, 0x08,0x00, 0x2B,0x90, -0x2A,0xB0, 0x2A,0xC0, 0xFA,0xE0, 0x2A,0x90, -/* @yuan9 ԰(12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x40,0x00, 0x42,0x10, -0x52,0x20, 0x53,0xC0, 0x52,0x00, 0x52,0x00, -0x53,0xE0, 0x52,0x10, 0x56,0x10, 0x42,0x70, -/* @yuan10 Ա(12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x07,0xF0, -0xF4,0x00, 0x94,0x00, 0x94,0x10, 0x95,0xE0, -0x94,0x10, 0x94,0x00, 0x94,0x00, 0xF4,0x00, -/* @yuan11 Բ(12x12,V)@ [suki software]*/ -0x00,0x00, 0xFF,0xF0, 0x80,0x00, 0x80,0x00, -0xBB,0xE0, 0xAA,0x00, 0xAA,0x10, 0xAA,0xE0, -0xAA,0x10, 0xAA,0x00, 0xBB,0xE0, 0x80,0x00, -/* @yuan12 Գ(12x12,V)@ [suki software]*/ -0x04,0x20, 0x48,0x40, 0x30,0x80, 0x39,0x00, -0xC7,0xF0, 0x08,0x00, 0x28,0x10, 0x2B,0xB0, -0x2A,0xC0, 0xFA,0xE0, 0x2A,0x90, 0x2A,0x80, -/* @yuan13 Դ(12x12,V)@ [suki software]*/ -0x08,0x20, 0x84,0x30, 0x60,0xC0, 0x07,0x00, -0x00,0x00, 0x7F,0xF0, 0x40,0x00, 0x4F,0x80, -0x5A,0xB0, 0x6A,0x80, 0x4A,0xF0, 0x4A,0x80, -/* @yuan14 Ե(12x12,V)@ [suki software]*/ -0x04,0x40, 0x1C,0xC0, 0xE5,0x40, 0x46,0x50, -0x08,0x90, 0x04,0xA0, 0x05,0x40, 0x36,0x40, -0xD6,0x90, 0x55,0xA0, 0x54,0xF0, 0x5C,0x40, -/* @yuan15 Զ(12x12,V)@ [suki software]*/ -0x02,0x00, 0x42,0x00, 0x32,0x00, 0x23,0xF0, -0x04,0x00, 0x44,0x10, 0x44,0x20, 0x47,0xC0, -0x44,0x00, 0x44,0x00, 0x47,0xE0, 0x44,0x10, -/* @yuan16 Է(12x12,V)@ [suki software]*/ -0x00,0x20, 0x20,0xC0, 0x2F,0x00, 0x22,0x40, -0x22,0x20, 0xFA,0x10, 0x23,0xE0, 0x20,0x00, -0x27,0xF0, 0x24,0x00, 0xFC,0x20, 0x24,0x30, -/* @yuan17 Ը(12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x10, 0xFF,0xE0, 0x80,0x00, -0x80,0x50, 0xBE,0x40, 0xAA,0x90, 0xEA,0x00, -0xAA,0x50, 0xAB,0xE0, 0xAA,0x00, 0xAA,0x00, -/* @yuan18 Թ(12x12,V)@ [suki software]*/ -0x02,0x40, 0x04,0x40, 0x1C,0x90, 0xE2,0x80, -0x21,0x30, 0x26,0x00, 0x38,0x40, 0x00,0x30, -0x7F,0x80, 0x40,0x40, 0x44,0x40, 0x42,0x40, -/* @yuan19 Ժ(12x12,V)@ [suki software]*/ -0x7F,0xF0, 0x40,0x00, 0x4C,0x40, 0x52,0x20, -0x61,0xC0, 0x30,0x80, 0x24,0x80, 0x24,0xF0, -0xA4,0x80, 0x64,0x80, 0x24,0xF0, 0x24,0x80, -/* @yue0 Ի(12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x3F,0xF0, 0x21,0x00, -0x21,0x00, 0x21,0x00, 0x21,0x00, 0x21,0x00, -0x21,0x00, 0x21,0x00, 0x21,0x00, 0x21,0x00, -/* @yue1 Լ(12x12,V)@ [suki software]*/ -0x02,0x00, 0x06,0x40, 0x1A,0xC0, 0xE3,0x40, -0x06,0x50, 0x18,0x50, 0x02,0x10, 0x04,0x00, -0x1A,0x00, 0xF1,0x00, 0x10,0xC0, 0x10,0x00, -/* @yue2 Խ(12x12,V)@ [suki software]*/ -0x02,0x00, 0x12,0xF0, 0x12,0x00, 0x12,0x00, -0xFF,0xF0, 0x12,0x40, 0x02,0x40, 0x1F,0xF0, -0x10,0x20, 0x10,0x50, 0xFE,0x20, 0x11,0xC0, -/* @yue3 Ծ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x7C,0xF0, 0x44,0x00, 0x47,0xF0, -0x44,0x80, 0x7C,0x80, 0x02,0x00, 0x22,0x00, -0x22,0x30, 0x22,0xC0, 0x7F,0x00, 0x42,0xC0, -/* @yao16 Կ(12x12,V)@ [suki software]*/ -0x01,0x00, 0x02,0x80, 0x0C,0x80, 0xF4,0x80, -0x27,0xF0, 0x24,0x80, 0x24,0x80, 0x20,0x80, -0x00,0x00, 0x7F,0xF0, 0x48,0x80, 0x48,0x80, -/* @yue4 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x00,0x80, 0x00,0x80, 0x7F,0xB0, -0x48,0x80, 0x48,0x80, 0x48,0x80, 0x48,0xF0, -0x4F,0x80, 0x48,0x80, 0x48,0x80, 0xC8,0x80, -/* @yue5 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x00,0x40, 0x7F,0xC0, 0x41,0x40, -0x4B,0x70, 0xDD,0x50, 0x49,0x50, 0x7F,0x50, -0x49,0x50, 0x5D,0x50, 0x4B,0x50, 0x41,0x50, -/* @yue6 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x00,0x30, 0xFF,0xC0, 0x88,0x80, 0x88,0x80, -0x88,0x80, 0x88,0x80, 0x88,0x80, 0xFF,0xF0, -/* @yue7 (12x12,V)@ [suki software]*/ -0x0E,0x00, 0x00,0x00, 0xFF,0xF0, 0x10,0x00, -0x0C,0x00, 0x00,0x00, 0x9F,0x80, 0x50,0x90, -0x30,0xE0, 0x10,0x80, 0x30,0xF0, 0x50,0x80, -/* @yue8 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x3F,0xF0, 0x80,0x00, 0x60,0x00, -0x07,0x80, 0x14,0x90, 0x4C,0xE0, 0x44,0x80, -0x44,0xF0, 0x4C,0x80, 0x57,0x80, 0x40,0x30, -/* @yun0 (12x12,V)@ [suki software]*/ -0x21,0x00, 0x29,0x00, 0x29,0x30, 0x29,0xC0, -0xFF,0xF0, 0x29,0x40, 0x29,0x30, 0x02,0x00, -0x22,0x00, 0x22,0x30, 0x23,0xC0, 0x22,0x00, -/* @yun1 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x02,0x00, 0x22,0x00, 0x22,0x10, -0x22,0x30, 0x22,0xE0, 0x23,0xC0, 0x23,0x80, -0x22,0x00, 0x22,0x40, 0x62,0x20, 0x62,0x10, -/* @yun2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x77,0xF0, 0x54,0x00, 0x54,0x10, -0x55,0xE0, 0x54,0x10, 0x54,0x00, 0x77,0xF0, -0x00,0x00, 0x7F,0xF0, 0x40,0x00, 0x44,0x10, -/* @yun3 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x02,0x00, 0x04,0x10, 0x18,0x10, -0xE0,0x10, 0x24,0x20, 0x24,0x20, 0x22,0x20, -0x23,0x40, 0x20,0x40, 0x20,0x40, 0x20,0x00, -/* @yun4 (12x12,V)@ [suki software]*/ -0x00,0x00, 0xFF,0xF0, 0x88,0x40, 0x94,0x20, -0xE3,0xC0, 0x00,0x00, 0x07,0xF0, 0xF4,0x00, -0x94,0x10, 0x95,0xE0, 0x94,0x10, 0x94,0x00, -/* @yun5 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x04,0x00, -0x0E,0x00, 0x34,0x30, 0xC7,0xC0, 0x04,0x00, -0x04,0x00, 0x07,0xF0, 0x04,0x00, 0x14,0x00, -/* @yun6 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x82,0x00, 0x73,0xF0, 0x20,0x00, -0x00,0x10, 0x04,0x30, 0x44,0x50, 0x45,0x90, -0x46,0x10, 0x44,0x30, 0x45,0x20, 0x44,0xA0, -/* @yun7 (12x12,V)@ [suki software]*/ -0x21,0x00, 0x23,0x20, 0x25,0x60, 0x29,0xA0, -0x21,0x40, 0xF2,0x40, 0x20,0x30, 0x2F,0xA0, -0x2A,0xB0, 0xFA,0xA0, 0x2A,0xA0, 0x2A,0xB0, -/* @yun8 (12x12,V)@ [suki software]*/ -0x4F,0xF0, 0x48,0xA0, 0x7F,0x20, 0x48,0x20, -0x7F,0xA0, 0x48,0xA0, 0x4F,0xF0, 0x02,0x00, -0x42,0x10, 0x42,0x60, 0x43,0x80, 0x42,0x00, -/* @yun9 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x03,0x00, 0x02,0x80, 0xFA,0x90, -0xAA,0xB0, 0xAA,0xD0, 0xAA,0x90, 0xAB,0xB0, -0xAA,0x90, 0xAA,0x90, 0xAA,0x90, 0xFA,0x90, -/* @yun10 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x22,0x00, 0x32,0xF0, 0xAE,0x90, -0x62,0x90, 0x26,0x90, 0x3A,0xF0, 0x26,0x00, -0x08,0x10, 0x34,0x10, 0xD3,0x20, 0x10,0x40, -/* @yun11 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x01,0x40, 0x82,0x40, 0x84,0x40, -0x9C,0x40, 0xE4,0x40, 0x84,0x40, 0x85,0x40, -0x84,0xF0, 0x85,0x40, 0xF6,0x40, 0x15,0x40, -/* @za0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x40,0x00, 0x40,0x00, -0x4F,0xF0, 0x48,0x00, 0x48,0x00, 0x48,0x00, -0x7F,0xF0, 0x48,0x00, 0x48,0x20, 0x48,0x10, -/* @za1 (12x12,V)@ [suki software]*/ -0x40,0x80, 0x43,0x00, 0x7F,0xF0, 0x42,0x00, -0x43,0xF0, 0x00,0x00, 0x7F,0xF0, 0x40,0x00, -0x4F,0xF0, 0x48,0x00, 0x7F,0xF0, 0x48,0x20, -/* @za2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x80, 0x22,0x80, 0x22,0x80, -0x24,0xB0, 0x38,0x80, 0xE0,0x80, 0x23,0xF0, -0x20,0x80, 0x20,0x80, 0x3C,0xA0, 0x02,0x90, -/* @zai0 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x24,0x80, 0x24,0x90, 0x24,0xA0, -0xFF,0xF0, 0x24,0xA0, 0x24,0x90, 0x24,0x90, -0x04,0x00, 0xFF,0x80, 0x04,0x70, 0x44,0x20, -/* @zai1 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x24,0xF0, 0x24,0x80, 0x24,0x80, -0xFC,0x80, 0x24,0x80, 0x24,0xF0, 0x24,0x00, -0x04,0x00, 0xFF,0x80, 0x04,0x70, 0x44,0x30, -/* @zai2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x08,0x00, 0x30,0x20, 0x21,0xC0, -0x20,0x00, 0x20,0x10, 0xA0,0xE0, 0x7F,0x00, -0x28,0xC0, 0x20,0x20, 0x20,0x90, 0x23,0x00, -/* @zai3 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x30,0x80, 0x24,0x90, 0x24,0x90, -0x26,0x90, 0x25,0x90, 0x24,0x90, 0xB4,0xF0, -0x6C,0x90, 0x25,0x90, 0x26,0x90, 0x24,0x90, -/* @zai4 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x0A,0x40, 0x2A,0xC0, 0x2B,0x40, -0x2E,0x40, 0xFA,0xF0, 0x2A,0x50, 0x2A,0x50, -0x08,0x00, 0xFF,0x00, 0x08,0xF0, 0x48,0x30, -/* @zai5 (12x12,V)@ [suki software]*/ -0x00,0x20, 0x80,0x20, 0x80,0x20, 0x9F,0xF0, -0x92,0x20, 0x92,0x20, 0x92,0x20, 0xFF,0xE0, -0x92,0x20, 0x92,0x20, 0x92,0x20, 0x9F,0xF0, -/* @zai6 (12x12,V)@ [suki software]*/ -0x00,0x20, 0x20,0x40, 0x20,0x80, 0x23,0xF0, -0x26,0x00, 0x39,0x00, 0xE1,0x00, 0x21,0x00, -0x21,0x00, 0x27,0xF0, 0x21,0x00, 0x21,0x00, -/* @zan0 (12x12,V)@ [suki software]*/ -0x3F,0xF0, 0x20,0x40, 0x20,0x40, 0x20,0x40, -0x3F,0xE0, 0x00,0x00, 0x3F,0xF0, 0x24,0x40, -0x64,0x40, 0xA4,0x40, 0x24,0x40, 0x24,0x40, -/* @zan1 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x80, 0xFF,0xF0, 0x11,0x00, -0x12,0x80, 0x69,0x00, 0x2A,0x70, 0xFF,0x40, -0x2A,0x40, 0x11,0x50, 0x6A,0x40, 0x2C,0x40, -/* @zan2 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x49,0x00, 0x59,0x00, 0x69,0x70, -0xDF,0xD0, 0x4A,0x50, 0x4A,0xD0, 0x01,0x50, -0x7E,0x50, 0x48,0x50, 0x48,0x50, 0x48,0x70, -/* @zan3 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x19,0x00, 0x6A,0x00, 0x2C,0xF0, -0xF8,0x80, 0x2F,0x80, 0x2A,0x80, 0x11,0xF0, -0x6A,0x80, 0x2C,0x80, 0xF8,0x80, 0x2E,0xF0, -/* @zang0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xC0, 0x40,0x10, 0x5F,0xE0, -0x40,0x10, 0x7F,0xC0, 0x00,0x00, 0x3F,0xF0, -0x21,0x00, 0x21,0x00, 0xA1,0x00, 0x6F,0xF0, -/* @zang1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x48,0x80, 0x48,0x80, -0x48,0x80, 0x7F,0xF0, 0x00,0x00, 0x3F,0xF0, -0x20,0x00, 0x21,0x00, 0xA1,0x00, 0x6F,0xF0, -/* @zang2 (12x12,V)@ [suki software]*/ -0x41,0x20, 0x51,0x20, 0x52,0x60, 0x55,0x60, -0x5C,0xA0, 0xF5,0x70, 0x56,0x20, 0x54,0x20, -0x50,0x20, 0xFF,0x20, 0x52,0xF0, 0x54,0xA0, -/* @zao0 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x42,0x00, 0x33,0xF0, 0x00,0x00, -0x5F,0x00, 0x55,0x70, 0x55,0x50, 0xFF,0x50, -0x55,0x50, 0x55,0x50, 0xFF,0x50, 0x55,0x70, -/* @zao1 (12x12,V)@ [suki software]*/ -0x24,0x10, 0x1C,0xE0, 0x07,0x00, 0xFF,0xF0, -0x0D,0x00, 0x14,0xC0, 0x2F,0x80, 0x2A,0xB0, -0xFF,0xA0, 0x2A,0xA0, 0x2A,0xA0, 0xFF,0xA0, -/* @zao2 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x08,0x00, 0x4B,0xF0, 0x28,0x20, -0x19,0x20, 0x0D,0x20, 0xFB,0x20, 0x09,0xF0, -0x09,0x20, 0xFB,0x20, 0x0D,0x20, 0x18,0x20, -/* @zao3 (12x12,V)@ [suki software]*/ -0x44,0x20, 0x53,0x20, 0x4C,0x70, 0x43,0x80, -0x40,0x10, 0xE1,0xD0, 0x5D,0x50, 0x55,0x50, -0x55,0xD0, 0xF4,0x30, 0x55,0xD0, 0x5D,0x50, -/* @zao4 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x40, 0x20,0x40, 0x2E,0x80, -0x28,0x80, 0x29,0x00, 0x2A,0x40, 0xFF,0xA0, -0x2A,0x30, 0x29,0x10, 0x29,0x00, 0x28,0x80, -/* @zao5 (12x12,V)@ [suki software]*/ -0x00,0x20, 0x00,0x20, 0x00,0x20, 0x7F,0x20, -0x49,0x20, 0x49,0x20, 0x49,0x20, 0x49,0xF0, -0x49,0x20, 0x49,0x20, 0x49,0x20, 0x49,0x20, -/* @zao6 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x04,0x30, 0x81,0xC0, 0x66,0x00, -0x00,0x20, 0x07,0x20, 0x75,0x20, 0x57,0x30, -0x50,0xF0, 0x50,0x30, 0x57,0x20, 0x75,0x20, -/* @zao7 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x02,0x00, 0x82,0x00, 0x85,0xE0, -0xE5,0x20, 0x95,0x20, 0xC9,0x20, 0xAB,0xF0, -0x89,0x20, 0x95,0x20, 0xA5,0x30, 0xC3,0xE0, -/* @zao8 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7C,0xF0, 0x44,0x00, 0x47,0xF0, -0x7D,0x00, 0x01,0x00, 0x07,0x40, 0xF5,0x40, -0x95,0x50, 0x97,0x60, 0x90,0xF0, 0x97,0x60, -/* @zao9 (12x12,V)@ [suki software]*/ -0x7F,0xC0, 0x40,0x80, 0x40,0x80, 0x7F,0xC0, -0x00,0x40, 0x0F,0x40, 0x09,0x40, 0xF9,0x50, -0x9F,0x60, 0x90,0xF0, 0x9F,0x60, 0xF9,0x50, -/* @zao10 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x82,0x00, 0x63,0xF0, 0x00,0x00, -0x02,0x00, 0x0A,0x00, 0x72,0xF0, 0x12,0x90, -0x12,0x90, 0xFE,0x90, 0x12,0x90, 0x12,0x90, -/* @zao11 (12x12,V)@ [suki software]*/ -0x00,0x10, 0x00,0x10, 0x00,0x10, 0x3F,0x90, -0x24,0x90, 0x24,0x90, 0x64,0xF0, 0xA4,0xA0, -0x24,0xA0, 0x24,0xA0, 0x24,0xA0, 0x3F,0xA0, -/* @zao12 (12x12,V)@ [suki software]*/ -0x07,0x00, 0x00,0x00, 0xFF,0xF0, 0x04,0x20, -0x18,0x10, 0x02,0x00, 0x02,0x00, 0x02,0x00, -0x02,0x00, 0xFF,0xF0, 0x02,0x00, 0x02,0x00, -/* @zao13 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x0E,0x00, 0x00,0x30, 0xFF,0xC0, -0x10,0x30, 0x2F,0x40, 0x09,0x40, 0xF9,0x50, -0x9F,0x60, 0x90,0xF0, 0x9F,0x60, 0x99,0x50, -/* @ze0 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x44,0x00, 0x54,0x00, 0x55,0xF0, -0x55,0x00, 0x55,0x00, 0x55,0x00, 0xFD,0xF0, -0x55,0x00, 0x55,0x00, 0x55,0x00, 0x55,0xF0, -/* @ze1 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x80, 0xFF,0xF0, 0x11,0x00, -0x12,0x00, 0x10,0x10, 0x42,0x90, 0x62,0x90, -0x54,0x90, 0x4B,0xF0, 0x54,0x90, 0x62,0x90, -/* @ze2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xC0, 0x40,0x00, 0x40,0x30, -0x5F,0xE0, 0x40,0x10, 0x40,0x00, 0x7F,0xC0, -0x00,0x00, 0x00,0x00, 0x3F,0xF0, 0x00,0x00, -/* @ze3 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x20, 0x80,0xF0, 0x47,0x00, -0x18,0x10, 0x42,0x90, 0x62,0x90, 0x54,0x90, -0x49,0xF0, 0x58,0x90, 0x64,0x90, 0x44,0x90, -/* @zei0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xC0, 0x40,0x10, 0x5F,0xE0, -0x40,0x10, 0x7F,0xC0, 0x10,0x80, 0x17,0xF0, -0x10,0x80, 0x10,0x80, 0xFF,0xC0, 0x10,0x30, -/* @zen0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x04,0x00, 0x08,0x10, 0x10,0x00, -0xE0,0x00, 0x3F,0xD0, 0x29,0x00, 0x29,0x40, -0x29,0x30, 0x29,0x00, 0x29,0x00, 0x29,0x00, -/* @zeng0 (12x12,V)@ [suki software]*/ -0x08,0x10, 0x08,0x10, 0xFF,0xF0, 0x08,0x20, -0x08,0x20, 0x00,0x00, 0x9F,0x00, 0x51,0x70, -0x75,0x50, 0x13,0x50, 0x1F,0x50, 0x33,0x50, -/* @zeng1 (12x12,V)@ [suki software]*/ -0x07,0x00, 0x00,0x00, 0xFF,0xF0, 0x08,0x00, -0x04,0x00, 0x1F,0x00, 0x91,0x70, 0x55,0x50, -0x33,0x50, 0x1F,0x50, 0x33,0x50, 0x55,0x50, -/* @ceng2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x1F,0x00, 0x11,0x00, -0x99,0x70, 0x57,0x50, 0x31,0x50, 0x1F,0x50, -0x11,0x50, 0x33,0x50, 0xD5,0x50, 0x99,0x70, -/* @zeng2 (12x12,V)@ [suki software]*/ -0x7F,0xE0, 0x40,0x00, 0x5F,0xF0, 0x40,0x00, -0x7F,0xE0, 0x00,0x00, 0x1F,0x00, 0x99,0x70, -0x57,0x50, 0x31,0x50, 0x1F,0x50, 0x31,0x50, -/* @zha0 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x11,0x00, 0x12,0x00, 0x10,0x00, 0x00,0x00, -0xFF,0xF0, 0x00,0x00, 0x00,0x00, 0x00,0x00, -/* @zha1 (12x12,V)@ [suki software]*/ -0x3F,0xE0, 0x20,0x40, 0x20,0x40, 0x3F,0xE0, -0x01,0x00, 0x22,0x00, 0x25,0xF0, 0x29,0x50, -0x31,0x50, 0xFF,0x50, 0x31,0x50, 0x29,0x50, -/* @zha2 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x86,0x30, 0x61,0xC0, 0x0E,0x00, -0x00,0x00, 0x24,0x00, 0x25,0xF0, 0x29,0x50, -0x31,0x50, 0xFF,0x50, 0x31,0x50, 0x29,0x50, -/* @zha3 (12x12,V)@ [suki software]*/ -0x10,0x10, 0x10,0x20, 0x10,0xC0, 0x17,0x00, -0xFF,0xF0, 0x14,0x00, 0x13,0x00, 0x11,0x80, -0x00,0x00, 0xFF,0xF0, 0x00,0x00, 0x00,0x00, -/* @zha4 (12x12,V)@ [suki software]*/ -0x10,0x10, 0x11,0x10, 0x17,0x90, 0x39,0x20, -0xD1,0x20, 0x17,0xF0, 0x11,0x20, 0x11,0x40, -0x10,0x40, 0x00,0x00, 0xFF,0xF0, 0x00,0x00, -/* @zha5 ա(12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0xF7,0xF0, 0x24,0x80, -0x24,0x80, 0x7F,0xC0, 0x40,0x10, 0x47,0xE0, -0x40,0x10, 0x7F,0xC0, 0x00,0x00, 0x3F,0xF0, -/* @zha6 բ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x1F,0xF0, 0x80,0x00, -0x60,0x00, 0x0F,0x80, 0x4A,0x80, 0x4A,0x80, -0x4F,0xF0, 0x4A,0x80, 0x4A,0x80, 0x4F,0x80, -/* @zha7 գ(12x12,V)@ [suki software]*/ -0x7F,0xF0, 0x44,0x80, 0x44,0x80, 0x44,0x80, -0x7F,0xF0, 0x00,0x00, 0x44,0x00, 0x44,0x10, -0x64,0x20, 0x5C,0x40, 0x44,0x80, 0x45,0x00, -/* @zha8 դ(12x12,V)@ [suki software]*/ -0x10,0x40, 0x11,0x80, 0x16,0x00, 0xFF,0xF0, -0x14,0x00, 0x12,0x00, 0x7F,0xF0, 0x42,0x00, -0x7F,0xF0, 0x02,0x00, 0x7F,0xF0, 0x42,0x00, -/* @zha9 ե(12x12,V)@ [suki software]*/ -0x10,0x40, 0x11,0x80, 0x16,0x00, 0xFF,0xF0, -0x14,0x00, 0x02,0x00, 0x34,0x40, 0x24,0x80, -0x3B,0x00, 0xA1,0xF0, 0x71,0x50, 0x29,0x50, -/* @za3 զ(12x12,V)@ [suki software]*/ -0x3F,0xE0, 0x20,0x40, 0x20,0x40, 0x20,0x40, -0x3F,0xE0, 0x04,0x00, 0x08,0x00, 0x10,0x00, -0xFF,0xF0, 0x52,0x20, 0x12,0x20, 0x12,0x20, -/* @zha10 է(12x12,V)@ [suki software]*/ -0x00,0x00, 0x02,0x00, 0x04,0x00, 0x18,0x00, -0xE0,0x00, 0x20,0x00, 0x20,0x00, 0x3F,0xF0, -0x22,0x20, 0x22,0x20, 0x22,0x20, 0x22,0x20, -/* @zha11 ը(12x12,V)@ [suki software]*/ -0x01,0x00, 0x0E,0x00, 0x00,0x70, 0xFF,0x80, -0x04,0x40, 0x1A,0x30, 0x04,0x00, 0x18,0x00, -0xF0,0x00, 0x1F,0xF0, 0x11,0x20, 0x11,0x20, -/* @zha12 թ(12x12,V)@ [suki software]*/ -0x02,0x00, 0x82,0x00, 0x72,0x00, 0x23,0xF0, -0x00,0x00, 0x02,0x00, 0x04,0x00, 0x18,0x00, -0xEF,0xF0, 0x49,0x20, 0x09,0x20, 0x09,0x20, -/* @zhai1 ժ(12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x12,0x00, 0x10,0x00, 0x27,0xF0, 0x24,0x80, -0x34,0xB0, 0xAC,0xA0, 0x67,0xE0, 0x2C,0xA0, -/* @zhai2 ի(12x12,V)@ [suki software]*/ -0x01,0x00, 0x21,0x00, 0x21,0xB0, 0x21,0xA0, -0x21,0xA0, 0x32,0xA0, 0xAA,0xF0, 0x64,0xA0, -0x26,0xA0, 0x2A,0xB0, 0x32,0xA0, 0x21,0xA0, -/* @zhai3 լ(12x12,V)@ [suki software]*/ -0x00,0x20, 0x08,0x20, 0x32,0x20, 0x22,0x20, -0x22,0x40, 0x22,0x40, 0xA3,0xF0, 0x64,0x40, -0x24,0x40, 0x24,0x40, 0x24,0x80, 0x24,0x80, -/* @zhai4 խ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x02,0x00, 0x32,0x00, 0x24,0x20, -0x24,0xC0, 0x2B,0x00, 0xA1,0xF0, 0x61,0x50, -0x21,0x50, 0x29,0x50, 0x29,0x50, 0x25,0x50, -/* @zhai5 ծ(12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x1F,0xF0, 0xE0,0x00, -0x00,0x00, 0x44,0x00, 0x55,0xF0, 0x55,0x00, -0x55,0x00, 0xFD,0x70, 0x55,0x00, 0x55,0x00, -/* @zhai6 կ(12x12,V)@ [suki software]*/ -0x08,0x10, 0x30,0x90, 0x20,0xA0, 0x2A,0xA0, -0x2A,0xC0, 0x3F,0xA0, 0x2A,0xA0, 0xAA,0xF0, -0x6A,0xA0, 0x3F,0xA0, 0x2A,0xA0, 0x2A,0xC0, -/* @zhan0 հ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x44,0x80, 0x7F,0xF0, -0x08,0x00, 0x10,0x10, 0x3F,0xE0, 0x52,0x00, -0xD6,0xA0, 0x5A,0xA0, 0x56,0xA0, 0x72,0xA0, -/* @zhan1 ձ(12x12,V)@ [suki software]*/ -0x24,0x80, 0x24,0x80, 0x24,0x80, 0x3F,0xF0, -0x44,0x80, 0x44,0x80, 0x40,0x80, 0x03,0xE0, -0x02,0x20, 0x02,0x20, 0xFE,0x20, 0x12,0x20, -/* @zhan2 ղ(12x12,V)@ [suki software]*/ -0x04,0x00, 0x08,0x00, 0x1F,0xF0, 0x32,0x00, -0xD3,0x00, 0x55,0x50, 0x59,0x50, 0x55,0x50, -0x53,0x50, 0x71,0x50, 0x59,0x50, 0x17,0x50, -/* @zhan3 ճ(12x12,V)@ [suki software]*/ -0x12,0x00, 0x0E,0x70, 0x03,0x80, 0xFF,0xF0, -0x06,0x80, 0x1A,0x60, 0x02,0x00, 0x00,0xF0, -0x00,0x80, 0xFF,0x80, 0x08,0x80, 0x08,0x80, -/* @zhan4 մ(12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x20, 0x80,0x70, 0x63,0x80, -0x0C,0x00, 0x00,0x00, 0x00,0xF0, 0x00,0x80, -0x00,0x80, 0xFF,0x80, 0x10,0x80, 0x10,0x80, -/* @zhan5 յ(12x12,V)@ [suki software]*/ -0x04,0x00, 0x14,0x80, 0x14,0xB0, 0x14,0xA0, -0x14,0xA0, 0x14,0xB0, 0xF5,0x20, 0x2D,0x20, -0x2B,0x30, 0xA9,0x20, 0x6A,0xA0, 0x2A,0xA0, -/* @zhan6 ն(12x12,V)@ [suki software]*/ -0x20,0x20, 0x23,0x20, 0x2D,0x20, 0xF1,0x20, -0x27,0xF0, 0x21,0x20, 0x21,0x20, 0x00,0x10, -0x3F,0xE0, 0x22,0x00, 0x22,0x00, 0x22,0x00, -/* @zhan7 շ(12x12,V)@ [suki software]*/ -0x21,0x20, 0x27,0x30, 0x39,0x20, 0xE7,0xF0, -0x21,0x40, 0x21,0x40, 0x00,0x00, 0x7F,0xF0, -0x4A,0x80, 0x4F,0xF0, 0x4A,0x80, 0x4A,0xF0, -/* @zhan8 ո(12x12,V)@ [suki software]*/ -0x04,0x40, 0x04,0xC0, 0x65,0x40, 0x2E,0x50, -0x25,0xF0, 0x24,0x50, 0x24,0x50, 0xE0,0x00, -0x27,0xF0, 0x24,0x80, 0x24,0x80, 0x28,0xF0, -/* @zhan9 չ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0xFF,0xF0, 0x90,0x80, -0x92,0x80, 0x92,0xF0, 0x9F,0x80, 0x92,0xC0, -0x92,0xA0, 0x92,0x90, 0x9F,0x90, 0x92,0xA0, -/* @zhan10 պ(12x12,V)@ [suki software]*/ -0x4B,0xF0, 0x4A,0x20, 0x4F,0xC0, 0x4A,0x00, -0x4F,0xE0, 0xEA,0x20, 0x4B,0xF0, 0x42,0x00, -0x5F,0xF0, 0xE5,0x50, 0x55,0x50, 0x4F,0xF0, -/* @zhan11 ջ(12x12,V)@ [suki software]*/ -0x10,0x40, 0x11,0x80, 0x16,0x00, 0xFF,0xF0, -0x14,0x00, 0x13,0x00, 0x09,0x00, 0x09,0x00, -0xFF,0x00, 0x09,0xE0, 0x49,0x30, 0x39,0x10, -/* @zhan12 ռ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x01,0xF0, 0x01,0x00, -0x01,0x00, 0x01,0x00, 0xFF,0x00, 0x11,0x00, -0x11,0x00, 0x11,0x00, 0x11,0x00, 0x11,0xF0, -/* @zhan13 ս(12x12,V)@ [suki software]*/ -0x00,0x00, 0x01,0xF0, 0x01,0x00, 0xFF,0x00, -0x11,0x00, 0x11,0xF0, 0x14,0x00, 0x04,0x00, -0x04,0x00, 0xFF,0x00, 0x08,0xD0, 0x48,0x70, -/* @zhan14 վ(12x12,V)@ [suki software]*/ -0x08,0x00, 0x0A,0x00, 0x49,0xD0, 0x38,0x30, -0x08,0xD0, 0x0F,0x10, 0x08,0x00, 0x00,0xF0, -0x00,0x80, 0x00,0x80, 0xFF,0x80, 0x08,0x80, -/* @zhan15 տ(12x12,V)@ [suki software]*/ -0x08,0x20, 0x84,0x30, 0x61,0xC0, 0x0E,0x00, -0x00,0x40, 0x20,0x70, 0x20,0x40, 0xFF,0xD0, -0x2A,0x60, 0x2A,0x40, 0x2A,0x40, 0xFF,0xE0, -/* @zhan16 (12x12,V)@ [suki software]*/ -0x0C,0xC0, 0x15,0x40, 0xE6,0x50, 0x4C,0x50, -0x00,0x10, 0x00,0x00, 0x34,0xF0, 0x24,0x00, -0x24,0x00, 0xA7,0xF0, 0x64,0x40, 0x24,0x40, -/* @zhang0 (12x12,V)@ [suki software]*/ -0x10,0x20, 0x10,0xC0, 0x13,0x00, 0xFF,0xF0, -0x12,0x00, 0x11,0x00, 0x48,0x00, 0x4B,0xE0, -0x6A,0xA0, 0xDA,0xA0, 0x4A,0xB0, 0x5A,0xA0, -/* @zhang1 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x08,0x00, 0x48,0x00, 0x4B,0xE0, -0x6A,0xA0, 0x5A,0xA0, 0x4A,0xA0, 0xCA,0xB0, -0x4A,0xA0, 0x5A,0xA0, 0x6A,0xA0, 0x4B,0xE0, -/* @zhang2 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x2B,0xE0, 0x3A,0xA0, 0xAA,0xA0, -0x6A,0xB0, 0x2A,0xA0, 0x3A,0xA0, 0x2B,0xE0, -0x08,0x00, 0x04,0x20, 0x08,0x40, 0x10,0x80, -/* @zhang3 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x04,0x20, 0x80,0xF0, 0x67,0x00, -0x08,0x00, 0x4B,0xE0, 0x6A,0xA0, 0x5A,0xA0, -0xCA,0xA0, 0x4A,0xB0, 0x5A,0xA0, 0x6A,0xA0, -/* @zhang4 (12x12,V)@ [suki software]*/ -0x40,0x80, 0x4F,0xC0, 0x48,0x80, 0x48,0x80, -0x78,0xF0, 0x00,0x00, 0x01,0x00, 0x01,0x00, -0xFF,0xF0, 0x05,0x00, 0x09,0xC0, 0x11,0x30, -/* @zhang5 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x30,0x00, 0x20,0xA0, 0xA0,0xA0, -0x6E,0xA0, 0x2A,0xA0, 0x2A,0xA0, 0xEA,0xF0, -0x2A,0xA0, 0x2A,0xA0, 0x6E,0xA0, 0xA0,0xA0, -/* @zhang6 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x86,0x30, 0x61,0xC0, 0x06,0x00, -0x4F,0x80, 0x48,0x80, 0x48,0x80, 0x78,0xF0, -0x01,0x00, 0xFF,0xF0, 0x05,0x40, 0x09,0x30, -/* @zhang7 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x11,0x80, 0x16,0x00, 0xFF,0xF0, -0x12,0x00, 0x11,0x80, 0x00,0x00, 0x10,0x80, -0x10,0x40, 0x10,0x30, 0xFF,0xD0, 0x10,0x00, -/* @zhang8 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x10,0x00, 0x10,0x00, 0x14,0x00, -0x13,0x00, 0x10,0x80, 0x10,0x50, 0x10,0x60, -0xFF,0x90, 0x10,0x00, 0x10,0x00, 0x10,0x00, -/* @zhang9 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x1F,0xE0, 0x10,0x00, 0xFF,0xF0, -0x10,0x20, 0x1F,0xE0, 0x01,0x00, 0x01,0x00, -0xFF,0xF0, 0x05,0x00, 0x09,0xC0, 0x19,0x30, -/* @zhang10 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xE0, 0x40,0x00, 0x5F,0xF0, -0x40,0x00, 0x7F,0xE0, 0x02,0x00, 0x02,0x00, -0xFF,0xF0, 0x06,0x00, 0x0B,0xC0, 0x12,0x30, -/* @zhang11 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x1F,0xF0, 0xE8,0x00, -0x50,0x00, 0x16,0x00, 0x11,0x80, 0x10,0x40, -0x10,0x30, 0xFF,0xD0, 0x10,0x00, 0x10,0x00, -/* @zhang12 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x48,0x80, -0x48,0x80, 0x7F,0xF0, 0x01,0x00, 0x01,0x00, -0xFF,0xF0, 0x05,0x00, 0x09,0xC0, 0x19,0x30, -/* @zhang13 (12x12,V)@ [suki software]*/ -0x10,0x80, 0x09,0x00, 0x7F,0xF0, 0x44,0x00, -0x54,0x00, 0x55,0xF0, 0x5D,0x50, 0x55,0x50, -0xF5,0x50, 0x55,0x50, 0x55,0x50, 0x5D,0x50, -/* @zhang14 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x44,0x40, 0x5A,0x20, -0x61,0xC0, 0x08,0x00, 0x4B,0xE0, 0x6A,0xA0, -0x5A,0xA0, 0xCA,0xB0, 0x4A,0xA0, 0x5A,0xA0, -/* @zhao0 (12x12,V)@ [suki software]*/ -0x10,0x80, 0x10,0x80, 0x11,0x00, 0xFF,0xF0, -0x12,0x00, 0x14,0x80, 0x41,0x00, 0x42,0x70, -0x4C,0x40, 0x70,0x40, 0x40,0x40, 0x42,0x40, -/* @zhao1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x3F,0xF0, 0x21,0x00, 0x21,0x00, -0x3F,0xF0, 0x00,0x00, 0x40,0x80, 0x43,0x70, -0x7C,0x40, 0x40,0x40, 0x40,0x40, 0x41,0x40, -/* @zhao2 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x11,0x00, 0x12,0x00, 0x10,0x00, 0x08,0x00, -0x08,0x00, 0xFF,0x10, 0x08,0xF0, 0x48,0x50, -/* @zhao3 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x20, 0x80,0xF0, 0x63,0x00, -0x0C,0x00, 0x01,0x00, 0x42,0x70, 0x4C,0x40, -0x70,0x40, 0x40,0x40, 0x40,0x40, 0x42,0x40, -/* @zhao4 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x12,0x00, 0x12,0xF0, 0x12,0x00, -0xFF,0xF0, 0x12,0x40, 0x12,0x40, 0x02,0x40, -0x10,0x10, 0x08,0x20, 0x04,0xC0, 0x03,0x00, -/* @zhao5 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xD0, 0x44,0x80, -0x44,0x90, 0x7F,0xC0, 0x02,0x00, 0x84,0x00, -0x8B,0xF0, 0xF2,0x40, 0x82,0x40, 0x8A,0x40, -/* @zhao6 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0xE0,0x00, 0xA3,0xE0, -0xA2,0xA0, 0xE2,0xA0, 0xA2,0xA0, 0xBE,0xB0, -0xAA,0xA0, 0xEA,0xA0, 0xAA,0xA0, 0xAB,0xE0, -/* @zhao7 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x10,0x60, 0x0C,0x40, 0x08,0x80, -0x00,0x10, 0xFF,0xE0, 0x00,0x00, 0x00,0x00, -0x00,0x00, 0xFF,0xF0, 0x05,0x00, 0x08,0x80, -/* @zhao8 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x06,0x40, 0x38,0x50, 0xA9,0x50, -0x69,0x50, 0x29,0x50, 0x39,0x50, 0x13,0xF0, -0x25,0x50, 0xF5,0x50, 0x29,0x50, 0x29,0xF0, -/* @zhao9 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x41,0x00, 0x41,0x00, -0x42,0xF0, 0x44,0x80, 0x48,0x80, 0x70,0x80, -0x40,0x80, 0x42,0x80, 0x42,0x80, 0x43,0x80, -/* @zhe0 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x42,0x00, 0x33,0xF0, 0x00,0x10, -0x00,0x60, 0x3F,0x80, 0x24,0x30, 0x24,0x00, -0xBF,0xA0, 0x64,0x90, 0x24,0xA0, 0x3F,0x90, -/* @zhe1 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x08,0x20, 0x08,0x40, 0x7F,0xF0, -0x08,0x80, 0x09,0x00, 0x00,0x00, 0x3F,0xF0, -0x22,0x00, 0x22,0x00, 0x42,0x00, 0x43,0xF0, -/* @zhe2 (12x12,V)@ [suki software]*/ -0x12,0x00, 0x12,0x00, 0x12,0x80, 0x14,0x70, -0xFF,0xA0, 0x14,0x20, 0x10,0xA0, 0x03,0x20, -0x7C,0x20, 0x48,0x20, 0x48,0x20, 0x4F,0xB0, -/* @zhe3 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x25,0x00, 0x29,0x80, 0xFE,0xF0, -0x28,0x90, 0x21,0x90, 0x12,0x90, 0x2D,0xF0, -0x2C,0x90, 0xF6,0x90, 0x20,0x90, 0x38,0x90, -/* @zhe4 (12x12,V)@ [suki software]*/ -0x23,0x10, 0x2D,0x10, 0xF1,0x20, 0x27,0xF0, -0x21,0x20, 0x25,0xF0, 0xAD,0x50, 0x75,0x50, -0x2F,0x50, 0x25,0xF0, 0x0F,0x00, 0xF0,0xC0, -/* @zhe5 (12x12,V)@ [suki software]*/ -0x00,0x20, 0x04,0x20, 0x24,0x20, 0x24,0x40, -0x24,0x40, 0x24,0xF0, 0x25,0x90, 0xFD,0x90, -0x26,0x90, 0x24,0x90, 0x2C,0x90, 0x14,0x90, -/* @zhe6 (12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0xF7,0xF0, 0x14,0x80, -0x14,0x80, 0x10,0x20, 0x04,0x40, 0x14,0xF0, -0x14,0x90, 0xFD,0x90, 0x16,0x90, 0x14,0x90, -/* @zhe7 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x40,0x00, 0x4F,0xF0, 0x48,0x80, -0x48,0x80, 0xF8,0x80, 0x4B,0xE0, 0x58,0xA0, -0x48,0xA0, 0x48,0xA0, 0xFB,0xE0, 0x48,0x80, -/* @zhe8 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x42,0x00, 0x22,0x00, 0x33,0xF0, -0x00,0x00, 0x10,0x00, 0x14,0x00, 0x12,0x10, -0x91,0x20, 0x70,0xC0, 0x53,0x20, 0x1C,0x10, -/* @zhe9 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x86,0x30, 0x61,0xC0, 0x06,0x00, -0x10,0x40, 0x10,0x80, 0xFF,0xF0, 0x11,0x00, -0x10,0x00, 0x7F,0xF0, 0x44,0x00, 0x44,0x00, -/* @zhen0 (12x12,V)@ [suki software]*/ -0x42,0x10, 0x42,0x10, 0x7F,0xE0, 0x42,0x20, -0x42,0x20, 0x04,0x10, 0x09,0x10, 0x11,0x20, -0x22,0x20, 0xC4,0x40, 0x28,0x80, 0x11,0x10, -/* @zhen1 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x20,0xF0, 0xFF,0x80, 0x2A,0x90, -0x2A,0xE0, 0x2A,0x80, 0xFF,0xC0, 0x20,0xB0, -0x20,0x80, 0x44,0x40, 0x33,0x40, 0x00,0x40, -/* @zhen2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x20,0x00, 0x20,0x00, 0x20,0x00, -0x2F,0xF0, 0x2A,0xA0, 0x3A,0xA0, 0xEA,0xA0, -0x2A,0xA0, 0x2A,0xA0, 0x2A,0xA0, 0x2F,0xF0, -/* @zhen3 (12x12,V)@ [suki software]*/ -0x40,0x00, 0x5F,0x20, 0x51,0x20, 0x7F,0x20, -0x51,0xF0, 0x7F,0x20, 0x51,0x20, 0x5F,0x00, -0x40,0x30, 0x7F,0xC0, 0x48,0x80, 0x48,0x40, -/* @zhen4 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x41,0x00, 0x47,0xF0, 0x7A,0x00, -0x42,0x00, 0x43,0xF0, 0x40,0x00, 0x01,0xF0, -0x01,0x00, 0x01,0x00, 0xFF,0x00, 0x11,0x00, -/* @zhen5 (12x12,V)@ [suki software]*/ -0x44,0x80, 0x4C,0x80, 0x75,0xF0, 0x44,0x80, -0x4E,0xA0, 0x44,0x40, 0x2A,0xA0, 0x2B,0x20, -0x2E,0xB0, 0xFA,0xF0, 0x2A,0xB0, 0x2B,0x20, -/* @zhen6 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x07,0xF0, -0x04,0x00, 0x04,0x00, 0x04,0x00, 0xFD,0xF0, -0x24,0x00, 0x24,0x00, 0x24,0x00, 0x27,0xF0, -/* @zhen7 (12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0x34,0x80, 0xD7,0xF0, -0x14,0x80, 0x14,0x80, 0x10,0x90, 0x02,0x00, -0x02,0x00, 0x02,0x00, 0xFF,0xF0, 0x02,0x00, -/* @zhen8 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x02,0x00, 0x04,0x00, 0x1F,0xF0, -0xF0,0x00, 0x40,0x00, 0x07,0xF0, 0x04,0x00, -0x04,0x10, 0xFD,0xE0, 0x24,0x10, 0x24,0x00, -/* @zhen9 (12x12,V)@ [suki software]*/ -0x10,0x20, 0x10,0xC0, 0x17,0x00, 0xFF,0xF0, -0x12,0x00, 0x01,0x00, 0x1C,0x00, 0x10,0x10, -0x10,0x60, 0x13,0x80, 0xFD,0xF0, 0x10,0x00, -/* @zhen10 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x40, 0x00,0x90, 0x3F,0xE0, -0x21,0x40, 0x22,0x40, 0x24,0x90, 0xA8,0x90, -0x71,0x20, 0x29,0x20, 0x24,0x40, 0x22,0x40, -/* @zhen11 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x82,0x00, 0x73,0xF0, 0x20,0x00, -0x02,0x00, 0x04,0x80, 0x08,0x90, 0x31,0x10, -0xC1,0x20, 0x22,0x60, 0x16,0xC0, 0x0A,0x40, -/* @zhen12 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x38,0x00, 0xA0,0xF0, 0xAA,0x80, -0xAA,0xA0, 0xAA,0xA0, 0xA0,0xA0, 0xFE,0xA0, -0xA0,0xA0, 0xAA,0xA0, 0xAA,0xA0, 0xAA,0xA0, -/* @zhen13 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x12,0x00, 0x14,0x00, 0x7F,0xF0, 0x42,0x00, -0x4B,0xF0, 0x4B,0x00, 0x4A,0xC0, 0x4A,0x20, -/* @zhen14 (12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0xF4,0x80, 0x27,0xF0, -0x24,0x80, 0x24,0x80, 0x00,0x00, 0x2F,0xF0, -0x2A,0xA0, 0x3A,0xA0, 0xEA,0xA0, 0x2A,0xA0, -/* @zhen15 (12x12,V)@ [suki software]*/ -0x7F,0xF0, 0x40,0x00, 0x48,0x40, 0x54,0x20, -0x63,0xC0, 0x11,0x20, 0x13,0x20, 0x1D,0x20, -0xF1,0x20, 0x17,0xF0, 0x11,0x20, 0x11,0x20, -/* @zheng0 (12x12,V)@ [suki software]*/ -0x40,0x10, 0x42,0x10, 0x4A,0x20, 0x4A,0x20, -0x4A,0x40, 0xFB,0xA0, 0x48,0x10, 0x49,0xE0, -0x4B,0x00, 0xFC,0x80, 0x4D,0x40, 0x49,0x20, -/* @zheng1 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x08,0x40, 0x08,0x80, 0xFF,0xF0, -0x09,0x00, 0x0A,0x00, 0x0D,0x20, 0x35,0x20, -0xE5,0x20, 0x27,0xF0, 0x2D,0x20, 0x35,0x20, -/* @zheng2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x44,0x80, 0x44,0x80, -0x7F,0xF0, 0x01,0x00, 0x19,0x20, 0xE9,0x20, -0x49,0x20, 0x4F,0xF0, 0x49,0x20, 0x79,0x20, -/* @zheng3 (12x12,V)@ [suki software]*/ -0x08,0x80, 0x11,0x00, 0x23,0xF0, 0xE6,0x00, -0x5C,0x00, 0x08,0x00, 0x43,0xF0, 0x40,0x00, -0x40,0x00, 0x40,0x00, 0x7F,0xF0, 0x41,0x00, -/* @zheng4 (12x12,V)@ [suki software]*/ -0x44,0x20, 0x28,0x40, 0x10,0x80, 0x2F,0xF0, -0xC0,0x00, 0x05,0x00, 0x0D,0x20, 0x15,0x20, -0xE5,0x20, 0x27,0xF0, 0x2D,0x20, 0x35,0x20, -/* @zheng5 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x05,0x00, 0x09,0x20, 0x19,0x20, -0x29,0x20, 0xE9,0x20, 0x29,0x20, 0x2F,0xF0, -0x29,0x20, 0x79,0x20, 0x29,0x20, 0x09,0x20, -/* @zheng6 (12x12,V)@ [suki software]*/ -0x0E,0x00, 0x00,0x00, 0xFF,0xF0, 0x10,0x00, -0x0C,0x00, 0x40,0x00, 0x43,0xF0, 0x40,0x00, -0x40,0x00, 0x7F,0xF0, 0x42,0x00, 0x42,0x00, -/* @zheng7 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x20,0x40, 0x2E,0xC0, 0x2B,0x50, -0xFF,0xC0, 0x2B,0x40, 0x2E,0xC0, 0x20,0x70, -0x08,0xD0, 0x30,0xD0, 0xED,0x50, 0x22,0x50, -/* @zheng8 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x08,0x40, 0x08,0x80, 0xFF,0xF0, -0x09,0x10, 0x0E,0x20, 0x44,0xC0, 0x47,0x10, -0x44,0x00, 0x4F,0xF0, 0x51,0x00, 0x62,0x80, -/* @zheng9 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x40,0x00, 0x40,0x00, 0x43,0xF0, -0x40,0x00, 0x40,0x00, 0x40,0x00, 0x40,0x00, -0x7F,0xF0, 0x41,0x00, 0x41,0x00, 0x41,0x00, -/* @zheng10 (12x12,V)@ [suki software]*/ -0x20,0x00, 0x27,0xF0, 0x20,0x00, 0x20,0x00, -0x3F,0xF0, 0x22,0x10, 0x22,0xA0, 0x23,0x00, -0x0D,0x00, 0xF8,0xC0, 0x48,0x30, 0x08,0xC0, -/* @zheng11 ֡(12x12,V)@ [suki software]*/ -0x00,0x00, 0x1F,0xE0, 0x10,0x00, 0xFF,0xF0, -0x10,0x20, 0x1F,0xE0, 0x00,0x00, 0x0F,0xF0, -0x08,0x00, 0x08,0x00, 0xFB,0xF0, 0x28,0x00, -/* @zheng12 ֢(12x12,V)@ [suki software]*/ -0x08,0x40, 0x06,0x80, 0x01,0x10, 0x3F,0xE0, -0x24,0x00, 0x24,0x00, 0x25,0xF0, 0xA4,0x00, -0x64,0x00, 0x27,0xF0, 0x24,0x40, 0x24,0x40, -/* @zheng13 ֣(12x12,V)@ [suki software]*/ -0x01,0x00, 0x89,0x00, 0x69,0x00, 0x09,0x30, -0x1F,0xC0, 0x29,0x40, 0xC9,0x20, 0x09,0x10, -0x09,0x00, 0x00,0x00, 0x7F,0xF0, 0x40,0x10, -/* @zheng14 ֤(12x12,V)@ [suki software]*/ -0x02,0x00, 0x42,0x00, 0x3B,0xF0, 0x10,0x00, -0x00,0x00, 0x20,0x00, 0x23,0xF0, 0x20,0x00, -0x20,0x00, 0x20,0x00, 0x3F,0xF0, 0x20,0x80, -/* @zhi0 ֥(12x12,V)@ [suki software]*/ -0x20,0x00, 0x20,0x00, 0x22,0x00, 0x22,0x00, -0x22,0x10, 0xFA,0x10, 0x22,0x20, 0x2A,0x20, -0x26,0x40, 0x22,0x40, 0xFA,0x80, 0x23,0x00, -/* @zhi1 ֦(12x12,V)@ [suki software]*/ -0x10,0x20, 0x10,0xC0, 0x13,0x00, 0xFF,0xF0, -0x12,0x00, 0x11,0x80, 0x00,0x00, 0x12,0x00, -0x13,0x80, 0x12,0x60, 0xFE,0x10, 0x12,0x60, -/* @zhi2 ֧(12x12,V)@ [suki software]*/ -0x00,0x00, 0x10,0x00, 0x10,0x00, 0x12,0x00, -0x13,0x00, 0x12,0xC0, 0x12,0x20, 0xFE,0x10, -0x12,0x10, 0x12,0x20, 0x12,0xC0, 0x13,0x00, -/* @zhi3 ֨(12x12,V)@ [suki software]*/ -0x3F,0xF0, 0x20,0x20, 0x20,0x20, 0x20,0x20, -0x3F,0xF0, 0x10,0x00, 0x12,0x00, 0x13,0x80, -0x12,0x60, 0xFE,0x10, 0x12,0x20, 0x12,0x40, -/* @zhi4 ֩(12x12,V)@ [suki software]*/ -0x1F,0xC0, 0x10,0x80, 0xFF,0xF0, 0x10,0xA0, -0x1F,0x90, 0x04,0x00, 0x19,0x00, 0xF1,0x30, -0x5F,0xC0, 0x11,0x30, 0x10,0x10, 0x1F,0xF0, -/* @zhi5 ֪(12x12,V)@ [suki software]*/ -0x02,0x00, 0x05,0x00, 0x19,0x00, 0xF1,0x10, -0x11,0xE0, 0x1F,0x40, 0x11,0x20, 0x11,0x10, -0x00,0x00, 0x1F,0xF0, 0x10,0x00, 0x10,0x00, -/* @zhi6 ֫(12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x48,0x80, 0x48,0x80, -0x48,0x80, 0x7F,0xF0, 0x10,0x00, 0x13,0x00, -0x12,0xC0, 0x12,0x20, 0xFE,0x10, 0x12,0x60, -/* @zhi7 ֬(12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x10, 0xFF,0xE0, 0x89,0x00, -0x89,0x00, 0xFF,0xF0, 0x00,0x00, 0x00,0xF0, -0xFE,0x90, 0x12,0x90, 0x12,0x90, 0x22,0x90, -/* @zhi8 ֭(12x12,V)@ [suki software]*/ -0x10,0x20, 0x0C,0x20, 0x80,0xF0, 0x63,0x00, -0x0C,0x00, 0x02,0x00, 0x02,0x00, 0x02,0x00, -0x02,0x00, 0xFF,0xF0, 0x02,0x00, 0x02,0x00, -/* @zhi9 ֮(12x12,V)@ [suki software]*/ -0x00,0x00, 0x10,0x00, 0x10,0x00, 0x10,0x10, -0x10,0x10, 0x10,0x20, 0x90,0x20, 0x50,0x40, -0x30,0x80, 0x11,0x00, 0x12,0x00, 0x14,0x00, -/* @zhi10 ֯(12x12,V)@ [suki software]*/ -0x04,0x40, 0x0C,0xC0, 0x35,0x40, 0xC6,0x40, -0x18,0x40, 0x00,0x00, 0x00,0x00, 0x7F,0x00, -0x41,0x30, 0x41,0x00, 0x41,0x00, 0x41,0x20, -/* @zhi11 ְ(12x12,V)@ [suki software]*/ -0x40,0x00, 0x40,0x00, 0x7F,0xF0, 0x49,0x10, -0x49,0x10, 0x7F,0xF0, 0x40,0x20, 0x00,0x20, -0x7F,0x80, 0x41,0x30, 0x41,0x10, 0x41,0x00, -/* @zhi12 ֱ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x20,0x00, 0x20,0x00, 0x2F,0xF0, -0x29,0x50, 0x29,0x50, 0x39,0x50, 0xE9,0x50, -0x29,0x50, 0x29,0x50, 0x29,0x50, 0x2F,0xF0, -/* @zhi13 ֲ(12x12,V)@ [suki software]*/ -0x08,0x20, 0x08,0xC0, 0x0B,0x00, 0xFF,0xF0, -0x09,0x00, 0x08,0x80, 0x10,0x00, 0x17,0xF0, -0x15,0x50, 0x1D,0x50, 0x75,0x50, 0x15,0x50, -/* @zhi14 ֳ(12x12,V)@ [suki software]*/ -0x40,0x80, 0x43,0x00, 0x4C,0x90, 0x74,0x60, -0x45,0xC0, 0x46,0x00, 0x40,0x00, 0x27,0xF0, -0x25,0x50, 0xFD,0x50, 0x25,0x50, 0x25,0x50, -/* @zhi15 ִ(12x12,V)@ [suki software]*/ -0x10,0x80, 0x10,0x80, 0x11,0x00, 0xFF,0xF0, -0x12,0x00, 0x14,0x00, 0x00,0x00, 0x11,0x10, -0xFF,0xE0, 0x10,0x40, 0x10,0x20, 0x10,0x00, -/* @zhi16 ֵ(12x12,V)@ [suki software]*/ -0x01,0x00, 0x02,0x00, 0x0F,0xF0, 0xF4,0x00, -0x40,0x00, 0x20,0x00, 0x27,0xF0, 0x25,0x50, -0x2D,0x50, 0xF5,0x50, 0x65,0x50, 0x25,0x50, -/* @zhi17 ֶ(12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x1F,0xF0, 0xF4,0x00, -0x40,0x00, 0x02,0x40, 0x46,0x40, 0x4A,0x40, -0x72,0x40, 0x47,0xF0, 0x44,0x40, 0x54,0x40, -/* @zhi18 ַ(12x12,V)@ [suki software]*/ -0x04,0x00, 0x04,0x00, 0x04,0x00, 0x7F,0xF0, -0x04,0x10, 0x04,0x10, 0x00,0x00, 0x07,0xF0, -0x00,0x00, 0x00,0x00, 0xFF,0xF0, 0x02,0x00, -/* @zhi19 ָ(12x12,V)@ [suki software]*/ -0x08,0x40, 0x08,0x40, 0x08,0x80, 0xFF,0xF0, -0x09,0x00, 0x0A,0x00, 0x00,0x00, 0xFD,0xF0, -0x25,0x20, 0x25,0x20, 0x45,0x20, 0x45,0x20, -/* @zhi20 ֹ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0x0F,0xF0, 0x00,0x00, 0x00,0x00, 0x00,0x00, -0xFF,0xF0, 0x02,0x00, 0x02,0x00, 0x02,0x00, -/* @zhi21 ֺ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x7E,0xF0, 0x44,0x00, 0x47,0xF0, -0x44,0x40, 0x7E,0x40, 0x00,0x40, 0x00,0x00, -0x07,0xF0, 0x00,0x00, 0x00,0x00, 0xFF,0xF0, -/* @zhi22 ֻ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x7F,0x80, -0x41,0x10, 0x41,0x70, 0x41,0x20, 0x41,0x00, -0x41,0x00, 0x41,0x00, 0x41,0x40, 0x41,0x20, -/* @zhi23 ּ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0xF8,0x00, 0x24,0xF0, -0x24,0x90, 0x24,0x90, 0x24,0x90, 0x24,0x90, -0x24,0x90, 0x24,0x90, 0x44,0x90, 0x44,0xF0, -/* @zhi24 ֽ(12x12,V)@ [suki software]*/ -0x04,0x40, 0x0C,0xC0, 0x35,0x40, 0xC6,0x40, -0x0C,0x40, 0x00,0x00, 0x3F,0xF0, 0x22,0x00, -0x22,0x00, 0x22,0x00, 0x3F,0xC0, 0x42,0x30, -/* @zhi25 ־(12x12,V)@ [suki software]*/ -0x00,0x00, 0x10,0x30, 0x12,0x00, 0x12,0x00, -0x12,0x70, 0x12,0x00, 0x12,0x00, 0xFE,0x80, -0x12,0x70, 0x12,0x20, 0x12,0x00, 0x12,0x00, -/* @zhi26 ֿ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x24,0x00, 0x25,0x20, 0x28,0xA0, -0xFF,0xA0, 0x28,0xA0, 0x29,0xA0, 0x01,0xF0, -0x26,0xA0, 0xFC,0xA0, 0x22,0xA0, 0x20,0xA0, -/* @zhi27 (12x12,V)@ [suki software]*/ -0x10,0x80, 0x11,0x00, 0xFF,0xF0, 0x12,0x00, -0x55,0x00, 0x29,0x10, 0x1F,0xE0, 0x19,0x20, -0x69,0x10, 0x00,0x00, 0x7F,0xF0, 0x40,0x00, -/* @zhi28 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x40,0x00, 0x42,0x40, 0x46,0x40, -0x4A,0x40, 0x52,0x40, 0x64,0x40, 0x47,0xF0, -0x44,0x40, 0x44,0x40, 0x54,0x40, 0x4E,0x40, -/* @zhi29 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x44,0x80, 0x4C,0x80, 0x74,0x80, -0x47,0xF0, 0x54,0x80, 0x4E,0x80, 0x44,0x80, -0x0C,0x00, 0xFB,0xC0, 0x48,0x30, 0x08,0x40, -/* @zhi30 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x04,0x00, 0xF4,0x00, 0x95,0xF0, -0x95,0x50, 0xF5,0x50, 0x97,0x50, 0x9D,0x50, -0x95,0x50, 0xF5,0x50, 0x95,0x50, 0x95,0xF0, -/* @zhi31 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x1F,0xE0, 0x10,0x00, 0xFF,0xF0, -0x10,0x20, 0x1F,0xE0, 0x00,0x00, 0x7F,0x80, -0x41,0x30, 0x41,0x10, 0x41,0x00, 0x41,0x20, -/* @zhi32 (12x12,V)@ [suki software]*/ -0x0F,0xF0, 0x00,0x00, 0xFF,0xF0, 0x00,0x10, -0x0F,0xF0, 0x00,0x00, 0x04,0x80, 0x24,0xC0, -0x24,0xB0, 0x24,0x90, 0xFC,0x80, 0x27,0xF0, -/* @zhi33 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x0A,0x00, 0xF2,0xF0, 0x52,0x80, -0x12,0x80, 0xFF,0xF0, 0x12,0x80, 0x12,0x80, -0x12,0xF0, 0x00,0x00, 0x3F,0xF0, 0x00,0x00, -/* @zhi34 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x28,0x80, 0xC8,0x80, 0x49,0x00, -0x7E,0xF0, 0x4C,0x90, 0x4A,0x90, 0x49,0x90, -0x00,0x90, 0x3E,0x90, 0x22,0x90, 0x22,0xF0, -/* @zhi35 (12x12,V)@ [suki software]*/ -0x24,0x20, 0x24,0xC0, 0x27,0x00, 0x3F,0xF0, -0x45,0x00, 0x44,0xC0, 0x05,0x00, 0x39,0x00, -0x09,0x10, 0x09,0x60, 0xFF,0x80, 0x09,0x60, -/* @zhi36 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x48,0xC0, 0x4B,0x00, 0x7F,0xF0, -0x89,0x00, 0x8A,0xC0, 0x04,0x00, 0x1F,0xF0, -0xF2,0x40, 0x12,0x40, 0x92,0x40, 0x7F,0xF0, -/* @zhi37 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x40,0x00, -0x50,0x00, 0x53,0xF0, 0x52,0x00, 0x56,0x00, -0x7A,0xF0, 0x92,0x00, 0x92,0x00, 0x93,0xF0, -/* @zhi38 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x04,0x80, 0x08,0x90, 0x19,0x60, -0x25,0x00, 0x52,0x00, 0xCA,0x30, 0x45,0xC0, -0x44,0x20, 0x48,0x10, 0x50,0x20, 0x60,0xC0, -/* @zhi39 (12x12,V)@ [suki software]*/ -0x04,0x20, 0x02,0x40, 0x00,0x90, 0x3F,0xE0, -0x20,0xA0, 0x24,0xA0, 0x24,0xB0, 0xA4,0xA0, -0x64,0xA0, 0x3F,0xA0, 0x24,0xA0, 0x24,0xF0, -/* @zhi40 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x08,0x20, 0x84,0x30, 0x61,0xC0, -0x0E,0x00, 0x26,0x00, 0x24,0xF0, 0xF4,0x80, -0x24,0x80, 0xF7,0xF0, 0x24,0x80, 0xF4,0x80, -/* @zhi41 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x20, 0x80,0x70, 0x63,0x80, -0x0C,0x00, 0x02,0x00, 0x06,0x70, 0x0A,0x40, -0x32,0x40, 0xC2,0x40, 0x04,0x40, 0x14,0x40, -/* @zhi42 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x34,0x00, 0x24,0x00, 0x28,0x90, -0x2D,0x90, 0x36,0x90, 0xA4,0x90, 0x64,0xF0, -0x24,0x90, 0x26,0x90, 0x35,0x90, 0x2C,0xD0, -/* @zhong0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x3F,0xE0, 0x10,0x40, -0x10,0x40, 0x10,0x40, 0x10,0x40, 0xFF,0xF0, -0x10,0x40, 0x10,0x40, 0x10,0x40, 0x10,0x40, -/* @zhong1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x70, 0x3E,0x40, -0x24,0x40, 0x24,0x70, 0x24,0x40, 0xFF,0xC0, -0x24,0x40, 0x24,0x70, 0x24,0x40, 0x3E,0x40, -/* @zhong2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x30, 0x3E,0x00, 0x22,0x00, -0x22,0x70, 0x22,0x00, 0x22,0x40, 0xFF,0xB0, -0x22,0x10, 0x22,0x00, 0x22,0x00, 0x22,0x00, -/* @zhong3 (12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0x34,0x80, 0xD7,0xF0, -0x14,0x80, 0x14,0x80, 0x00,0x00, 0x1F,0x80, -0x10,0x80, 0x10,0x80, 0xFF,0xF0, 0x10,0x80, -/* @zhong4 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x20,0x00, 0x2F,0x10, 0x29,0x10, -0x29,0x30, 0x29,0x20, 0xA9,0x40, 0x7F,0xC0, -0x29,0x20, 0x29,0x10, 0x29,0x20, 0x29,0x20, -/* @zhong5 (12x12,V)@ [suki software]*/ -0x04,0x40, 0x0C,0xC0, 0x35,0x40, 0xC6,0x40, -0x18,0x40, 0x00,0x00, 0x04,0x40, 0x18,0x40, -0xE8,0x80, 0x25,0x40, 0x22,0x20, 0x25,0x30, -/* @zhong6 (12x12,V)@ [suki software]*/ -0x00,0x10, 0x48,0x20, 0x48,0xC0, 0x4B,0x00, -0x7F,0xF0, 0x8A,0x00, 0x81,0x00, 0x0F,0xC0, -0x08,0x80, 0x08,0x80, 0xFF,0xF0, 0x08,0x80, -/* @zhong7 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x48,0x80, -0x48,0x80, 0x7F,0xF0, 0x00,0x00, 0x0F,0xC0, -0x08,0x40, 0x08,0x40, 0xFF,0xF0, 0x08,0x40, -/* @zhong8 (12x12,V)@ [suki software]*/ -0x10,0x00, 0x10,0x00, 0x50,0x10, 0x57,0xD0, -0x55,0x50, 0x55,0x50, 0x55,0x50, 0xFF,0xF0, -0x95,0x50, 0x95,0x50, 0x95,0x50, 0x97,0xD0, -/* @zhong9 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x02,0x00, 0x0F,0xF0, 0x38,0x00, -0xE0,0x00, 0x5F,0xC0, 0x10,0x80, 0x10,0x80, -0x10,0x80, 0xFF,0xF0, 0x10,0x80, 0x10,0x80, -/* @zhong10 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x01,0x00, 0x02,0x00, 0x02,0x10, -0x05,0xE0, 0x08,0x10, 0x10,0x00, 0xE0,0x00, -0x10,0x00, 0x08,0x10, 0x05,0xE0, 0x04,0x10, -/* @zhou0 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x01,0x00, 0x01,0x00, 0x01,0x00, -0x3F,0xF0, 0x21,0x00, 0x61,0x40, 0xA9,0x20, -0x25,0x30, 0x21,0x00, 0x21,0x00, 0x3F,0xF0, -/* @zhou1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x7F,0xF0, -0x40,0x00, 0x42,0x00, 0x52,0xF0, 0x52,0x90, -0x7E,0x90, 0x52,0x90, 0x52,0xF0, 0x42,0x00, -/* @zhou2 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x07,0x00, 0x00,0x00, 0x00,0x10, -0xFF,0xE0, 0x04,0x00, 0x03,0x00, 0x00,0x00, -0x7F,0xF0, 0x08,0x00, 0x06,0x00, 0x01,0x80, -/* @zhou3 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x86,0x30, 0x61,0xC0, 0x0E,0x00, -0x04,0x00, 0x02,0x10, 0xFF,0xE0, 0x04,0x00, -0x02,0x00, 0x00,0x00, 0x7F,0xF0, 0x04,0x00, -/* @zhou4 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x42,0x00, 0x32,0x00, 0x23,0xF0, -0x02,0x00, 0x02,0x00, 0x06,0x00, 0x0A,0x40, -0x32,0x40, 0xD2,0x40, 0x52,0x40, 0x16,0x40, -/* @zhou5 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x4F,0x80, 0x48,0x80, 0x48,0x80, -0x7A,0xF0, 0x12,0x20, 0x0E,0xC0, 0xFF,0xF0, -0x06,0x80, 0x1A,0x40, 0x02,0x30, 0x4F,0x80, -/* @zhou6 (12x12,V)@ [suki software]*/ -0x13,0x10, 0x1D,0x10, 0xF1,0x10, 0x57,0xF0, -0x11,0x20, 0x11,0x20, 0x00,0x00, 0x0F,0xF0, -0x08,0x80, 0x08,0x80, 0xFF,0xF0, 0x08,0x80, -/* @zhou7 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x48,0x80, -0x48,0x80, 0x7F,0xF0, 0x00,0x00, 0x0A,0x00, -0x09,0xC0, 0x08,0x80, 0x08,0x00, 0xFF,0xF0, -/* @zhou8 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x03,0x00, 0x8A,0x00, 0xAA,0xF0, -0xAA,0x80, 0xAA,0x80, 0xAA,0x80, 0xAB,0xF0, -0xAA,0x80, 0xAA,0x80, 0xAA,0x80, 0xAA,0xF0, -/* @zhou9 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7C,0x00, 0x48,0x00, -0x49,0xF0, 0x49,0x00, 0x7D,0x00, 0x01,0x00, -0x01,0x00, 0x7D,0xF0, 0x48,0x00, 0x48,0x00, -/* @zhou10 (12x12,V)@ [suki software]*/ -0x0A,0x40, 0x12,0x40, 0xE2,0x40, 0x26,0x40, -0x3A,0x40, 0x23,0xF0, 0x00,0x00, 0x1F,0xF0, -0x11,0x00, 0x11,0xE0, 0xFF,0x10, 0x11,0x10, -/* @zhou11 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x30,0x00, 0x23,0xF0, 0x22,0x40, -0x22,0x40, 0x22,0x40, 0xA2,0x40, 0x6F,0xF0, -0x22,0x40, 0x22,0x40, 0x22,0x40, 0x22,0x40, -/* @zhou12 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x00,0x80, 0x03,0x00, 0x7C,0x00, -0x49,0xF0, 0x49,0x40, 0x49,0x40, 0x49,0x40, -0x49,0x40, 0x4D,0x40, 0x4B,0xF0, 0x49,0x00, -/* @zhou13 (12x12,V)@ [suki software]*/ -0x40,0x20, 0x5F,0x20, 0x41,0x40, 0x7F,0x00, -0x01,0xF0, 0x82,0x10, 0xFE,0x10, 0xAA,0xA0, -0xAA,0x90, 0xFF,0x80, 0x84,0xF0, 0x55,0x10, -/* @zhu0 (12x12,V)@ [suki software]*/ -0x42,0x10, 0x42,0x10, 0x7F,0xE0, 0x42,0x20, -0x42,0x20, 0x01,0x00, 0x05,0x00, 0x79,0x10, -0x11,0x60, 0x11,0x80, 0xFF,0xF0, 0x11,0x80, -/* @zhu1 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x11,0x80, 0x16,0x00, 0xFF,0xF0, -0x14,0x00, 0x13,0x00, 0x0A,0x10, 0x32,0x60, -0x12,0x80, 0xFF,0xF0, 0x12,0x80, 0x12,0x40, -/* @zhu2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x1F,0x80, 0x11,0x00, 0xFF,0xF0, -0x11,0x10, 0x1F,0x90, 0x05,0x00, 0x79,0x30, -0x11,0xC0, 0xFF,0xF0, 0x11,0x80, 0x11,0x60, -/* @zhu3 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x06,0x00, 0x1A,0x00, 0x72,0x10, -0x12,0x20, 0x12,0x40, 0x12,0x80, 0xFF,0xF0, -0x12,0x80, 0x12,0x40, 0x12,0x20, 0x12,0x10, -/* @zhu4 (12x12,V)@ [suki software]*/ -0x44,0x20, 0x28,0x40, 0x10,0x80, 0x2D,0x00, -0xC3,0xF0, 0x04,0x20, 0x24,0x40, 0x24,0xF0, -0x25,0x90, 0xFE,0x90, 0x24,0x90, 0x2C,0x90, -/* @zhu5 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x84,0x00, 0x77,0xF0, 0x20,0x20, -0x04,0x40, 0x24,0x50, 0x24,0x80, 0x24,0xF0, -0xFD,0x90, 0x26,0x90, 0x24,0x90, 0x0C,0x90, -/* @zhu6 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x82,0x00, 0x43,0xF0, 0x22,0x00, -0x00,0x10, 0x05,0x20, 0x79,0x10, 0x11,0x60, -0x11,0x80, 0xFF,0xF0, 0x11,0x80, 0x11,0x40, -/* @zhu7 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x42,0x00, 0x33,0xF0, 0x00,0x00, -0x45,0x20, 0x45,0x20, 0x4A,0x40, 0x5A,0x50, -0x64,0x80, 0x43,0xF0, 0x42,0x00, 0x45,0x00, -/* @zhu8 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x0C,0x00, 0xF0,0x00, 0x5F,0xF0, -0x10,0x00, 0x10,0x00, 0x11,0x00, 0x02,0x00, -0x0C,0x00, 0xF0,0x00, 0x50,0x00, 0x1F,0xF0, -/* @zhu9 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x06,0x00, 0x00,0x10, 0xFF,0xE0, -0x04,0x20, 0x18,0x10, 0x0F,0xC0, 0x08,0x80, -0x08,0x80, 0xFF,0xF0, 0x48,0x80, 0x08,0xA0, -/* @zhu10 (12x12,V)@ [suki software]*/ -0x08,0x80, 0x08,0x80, 0x29,0x00, 0x29,0x00, -0x2B,0xE0, 0x2A,0xA0, 0x2E,0xA0, 0xFE,0xA0, -0x2A,0xA0, 0x2A,0xA0, 0x1A,0xA0, 0x2B,0xF0, -/* @zhu11 (12x12,V)@ [suki software]*/ -0x08,0x40, 0x08,0x40, 0x08,0x80, 0xFF,0xF0, -0x09,0x00, 0x0A,0x00, 0x00,0x00, 0x10,0x80, -0x90,0x80, 0x50,0x80, 0x7F,0xF0, 0x10,0x80, -/* @zhu12 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x44,0x80, 0x7F,0xF0, -0x00,0x00, 0xFF,0xF0, 0xA0,0x00, 0xAB,0xB0, -0xAA,0xA0, 0xAA,0xA0, 0xAF,0xF0, 0xAA,0xA0, -/* @zhu13 (12x12,V)@ [suki software]*/ -0x3F,0xE0, 0x20,0x80, 0x20,0x80, 0x3F,0xC0, -0x00,0x30, 0xFF,0xC0, 0xA0,0x30, 0xAB,0xA0, -0xAA,0xA0, 0xAA,0xA0, 0xAF,0xF0, 0xAA,0xA0, -/* @zhu14 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x08,0x80, 0x08,0x80, -0x08,0x80, 0x08,0x80, 0x88,0x80, 0x6F,0xF0, -0x48,0x80, 0x08,0x80, 0x08,0x80, 0x08,0x80, -/* @zhu15 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x20,0x80, 0x20,0x90, 0x24,0x90, -0x24,0xA0, 0xFC,0xB0, 0x24,0xE0, 0x2F,0xA0, -0x24,0xA0, 0xF5,0xA0, 0x26,0xA0, 0x2C,0xA0, -/* @zhu16 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x11,0x80, 0x16,0x00, 0xFF,0xF0, -0x14,0x00, 0x02,0x00, 0x10,0x00, 0x10,0x80, -0x90,0x80, 0x50,0x80, 0x3F,0xF0, 0x10,0x80, -/* @zhu17 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x7F,0xF0, 0x44,0x80, -0x44,0x80, 0x44,0x90, 0x7F,0xF0, 0x00,0x10, -0x08,0x00, 0x08,0x30, 0xFF,0xC0, 0x08,0x00, -/* @zhu18 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x0F,0xC0, 0x08,0x80, 0xFF,0xF0, -0x08,0xA0, 0x0F,0x90, 0x00,0x00, 0x08,0x80, -0x08,0x80, 0x88,0x80, 0x7F,0xF0, 0x28,0x80, -/* @zhu19 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xC0, 0x40,0x10, 0x5F,0xE0, -0x40,0x10, 0x7F,0xC0, 0x02,0x00, 0x0C,0x00, -0x88,0x00, 0x48,0x00, 0x38,0x00, 0x08,0x00, -/* @zhu20 (12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0x34,0x80, 0xD7,0xF0, -0x14,0x80, 0x14,0x80, 0x02,0x10, 0x2A,0x20, -0x2A,0xC0, 0x2F,0x50, 0xFA,0x40, 0x2A,0x40, -/* @zhu21 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x12,0x00, 0xE2,0x00, 0x33,0xF0, -0x2A,0x10, 0x22,0x10, 0x28,0x00, 0x17,0xF0, -0xE4,0x80, 0x24,0x60, 0x34,0x00, 0x2F,0xF0, -/* @zhu22 ס(12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x0F,0xF0, 0x30,0x00, -0xC0,0x00, 0x10,0x80, 0x10,0x80, 0x90,0x80, -0x50,0x80, 0x3F,0xF0, 0x10,0x80, 0x10,0x80, -/* @zhu23 ע(12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x20, 0x80,0x70, 0x61,0x80, -0x06,0x00, 0x10,0x00, 0x10,0x80, 0x10,0x80, -0x90,0x80, 0x7F,0xF0, 0x10,0x80, 0x10,0x80, -/* @zhu24 ף(12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x80, 0x91,0x00, 0x73,0xF0, -0x15,0x00, 0x18,0xC0, 0x00,0x00, 0x7F,0x00, -0x41,0xF0, 0x41,0x00, 0x41,0x00, 0x41,0xF0, -/* @zhu25 פ(12x12,V)@ [suki software]*/ -0x40,0x10, 0x5F,0x10, 0x41,0x20, 0x41,0x20, -0x7F,0x00, 0x01,0x00, 0x01,0xF0, 0x10,0x00, -0x10,0x80, 0x90,0x80, 0x7F,0xF0, 0x10,0x80, -/* @zhua0 ץ(12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x80, 0xFF,0xF0, 0x11,0x00, -0x12,0x00, 0x00,0x30, 0x3F,0xC0, 0x20,0x00, -0x20,0x00, 0x3F,0xF0, 0x40,0x00, 0x7F,0x80, -/* @zhao10 צ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x10, 0x7F,0xE0, 0x40,0x00, -0x40,0x00, 0x40,0x00, 0x7F,0xF0, 0x40,0x00, -0x40,0x00, 0x78,0x00, 0xC7,0x00, 0x80,0xC0, -/* @zhuai0 ק(12x12,V)@ [suki software]*/ -0x10,0x80, 0x10,0x80, 0x11,0x00, 0xFF,0xF0, -0x12,0x00, 0x14,0x00, 0x3F,0x00, 0x25,0x00, -0x25,0x00, 0xFF,0xC0, 0x25,0x30, 0x25,0x10, -/* @zhuan0 ר(12x12,V)@ [suki software]*/ -0x04,0x00, 0x04,0x00, 0x24,0x00, 0x24,0x00, -0x25,0x80, 0x26,0x80, 0x3C,0x90, 0xE4,0x80, -0x24,0x90, 0x24,0xA0, 0x25,0xC0, 0x24,0x80, -/* @zhuan1 ש(12x12,V)@ [suki software]*/ -0x40,0x40, 0x41,0x80, 0x4F,0xF0, 0x72,0x00, -0x43,0xF0, 0x42,0x00, 0x12,0x00, 0x12,0x40, -0x13,0xC0, 0xFE,0x40, 0x12,0x40, 0x12,0x50, -/* @zhuan2 ת(12x12,V)@ [suki software]*/ -0x13,0x10, 0x15,0x10, 0x39,0x20, 0xD7,0xF0, -0x11,0x20, 0x11,0x20, 0x11,0x00, 0x02,0x40, -0x12,0xD0, 0x1F,0x40, 0xF2,0x40, 0x12,0x40, -/* @zhuan3 ׫(12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x11,0x00, 0x12,0x20, 0xF8,0xA0, 0xA5,0xE0, -0xEC,0xA0, 0x00,0xA0, 0xF8,0xA0, 0xA5,0xE0, -/* @zhuan4 ׬(12x12,V)@ [suki software]*/ -0x7F,0xE0, 0x40,0x00, 0x5F,0xF0, 0x40,0x00, -0x7F,0xE0, 0x01,0x00, 0x95,0x40, 0x55,0x70, -0x3F,0xF0, 0x15,0x40, 0x15,0x40, 0x3F,0xF0, -/* @zhuan5 ׭(12x12,V)@ [suki software]*/ -0x10,0x80, 0x20,0xA0, 0xC0,0xA0, 0x62,0xA0, -0x56,0xD0, 0x4A,0xD0, 0x5A,0xD0, 0x4A,0xA0, -0x2A,0x90, 0xCB,0xA0, 0x4C,0xD0, 0x60,0x80, -/* @zhuang1 ׮(12x12,V)@ [suki software]*/ -0x08,0x20, 0x08,0xC0, 0x0B,0x00, 0xFF,0xF0, -0x0A,0x00, 0x09,0x00, 0x1F,0xF0, 0x10,0x00, -0x10,0x80, 0x90,0x80, 0x7F,0xF0, 0x10,0x80, -/* @zhuang2 ׯ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x3F,0xF0, 0x20,0x00, -0x21,0x00, 0x21,0x00, 0x21,0x00, 0xA1,0x00, -0x6F,0xF0, 0x21,0x00, 0x21,0x00, 0x21,0x00, -/* @zhuang3 װ(12x12,V)@ [suki software]*/ -0x00,0x00, 0x42,0x80, 0x34,0x80, 0x24,0x80, -0x08,0x90, 0xFF,0xA0, 0x20,0xC0, 0x26,0xC0, -0x25,0xA0, 0x24,0x90, 0xFC,0x80, 0x24,0x90, -/* @zhuang4 ױ(12x12,V)@ [suki software]*/ -0x00,0x40, 0x10,0x60, 0x0C,0x40, 0x00,0x80, -0xFF,0xF0, 0x08,0x00, 0x09,0x80, 0x0E,0x40, -0xF8,0x50, 0x48,0x20, 0x08,0x60, 0x09,0x90, -/* @zhuang5 ײ(12x12,V)@ [suki software]*/ -0x08,0x40, 0x08,0x80, 0xFF,0xF0, 0x09,0x00, -0x02,0x00, 0x48,0x00, 0x4B,0xE0, 0x6A,0xA0, -0x5A,0xA0, 0xCB,0xF0, 0x5A,0xA0, 0x6A,0xA0, -/* @zhuang6 ׳(12x12,V)@ [suki software]*/ -0x10,0x20, 0x0E,0x20, 0x04,0x40, 0x00,0x80, -0xFF,0xF0, 0x04,0x00, 0x04,0x00, 0x04,0x00, -0x04,0x00, 0x04,0x00, 0xFF,0xF0, 0x04,0x00, -/* @zhuang7 ״(12x12,V)@ [suki software]*/ -0x10,0x20, 0x0C,0x40, 0x00,0x80, 0xFF,0xF0, -0x04,0x00, 0x04,0x00, 0x04,0x10, 0x04,0xE0, -0xFF,0x00, 0x04,0x00, 0x87,0xC0, 0x64,0x30, -/* @zhui0 ׵(12x12,V)@ [suki software]*/ -0x10,0x40, 0x11,0x80, 0x16,0x00, 0xFF,0xF0, -0x14,0x00, 0x16,0x00, 0x08,0x00, 0x3F,0xF0, -0xD1,0x20, 0x11,0x20, 0x5F,0xF0, 0x31,0x20, -/* @zhui1 ׶(12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0xF7,0xF0, 0x24,0x80, -0x24,0x80, 0x22,0x80, 0x04,0x00, 0x1F,0xF0, -0xF2,0x40, 0x12,0x40, 0x9F,0xF0, 0x72,0x40, -/* @zhui2 ׷(12x12,V)@ [suki software]*/ -0x02,0x00, 0x82,0x00, 0x73,0xF0, 0x20,0x00, -0x00,0x00, 0x00,0x00, 0x3F,0xF0, 0x25,0x10, -0x65,0x10, 0xA5,0x10, 0x25,0x10, 0x25,0x10, -/* @zhui3 ׸(12x12,V)@ [suki software]*/ -0x00,0x40, 0x44,0x80, 0x55,0x00, 0x56,0x70, -0xFC,0x40, 0x54,0xC0, 0x57,0xC0, 0x44,0x70, -0x10,0xC0, 0xF9,0x40, 0x26,0x40, 0x24,0x70, -/* @zhui4 ׹(12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0xFF,0xE0, 0x82,0x20, -0x91,0x20, 0xAA,0x60, 0xC4,0xA0, 0x03,0x70, -0x0C,0x20, 0xF0,0x20, 0x0C,0x20, 0x03,0x20, -/* @zhui5 ׺(12x12,V)@ [suki software]*/ -0x02,0x40, 0x0E,0xC0, 0x73,0x40, 0x22,0x40, -0x04,0x00, 0x43,0x40, 0x55,0x30, 0x49,0x30, -0x75,0xC0, 0x02,0x00, 0x55,0x60, 0x49,0x10, -/* @zhun0 ׻(12x12,V)@ [suki software]*/ -0x02,0x00, 0x82,0x00, 0x73,0xF0, 0x20,0x00, -0x00,0x10, 0x20,0x20, 0x20,0x20, 0x2E,0xA0, -0xAA,0xA0, 0x6A,0xA0, 0x2A,0xB0, 0x2A,0xE0, -/* @zhun1 ׼(12x12,V)@ [suki software]*/ -0x00,0x40, 0x40,0x40, 0x38,0x70, 0x13,0x80, -0x04,0x00, 0x08,0x00, 0xFF,0xF0, 0x52,0x40, -0x12,0x40, 0x92,0x40, 0x7F,0xF0, 0x12,0x40, -/* @zhuo0 ׽(12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x40, 0x10,0x80, 0xFF,0xF0, -0x11,0x00, 0x02,0x00, 0x7C,0xF0, 0x44,0x10, -0x44,0x00, 0x47,0xF0, 0x44,0x40, 0x44,0x40, -/* @zhuo1 ׾(12x12,V)@ [suki software]*/ -0x08,0x80, 0x08,0x80, 0x09,0x00, 0xFF,0xF0, -0x0A,0x00, 0x00,0x00, 0x1F,0x70, 0x01,0x00, -0x01,0x00, 0x01,0x00, 0xFF,0xF0, 0x01,0x00, -/* @zhuo2 ׿(12x12,V)@ [suki software]*/ -0x00,0x10, 0x00,0x10, 0x0F,0xD0, 0x0A,0x90, -0x0A,0x90, 0x0A,0x90, 0xFA,0x90, 0x2A,0xF0, -0x2A,0x90, 0x2A,0x90, 0x2A,0x90, 0x2F,0xD0, -/* @zhuo3 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x00,0x40, 0x00,0x40, 0x1F,0x40, -0x15,0x40, 0x15,0x50, 0x15,0x60, 0xF5,0xF0, -0x55,0x60, 0x55,0x50, 0x55,0x40, 0x55,0x40, -/* @zhuo4 (12x12,V)@ [suki software]*/ -0x42,0x00, 0x42,0x00, 0x7F,0xF0, 0x42,0x10, -0x40,0x90, 0x02,0x80, 0x45,0x10, 0x49,0xA0, -0x5A,0x40, 0x66,0x80, 0x43,0xF0, 0x45,0x80, -/* @zhuo5 (12x12,V)@ [suki software]*/ -0x20,0x00, 0x20,0x30, 0x27,0x80, 0x20,0x80, -0xF0,0x80, 0x20,0x80, 0x20,0x80, 0x2F,0xF0, -0x20,0x80, 0xF0,0x80, 0x20,0x80, 0x20,0x80, -/* @zhuo6 (12x12,V)@ [suki software]*/ -0x4F,0xF0, 0x48,0xA0, 0x7F,0x20, 0x48,0x20, -0x7F,0xA0, 0x48,0xA0, 0x4F,0xF0, 0x40,0x00, -0x04,0x00, 0x19,0x00, 0xF0,0xC0, 0x10,0x00, -/* @zhuo7 (12x12,V)@ [suki software]*/ -0x3F,0xC0, 0x20,0x80, 0x20,0x80, 0x3F,0xC0, -0x04,0x00, 0x46,0x90, 0x49,0x10, 0x5A,0xA0, -0x74,0x70, 0x63,0xA0, 0x42,0xF0, 0x45,0x80, -/* @zhe10 (12x12,V)@ [suki software]*/ -0x00,0x10, 0x22,0x10, 0x2A,0x20, 0x2A,0x20, -0xAA,0x40, 0x6A,0xF0, 0x2B,0xA0, 0x3E,0xA0, -0x2A,0xA0, 0x2A,0xA0, 0x6A,0xA0, 0xAA,0xA0, -/* @zhuo8 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x0C,0x00, 0x00,0x30, 0xFF,0xC0, -0x08,0x20, 0x32,0x10, 0x04,0x00, 0x08,0x00, -0x32,0x00, 0xD1,0x00, 0x10,0xC0, 0x10,0x00, -/* @zhuo9 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x86,0x30, 0x60,0xC0, 0x03,0x00, -0x0C,0x00, 0x00,0x00, 0x0F,0x80, 0x08,0x80, -0x08,0x80, 0xFF,0xF0, 0x08,0x80, 0x08,0xA0, -/* @zi0 (12x12,V)@ [suki software]*/ -0x10,0x00, 0x10,0x80, 0x11,0x80, 0x92,0x90, -0x5C,0xA0, 0x70,0xC0, 0x13,0x80, 0x11,0x00, -0x10,0x80, 0x31,0xC0, 0xDE,0x90, 0x50,0xE0, -/* @zi1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x84,0x00, 0x64,0x00, 0x0F,0xF0, -0x30,0x40, 0x08,0xC0, 0x11,0x40, 0xE2,0x40, -0x24,0x40, 0x38,0x40, 0x24,0x40, 0x2B,0x70, -/* @zi2 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x8F,0x00, 0x68,0x00, 0x11,0xF0, -0x09,0x00, 0x13,0x00, 0x23,0x00, 0xE5,0x70, -0x25,0x00, 0x39,0x00, 0x25,0x00, 0x33,0xF0, -/* @zi3 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x04,0x40, 0x87,0x40, 0x6C,0xC0, -0x00,0xC0, 0x09,0x50, 0x11,0x70, 0xE2,0xC0, -0x24,0x40, 0x38,0x40, 0x24,0x70, 0x22,0x40, -/* @zi4 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x86,0x30, 0x61,0xC0, 0x06,0x00, -0x10,0x40, 0x10,0xC0, 0x93,0x50, 0x7C,0x60, -0x11,0x80, 0x10,0x40, 0x30,0xC0, 0xD3,0x50, -/* @zi5 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x20, 0x80,0xF0, 0x63,0x00, -0x0C,0x00, 0x09,0xF0, 0x15,0x20, 0x63,0x20, -0x11,0x20, 0x29,0xF0, 0x47,0x20, 0x01,0x20, -/* @zi6 (12x12,V)@ [suki software]*/ -0x00,0x40, 0x40,0x40, 0x40,0x80, 0x40,0x80, -0x4F,0xF0, 0x51,0x00, 0x61,0x00, 0x02,0x00, -0x1F,0x00, 0xE8,0xD0, 0x48,0x20, 0x08,0xD0, -/* @zi7 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x04,0x00, 0x7C,0x20, 0x04,0xB0, -0xF8,0xA0, 0x29,0xE0, 0x2A,0xA0, 0x24,0xB0, -0x01,0x20, 0xF9,0x20, 0x24,0x20, 0x24,0x60, -/* @zai7 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x02,0x00, 0x0C,0x00, 0x3F,0xF0, -0xC2,0x00, 0x02,0x00, 0x42,0x00, 0x42,0x00, -0x42,0x00, 0x47,0xF0, 0x4A,0x00, 0x52,0x00, -/* @zi8 (12x12,V)@ [suki software]*/ -0x24,0x10, 0x1C,0xE0, 0x07,0x00, 0xFF,0xF0, -0x05,0x00, 0x0C,0xC0, 0x35,0x00, 0x41,0x00, -0x41,0x00, 0x41,0x00, 0x47,0xF0, 0x49,0x00, -/* @zi9 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x84,0x20, 0x61,0xF0, 0x0E,0x00, -0x00,0x00, 0x30,0x80, 0x24,0x90, 0x26,0x90, -0xB5,0x90, 0x6C,0xF0, 0x25,0x90, 0x26,0x90, -/* @zi10 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x00,0x80, 0x40,0x80, 0x40,0x80, -0x40,0x80, 0x40,0x80, 0x40,0x80, 0x47,0xF0, -0x48,0x80, 0x50,0x80, 0x60,0x80, 0x40,0x80, -/* @zi11 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x1F,0xF0, -0x12,0x20, 0x12,0x20, 0x32,0x20, 0xD2,0x20, -0x52,0x20, 0x12,0x20, 0x12,0x20, 0x12,0x20, -/* @zi12 (12x12,V)@ [suki software]*/ -0x08,0x20, 0x06,0x30, 0x80,0xE0, 0x67,0x00, -0x00,0x00, 0x04,0x00, 0x55,0xF0, 0x55,0x00, -0x55,0x00, 0xFD,0x70, 0x55,0x00, 0x55,0x00, -/* @zi13 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x08,0x40, 0x30,0x40, 0x24,0x40, -0x24,0x40, 0x24,0x40, 0xA4,0x40, 0x64,0xF0, -0x25,0x40, 0x26,0x40, 0x24,0x40, 0x20,0x40, -/* @zong0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x08,0x00, 0x0A,0xC0, 0xFE,0x80, -0xAA,0xA0, 0xDE,0xA0, 0xAA,0xA0, 0x89,0xA0, -0x22,0xA0, 0x2A,0xA0, 0x4A,0xA0, 0x54,0xA0, -/* @zong1 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x11,0x80, 0x16,0x00, 0xFF,0xF0, -0x14,0x00, 0x02,0x00, 0x30,0x80, 0x24,0x90, -0x24,0xA0, 0xA4,0x80, 0x64,0xF0, 0x24,0x80, -/* @zong2 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7C,0xF0, 0x48,0x00, 0x4F,0xF0, -0x79,0x10, 0x01,0x10, 0x38,0x80, 0x24,0xB0, -0x24,0x90, 0xA4,0x80, 0x64,0xF0, 0x24,0x80, -/* @zong3 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x08,0x80, 0x30,0x80, 0x20,0x80, -0x24,0xB0, 0x24,0x90, 0x24,0x80, 0xA4,0x80, -0x64,0xF0, 0x24,0x80, 0x24,0x80, 0x24,0xA0, -/* @zong4 (12x12,V)@ [suki software]*/ -0x04,0x40, 0x0C,0xC0, 0x15,0x40, 0xE6,0x40, -0x4C,0x40, 0x00,0x00, 0x30,0x80, 0x24,0xB0, -0x24,0x80, 0xA4,0x80, 0x64,0xF0, 0x24,0x80, -/* @zong5 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x10, 0x1F,0x00, -0x91,0x30, 0x71,0x00, 0x11,0x00, 0x11,0x40, -0x11,0x30, 0x31,0x00, 0xD1,0x00, 0x1F,0x00, -/* @zong6 (12x12,V)@ [suki software]*/ -0x04,0x40, 0x0C,0xC0, 0x35,0x50, 0xC6,0x50, -0x08,0x40, 0x10,0x10, 0x01,0xE0, 0xFE,0x00, -0x01,0x80, 0x00,0x50, 0x03,0xE0, 0xFF,0x00, -/* @ju25 (12x12,V)@ [suki software]*/ -0x08,0x00, 0x34,0x80, 0xE4,0x80, 0x24,0x80, -0x2C,0x80, 0x34,0x80, 0x24,0x80, 0x07,0xF0, -0x00,0x00, 0x7F,0xF0, 0x40,0x00, 0x44,0x10, -/* @zou0 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x02,0x00, 0x22,0x00, 0x22,0xF0, -0x22,0x00, 0x22,0x00, 0x22,0x00, 0xFF,0xF0, -0x22,0x40, 0x22,0x40, 0x22,0x40, 0x22,0x40, -/* @zou1 (12x12,V)@ [suki software]*/ -0x04,0x20, 0x44,0x20, 0x54,0x40, 0x54,0x50, -0x54,0x90, 0x55,0x90, 0x56,0x90, 0xFC,0xF0, -0x54,0x90, 0x56,0x90, 0x55,0x90, 0x54,0x90, -/* @zou2 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x80, 0xFF,0xF0, 0x11,0x00, -0x12,0x40, 0x04,0x50, 0x54,0x90, 0x55,0x90, -0x56,0x90, 0xFC,0xF0, 0x56,0x90, 0x55,0x90, -/* @zu0 (12x12,V)@ [suki software]*/ -0x04,0x20, 0x44,0xC0, 0x47,0x00, 0x7F,0xF0, -0x85,0x00, 0x84,0x80, 0x00,0x00, 0x7F,0xF0, -0x44,0x40, 0x44,0x40, 0x44,0x40, 0x44,0x40, -/* @zu1 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x7E,0x00, -0x44,0xF0, 0x44,0x00, 0x44,0x00, 0x47,0xF0, -0x44,0x40, 0x44,0x40, 0x44,0x40, 0x7E,0x40, -/* @zu2 (12x12,V)@ [suki software]*/ -0x00,0x20, 0x20,0xA0, 0x21,0x20, 0x22,0x20, -0x3C,0x20, 0x22,0x20, 0xA1,0xA0, 0x60,0x70, -0x20,0xA0, 0x23,0x20, 0x3C,0x20, 0x22,0x20, -/* @zu3 (12x12,V)@ [suki software]*/ -0x10,0x00, 0x10,0x10, 0x9F,0xE0, 0x72,0x00, -0x12,0x00, 0x13,0xF0, 0x04,0x00, 0x19,0x40, -0xF6,0x40, 0x52,0x40, 0x13,0xF0, 0x12,0x40, -/* @zu4 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x10,0x80, 0x91,0x00, 0x73,0xF0, -0x15,0x00, 0x18,0xC0, 0x00,0x00, 0x7F,0xF0, -0x44,0x40, 0x44,0x40, 0x44,0x40, 0x44,0x40, -/* @zu5 (12x12,V)@ [suki software]*/ -0x04,0x00, 0x84,0x00, 0x77,0xF0, 0x20,0x00, -0x00,0x00, 0x00,0x00, 0x00,0x00, 0x7F,0xF0, -0x44,0x40, 0x44,0x40, 0x44,0x40, 0x44,0x40, -/* @zu6 (12x12,V)@ [suki software]*/ -0x00,0x00, 0xFF,0xF0, 0x88,0x40, 0x94,0x20, -0xE3,0xC0, 0x80,0x00, 0x7F,0xF0, 0x44,0x40, -0x44,0x40, 0x44,0x40, 0x44,0x40, 0x44,0x40, -/* @zu7 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x04,0x40, 0x1C,0xC0, 0xE5,0x40, -0x46,0x40, 0x18,0x40, 0x00,0x00, 0x7F,0xF0, -0x44,0x40, 0x44,0x40, 0x44,0x40, 0x44,0x40, -/* @zuan0 (12x12,V)@ [suki software]*/ -0x02,0x80, 0x0C,0x80, 0x34,0x80, 0xD7,0xF0, -0x14,0x80, 0x14,0x80, 0x10,0x00, 0x00,0xF0, -0x00,0x80, 0x00,0x80, 0xFF,0x80, 0x08,0x80, -/* @zuan1 (12x12,V)@ [suki software]*/ -0x01,0x20, 0x21,0x20, 0xC1,0x40, 0x5F,0x40, -0x75,0xA0, 0x55,0x70, 0x55,0xA0, 0x15,0x20, -0x35,0x40, 0xD5,0x10, 0x55,0x80, 0x7F,0x40, -/* @zui0 (12x12,V)@ [suki software]*/ -0x3F,0xE0, 0x20,0x40, 0x20,0x40, 0x3F,0xE0, -0x04,0x00, 0x7C,0x80, 0x05,0xF0, 0xFA,0xA0, -0x2E,0xA0, 0x2A,0xF0, 0xFA,0xA0, 0x27,0xA0, -/* @zui1 (12x12,V)@ [suki software]*/ -0x4F,0xF0, 0x48,0xA0, 0x7F,0x20, 0x48,0x20, -0x7F,0x20, 0x49,0x20, 0x4F,0xF0, 0x23,0x20, -0x2C,0x20, 0x22,0x20, 0xA1,0xF0, 0x62,0x20, -/* @zui2 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x02,0x00, 0x03,0xF0, 0xFA,0xA0, -0xAA,0xA0, 0xAA,0xA0, 0xAB,0xF0, 0xAA,0x10, -0xAA,0xC0, 0xAA,0xA0, 0xAA,0x90, 0xFA,0xA0, -/* @zui3 (12x12,V)@ [suki software]*/ -0x00,0x10, 0x02,0x10, 0xF2,0x90, 0x92,0x90, -0x92,0x90, 0x9F,0xF0, 0xF0,0x00, 0x90,0x00, -0x90,0x00, 0xFF,0xF0, 0x92,0x90, 0x92,0x90, -/* @zun0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x20,0x00, 0x20,0x00, 0x2F,0xE0, -0xA8,0xA0, 0x6A,0xA0, 0x3C,0xA0, 0x28,0xA0, -0x28,0xA0, 0x7E,0xA0, 0xAA,0xB0, 0x2A,0xA0, -/* @zun1 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x42,0x00, 0x33,0xF0, 0x00,0x00, -0x20,0x10, 0x2F,0xD0, 0xAB,0x50, 0x7D,0x50, -0x29,0x50, 0x3D,0x50, 0x6D,0x70, 0xAD,0x50, -/* @zuo0 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x7F,0xF0, 0x44,0x20, 0x44,0x20, -0x7F,0xF0, 0x02,0x00, 0x0C,0x00, 0x30,0x00, -0xD0,0x00, 0x1F,0xF0, 0x12,0x20, 0x12,0x20, -/* @zuo1 (12x12,V)@ [suki software]*/ -0x10,0x00, 0x10,0x00, 0x10,0x00, 0x10,0x30, -0x10,0xC0, 0x13,0x80, 0xFC,0x80, 0x50,0x80, -0x10,0xF0, 0x10,0x80, 0x10,0x80, 0x10,0x80, -/* @zuo2 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x06,0x00, 0x1F,0xF0, 0xF0,0x00, -0x50,0x10, 0x10,0x20, 0x10,0xC0, 0x13,0x00, -0xFD,0x00, 0x11,0x00, 0x11,0xF0, 0x11,0x00, -/* @zha13 (12x12,V)@ [suki software]*/ -0x10,0x40, 0x11,0x80, 0x16,0x00, 0xFF,0xF0, -0x12,0x00, 0x11,0x80, 0x04,0x00, 0x18,0x00, -0xF0,0x00, 0x5F,0xF0, 0x11,0x20, 0x11,0x20, -/* @zuo3 (12x12,V)@ [suki software]*/ -0x02,0x00, 0x04,0x00, 0x1F,0xF0, 0xE0,0x00, -0x51,0xF0, 0x11,0x10, 0xFF,0x10, 0x11,0x10, -0x13,0xF0, 0x0C,0x00, 0xFF,0xC0, 0x48,0x30, -/* @zuo4 (12x12,V)@ [suki software]*/ -0x01,0x00, 0x02,0x00, 0x04,0x00, 0x1F,0xF0, -0xE0,0x00, 0x44,0x00, 0x18,0x00, 0x30,0x00, -0xDF,0xF0, 0x12,0x20, 0x12,0x20, 0x12,0x20, -/* @zuo5 (12x12,V)@ [suki software]*/ -0x00,0x80, 0x01,0x00, 0x06,0x20, 0x38,0x20, -0x04,0x20, 0x03,0x20, 0x00,0x20, 0xFF,0xF0, -0x00,0xA0, 0x01,0x20, 0x02,0x20, 0x3C,0x20, -/* @zuo6 (12x12,V)@ [suki software]*/ -0x00,0x00, 0x00,0x30, 0x3F,0x40, 0x20,0x80, -0x21,0x20, 0x2E,0x20, 0xA9,0xA0, 0x70,0x20, -0x6F,0xF0, 0x30,0x60, 0x20,0xA0, 0x2A,0x20, diff --git a/Drivers/BSP/160160D/ChineseLibrary15x15.h b/Drivers/BSP/160160D/ChineseLibrary15x15.h deleted file mode 100644 index 110fec1..0000000 --- a/Drivers/BSP/160160D/ChineseLibrary15x15.h +++ /dev/null @@ -1,27307 +0,0 @@ -/****************************************Copyright (c)************************************************** -** NANJING TIANSU -**--------------File Info------------------------------------------------------------------------------- -** File Name: ChineseLibrary.h -** Last modified Date: -** Last Version: -** Descriptions:ֿ -** -**------------------------------------------------------------------------------------------------------ -** Created By:Maruming -** Created date:2009-2-14 -** Version: -** Descriptions: -** -**------------------------------------------------------------------------------------------------------ -** Modified by: -** Modified date: -** Version: -** Descriptions: -** -********************************************************************************************************/ - -#ifndef CHIN_LIB_H -#define CHIN_LIB_H - -#ifdef CHIN_LIB_GLOBALS -#define CHIN_LIB_EXT -#else -#define CHIN_LIB_EXT extern -#endif - -#ifdef __cplusplus -extern "C" { -#endif - -const INT8U CHINESE_TB[][3008]= -{ -//************************************** -{ -/* @0 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @1 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x02,0x0c,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @2 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x0c,0x12,0x12,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @3 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x00,0xc0,0xe0,0xe0,0xc0,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @4 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @5 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x02,0x04,0x08,0x08,0x04,0x02,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @6 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x06,0x06,0x00,0x00,0x06,0x06,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @7 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x00,0xc0,0x30,0x00,0xc0,0x30,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @8 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x40,0x20,0x18,0x16,0x10,0x88,0x68,0x18,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x0d,0x00,0x00,0x00,0x00,0x00,0x00, -/* @9 (15x15,V)@ [suki software]*/ -0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @10 (15x15,V)@ [suki software]*/ -0x80,0x40,0x20,0x20,0x20,0x40,0x40,0x80,0x80,0x00,0x00,0x00,0x80,0x40,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00, -/* @11 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x00,0xfe,0x00,0x00,0xfe,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x1f,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00, -/* @12 (15x15,V)@ [suki software]*/ -0x00,0xc0,0xc0,0x00,0x00,0x00,0xc0,0xc0,0x00,0x00,0x00,0xc0,0xc0,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @13 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x1a,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @14 (15x15,V)@ [suki software]*/ -0x00,0x00,0x16,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @15 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x1a,0x00,0x1c,0x1a,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @16 (15x15,V)@ [suki software]*/ -0x00,0x00,0x16,0x0e,0x00,0x16,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @17 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x04,0x02,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x08,0x10,0x00,0x00,0x00, -/* @18 (15x15,V)@ [suki software]*/ -0x00,0x00,0x02,0x04,0xf8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x10,0x08,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @19 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x30,0x0c,0x03,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x0c,0x30,0x00,0x00, -/* @20 (15x15,V)@ [suki software]*/ -0x00,0x03,0x0c,0x30,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x30,0x0c,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @21 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x30,0xcc,0x33,0x0c,0x03,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x0c,0x33,0x0c,0x30,0x00,0x00, -/* @22 (15x15,V)@ [suki software]*/ -0x00,0x03,0x0c,0x33,0xcc,0x30,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x30,0x0c,0x33,0x0c,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @23 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x01,0x01,0x01,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x00, -/* @24 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x20,0x20,0x20,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @25 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x01,0xfd,0x05,0x07,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x20,0x3f,0x00,0x00,0x00,0x00, -/* @26 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0xff,0x01,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x38,0x28,0x2f,0x20,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @27 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x01,0xf1,0x0d,0x03,0x01,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x20,0x23,0x2c,0x30,0x20,0x00,0x00, -/* @28 (15x15,V)@ [suki software]*/ -0x00,0x01,0x03,0x0d,0xf1,0x01,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x20,0x30,0x2c,0x23,0x20,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @29 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x0f,0x03,0x01,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x3f,0x3c,0x30,0x20,0x00,0x00,0x00, -/* @30 (15x15,V)@ [suki software]*/ -0x00,0x00,0x01,0x03,0x0f,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x20,0x30,0x3c,0x3f,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @31 (15x15,V)@ [suki software]*/ -0x00,0x00,0x40,0x40,0x40,0x40,0x40,0xfe,0x40,0x40,0x40,0x40,0x40,0x00,0x00, -0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x17,0x10,0x10,0x10,0x10,0x10,0x00,0x00, -/* @32 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x08,0x10,0x20,0x40,0x80,0x40,0x20,0x10,0x08,0x00,0x00,0x00, -0x00,0x00,0x00,0x08,0x04,0x02,0x01,0x00,0x01,0x02,0x04,0x08,0x00,0x00,0x00, -/* @33 (15x15,V)@ [suki software]*/ -0x00,0x00,0x80,0x80,0x80,0x80,0x98,0x98,0x80,0x80,0x80,0x80,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @34 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @35 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x80,0x60,0x18,0x06,0x18,0x60,0x80,0x00,0x00,0x00,0x00, -0x00,0x00,0x18,0x06,0x01,0x00,0x00,0x00,0x00,0x00,0x01,0x06,0x18,0x00,0x00, -/* @36 (15x15,V)@ [suki software]*/ -0x00,0x00,0x06,0x18,0x60,0x80,0x00,0x00,0x00,0x80,0x60,0x18,0x06,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x01,0x06,0x18,0x06,0x01,0x00,0x00,0x00,0x00,0x00, -/* @37 (15x15,V)@ [suki software]*/ -0x00,0x00,0x06,0x0a,0x32,0xc2,0x02,0x02,0x02,0x02,0x06,0x08,0x00,0x00,0x00, -0x00,0x00,0x10,0x18,0x16,0x11,0x10,0x10,0x10,0x10,0x18,0x04,0x00,0x00,0x00, -/* @38 (15x15,V)@ [suki software]*/ -0x00,0x02,0x02,0xfe,0x02,0x02,0x02,0x02,0x02,0x02,0xfe,0x02,0x02,0x00,0x00, -0x00,0x00,0x10,0x1f,0x10,0x00,0x00,0x00,0x00,0x10,0x1f,0x10,0x00,0x00,0x00, -/* @39 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfc,0x00,0x00,0x00, -0x00,0x00,0x00,0x03,0x04,0x08,0x08,0x08,0x08,0x08,0x04,0x03,0x00,0x00,0x00, -/* @40 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0xf0,0x08,0x04,0x04,0x04,0x04,0x04,0x08,0xf0,0x00,0x00,0x00, -0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x00, -/* @41 (15x15,V)@ [suki software]*/ -0x00,0x00,0xe0,0x90,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x00,0x00,0x00, -0x00,0x00,0x03,0x04,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00, -/* @42 (15x15,V)@ [suki software]*/ -0x00,0x00,0x0c,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x0c,0x00,0x00,0x00, -0x00,0x00,0x0c,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x0c,0x00,0x00,0x00, -/* @43 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x00,0x80,0x00,0x00,0x00,0xc0,0x30,0x0c,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x0c,0x03,0x00,0x00,0x00,0x00,0x00,0x00, -/* @44 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x10,0x10,0x00,0x00, -/* @45 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x80,0x60,0x18,0x06,0x80,0x60,0x18,0x06,0x00,0x00,0x00, -0x00,0x00,0x18,0x06,0x01,0x00,0x18,0x06,0x01,0x00,0x00,0x00,0x00,0x00,0x00, -/* @46 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x40,0x20,0x10,0x08,0x04,0x02,0x00,0x00, -0x00,0x10,0x18,0x14,0x12,0x11,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x00, -/* @47 (15x15,V)@ [suki software]*/ -0x00,0xc0,0x20,0x10,0x08,0x08,0x08,0x08,0x08,0x08,0x10,0x20,0xc0,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @48 (15x15,V)@ [suki software]*/ -0x00,0xf0,0x08,0x04,0x02,0x02,0xc2,0xc2,0x02,0x02,0x04,0x08,0xf0,0x00,0x00, -0x00,0x03,0x04,0x08,0x10,0x10,0x10,0x10,0x10,0x10,0x08,0x04,0x03,0x00,0x00, -/* @49 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfc,0x02,0x02,0x04,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x08,0x10,0x10,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @50 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x00,0xc0,0x20,0xfc,0x22,0xc2,0x04,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x08,0x11,0x12,0x0f,0x02,0x01,0x00,0x00,0x00,0x00,0x00, -/* @51 (15x15,V)@ [suki software]*/ -0x00,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x00,0x00, -0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x00,0x00, -/* @52 (15x15,V)@ [suki software]*/ -0x00,0x70,0x88,0x88,0x80,0x40,0x20,0x10,0x08,0x08,0x88,0x88,0x70,0x00,0x00, -0x00,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x00,0x00, -/* @53 (15x15,V)@ [suki software]*/ -0x00,0x20,0x90,0x90,0x90,0x90,0x20,0x20,0x40,0x40,0x40,0x40,0x20,0x00,0x00, -0x00,0x01,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x02,0x02,0x01,0x01,0x00,0x00, -/* @54 (15x15,V)@ [suki software]*/ -0x00,0xe0,0x10,0x10,0x00,0x80,0x40,0x20,0x10,0x10,0x10,0x10,0xe0,0x00,0x00, -0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00, -/* @55 (15x15,V)@ [suki software]*/ -0x00,0xe0,0x10,0x10,0x10,0x10,0xa0,0x40,0xa0,0x10,0x10,0x10,0x10,0x00,0x00, -0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00, -/* @56 (15x15,V)@ [suki software]*/ -0x00,0x20,0x20,0x20,0x20,0x20,0xa0,0x60,0x30,0x28,0x24,0x20,0x20,0x00,0x00, -0x00,0x01,0x01,0x09,0x05,0x03,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00, -/* @57 (15x15,V)@ [suki software]*/ -0x00,0x40,0x40,0x40,0xa0,0xa0,0xfe,0x10,0x10,0x08,0x08,0x04,0x04,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x1f,0x01,0x01,0x02,0x02,0x04,0x04,0x00,0x00, -/* @58 (15x15,V)@ [suki software]*/ -0x00,0x04,0x04,0x08,0x08,0x10,0x10,0xfe,0xa0,0xa0,0x40,0x40,0x40,0x00,0x00, -0x00,0x04,0x04,0x02,0x02,0x01,0x01,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @59 (15x15,V)@ [suki software]*/ -0x00,0x20,0x20,0x20,0x50,0x50,0x88,0x88,0x84,0x04,0x04,0x02,0x02,0x00,0x00, -0x00,0x01,0x01,0x02,0x02,0x02,0x04,0x04,0x08,0x09,0x09,0x12,0x12,0x00,0x00, -/* @60 (15x15,V)@ [suki software]*/ -0x00,0x02,0x02,0x04,0x84,0x84,0x88,0x48,0x50,0x50,0x20,0x20,0x20,0x00,0x00, -0x00,0x11,0x11,0x09,0x08,0x08,0x04,0x04,0x02,0x02,0x02,0x01,0x01,0x00,0x00, -/* @61 (15x15,V)@ [suki software]*/ -0x00,0x00,0xc0,0x20,0x20,0x20,0x40,0x80,0x40,0x20,0x20,0x20,0xc0,0x00,0x00, -0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x00, -/* @62 (15x15,V)@ [suki software]*/ -0x00,0x00,0x18,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @63 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x0c,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x0c,0x00,0x00,0x00, -/* @64 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x00,0x10,0x8c,0xff,0x8c,0x10,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x0f,0x10,0x10,0x10,0x0f,0x00,0x00,0x00,0x00,0x00, -/* @65 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x00,0x3c,0x42,0xc2,0x42,0x3c,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x1f,0x01,0x01,0x01,0x01,0x00,0x00,0x00, -/* @66 (15x15,V)@ [suki software]*/ -0x00,0x0c,0x12,0x12,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @67 (15x15,V)@ [suki software]*/ -0x00,0x00,0x30,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @68 (15x15,V)@ [suki software]*/ -0x00,0x00,0x30,0x0e,0x00,0x30,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @69 (15x15,V)@ [suki software]*/ -0x00,0x0e,0x0a,0x0e,0xf0,0x08,0x04,0x04,0x04,0x04,0x04,0x08,0x3c,0x00,0x00, -0x00,0x00,0x00,0x00,0x03,0x04,0x08,0x10,0x10,0x10,0x08,0x04,0x02,0x00,0x00, -/* @70 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x18,0x24,0x42,0x42,0xff,0x82,0x84,0x1e,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x1c,0x08,0x10,0x10,0x3f,0x10,0x08,0x07,0x00,0x00,0x00,0x00, -/* @71 (15x15,V)@ [suki software]*/ -0x00,0xf2,0x0c,0x04,0x02,0x02,0x02,0x02,0x02,0x02,0x04,0x0c,0xf2,0x00,0x00, -0x00,0x13,0x0c,0x08,0x10,0x10,0x10,0x10,0x10,0x10,0x08,0x0c,0x13,0x00,0x00, -/* @72 (15x15,V)@ [suki software]*/ -0x00,0x00,0xe0,0x10,0x08,0x08,0x08,0xe8,0x18,0x16,0x30,0x00,0x00,0x00,0x00, -0x00,0x00,0x01,0x02,0x04,0x0c,0x07,0x04,0x04,0x04,0x02,0x00,0x00,0x00,0x00, -/* @73 (15x15,V)@ [suki software]*/ -0x00,0x00,0x40,0x40,0x5c,0x62,0xc2,0x42,0x42,0x4a,0x0c,0x00,0x00,0x00,0x00, -0x00,0x00,0x04,0x0a,0x0a,0x0a,0x07,0x04,0x08,0x08,0x08,0x04,0x00,0x00,0x00, -/* @74 (15x15,V)@ [suki software]*/ -0x3c,0x42,0x42,0x3c,0x80,0x40,0xa0,0x90,0x08,0x04,0x00,0x80,0x80,0x00,0x00, -0x08,0x04,0x02,0x01,0x00,0x0f,0x10,0x10,0x0f,0x00,0x0f,0x10,0x10,0x0f,0x00, -/* @75 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x00,0xc6,0x29,0x11,0x21,0xc2,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x10,0x21,0x22,0x26,0x19,0x00,0x00,0x00,0x00,0x00, -/* @76 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x10,0x20,0x40,0x80,0x04,0xfc,0x04,0xc0,0x20,0x20,0xc0,0x00,0x00, -0x08,0x0f,0x08,0x00,0x00,0x00,0x01,0x0f,0x00,0x09,0x0a,0x0a,0x09,0x00,0x00, -/* @77 (15x15,V)@ [suki software]*/ -0x00,0x20,0x60,0xa0,0x20,0x20,0x18,0x07,0x38,0x20,0xa0,0x60,0x20,0x00,0x00, -0x00,0x00,0x00,0x18,0x0f,0x08,0x04,0x04,0x08,0x0b,0x1c,0x10,0x00,0x00,0x00, -/* @78 (15x15,V)@ [suki software]*/ -0x00,0x20,0x60,0xe0,0xe0,0xe0,0xf8,0xfe,0xf0,0xe0,0xe0,0x60,0x20,0x00,0x00, -0x00,0x00,0x00,0x18,0x0f,0x07,0x03,0x03,0x07,0x0f,0x1c,0x00,0x00,0x00,0x00, -/* @79 (15x15,V)@ [suki software]*/ -0x00,0xf0,0x08,0x04,0x02,0x02,0x02,0x02,0x02,0x02,0x04,0x08,0xf0,0x00,0x00, -0x00,0x03,0x04,0x08,0x10,0x10,0x10,0x10,0x10,0x10,0x08,0x04,0x03,0x00,0x00, -/* @80 (15x15,V)@ [suki software]*/ -0x00,0xf0,0xf8,0xfc,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfc,0xf8,0xf0,0x00,0x00, -0x00,0x03,0x07,0x0f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x0f,0x07,0x03,0x00,0x00, -/* @81 (15x15,V)@ [suki software]*/ -0x00,0xf0,0x08,0xe4,0x12,0x0a,0x0a,0x0a,0x0a,0x12,0xe4,0x08,0xf0,0x00,0x00, -0x00,0x03,0x04,0x09,0x12,0x14,0x14,0x14,0x14,0x12,0x09,0x04,0x03,0x00,0x00, -/* @82 (15x15,V)@ [suki software]*/ -0x00,0xc0,0x20,0x10,0x08,0x04,0x02,0x02,0x04,0x08,0x10,0x20,0xc0,0x00,0x00, -0x00,0x00,0x01,0x02,0x04,0x08,0x10,0x10,0x08,0x04,0x02,0x01,0x00,0x00,0x00, -/* @83 (15x15,V)@ [suki software]*/ -0x00,0xc0,0xe0,0xf0,0xf8,0xfc,0xfe,0xfe,0xfc,0xf8,0xf0,0xe0,0xc0,0x00,0x00, -0x00,0x00,0x01,0x03,0x07,0x0f,0x1f,0x1f,0x0f,0x07,0x03,0x01,0x00,0x00,0x00, -/* @84 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0xfe,0x00,0x00, -0x00,0x1f,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x1f,0x00,0x00, -/* @85 (15x15,V)@ [suki software]*/ -0x00,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0x00,0x00, -0x00,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x00,0x00, -/* @86 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x80,0x60,0x18,0x06,0x18,0x60,0x80,0x00,0x00,0x00,0x00, -0x00,0x10,0x18,0x16,0x11,0x10,0x10,0x10,0x10,0x10,0x11,0x16,0x18,0x10,0x00, -/* @87 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x80,0xe0,0xf8,0xfe,0xf8,0xe0,0x80,0x00,0x00,0x00,0x00, -0x00,0x10,0x18,0x1e,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1e,0x18,0x10,0x00, -/* @88 (15x15,V)@ [suki software]*/ -0x00,0xc2,0xc4,0x08,0x10,0xa0,0x46,0xa6,0x10,0x08,0xc4,0xc2,0x00,0x00,0x00, -0x00,0x08,0x04,0x02,0x01,0x00,0x0c,0x0c,0x01,0x02,0x04,0x08,0x00,0x00,0x00, -/* @89 (15x15,V)@ [suki software]*/ -0x00,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xa0,0xc0,0xc0,0x80,0x80,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x01,0x00,0x00,0x00,0x00, -/* @90 (15x15,V)@ [suki software]*/ -0x00,0x80,0x80,0xc0,0xc0,0xa0,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x00,0x00, -0x00,0x00,0x00,0x01,0x01,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @91 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x00,0x20,0x18,0xfe,0x18,0x20,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @92 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfe,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x01,0x06,0x1f,0x06,0x01,0x00,0x00,0x00,0x00,0x00, -/* @93 (15x15,V)@ [suki software]*/ -0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x00, -0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x00, -}, -//************************************** -{ -/* @94 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x00,0x00,0x20,0xe6,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x0f,0x08,0x00,0x00,0x00,0x00,0x00,0x00, -/* @95 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x20,0xe6,0x00,0x00,0x00,0x20,0xe6,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x08,0x0f,0x08,0x00,0x00,0x08,0x0f,0x08,0x00,0x00,0x00,0x00, -/* @96 (15x15,V)@ [suki software]*/ -0x00,0x20,0xe6,0x00,0x00,0x00,0x20,0xe6,0x00,0x00,0x00,0x20,0xe6,0x00,0x00, -0x00,0x08,0x0f,0x08,0x00,0x00,0x08,0x0f,0x08,0x00,0x00,0x08,0x0f,0x08,0x00, -/* @97 (15x15,V)@ [suki software]*/ -0x00,0x20,0xe6,0x00,0x00,0x20,0x60,0xa0,0x00,0x00,0x20,0xe0,0x20,0x00,0x00, -0x00,0x08,0x0f,0x08,0x00,0x00,0x00,0x01,0x02,0x0c,0x03,0x00,0x00,0x00,0x00, -/* @98 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x20,0x60,0xa0,0x00,0x00,0x20,0xe0,0x20,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x0c,0x03,0x00,0x00,0x00,0x00,0x00,0x00, -/* @99 (15x15,V)@ [suki software]*/ -0x00,0x20,0x60,0xa0,0x00,0x00,0x20,0xe0,0x20,0x00,0x20,0xe6,0x00,0x00,0x00, -0x00,0x00,0x00,0x01,0x02,0x0c,0x03,0x00,0x00,0x00,0x08,0x0f,0x08,0x00,0x00, -/* @100 (15x15,V)@ [suki software]*/ -0x20,0xe0,0x20,0x00,0x00,0xe0,0x20,0x00,0x20,0xe6,0x00,0x20,0xe6,0x00,0x00, -0x00,0x00,0x03,0x0c,0x03,0x00,0x00,0x00,0x08,0x0f,0x08,0x08,0x0f,0x08,0x00, -/* @101 (15x15,V)@ [suki software]*/ -0x20,0x60,0x80,0x00,0xa0,0x60,0x20,0xe6,0x00,0x20,0xe6,0x00,0x20,0xe6,0x00, -0x00,0x00,0x01,0x0e,0x01,0x00,0x08,0x0f,0x08,0x08,0x0f,0x08,0x08,0x0f,0x00, -/* @102 (15x15,V)@ [suki software]*/ -0x00,0x20,0xe6,0x00,0x00,0x00,0x10,0x30,0x50,0x80,0x40,0x30,0x10,0x00,0x00, -0x00,0x08,0x0f,0x08,0x00,0x00,0x08,0x0c,0x02,0x01,0x0a,0x0c,0x08,0x00,0x00, -/* @103 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x20,0x60,0x80,0x00,0x80,0x60,0x20,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x08,0x0c,0x0a,0x01,0x02,0x0c,0x08,0x00,0x00,0x00,0x00,0x00, -/* @104 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @105 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @106 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @107 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @108 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @109 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @110 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xfe,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x0f,0x08,0x00,0x00,0x00,0x0c,0x0c,0x00, -/* @111 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x1c,0x02,0x02,0x82,0x42,0x3c,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x0c,0x0a,0x09,0x08,0x08,0x0c,0x00,0x00,0x0c,0x0c,0x00, -/* @112 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x0c,0x02,0x42,0x42,0x62,0x9c,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x06,0x08,0x08,0x08,0x08,0x07,0x00,0x00,0x0c,0x0c,0x00, -/* @113 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x80,0x40,0x30,0x08,0xfe,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x01,0x01,0x01,0x09,0x09,0x0f,0x09,0x00,0x00,0x06,0x06,0x00, -/* @114 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x7e,0x42,0x22,0x22,0x22,0xc2,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x06,0x08,0x08,0x08,0x08,0x07,0x00,0x00,0x0c,0x0c,0x00, -/* @115 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0xf8,0x44,0x22,0x22,0x22,0xcc,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x07,0x08,0x08,0x08,0x08,0x07,0x00,0x00,0x0c,0x0c,0x00, -/* @116 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x0e,0x02,0x82,0x62,0x1a,0x06,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x0c,0x0c,0x00, -/* @117 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x1c,0xa2,0x42,0x42,0xa2,0x1c,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x07,0x08,0x08,0x08,0x08,0x07,0x00,0x00,0x0c,0x0c,0x00, -/* @118 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x38,0x44,0x82,0x82,0x44,0xf8,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x06,0x08,0x08,0x08,0x04,0x03,0x00,0x00,0x0c,0x0c,0x00, -/* @119 (15x15,V)@ [suki software]*/ -0x00,0x00,0x04,0xfe,0x00,0x00,0xfc,0x02,0x02,0x02,0xfc,0x00,0x00,0x00,0x00, -0x00,0x00,0x08,0x0f,0x08,0x00,0x07,0x08,0x08,0x08,0x07,0x00,0x00,0x00,0x00,//0x00,0x00,0x08,0x0f,0x08,0x00,0x07,0x08,0x08,0x08,0x07,0x00,0x0c,0x0c,0x00, -/* @120 (15x15,V)@ [suki software]*/ -0x00,0x00,0x04,0xfe,0x00,0x00,0x00,0x04,0xfe,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x08,0x0f,0x08,0x00,0x00,0x08,0x0f,0x08,0x00,0x00,0x00,0x00,0x00,//0x00,0x00,0x08,0x0f,0x08,0x00,0x00,0x08,0x0f,0x08,0x00,0x00,0x0c,0x0c,0x00, -/* @121 (15x15,V)@ [suki software]*/ -0x00,0x00,0x04,0xfe,0x00,0x00,0x1c,0x02,0x82,0x42,0x3c,0x00,0x00,0x00,0x00, -0x00,0x00,0x08,0x0f,0x08,0x00,0x0e,0x09,0x08,0x08,0x0c,0x00,0x00,0x00,0x00, -/* @122 (15x15,V)@ [suki software]*/ -0x00,0x00,0x04,0xfe,0x00,0x00,0x0c,0x02,0x42,0x42,0xbc,0x00,0x00,0x00,0x00, -0x00,0x00,0x08,0x0f,0x08,0x00,0x06,0x08,0x08,0x08,0x07,0x00,0x00,0x00,0x00, -/* @123 (15x15,V)@ [suki software]*/ -0x00,0x00,0x04,0xfe,0x00,0x00,0x80,0x60,0x18,0xfe,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x08,0x0f,0x08,0x01,0x01,0x01,0x09,0x0f,0x09,0x01,0x00,0x00,0x00, -/* @124 (15x15,V)@ [suki software]*/ -0x00,0x00,0x04,0xfe,0x00,0x00,0x7e,0x22,0x22,0x22,0xc2,0x00,0x00,0x00,0x00, -0x00,0x00,0x08,0x0f,0x08,0x00,0x06,0x08,0x08,0x08,0x07,0x00,0x00,0x00,0x00, -/* @125 (15x15,V)@ [suki software]*/ -0x00,0x00,0x04,0xfe,0x00,0x00,0xf8,0x44,0x22,0x22,0xcc,0x00,0x00,0x00,0x00, -0x00,0x00,0x08,0x0f,0x08,0x00,0x07,0x08,0x08,0x08,0x07,0x00,0x0c,0x0c,0x00, -/* @126 (15x15,V)@ [suki software]*/ -0x00,0x00,0x04,0xfe,0x00,0x00,0x0c,0x02,0x82,0x72,0x0e,0x00,0x00,0x00,0x00, -0x00,0x00,0x08,0x0f,0x08,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00, -/* @127 (15x15,V)@ [suki software]*/ -0x00,0x00,0x04,0xfe,0x00,0x00,0x1c,0xa2,0x42,0xa2,0x1c,0x00,0x00,0x00,0x00, -0x00,0x00,0x08,0x0f,0x08,0x00,0x07,0x08,0x08,0x08,0x07,0x00,0x00,0x00,0x00, -/* @128 (15x15,V)@ [suki software]*/ -0x00,0x00,0x04,0xfe,0x00,0x00,0x7c,0x82,0x82,0x82,0xfc,0x00,0x00,0x00,0x00, -0x00,0x00,0x08,0x0f,0x08,0x00,0x04,0x08,0x08,0x08,0x07,0x00,0x0c,0x0c,0x00, -/* @129 (15x15,V)@ [suki software]*/ -0x1c,0x02,0x02,0xc2,0x3c,0x00,0xfc,0x02,0x02,0x02,0xfc,0x00,0x00,0x00,0x00, -0x0c,0x0a,0x09,0x08,0x0c,0x00,0x07,0x08,0x08,0x08,0x07,0x00,0x0c,0x0c,0x00, -/* @130 (15x15,V)@ [suki software]*/ -0xf8,0x04,0x02,0x00,0x00,0x00,0x08,0xfc,0x00,0x00,0x00,0x02,0x04,0xf8,0x00, -0x07,0x08,0x10,0x00,0x00,0x00,0x08,0x0f,0x08,0x00,0x00,0x10,0x08,0x07,0x00, -/* @131 (15x15,V)@ [suki software]*/ -0xf8,0x04,0x02,0x00,0x00,0x18,0x04,0x84,0x44,0x38,0x00,0x02,0x04,0xf8,0x00, -0x07,0x08,0x10,0x00,0x00,0x0e,0x09,0x08,0x08,0x0c,0x00,0x10,0x08,0x07,0x00, -/* @132 (15x15,V)@ [suki software]*/ -0xf8,0x04,0x02,0x00,0x00,0x18,0x44,0x44,0xa4,0x18,0x00,0x02,0x04,0xf8,0x00, -0x07,0x08,0x10,0x00,0x00,0x06,0x08,0x08,0x08,0x07,0x00,0x10,0x08,0x07,0x00, -/* @133 (15x15,V)@ [suki software]*/ -0xf8,0x04,0x02,0x00,0x00,0xc0,0x30,0xfc,0x00,0x00,0x00,0x02,0x04,0xf8,0x00, -0x07,0x08,0x10,0x00,0x03,0x02,0x0a,0x0f,0x0a,0x02,0x00,0x10,0x08,0x07,0x00, -/* @134 (15x15,V)@ [suki software]*/ -0xf8,0x04,0x02,0x00,0x00,0x7c,0x44,0x44,0x44,0x84,0x00,0x02,0x04,0xf8,0x00, -0x07,0x08,0x10,0x00,0x00,0x06,0x08,0x08,0x08,0x07,0x00,0x10,0x08,0x07,0x00, -/* @135 (15x15,V)@ [suki software]*/ -0xf8,0x04,0x02,0x00,0x00,0xf8,0x44,0x44,0x44,0x88,0x00,0x02,0x04,0xf8,0x00, -0x07,0x08,0x10,0x00,0x00,0x07,0x08,0x08,0x08,0x07,0x00,0x10,0x08,0x07,0x00, -/* @136 (15x15,V)@ [suki software]*/ -0xf8,0x04,0x02,0x00,0x08,0x04,0x84,0x64,0x1c,0x04,0x00,0x02,0x04,0xf8,0x00, -0x07,0x08,0x10,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x10,0x08,0x07,0x00, -/* @137 (15x15,V)@ [suki software]*/ -0xf8,0x04,0x02,0x00,0x00,0xb8,0x44,0x44,0x44,0xb8,0x00,0x02,0x04,0xf8,0x00, -0x07,0x08,0x10,0x00,0x00,0x07,0x08,0x08,0x08,0x07,0x00,0x10,0x08,0x07,0x00, -/* @138 (15x15,V)@ [suki software]*/ -0xf8,0x04,0x02,0x00,0x00,0x78,0x84,0x84,0x84,0xf8,0x00,0x02,0x04,0xf8,0x00, -0x07,0x08,0x10,0x00,0x00,0x04,0x08,0x08,0x04,0x03,0x00,0x10,0x08,0x07,0x00, -/* @139 (15x15,V)@ [suki software]*/ -0xf8,0x04,0x02,0x08,0xfc,0x00,0x00,0xf8,0x04,0x04,0xf8,0x02,0x04,0xf8,0x00, -0x07,0x08,0x10,0x08,0x0f,0x08,0x00,0x07,0x08,0x08,0x07,0x10,0x08,0x07,0x00, -/* @140 (15x15,V)@ [suki software]*/ -0xf8,0x04,0x02,0x08,0xfc,0x00,0x00,0x00,0x08,0xfc,0x00,0x02,0x04,0xf8,0x00, -0x07,0x08,0x10,0x08,0x0f,0x08,0x00,0x00,0x08,0x0f,0x08,0x10,0x08,0x07,0x00, -/* @141 (15x15,V)@ [suki software]*/ -0xf8,0x04,0x02,0x08,0xfc,0x00,0x00,0x18,0x04,0xc4,0x38,0x02,0x04,0xf8,0x00, -0x07,0x08,0x10,0x08,0x0f,0x08,0x00,0x0c,0x0b,0x08,0x0c,0x10,0x08,0x07,0x00, -/* @142 (15x15,V)@ [suki software]*/ -0xf8,0x04,0x02,0x08,0xfc,0x00,0x00,0x08,0x44,0x44,0xb8,0x02,0x04,0xf8,0x00, -0x07,0x08,0x10,0x08,0x0f,0x08,0x00,0x06,0x08,0x08,0x07,0x10,0x08,0x07,0x00, -/* @143 (15x15,V)@ [suki software]*/ -0xf8,0x04,0x02,0x08,0xfc,0x00,0x80,0x60,0x10,0xfc,0x00,0x02,0x04,0xf8,0x00, -0x07,0x08,0x10,0x08,0x0f,0x08,0x01,0x01,0x09,0x0f,0x09,0x10,0x08,0x07,0x00, -/* @144 (15x15,V)@ [suki software]*/ -0xf8,0x04,0x02,0x08,0xfc,0x00,0x00,0x7c,0x44,0x44,0x84,0x02,0x04,0xf8,0x00, -0x07,0x08,0x10,0x08,0x0f,0x08,0x00,0x04,0x08,0x08,0x07,0x10,0x08,0x07,0x00, -/* @145 (15x15,V)@ [suki software]*/ -0xf8,0x04,0x02,0x08,0xfc,0x00,0x00,0xf8,0x44,0x44,0x88,0x02,0x04,0xf8,0x00, -0x07,0x08,0x10,0x08,0x0f,0x08,0x00,0x07,0x08,0x08,0x07,0x10,0x08,0x07,0x00, -/* @146 (15x15,V)@ [suki software]*/ -0xf8,0x04,0x02,0x08,0xfc,0x00,0x00,0x0c,0x84,0x74,0x0c,0x02,0x04,0xf8,0x00, -0x07,0x08,0x10,0x08,0x0f,0x08,0x00,0x00,0x0f,0x00,0x00,0x10,0x08,0x07,0x00, -/* @147 (15x15,V)@ [suki software]*/ -0xf8,0x04,0x02,0x08,0xfc,0x00,0x00,0xb8,0x44,0x44,0xb8,0x02,0x04,0xf8,0x00, -0x07,0x08,0x10,0x08,0x0f,0x08,0x00,0x07,0x08,0x08,0x07,0x10,0x08,0x07,0x00, -/* @148 (15x15,V)@ [suki software]*/ -0xf8,0x04,0x02,0x08,0xfc,0x00,0x00,0x78,0x84,0x84,0xf8,0x02,0x04,0xf8,0x00, -0x07,0x08,0x10,0x08,0x0f,0x08,0x00,0x06,0x08,0x08,0x07,0x10,0x08,0x07,0x00, -/* @149 (15x15,V)@ [suki software]*/ -0xf8,0x04,0x02,0x18,0x84,0x64,0x18,0xf8,0x04,0x04,0xf8,0x02,0x04,0xf8,0x00, -0x07,0x08,0x10,0x0e,0x09,0x08,0x0c,0x07,0x08,0x08,0x07,0x10,0x08,0x07,0x00, -/* @150 (15x15,V)@ [suki software]*/ -0xf0,0x0c,0x02,0x02,0x01,0x01,0x09,0xfd,0x01,0x01,0x02,0x02,0x0c,0xf0,0x00, -0x03,0x0c,0x10,0x10,0x20,0x20,0x28,0x2f,0x28,0x20,0x10,0x10,0x0c,0x03,0x00, -/* @151 (15x15,V)@ [suki software]*/ -0xf0,0x0c,0x02,0x02,0x39,0x05,0x05,0x85,0x45,0x39,0x02,0x02,0x0c,0xf0,0x00, -0x03,0x0c,0x10,0x10,0x2c,0x2a,0x29,0x28,0x28,0x2e,0x10,0x10,0x0c,0x03,0x00, -/* @152 (15x15,V)@ [suki software]*/ -0xf0,0x0c,0x02,0x02,0x19,0x05,0x45,0x45,0x45,0xb9,0x02,0x02,0x0c,0xf0,0x00, -0x03,0x0c,0x10,0x10,0x26,0x28,0x28,0x28,0x28,0x27,0x10,0x10,0x0c,0x03,0x00, -/* @153 (15x15,V)@ [suki software]*/ -0xf0,0x0c,0x02,0x02,0x81,0x61,0x11,0xfd,0x01,0x01,0x02,0x02,0x0c,0xf0,0x00, -0x03,0x0c,0x10,0x13,0x22,0x22,0x2a,0x2f,0x2a,0x22,0x10,0x10,0x0c,0x03,0x00, -/* @154 (15x15,V)@ [suki software]*/ -0xf0,0x0c,0x02,0x02,0x7d,0x45,0x25,0x25,0x25,0xc5,0x02,0x02,0x0c,0xf0,0x00, -0x03,0x0c,0x10,0x10,0x26,0x28,0x28,0x28,0x28,0x27,0x10,0x10,0x0c,0x03,0x00, -/* @155 (15x15,V)@ [suki software]*/ -0xf0,0x0c,0x02,0x02,0xf1,0x89,0x45,0x45,0x45,0x99,0x02,0x02,0x0c,0xf0,0x00, -0x03,0x0c,0x10,0x10,0x27,0x28,0x28,0x28,0x28,0x27,0x10,0x10,0x0c,0x03,0x00, -/* @156 (15x15,V)@ [suki software]*/ -0xf0,0x0c,0x02,0x02,0x1d,0x05,0x05,0xc5,0x35,0x0d,0x02,0x02,0x0c,0xf0,0x00, -0x03,0x0c,0x10,0x10,0x20,0x20,0x2f,0x20,0x20,0x20,0x10,0x10,0x0c,0x03,0x00, -/* @157 (15x15,V)@ [suki software]*/ -0xf0,0x0c,0x02,0x02,0x19,0xa5,0x45,0x45,0xa5,0x19,0x02,0x02,0x0c,0xf0,0x00, -0x03,0x0c,0x10,0x10,0x27,0x28,0x28,0x28,0x28,0x27,0x10,0x10,0x0c,0x03,0x00, -/* @158 (15x15,V)@ [suki software]*/ -0xf0,0x0c,0x02,0x02,0x79,0x85,0x85,0x85,0x45,0xf9,0x02,0x02,0x0c,0xf0,0x00, -0x03,0x0c,0x10,0x10,0x24,0x28,0x28,0x28,0x24,0x23,0x10,0x10,0x0c,0x03,0x00, -/* @159 (15x15,V)@ [suki software]*/ -0xf0,0x0c,0x02,0x0a,0xfd,0x01,0x01,0xf9,0x05,0x05,0xfa,0x02,0x0c,0xf0,0x00, -0x03,0x0c,0x10,0x18,0x2f,0x28,0x20,0x27,0x28,0x28,0x17,0x10,0x0c,0x03,0x00, -/* @160 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @161 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @162 (15x15,V)@ [suki software]*/ -0xf8,0x04,0x02,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x02,0x04,0xf8,0x00, -0x07,0x08,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x07,0x00, -/* @163 (15x15,V)@ [suki software]*/ -0xf8,0x04,0x02,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x02,0x04,0xf8,0x00, -0x07,0x08,0x10,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x10,0x08,0x07,0x00, -/* @164 (15x15,V)@ [suki software]*/ -0xf8,0x04,0x02,0x08,0x88,0x88,0x88,0x88,0x88,0x88,0x08,0x02,0x04,0xf8,0x00, -0x07,0x08,0x10,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x10,0x08,0x07,0x00, -/* @165 (15x15,V)@ [suki software]*/ -0xf8,0x04,0x02,0xf8,0x08,0x88,0x78,0x08,0xf8,0x88,0xf8,0x02,0x04,0xf8,0x00, -0x07,0x08,0x10,0x07,0x05,0x04,0x04,0x04,0x04,0x04,0x07,0x10,0x08,0x07,0x00, -/* @166 (15x15,V)@ [suki software]*/ -0xf8,0x04,0x02,0x08,0x48,0xc8,0x78,0x48,0x48,0xc8,0x08,0x02,0x04,0xf8,0x00, -0x07,0x08,0x10,0x08,0x08,0x0f,0x08,0x08,0x08,0x0f,0x08,0x10,0x08,0x07,0x00, -/* @167 (15x15,V)@ [suki software]*/ -0xf8,0x04,0x02,0x20,0x20,0xa0,0x24,0x28,0xa0,0x20,0x20,0x02,0x04,0xf8,0x00, -0x07,0x08,0x10,0x04,0x02,0x01,0x00,0x00,0x00,0x01,0x06,0x10,0x08,0x07,0x00, -/* @168 (15x15,V)@ [suki software]*/ -0xf8,0x04,0x42,0x40,0x40,0xfc,0x20,0x20,0x20,0x10,0x10,0x02,0x04,0xf8,0x00, -0x07,0x08,0x10,0x00,0x00,0x03,0x04,0x04,0x04,0x04,0x06,0x10,0x08,0x07,0x00, -/* @169 (15x15,V)@ [suki software]*/ -0xf8,0x04,0x02,0x00,0x00,0xf0,0x04,0x04,0xfc,0x00,0x00,0x02,0x04,0xf8,0x00, -0x07,0x08,0x10,0x04,0x03,0x00,0x00,0x00,0x00,0x03,0x04,0x10,0x08,0x07,0x00, -/* @170 (15x15,V)@ [suki software]*/ -0xf8,0x04,0x02,0x10,0x10,0xfc,0x10,0x10,0xf0,0x00,0x00,0x02,0x04,0xf8,0x00, -0x07,0x08,0x10,0x08,0x04,0x03,0x00,0x00,0x03,0x04,0x04,0x16,0x08,0x07,0x00, -/* @171 (15x15,V)@ [suki software]*/ -0xf8,0x04,0x02,0x40,0x40,0x40,0x40,0xfc,0x40,0x40,0x40,0x42,0x04,0xf8,0x00, -0x07,0x08,0x10,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x10,0x08,0x07,0x00, -/* @172 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @173 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @174 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x00,0x00,0x02,0xfe,0x02,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x1f,0x10,0x00,0x00,0x00,0x00,0x00,0x00, -/* @175 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x02,0xfe,0x02,0x00,0x00,0x02,0xfe,0x02,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x10,0x1f,0x10,0x00,0x00,0x10,0x1f,0x10,0x00,0x00,0x00,0x00, -/* @176 (15x15,V)@ [suki software]*/ -0x00,0x02,0xfe,0x02,0x00,0x00,0x02,0xfe,0x02,0x00,0x00,0x02,0xfe,0x02,0x00, -0x00,0x10,0x1f,0x10,0x00,0x00,0x10,0x1f,0x10,0x00,0x00,0x10,0x1f,0x10,0x00, -/* @177 (15x15,V)@ [suki software]*/ -0x00,0x02,0xfe,0x02,0x00,0x02,0x0e,0x72,0x80,0x00,0x80,0x72,0x0e,0x02,0x00, -0x00,0x10,0x1f,0x10,0x00,0x00,0x00,0x00,0x03,0x1c,0x03,0x00,0x00,0x00,0x00, -/* @178 (15x15,V)@ [suki software]*/ -0x00,0x00,0x02,0x0e,0x32,0xc0,0x00,0x00,0x00,0xc0,0x32,0x0e,0x02,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x1c,0x03,0x00,0x00,0x00,0x00,0x00,0x00, -/* @179 (15x15,V)@ [suki software]*/ -0x02,0x0e,0x72,0x80,0x00,0x80,0x72,0x0e,0x02,0x00,0x02,0xfe,0x02,0x00,0x00, -0x00,0x00,0x00,0x03,0x1c,0x03,0x00,0x00,0x00,0x00,0x10,0x1f,0x10,0x00,0x00, -/* @180 (15x15,V)@ [suki software]*/ -0x02,0x1e,0xe2,0x00,0x80,0x72,0x0e,0x02,0x02,0xfe,0x02,0x02,0xfe,0x02,0x00, -0x00,0x00,0x03,0x1c,0x03,0x00,0x00,0x00,0x10,0x1f,0x10,0x10,0x1f,0x10,0x00, -/* @181 (15x15,V)@ [suki software]*/ -0x02,0x3e,0xc2,0x00,0xc2,0x3e,0x02,0x02,0xfe,0x02,0xfe,0x02,0xfe,0x02,0x00, -0x00,0x00,0x03,0x1c,0x03,0x00,0x00,0x10,0x1f,0x10,0x1f,0x10,0x1f,0x10,0x00, -/* @182 (15x15,V)@ [suki software]*/ -0x00,0x02,0xfe,0x02,0x00,0x02,0x06,0x3a,0xc0,0x60,0x1a,0x06,0x02,0x00,0x00, -0x00,0x10,0x1f,0x10,0x00,0x10,0x18,0x16,0x01,0x01,0x16,0x18,0x10,0x00,0x00, -/* @183 (15x15,V)@ [suki software]*/ -0x00,0x00,0x02,0x06,0x1a,0x20,0xc0,0x20,0x1a,0x06,0x02,0x00,0x00,0x00,0x00, -0x00,0x00,0x10,0x18,0x14,0x03,0x00,0x01,0x16,0x18,0x10,0x00,0x00,0x00,0x00, -/* @184 (15x15,V)@ [suki software]*/ -0x02,0x06,0x1a,0x20,0xc0,0x20,0x1a,0x06,0x02,0x00,0x02,0xfe,0x02,0x00,0x00, -0x10,0x18,0x14,0x03,0x00,0x01,0x16,0x18,0x10,0x00,0x10,0x1f,0x10,0x00,0x00, -/* @185 (15x15,V)@ [suki software]*/ -0x02,0x06,0x1a,0x60,0xc0,0x32,0x0e,0x02,0x02,0xfe,0x02,0x02,0xfe,0x02,0x00, -0x10,0x18,0x16,0x01,0x01,0x16,0x18,0x10,0x10,0x1f,0x10,0x10,0x1f,0x10,0x00, -/* @186 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @187 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -}, -//************************************* -{ - -/* @188 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0xfc,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x0c,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @189 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x00,0x3c,0x00,0x00,0x3c,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @190 (15x15,V)@ [suki software]*/ -0x00,0x00,0x10,0x10,0x10,0xfc,0x10,0x10,0x10,0xfc,0x10,0x10,0x00,0x00,0x00, -0x00,0x00,0x01,0x01,0x0f,0x01,0x01,0x01,0x0f,0x01,0x01,0x01,0x00,0x00,0x00, -/* @191 (15x15,V)@ [suki software]*/ -0x00,0x04,0x04,0x8c,0x94,0xa0,0xc0,0xa0,0x94,0x8c,0x04,0x04,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x10,0x10,0x1f,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00, -/* @192 (15x15,V)@ [suki software]*/ -0x00,0x3c,0x42,0x42,0x3c,0x00,0x80,0x40,0x20,0x90,0x88,0x04,0x00,0x00,0x00, -0x00,0x00,0x08,0x04,0x02,0x01,0x00,0x00,0x0f,0x10,0x10,0x0f,0x00,0x00,0x00, -/* @193 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x80,0x5c,0x62,0xa2,0x22,0x1c,0x80,0x80,0x80,0x00,0x00,0x00, -0x00,0x00,0x0f,0x10,0x10,0x10,0x11,0x0a,0x04,0x0a,0x11,0x10,0x08,0x00,0x00, -/* @194 (15x15,V)@ [suki software]*/ -0x00,0x00,0x30,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @195 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xe0,0x18,0x04,0x02,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x06,0x08,0x10,0x00,0x00,0x00, -/* @196 (15x15,V)@ [suki software]*/ -0x00,0x00,0x02,0x04,0x18,0xe0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x10,0x08,0x06,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @197 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x20,0x20,0x40,0xfc,0x80,0x40,0x20,0x20,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x06,0x03,0x00,0x00,0x03,0x06,0x00,0x00,0x00,0x00,0x00, -/* @198 (15x15,V)@ [suki software]*/ -0x00,0x00,0x80,0x80,0x80,0x80,0x80,0xfc,0x80,0x80,0x80,0x80,0x80,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @199 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x16,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @200 (15x15,V)@ [suki software]*/ -0x00,0x00,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @201 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x0c,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @202 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x60,0x18,0x06,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x18,0x06,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @203 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0xf0,0x08,0x04,0x04,0x08,0xf0,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x03,0x04,0x08,0x08,0x04,0x03,0x00,0x00,0x00,0x00,0x00, -/* @204 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x08,0x08,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x08,0x08,0x0f,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00, -/* @205 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x18,0x04,0x04,0x84,0x44,0x38,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x0c,0x0a,0x09,0x08,0x08,0x0c,0x00,0x00,0x00,0x00,0x00, -/* @206 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x18,0x04,0x44,0x44,0xa4,0x18,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x06,0x08,0x08,0x08,0x08,0x07,0x00,0x00,0x00,0x00,0x00, -/* @207 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x80,0x60,0x10,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x03,0x02,0x02,0x0a,0x0f,0x0a,0x02,0x00,0x00,0x00,0x00,0x00, -/* @208 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x7c,0x44,0x44,0x44,0x44,0x84,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x06,0x08,0x08,0x08,0x08,0x07,0x00,0x00,0x00,0x00,0x00, -/* @209 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0xf0,0x88,0x44,0x44,0x44,0x98,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x07,0x08,0x08,0x08,0x08,0x07,0x00,0x00,0x00,0x00,0x00, -/* @210 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x0c,0x04,0x84,0x64,0x14,0x0c,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @211 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x18,0xa4,0x44,0x44,0xa4,0x18,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x07,0x08,0x08,0x08,0x08,0x07,0x00,0x00,0x00,0x00,0x00, -/* @212 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x78,0x84,0x84,0x84,0x44,0xf8,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x04,0x08,0x08,0x08,0x04,0x03,0x00,0x00,0x00,0x00,0x00, -/* @213 (15x15,V)@ [suki software]*/ -0x00,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x19,0x19,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @214 (15x15,V)@ [suki software]*/ -0x00,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x2d,0x1d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @215 (15x15,V)@ [suki software]*/ -0x00,0x80,0x80,0x40,0x40,0x20,0x20,0x10,0x10,0x08,0x08,0x04,0x04,0x00,0x00, -0x00,0x00,0x00,0x01,0x01,0x02,0x02,0x04,0x04,0x08,0x08,0x10,0x10,0x00,0x00, -/* @216 (15x15,V)@ [suki software]*/ -0x00,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x00,0x00, -0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00, -/* @217 (15x15,V)@ [suki software]*/ -0x00,0x04,0x04,0x08,0x08,0x10,0x10,0x20,0x20,0x40,0x40,0x80,0x80,0x00,0x00, -0x00,0x10,0x10,0x08,0x08,0x04,0x04,0x02,0x02,0x01,0x01,0x00,0x00,0x00,0x00, -/* @218 (15x15,V)@ [suki software]*/ -0x00,0x0c,0x02,0x02,0xc2,0x22,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x0c,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @219 (15x15,V)@ [suki software]*/ -0xe0,0x18,0x04,0x02,0xc1,0x21,0x11,0x11,0xe1,0x31,0x02,0x04,0xf8,0x00,0x00, -0x01,0x06,0x08,0x10,0x23,0x24,0x24,0x22,0x27,0x24,0x24,0x13,0x08,0x00,0x00, -/* @220 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x00,0xc0,0x30,0x1c,0x60,0x80,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x08,0x0c,0x0b,0x01,0x01,0x01,0x01,0x0b,0x0c,0x08,0x00,0x00,0x00, -/* @221 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x04,0xfc,0x44,0x44,0x44,0x44,0x44,0xb8,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x08,0x0f,0x08,0x08,0x08,0x08,0x08,0x07,0x00,0x00,0x00,0x00, -/* @222 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0xf0,0x08,0x04,0x04,0x04,0x04,0x08,0x1c,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x03,0x04,0x08,0x08,0x08,0x08,0x08,0x04,0x02,0x00,0x00,0x00, -/* @223 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x04,0xfc,0x04,0x04,0x04,0x04,0x08,0xf0,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x08,0x0f,0x08,0x08,0x08,0x08,0x04,0x03,0x00,0x00,0x00,0x00, -/* @224 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x04,0xfc,0x44,0x44,0x44,0x44,0xe4,0x0c,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x08,0x0f,0x08,0x08,0x08,0x08,0x08,0x0c,0x00,0x00,0x00,0x00, -/* @225 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x04,0xfc,0x44,0x44,0x44,0x44,0xe4,0x0c,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x08,0x0f,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @226 (15x15,V)@ [suki software]*/ -0x00,0x00,0xf0,0x08,0x04,0x04,0x04,0x04,0x88,0x9c,0x80,0x00,0x00,0x00,0x00, -0x00,0x00,0x03,0x04,0x08,0x08,0x08,0x08,0x04,0x0f,0x00,0x00,0x00,0x00,0x00, -/* @227 (15x15,V)@ [suki software]*/ -0x00,0x00,0x04,0xfc,0x44,0x40,0x40,0x40,0x40,0x44,0xfc,0x04,0x00,0x00,0x00, -0x00,0x00,0x08,0x0f,0x08,0x00,0x00,0x00,0x00,0x08,0x0f,0x08,0x00,0x00,0x00, -/* @228 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xfc,0x04,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x0f,0x08,0x00,0x00,0x00,0x00,0x00,0x00, -/* @229 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x00,0x04,0x04,0xfc,0x04,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x04,0x08,0x08,0x08,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @230 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x04,0xfc,0x44,0x60,0x90,0x0c,0x04,0x04,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x08,0x0f,0x08,0x00,0x01,0x0a,0x0c,0x08,0x08,0x00,0x00,0x00, -/* @231 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x04,0xfc,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x08,0x0f,0x08,0x08,0x08,0x08,0x08,0x06,0x00,0x00,0x00,0x00, -/* @232 (15x15,V)@ [suki software]*/ -0x00,0x04,0xfc,0x10,0x60,0x80,0x00,0x80,0x60,0x10,0xfc,0x04,0x00,0x00,0x00, -0x00,0x08,0x0f,0x08,0x00,0x01,0x06,0x01,0x00,0x08,0x0f,0x08,0x00,0x00,0x00, -/* @233 (15x15,V)@ [suki software]*/ -0x00,0x00,0x04,0xfc,0x14,0x20,0x40,0x80,0x00,0x04,0xfc,0x04,0x00,0x00,0x00, -0x00,0x00,0x08,0x0f,0x08,0x00,0x00,0x00,0x01,0x02,0x0f,0x00,0x00,0x00,0x00, -/* @234 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0xf0,0x08,0x04,0x04,0x04,0x04,0x08,0xf0,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x03,0x04,0x08,0x08,0x08,0x08,0x04,0x03,0x00,0x00,0x00,0x00, -/* @235 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x04,0xfc,0x84,0x84,0x84,0x84,0x84,0x78,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x08,0x0f,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @236 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0xf0,0x08,0x04,0x04,0x04,0x04,0x08,0xf0,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x03,0x04,0x0e,0x0a,0x0a,0x0c,0x14,0x13,0x08,0x00,0x00,0x00, -/* @237 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x04,0xfc,0x84,0x84,0x84,0x84,0x44,0x38,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x08,0x0f,0x08,0x00,0x00,0x00,0x07,0x08,0x08,0x00,0x00,0x00, -/* @238 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x38,0x44,0x44,0x44,0x84,0x88,0x1c,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x0e,0x04,0x08,0x08,0x08,0x08,0x07,0x00,0x00,0x00,0x00,0x00, -/* @239 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0xfc,0x04,0x04,0x04,0x0c,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x0f,0x08,0x00,0x00,0x00,0x00,0x00,0x00, -/* @240 (15x15,V)@ [suki software]*/ -0x00,0x00,0x04,0xfc,0x04,0x00,0x00,0x00,0x00,0x04,0xfc,0x04,0x00,0x00,0x00, -0x00,0x00,0x00,0x03,0x04,0x08,0x08,0x08,0x08,0x04,0x03,0x00,0x00,0x00,0x00, -/* @241 (15x15,V)@ [suki software]*/ -0x00,0x00,0x04,0x0c,0x34,0xc0,0x00,0x00,0x80,0x64,0x1c,0x04,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x0e,0x01,0x00,0x00,0x00,0x00,0x00,0x00, -/* @242 (15x15,V)@ [suki software]*/ -0x00,0x04,0x1c,0xe4,0x00,0x00,0xe4,0x3c,0xc4,0x00,0xe4,0x1c,0x04,0x00,0x00, -0x00,0x00,0x00,0x01,0x0e,0x03,0x00,0x00,0x01,0x0e,0x01,0x00,0x00,0x00,0x00, -/* @243 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x04,0x0c,0x14,0x20,0xc0,0x20,0x14,0x0c,0x04,0x00,0x00,0x00, -0x00,0x00,0x00,0x08,0x0c,0x0a,0x01,0x00,0x01,0x0a,0x0c,0x08,0x00,0x00,0x00, -/* @244 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x04,0x0c,0x34,0x40,0x80,0x40,0x34,0x0c,0x04,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x0f,0x08,0x00,0x00,0x00,0x00,0x00,0x00, -/* @245 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x0c,0x04,0x04,0x84,0x64,0x14,0x0c,0x04,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x08,0x0c,0x0b,0x08,0x08,0x08,0x08,0x0c,0x00,0x00,0x00,0x00, -/* @246 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x01,0x01,0x01,0x01,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x20,0x20,0x20,0x20,0x00,0x00, -/* @247 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x06,0x18,0x60,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x06,0x18,0x00,0x00,0x00,0x00,0x00, -/* @248 (15x15,V)@ [suki software]*/ -0x00,0x01,0x01,0x01,0x01,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x20,0x20,0x20,0x20,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @249 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x08,0x04,0x02,0x02,0x04,0x08,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @250 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40, -/* @251 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0e,0x30,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @252 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x40,0x20,0xa0,0xa0,0xc0,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x06,0x09,0x08,0x04,0x0f,0x08,0x00,0x00,0x00,0x00,0x00, -/* @253 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x04,0xfe,0x40,0x40,0x40,0x80,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x0f,0x08,0x08,0x08,0x07,0x00,0x00,0x00,0x00,0x00, -/* @254 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x80,0x40,0x20,0x20,0x20,0x40,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x03,0x04,0x08,0x08,0x08,0x04,0x00,0x00,0x00,0x00,0x00, -/* @255 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x80,0x40,0x40,0x44,0xfe,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x07,0x08,0x08,0x08,0x07,0x08,0x00,0x00,0x00,0x00,0x00, -/* @256 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x80,0x40,0x20,0x20,0x20,0xc0,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x03,0x05,0x09,0x09,0x09,0x05,0x00,0x00,0x00,0x00,0x00, -/* @257 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x00,0x20,0xfc,0x22,0x22,0x04,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x08,0x0f,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @258 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0xc0,0x20,0x20,0x20,0xc0,0x20,0x20,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x1a,0x25,0x25,0x25,0x24,0x18,0x00,0x00,0x00,0x00,0x00, -/* @259 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x04,0xfe,0x40,0x20,0x20,0x20,0xc0,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x08,0x0f,0x08,0x00,0x00,0x08,0x0f,0x08,0x00,0x00,0x00,0x00, -/* @260 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x00,0x20,0xe6,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x08,0x0f,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @261 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x00,0x10,0x10,0xf6,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x10,0x20,0x20,0x20,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @262 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x04,0xfe,0x00,0xa0,0x60,0x20,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x08,0x0f,0x09,0x01,0x0a,0x0c,0x08,0x00,0x00,0x00,0x00, -/* @263 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xfe,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x0f,0x08,0x00,0x00,0x00,0x00,0x00,0x00, -/* @264 (15x15,V)@ [suki software]*/ -0x00,0x20,0xe0,0x40,0x20,0x20,0xe0,0x40,0x20,0x20,0x20,0xc0,0x00,0x00,0x00, -0x00,0x08,0x0f,0x08,0x00,0x08,0x0f,0x08,0x00,0x00,0x08,0x0f,0x08,0x00,0x00, -/* @265 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x20,0xe0,0x40,0x20,0x20,0x20,0xc0,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x08,0x0f,0x08,0x00,0x00,0x08,0x0f,0x08,0x00,0x00,0x00,0x00, -/* @266 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0xc0,0x20,0x20,0x20,0x20,0xc0,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x07,0x08,0x08,0x08,0x08,0x07,0x00,0x00,0x00,0x00,0x00, -/* @267 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x20,0xc0,0x20,0x20,0x20,0xc0,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x20,0x3f,0x24,0x08,0x08,0x07,0x00,0x00,0x00,0x00,0x00, -/* @268 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0xc0,0x20,0x20,0x20,0x40,0xe0,0x20,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x07,0x08,0x08,0x08,0x24,0x3f,0x20,0x00,0x00,0x00,0x00, -/* @269 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x00,0x20,0xc0,0x20,0x20,0x60,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x08,0x0f,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @270 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x00,0xc0,0x20,0x20,0x20,0x40,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x04,0x09,0x09,0x09,0x06,0x00,0x00,0x00,0x00,0x00, -/* @271 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x00,0x20,0xf8,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x08,0x08,0x04,0x00,0x00,0x00,0x00,0x00, -/* @272 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x20,0xe0,0x00,0x00,0x00,0x20,0xe0,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x07,0x08,0x08,0x08,0x04,0x0f,0x08,0x00,0x00,0x00,0x00, -/* @273 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x20,0xe0,0x20,0x00,0x20,0xe0,0x20,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x0c,0x03,0x00,0x00,0x00,0x00,0x00,0x00, -/* @274 (15x15,V)@ [suki software]*/ -0x00,0x00,0x20,0xe0,0x20,0x00,0x20,0xe0,0x20,0x00,0x20,0xe0,0x20,0x00,0x00, -0x00,0x00,0x00,0x00,0x03,0x0c,0x03,0x00,0x03,0x0c,0x03,0x00,0x00,0x00,0x00, -/* @275 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x20,0x60,0xa0,0x00,0xa0,0x60,0x20,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x08,0x0c,0x0a,0x01,0x0a,0x0c,0x08,0x00,0x00,0x00,0x00, -/* @276 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x20,0x20,0xe0,0x20,0x00,0x20,0xe0,0x20,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x10,0x20,0x13,0x0c,0x03,0x00,0x00,0x00,0x00,0x00,0x00, -/* @277 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x60,0x20,0x20,0xa0,0x60,0x20,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x08,0x0c,0x0a,0x09,0x08,0x0c,0x00,0x00,0x00,0x00,0x00, -/* @278 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x3e,0x01,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1f,0x20,0x00,0x00,0x00,0x00, -/* @279 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x00,0x00,0xfe,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @280 (15x15,V)@ [suki software]*/ -0x00,0x00,0x01,0x3e,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x20,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -/* @281 (15x15,V)@ [suki software]*/ -0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - -}, -//************************************** -{ -/* @286 (15x15,V)@ [suki software]*/ -0xfc,0x04,0xfc,0x00,0xfe,0x12,0xea,0x06,0xf0,0x12,0xf2,0x02,0xff,0x02,0x00 - -, -0x03,0x01,0x03,0x00,0x3f,0x02,0x03,0x00,0x01,0x01,0x11,0x20,0x1f,0x00,0x00 - -, -/* @287 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x22,0x5a,0x86,0x00,0xf2,0x12,0x12,0xf2,0x02,0xfe,0x03,0x02,0x00 - -, -0x00,0x3f,0x02,0x04,0x03,0x00,0x03,0x01,0x01,0x13,0x20,0x1f,0x00,0x00,0x00 - -, -/* @288 (15x15,V)@ [suki software]*/ -0x10,0x10,0xff,0x10,0x10,0x80,0x48,0x6c,0x4b,0xc8,0x4a,0x6c,0x58,0x00,0x00 - -, -0x08,0x08,0x07,0x04,0x22,0x20,0x12,0x0a,0x06,0x03,0x0e,0x12,0x23,0x22,0x00 - -, -/* @289 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x80,0x68,0x4c,0x4b,0xc8,0x48,0x6c,0x58,0x00,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x22,0x12,0x0a,0x06,0x03,0x0e,0x12,0x23,0x22,0x00 - -, -/* @290 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0x04,0xfc,0x04,0xe4,0x0f,0x04,0x04,0x8f,0x64,0x04,0x04,0x00 - -, -0x00,0x07,0x01,0x21,0x23,0x10,0x10,0x0b,0x04,0x0a,0x11,0x10,0x30,0x10,0x00 - -, -/* @291 (15x15,V)@ [suki software]*/ -0xfc,0x04,0x04,0xfc,0x00,0x88,0x6c,0x4a,0xc9,0x48,0x4a,0x4c,0x58,0x00,0x00 - -, -0x07,0x01,0x01,0x23,0x20,0x22,0x12,0x0a,0x07,0x06,0x0a,0x12,0x22,0x22,0x00 - -, -/* @292 (15x15,V)@ [suki software]*/ -0x04,0x04,0x04,0xf4,0x94,0x94,0x95,0x96,0x94,0x94,0xf4,0x04,0x06,0x04,0x00 - -, -0x10,0x10,0x08,0x04,0x3e,0x21,0x10,0x09,0x02,0x04,0x0a,0x11,0x30,0x10,0x00 - -, -/* @293 (15x15,V)@ [suki software]*/ -0x00,0xf8,0x8c,0x8b,0xf8,0x00,0x2e,0x28,0x28,0x2f,0x28,0x28,0xee,0x00,0x00 - -, -0x00,0x1f,0x08,0x08,0x1f,0x00,0x1f,0x21,0x21,0x21,0x21,0x21,0x21,0x38,0x00 - -, -/* @294 (15x15,V)@ [suki software]*/ -0x08,0x90,0xfe,0x02,0x82,0xba,0xaa,0xab,0x2a,0xaa,0xaa,0xba,0x82,0x00,0x00 - -, -0x21,0x18,0x07,0x00,0x3b,0x22,0x22,0x23,0x3c,0x23,0x22,0x22,0x3b,0x00,0x00 - -, -/* @295 (15x15,V)@ [suki software]*/ -0x42,0x42,0xca,0x12,0x07,0x02,0x7a,0xca,0x5f,0x6a,0x4a,0x7a,0x02,0x02,0x00 - -, -0x00,0x00,0x3f,0x10,0x0a,0x1e,0x11,0x15,0x13,0x15,0x19,0x21,0x1f,0x00,0x00 - -, -/* @296 (15x15,V)@ [suki software]*/ -0x50,0x48,0x4f,0xf8,0x48,0x80,0x4a,0x2a,0x9a,0x7e,0x19,0x29,0x48,0x48,0x00 - -, -0x20,0x10,0x0c,0x03,0x04,0x29,0x21,0x17,0x09,0x09,0x15,0x13,0x21,0x01,0x00 - -, -/* @297 (15x15,V)@ [suki software]*/ -0x04,0x04,0x04,0x04,0x64,0x9f,0x04,0x04,0x04,0x9f,0x64,0x04,0x06,0x04,0x00 - -, -0x00,0x20,0x20,0x20,0x10,0x11,0x0a,0x04,0x0a,0x09,0x10,0x10,0x30,0x10,0x00 - -, -/* @298 (15x15,V)@ [suki software]*/ -0x82,0xe2,0x3e,0x22,0xe2,0x02,0x80,0xbe,0xaa,0xaa,0xaa,0xaa,0xbf,0x82,0x00 - -, -0x00,0x1f,0x08,0x08,0x0f,0x00,0x02,0x06,0x0a,0x02,0x22,0x3f,0x02,0x02,0x00 - -, -/* @299 (15x15,V)@ [suki software]*/ -0x40,0x30,0x92,0x96,0x9a,0xd2,0x96,0x9a,0x92,0x91,0x99,0xd5,0xb0,0x10,0x00 - -, -0x00,0x20,0x10,0x28,0x24,0x23,0x16,0x0a,0x0a,0x16,0x22,0x20,0x20,0x00,0x00 - -, -/* @300 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x22,0x5a,0x86,0x48,0x29,0x1a,0x08,0x08,0x1a,0x29,0x48,0x00,0x00 - -, -0x00,0x3f,0x02,0x04,0x23,0x3f,0x21,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x20,0x00 - -, -/* @301 (15x15,V)@ [suki software]*/ -0x04,0xc4,0x5f,0xf4,0x5f,0xc4,0x00,0x4c,0xc4,0x75,0x46,0xc4,0x44,0x4c,0x00 - -, -0x04,0x05,0x05,0x3f,0x05,0x05,0x24,0x10,0x0b,0x04,0x04,0x0b,0x10,0x20,0x00 - -, -/* @302 (15x15,V)@ [suki software]*/ -0x10,0x88,0xa7,0xaa,0xaa,0xea,0xaa,0xaa,0xaa,0x2a,0xea,0x02,0x02,0x00,0x00 - -, -0x00,0x23,0x22,0x16,0x0b,0x0a,0x0a,0x16,0x13,0x22,0x07,0x18,0x20,0x38,0x00 - -, -/* @303 (15x15,V)@ [suki software]*/ -0x40,0x50,0x4c,0x44,0x44,0xc4,0x75,0x46,0x44,0xc4,0x44,0x54,0x4c,0x40,0x00 - -, -0x00,0x20,0x20,0x20,0x13,0x12,0x0c,0x04,0x06,0x09,0x08,0x10,0x30,0x00,0x00 - -, -/* @304 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x87,0x44,0xe4,0x54,0x4c,0xe7,0x4c,0x54,0xe4,0x46,0x44,0x00 - -, -0x00,0x00,0x3f,0x00,0x00,0x07,0x05,0x05,0x1f,0x25,0x25,0x27,0x20,0x38,0x00 - -, -/* @305 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x10,0x4c,0xc4,0x75,0x46,0x44,0xc4,0x54,0x4c,0x00 - -, -0x01,0x11,0x20,0x1f,0x20,0x20,0x12,0x15,0x0c,0x04,0x0a,0x09,0x10,0x20,0x00 - -, -/* @306 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x44,0x44,0xfc,0x44,0x4c,0x74,0x45,0x46,0x74,0x4c,0x44,0x40,0x00 - -, -0x00,0x0f,0x04,0x04,0x0f,0x00,0x3f,0x15,0x15,0x15,0x15,0x3f,0x00,0x00,0x00 - -, -/* @307 (15x15,V)@ [suki software]*/ -0x00,0x00,0xee,0x28,0xa8,0xa8,0xa8,0xaf,0xa8,0xa8,0xa8,0xae,0x20,0x00,0x00 - -, -0x20,0x18,0x07,0x04,0x04,0x04,0x04,0x3f,0x04,0x04,0x04,0x04,0x04,0x00,0x00 - -, -/* @308 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x92,0x92,0xfe,0x10,0x4c,0x44,0xf5,0x46,0x44,0xc4,0x54,0x4c,0x00 - -, -0x30,0x0f,0x10,0x20,0x1f,0x00,0x20,0x23,0x14,0x08,0x0c,0x13,0x30,0x00,0x00 - -, -/* @309 (15x15,V)@ [suki software]*/ -0x00,0x0c,0x14,0x14,0x94,0xb4,0x5d,0x56,0x54,0xb4,0x94,0x14,0x0c,0x00,0x00 - -, -0x00,0x22,0x22,0x13,0x0a,0x06,0x02,0x3f,0x06,0x0a,0x12,0x13,0x22,0x22,0x00 - -, -/* @310 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x92,0x92,0xfe,0x08,0x08,0xe8,0x29,0x2e,0xe8,0x08,0x0c,0x08,0x00 - -, -0x30,0x0f,0x10,0x20,0x1f,0x20,0x10,0x0f,0x00,0x00,0x1f,0x20,0x20,0x3c,0x00 - -, -/* @311 (15x15,V)@ [suki software]*/ -0x00,0x00,0x80,0xbe,0xaa,0x6a,0x6a,0x2a,0xaa,0xaa,0xaa,0xbf,0x82,0x00,0x00 - -, -0x00,0x00,0x1f,0x08,0x08,0x04,0x04,0x00,0x3f,0x00,0x08,0x10,0x0f,0x00,0x00 - -, -/* @312 (15x15,V)@ [suki software]*/ -0x20,0x20,0x20,0xbc,0xa4,0x64,0x24,0x3f,0x24,0x64,0xbc,0xa0,0xa0,0xa0,0x00 - -, -0x21,0x21,0x3f,0x22,0x22,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3e,0x21,0x20,0x00 - -, -/* @313 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0x04,0x04,0xfc,0x80,0x80,0xfc,0x04,0x04,0x04,0xfe,0x04,0x00 - -, -0x00,0x1f,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x1f,0x00,0x00 - -, -/* @314 (15x15,V)@ [suki software]*/ -0x00,0x44,0x54,0xd4,0x7f,0x54,0x54,0x84,0x70,0x8f,0x08,0x88,0x7c,0x08,0x00 - -, -0x20,0x10,0x0c,0x13,0x21,0x11,0x2f,0x20,0x10,0x09,0x06,0x09,0x10,0x20,0x00 - -, -/* @315 (15x15,V)@ [suki software]*/ -0x00,0x54,0x54,0xd4,0x7f,0x54,0xd4,0x24,0x10,0x6f,0x88,0x68,0x1c,0x08,0x00 - -, -0x04,0x22,0x19,0x00,0x02,0x0a,0x31,0x04,0x0a,0x31,0x00,0x09,0x32,0x04,0x00 - -, -/* @316 (15x15,V)@ [suki software]*/ -0x80,0xbe,0xaa,0xeb,0xaa,0xbe,0x80,0x02,0x12,0xfe,0x00,0x12,0xfe,0x00,0x00 - -, -0x04,0x02,0x05,0x3e,0x04,0x05,0x02,0x00,0x11,0x1f,0x00,0x11,0x1f,0x00,0x00 - -, -/* @317 (15x15,V)@ [suki software]*/ -0x08,0x08,0x89,0xee,0x18,0x80,0x24,0x24,0x24,0xfe,0x22,0x23,0x22,0x20,0x00 - -, -0x02,0x01,0x00,0x3f,0x01,0x22,0x10,0x0c,0x03,0x00,0x03,0x0c,0x30,0x10,0x00 - -, -/* @318 (15x15,V)@ [suki software]*/ -0x20,0x10,0xfc,0x43,0x54,0xff,0x54,0x54,0x20,0xf8,0x17,0x10,0xf8,0x10,0x00 - -, -0x00,0x00,0x3f,0x10,0x0c,0x03,0x11,0x2f,0x10,0x0b,0x04,0x0b,0x10,0x20,0x00 - -, -/* @319 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0xfc,0x04,0xae,0x25,0xfc,0x24,0xac,0x04,0xfe,0x04,0x00,0x00 - -, -0x02,0x22,0x22,0x22,0x12,0x0a,0x06,0x03,0x06,0x0a,0x12,0x12,0x32,0x12,0x00 - -, -/* @320 (15x15,V)@ [suki software]*/ -0x60,0x10,0xff,0x10,0x20,0xfc,0xb4,0x26,0xfd,0x24,0xb4,0x24,0xfc,0x00,0x00 - -, -0x00,0x00,0x3f,0x00,0x22,0x23,0x12,0x0a,0x07,0x06,0x0a,0x12,0x23,0x22,0x00 - -, -/* @321 (15x15,V)@ [suki software]*/ -0x10,0x60,0x02,0xc4,0x00,0xfc,0x24,0xb6,0xfd,0x24,0xb4,0x24,0xfe,0x04,0x00 - -, -0x04,0x3c,0x03,0x20,0x22,0x23,0x12,0x0e,0x03,0x06,0x0a,0x12,0x23,0x22,0x00 - -, -/* @322 (15x15,V)@ [suki software]*/ -0x00,0x04,0x04,0xf4,0x14,0x1f,0x14,0xf4,0x14,0x1f,0x14,0xf4,0x06,0x04,0x00 - -, -0x00,0x00,0x00,0x1f,0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x20,0x3c,0x00 - -, -/* @323 (15x15,V)@ [suki software]*/ -0x08,0x88,0xff,0x48,0x88,0x9e,0xd2,0x92,0x9e,0x00,0xf8,0x00,0xff,0x00,0x00 - -, -0x11,0x20,0x1f,0x00,0x20,0x18,0x07,0x20,0x1f,0x00,0x13,0x20,0x1f,0x00,0x00 - -, -/* @324 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x48,0x00,0xfe,0x00,0x00,0xfe,0x00,0x00,0x00,0x00 - -, -0x01,0x11,0x20,0x1f,0x20,0x10,0x0c,0x03,0x00,0x00,0x01,0x06,0x18,0x20,0x00 - -, -/* @325 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0x04,0xfc,0x00,0x00,0xfe,0x00,0x00,0xff,0x00,0x00,0x00,0x00 - -, -0x00,0x07,0x01,0x21,0x13,0x08,0x06,0x01,0x00,0x00,0x01,0x0e,0x10,0x20,0x00 - -, -/* @326 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0x04,0xfc,0x00,0xfe,0x42,0x42,0x7e,0x42,0x42,0x7f,0x02,0x00 - -, -0x00,0x07,0x02,0x02,0x07,0x00,0x1f,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x00 - -, -/* @327 (15x15,V)@ [suki software]*/ -0x10,0x08,0xe7,0x24,0x2c,0x34,0xe4,0x28,0x27,0x24,0x2c,0xf4,0x06,0x04,0x00 - -, -0x00,0x00,0x1f,0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x23,0x20,0x38,0x00 - -, -/* @328 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0xc0,0x3c,0x00,0x00,0x7e,0x80,0x00,0x00,0x00,0x00,0x00 - -, -0x20,0x10,0x08,0x06,0x01,0x00,0x00,0x00,0x00,0x01,0x06,0x08,0x30,0x10,0x00 - -, -/* @329 (15x15,V)@ [suki software]*/ -0x08,0xb0,0x40,0xfc,0x04,0xf4,0x14,0x15,0x16,0xf4,0x14,0x14,0xf4,0x04,0x00 - -, -0x21,0x10,0x0c,0x03,0x00,0x1f,0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x38,0x00 - -, -/* @330 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfc,0x44,0x44,0x44,0x7c,0x44,0x44,0x44,0x44,0xfe,0x04,0x00,0x00 - -, -0x00,0x00,0x1f,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x38,0x00 - -, -/* @331 (15x15,V)@ [suki software]*/ -0x08,0x08,0xff,0x88,0x48,0x00,0x08,0xf8,0x4f,0x48,0x4a,0xcc,0x08,0x08,0x00 - -, -0x11,0x21,0x1f,0x00,0x10,0x2c,0x23,0x10,0x0b,0x04,0x0a,0x11,0x20,0x20,0x00 - -, -/* @332 (15x15,V)@ [suki software]*/ -0x00,0xbe,0x22,0xe2,0x22,0x3e,0x08,0x08,0xff,0x48,0x4a,0x4c,0xc8,0x08,0x00 - -, -0x10,0x1f,0x10,0x0f,0x29,0x11,0x2c,0x23,0x11,0x0a,0x04,0x0b,0x10,0x20,0x00 - -, -/* @333 (15x15,V)@ [suki software]*/ -0x04,0xc4,0x5f,0xf4,0x5f,0xc4,0x04,0xfe,0x42,0x42,0x7e,0x42,0xff,0x02,0x00 - -, -0x04,0x05,0x05,0x3f,0x05,0x05,0x04,0x1f,0x20,0x20,0x20,0x20,0x20,0x38,0x00 - -, -/* @334 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x00,0xfe,0x42,0x42,0x7e,0x42,0x42,0x7f,0x02,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x00,0x1f,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x00 - -, -/* @335 (15x15,V)@ [suki software]*/ -0x44,0x54,0x54,0xff,0x54,0x44,0x00,0xfe,0x42,0x7e,0x42,0x42,0xfe,0x00,0x00 - -, -0x08,0x06,0x01,0x3f,0x01,0x02,0x00,0x1f,0x20,0x20,0x20,0x20,0x20,0x3c,0x00 - -, -/* @336 (15x15,V)@ [suki software]*/ -0x10,0x10,0xff,0x10,0x10,0x00,0xfe,0x02,0x02,0xfa,0x02,0x02,0xff,0x02,0x00 - -, -0x04,0x0c,0x07,0x02,0x22,0x20,0x13,0x08,0x04,0x03,0x04,0x08,0x13,0x30,0x00 - -, -/* @337 (15x15,V)@ [suki software]*/ -0x10,0x4c,0xe4,0x55,0x55,0xf5,0x45,0x1f,0xc5,0x55,0x55,0x45,0xd4,0x0c,0x00 - -, -0x10,0x17,0x15,0x15,0x3f,0x15,0x17,0x20,0x1f,0x05,0x05,0x25,0x3f,0x00,0x00 - -, -/* @338 (15x15,V)@ [suki software]*/ -0x00,0x00,0x5f,0x51,0x51,0x5f,0xf1,0x51,0x5f,0x51,0x51,0x5f,0x00,0x00,0x00 - -, -0x01,0x01,0x11,0x31,0x19,0x15,0x13,0x11,0x11,0x15,0x19,0x31,0x01,0x01,0x00 - -, -/* @339 (15x15,V)@ [suki software]*/ -0x40,0x48,0x44,0xa2,0xa5,0xa8,0x90,0x90,0xa8,0xa5,0xa2,0x42,0x44,0x40,0x00 - -, -0x00,0x00,0x00,0x1f,0x24,0x24,0x27,0x24,0x24,0x24,0x27,0x20,0x38,0x00,0x00 - -, -/* @340 (15x15,V)@ [suki software]*/ -0x00,0x00,0xf8,0x88,0x88,0x8c,0x8b,0x88,0x88,0x88,0x88,0xfc,0x08,0x00,0x00 - -, -0x00,0x00,0x3f,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x3f,0x00,0x00,0x00 - -, -/* @341 (15x15,V)@ [suki software]*/ -0x10,0x90,0x50,0xff,0x50,0x90,0x00,0xf8,0x8c,0x8b,0x88,0x88,0xfc,0x08,0x00 - -, -0x02,0x01,0x00,0x3f,0x00,0x01,0x00,0x3f,0x10,0x10,0x10,0x10,0x3f,0x00,0x00 - -, -/* @342 (15x15,V)@ [suki software]*/ -0x02,0x02,0x02,0xf2,0x12,0x12,0x1e,0x12,0x12,0x12,0xfa,0x12,0x03,0x02,0x00 - -, -0x00,0x00,0x00,0x3f,0x11,0x11,0x11,0x11,0x11,0x11,0x3f,0x00,0x00,0x00,0x00 - -, -/* @343 (15x15,V)@ [suki software]*/ -0x08,0x08,0xff,0x88,0x48,0x00,0x9e,0x92,0x9e,0xf2,0x9e,0x92,0x9f,0x02,0x00 - -, -0x11,0x21,0x1f,0x00,0x00,0x02,0x32,0x1a,0x16,0x13,0x12,0x1a,0x32,0x02,0x00 - -, -/* @344 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x02,0xe2,0x22,0x32,0x2e,0x22,0x22,0xf2,0x23,0x02,0x00 - -, -0x00,0x00,0x3f,0x00,0x00,0x3f,0x11,0x11,0x11,0x11,0x11,0x3f,0x00,0x00,0x00 - -, -/* @345 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0xfa,0x02,0xfe,0x40,0x20,0xff,0x08,0x08,0xf8,0x0c,0x08,0x00 - -, -0x20,0x13,0x0c,0x03,0x04,0x0b,0x20,0x20,0x10,0x09,0x06,0x09,0x30,0x10,0x00 - -, -/* @346 (15x15,V)@ [suki software]*/ -0x04,0x24,0x24,0xfe,0x23,0x22,0x00,0x52,0x52,0xfe,0x52,0x52,0x52,0x00,0x00 - -, -0x21,0x11,0x09,0x07,0x01,0x01,0x02,0x02,0x02,0x3f,0x02,0x02,0x02,0x02,0x00 - -, -/* @347 (15x15,V)@ [suki software]*/ -0x14,0x94,0x54,0xfe,0x93,0x12,0xfc,0x94,0xd6,0xbd,0x94,0x94,0xfe,0x04,0x00 - -, -0x02,0x01,0x00,0x3f,0x00,0x05,0x06,0x05,0x04,0x3f,0x04,0x04,0x04,0x04,0x00 - -, -/* @348 (15x15,V)@ [suki software]*/ -0x42,0x42,0xfe,0x42,0x2a,0xc9,0x0e,0xf8,0x0a,0x42,0xfe,0x42,0x42,0x02,0x00 - -, -0x10,0x10,0x0f,0x28,0x10,0x0c,0x03,0x04,0x28,0x20,0x3f,0x20,0x30,0x20,0x00 - -, -/* @349 (15x15,V)@ [suki software]*/ -0x22,0x22,0xfe,0x22,0x02,0xe0,0x00,0xff,0x42,0x42,0xfe,0x42,0x42,0x42,0x00 - -, -0x08,0x08,0x07,0x24,0x14,0x08,0x04,0x13,0x10,0x10,0x1f,0x10,0x10,0x10,0x00 - -, -/* @350 (15x15,V)@ [suki software]*/ -0x08,0x88,0xff,0x48,0x80,0xfc,0x97,0xfc,0x40,0xbe,0x82,0x9e,0xa0,0x20,0x00 - -, -0x11,0x20,0x1f,0x20,0x10,0x0f,0x12,0x1f,0x20,0x13,0x0c,0x0a,0x11,0x20,0x00 - -, -/* @351 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x00,0xfc,0x24,0xe4,0x24,0x22,0xf3,0x22,0x00,0x00 - -, -0x01,0x11,0x20,0x1f,0x20,0x18,0x27,0x10,0x0b,0x04,0x0a,0x11,0x30,0x10,0x00 - -, -/* @352 (15x15,V)@ [suki software]*/ -0x80,0x80,0xfc,0x97,0xa4,0xfc,0x40,0xe0,0x5e,0x42,0x42,0xde,0x10,0x10,0x00 - -, -0x20,0x18,0x07,0x12,0x24,0x1f,0x20,0x10,0x0b,0x04,0x0a,0x11,0x30,0x10,0x00 - -, -/* @353 (15x15,V)@ [suki software]*/ -0x20,0x50,0xce,0x40,0x42,0xcc,0x12,0xfa,0x0a,0x0e,0xea,0x0a,0xfb,0x02,0x00 - -, -0x10,0x08,0x07,0x10,0x10,0x0f,0x20,0x23,0x10,0x08,0x07,0x08,0x13,0x30,0x00 - -, -/* @354 (15x15,V)@ [suki software]*/ -0x08,0xc8,0xff,0x48,0x88,0x00,0xfc,0x14,0xd4,0x12,0x12,0xf3,0x02,0x00,0x00 - -, -0x03,0x00,0x3f,0x00,0x20,0x18,0x27,0x10,0x0b,0x04,0x0b,0x10,0x30,0x10,0x00 - -, -/* @355 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x90,0x9f,0x90,0x10,0x00,0xfc,0x54,0x94,0x12,0x93,0x72,0x00,0x00 - -, -0x30,0x0f,0x00,0x00,0x3f,0x10,0x0c,0x23,0x10,0x09,0x06,0x09,0x30,0x10,0x00 - -, -/* @356 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x48,0xb0,0x8e,0x80,0x80,0x8e,0xb0,0x40,0x40,0x00 - -, -0x01,0x11,0x20,0x1f,0x20,0x10,0x08,0x07,0x10,0x20,0x10,0x0f,0x00,0x00,0x00 - -, -/* @357 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x48,0x24,0x28,0x20,0xff,0x20,0x28,0x24,0x00,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x01,0x01,0x01,0x01,0x3f,0x01,0x01,0x01,0x01,0x00 - -, -/* @358 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x00,0x24,0x38,0x20,0xff,0x20,0x30,0x2c,0x20,0x00,0x00 - -, -0x00,0x00,0x3f,0x00,0x01,0x01,0x01,0x01,0x3f,0x01,0x01,0x01,0x01,0x01,0x00 - -, -/* @359 (15x15,V)@ [suki software]*/ -0x44,0x55,0xe6,0x54,0xfc,0x04,0xfc,0x02,0xfe,0x44,0x55,0xe6,0x54,0x44,0x00 - -, -0x22,0x12,0x0f,0x22,0x1f,0x00,0x1f,0x08,0x07,0x1a,0x02,0x3f,0x02,0x02,0x00 - -, -/* @360 (15x15,V)@ [suki software]*/ -0x00,0x40,0x44,0x48,0x50,0x40,0xff,0x40,0x50,0x48,0x44,0x40,0x40,0x00,0x00 - -, -0x02,0x02,0x02,0x02,0x02,0x02,0x3f,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x00 - -, - -/* @361 (15x15,V)@ [suki software]*/ -0x00,0x08,0xc8,0x08,0x08,0xff,0x08,0x08,0x08,0x08,0xfc,0x48,0x80,0x00,0x00, -0x00,0x21,0x10,0x08,0x06,0x01,0x10,0x20,0x20,0x10,0x0f,0x00,0x00,0x03,0x00, - -/* @362 (15x15,V)@ [suki software]*/ -0x20,0x30,0xac,0x63,0x10,0x00,0x24,0x28,0x20,0xff,0x20,0x28,0x24,0x00,0x00 - -, -0x09,0x1b,0x09,0x05,0x05,0x02,0x02,0x02,0x02,0x3f,0x02,0x02,0x02,0x02,0x00 - -, -/* @363 (15x15,V)@ [suki software]*/ -0x00,0x24,0x24,0x24,0xff,0x24,0x24,0x04,0x00,0xfe,0x02,0x62,0x9a,0x06,0x00 - -, -0x01,0x21,0x11,0x09,0x07,0x01,0x01,0x01,0x00,0x3f,0x00,0x04,0x08,0x07,0x00 - -, -/* @364 (15x15,V)@ [suki software]*/ -0x00,0x22,0xaa,0x6a,0x3f,0x2a,0x2a,0xa2,0x00,0xfe,0x22,0x4a,0x36,0x00,0x00 - -, -0x00,0x01,0x00,0x1f,0x01,0x01,0x01,0x3f,0x01,0x09,0x11,0x0f,0x00,0x00,0x00 - -, -/* @365 (15x15,V)@ [suki software]*/ -0x08,0xc8,0xff,0x48,0x88,0x24,0xff,0x24,0x24,0x00,0xfe,0x22,0x5a,0x86,0x00 - -, -0x03,0x00,0x3f,0x00,0x20,0x11,0x0f,0x01,0x01,0x00,0x3f,0x04,0x04,0x03,0x00 - -, -/* @366 (15x15,V)@ [suki software]*/ -0x08,0xc8,0xff,0x48,0x88,0x64,0xa4,0xac,0xb5,0xe6,0xb4,0xac,0xa4,0x64,0x00 - -, -0x03,0x00,0x3f,0x00,0x00,0x20,0x10,0x08,0x07,0x12,0x22,0x12,0x0e,0x00,0x00 - -, -/* @367 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x92,0x92,0xfe,0x00,0x64,0x2c,0x35,0xa6,0x34,0x2c,0x24,0x64,0x00 - -, -0x30,0x0f,0x10,0x20,0x1f,0x20,0x11,0x09,0x07,0x25,0x25,0x1d,0x01,0x01,0x00 - -, -/* @368 (15x15,V)@ [suki software]*/ -0x30,0xa8,0x56,0x30,0x08,0x48,0x48,0xff,0x48,0x00,0xfe,0x22,0x5a,0x86,0x00 - -, -0x09,0x09,0x09,0x05,0x20,0x12,0x0a,0x07,0x02,0x00,0x3f,0x04,0x08,0x07,0x00 - -, -/* @369 (15x15,V)@ [suki software]*/ -0x10,0xd0,0xff,0x50,0x90,0x44,0xd4,0x74,0xdf,0x54,0x54,0xd4,0x44,0x40,0x00 - -, -0x03,0x00,0x3f,0x00,0x02,0x09,0x0a,0x0a,0x3f,0x0a,0x0a,0x0a,0x09,0x02,0x00 - -, -/* @370 (15x15,V)@ [suki software]*/ -0x82,0xe2,0x3e,0x22,0xe2,0x40,0xa4,0xac,0xb5,0xe6,0xb4,0xac,0xa4,0x60,0x00 - -, -0x00,0x1f,0x08,0x08,0x0f,0x20,0x10,0x0c,0x03,0x12,0x22,0x1e,0x00,0x00,0x00 - -, -/* @371 (15x15,V)@ [suki software]*/ -0x00,0xf8,0x08,0xff,0x08,0xf8,0x08,0x48,0x48,0xff,0x48,0x48,0x4c,0x08,0x00 - -, -0x10,0x11,0x11,0x0f,0x09,0x19,0x04,0x04,0x04,0x3f,0x04,0x04,0x04,0x04,0x00 - -, -/* @372 (15x15,V)@ [suki software]*/ -0x60,0x38,0xe7,0x24,0x24,0x60,0xa4,0xac,0xb5,0xe6,0xb4,0xac,0xa4,0x60,0x00 - -, -0x01,0x01,0x3f,0x11,0x09,0x20,0x10,0x0f,0x02,0x12,0x22,0x1e,0x00,0x00,0x00 - -, -/* @373 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x60,0xa4,0xac,0xb4,0xe5,0xa6,0xb4,0xac,0xa4,0x60,0x00 - -, -0x00,0x00,0x3f,0x00,0x20,0x10,0x08,0x07,0x12,0x22,0x22,0x1e,0x00,0x00,0x00 - -, -/* @374 (15x15,V)@ [suki software]*/ -0x20,0x22,0xec,0x00,0x40,0x64,0x24,0x2c,0x75,0xa6,0x34,0x2c,0x64,0x20,0x00 - -, -0x00,0x00,0x1f,0x08,0x24,0x21,0x11,0x0f,0x05,0x25,0x25,0x1d,0x01,0x01,0x00 - -, -/* @375 (15x15,V)@ [suki software]*/ -0x04,0x84,0x44,0xb4,0xa4,0xaf,0xa4,0xa4,0x2f,0x24,0x24,0xe4,0x06,0x04,0x00 - -, -0x01,0x00,0x00,0x1f,0x22,0x22,0x22,0x23,0x20,0x24,0x24,0x23,0x20,0x3c,0x00 - -, -/* @376 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x12,0x12,0xfe,0x20,0x10,0xef,0x24,0x24,0xe4,0x04,0xfc,0x00,0x00 - -, -0x30,0x0f,0x11,0x21,0x1f,0x00,0x00,0x1f,0x21,0x21,0x25,0x24,0x23,0x38,0x00 - -, -/* @377 (15x15,V)@ [suki software]*/ -0x40,0x20,0x10,0xe8,0x27,0x24,0x24,0x24,0xe4,0x04,0x04,0xfe,0x04,0x00,0x00 - -, -0x00,0x00,0x00,0x1f,0x21,0x21,0x21,0x21,0x21,0x22,0x24,0x23,0x20,0x3c,0x00 - -, -/* @378 (15x15,V)@ [suki software]*/ -0x42,0x22,0xf2,0x0e,0x82,0x82,0xba,0xab,0xea,0xaa,0xaa,0xba,0x82,0x02,0x00 - -, -0x10,0x10,0x13,0x08,0x3a,0x25,0x12,0x14,0x0b,0x14,0x14,0x21,0x22,0x20,0x00 - -, -/* @379 (15x15,V)@ [suki software]*/ -0x20,0xa2,0x2a,0x2a,0xea,0x2a,0xbf,0xa2,0x20,0x00,0xfc,0x00,0xff,0x00,0x00 - -, -0x08,0x08,0x15,0x22,0x1f,0x01,0x02,0x04,0x08,0x00,0x13,0x20,0x1f,0x00,0x00 - -, -}, -//*************************************** -{ -/* @380 (15x15,V)@ [suki software]*/ -0x20,0xca,0x12,0xc2,0x12,0xf7,0x52,0x52,0xfa,0x57,0x52,0xfa,0x12,0x12,0x00 - -, -0x02,0x02,0x3f,0x00,0x04,0x07,0x0d,0x15,0x07,0x25,0x3d,0x07,0x04,0x04,0x00 - -, -/* @381 (15x15,V)@ [suki software]*/ -0x10,0x0c,0x95,0x75,0x55,0x45,0x5f,0x45,0x55,0x55,0x55,0xc5,0x0c,0x04,0x00 - -, -0x02,0x01,0x00,0x1f,0x25,0x25,0x25,0x27,0x20,0x28,0x28,0x27,0x20,0x3c,0x00 - -, -/* @382 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x80,0x80,0xbe,0xa2,0xe2,0xa2,0xa2,0xbf,0x82,0x80,0x00 - -, -0x00,0x00,0x3f,0x00,0x10,0x08,0x04,0x02,0x3f,0x01,0x02,0x04,0x08,0x10,0x00 - -, -/* @383 (15x15,V)@ [suki software]*/ -0x20,0x10,0xfc,0x03,0x20,0x2e,0xaa,0x6a,0xfa,0x2a,0x6a,0xaf,0x22,0x20,0x00 - -, -0x00,0x20,0x23,0x24,0x25,0x25,0x24,0x3e,0x25,0x24,0x24,0x24,0x21,0x21,0x00 - -, -/* @384 (15x15,V)@ [suki software]*/ -0x20,0x18,0xef,0x08,0x18,0x20,0xf8,0x27,0x24,0xe4,0x04,0x04,0xfc,0x00,0x00 - -, -0x00,0x00,0x1f,0x10,0x08,0x00,0x1f,0x21,0x21,0x21,0x22,0x24,0x23,0x38,0x00 - -, -/* @385 (15x15,V)@ [suki software]*/ -0x10,0x0c,0x24,0x24,0x24,0x24,0xe5,0x26,0x24,0x24,0x24,0x14,0x0c,0x00,0x00 - -, -0x20,0x20,0x21,0x21,0x21,0x21,0x3f,0x21,0x21,0x25,0x29,0x20,0x20,0x00,0x00 - -, -/* @386 (15x15,V)@ [suki software]*/ -0x88,0x88,0xff,0x48,0x48,0x20,0xf8,0x27,0x24,0xe4,0x04,0x04,0xfc,0x00,0x00 - -, -0x10,0x20,0x1f,0x00,0x00,0x00,0x1f,0x21,0x21,0x21,0x22,0x24,0x23,0x38,0x00 - -, -/* @387 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x00,0xfe,0x42,0xc2,0x52,0x52,0x4f,0xc2,0x00,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x00,0x3f,0x20,0x11,0x0a,0x04,0x0b,0x30,0x10,0x00 - -, -/* @388 (15x15,V)@ [suki software]*/ -0x00,0x40,0x40,0x5f,0xf5,0x55,0x55,0x55,0xf5,0x55,0x5f,0x40,0x40,0x00,0x00 - -, -0x09,0x09,0x15,0x13,0x15,0x29,0x3f,0x05,0x09,0x15,0x13,0x05,0x05,0x05,0x00 - -, -/* @389 (15x15,V)@ [suki software]*/ -0x48,0x48,0x34,0xa2,0x55,0x88,0x24,0x10,0x8f,0x08,0x08,0x08,0xfc,0x08,0x00 - -, -0x0a,0x0a,0x15,0x22,0x11,0x0f,0x00,0x00,0x00,0x13,0x20,0x10,0x0f,0x00,0x00 - -, -/* @390 (15x15,V)@ [suki software]*/ -0x20,0xf8,0x97,0xf4,0x9e,0xf4,0x20,0xf8,0x27,0x24,0xe4,0x04,0xfe,0x04,0x00 - -, -0x10,0x17,0x12,0x0b,0x0a,0x0b,0x00,0x1f,0x21,0x21,0x23,0x24,0x23,0x38,0x00 - -, -/* @391 (15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x10,0x08,0x5f,0x55,0xf5,0x55,0x55,0xf5,0x5f,0x40,0x00,0x00 - -, -0x20,0x1c,0x03,0x02,0x05,0x13,0x15,0x29,0x3f,0x09,0x15,0x13,0x05,0x05,0x00 - -, -/* @392 (15x15,V)@ [suki software]*/ -0x10,0x10,0xd0,0xff,0x50,0x92,0x02,0x82,0x42,0xf2,0x0e,0x82,0x03,0x02,0x00 - -, -0x04,0x03,0x00,0x3f,0x00,0x02,0x01,0x00,0x00,0x3f,0x00,0x00,0x01,0x02,0x00 - -, -/* @393 (15x15,V)@ [suki software]*/ -0x84,0xe4,0x3c,0x24,0xe4,0x00,0xfc,0x54,0x56,0xfd,0x54,0x54,0xfe,0x04,0x00 - -, -0x00,0x1f,0x08,0x08,0x0f,0x00,0x04,0x06,0x05,0x04,0x3f,0x04,0x04,0x04,0x00 - -, -/* @394 (15x15,V)@ [suki software]*/ -0x00,0x44,0x54,0x54,0x54,0xff,0x00,0x00,0xff,0x54,0x54,0x54,0x44,0x00,0x00 - -, -0x00,0x10,0x0c,0x00,0x1e,0x20,0x21,0x26,0x20,0x20,0x38,0x02,0x04,0x08,0x00 - -, -/* @395 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfc,0x94,0x94,0x96,0xfd,0x94,0x94,0x94,0xfe,0x04,0x00,0x00,0x00 - -, -0x04,0x04,0x04,0x06,0x05,0x04,0x04,0x3f,0x04,0x04,0x04,0x04,0x06,0x04,0x00 - -, -/* @396 (15x15,V)@ [suki software]*/ -0x10,0x10,0x10,0x10,0xff,0x00,0x00,0x00,0xff,0x40,0x20,0x10,0x18,0x00,0x00 - -, -0x08,0x08,0x04,0x04,0x3f,0x00,0x00,0x00,0x1f,0x20,0x20,0x20,0x20,0x3c,0x00 - -, -/* @397 (15x15,V)@ [suki software]*/ -0x20,0xaa,0xaa,0xaa,0xaa,0xff,0x80,0x80,0xff,0xaa,0xaa,0xaa,0xaa,0x22,0x00 - -, -0x08,0x08,0x08,0x0a,0x0b,0x0a,0x0a,0x3f,0x0a,0x0a,0x0a,0x0a,0x08,0x08,0x00 - -, -/* @398 (15x15,V)@ [suki software]*/ -0x10,0x12,0x12,0xca,0x4a,0x5f,0x40,0x40,0x4f,0x54,0xd4,0x12,0x12,0x18,0x00 - -, -0x00,0x00,0x00,0x3f,0x05,0x05,0x05,0x05,0x15,0x25,0x1f,0x00,0x00,0x00,0x00 - -, -/* @399 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0xfe,0x02,0x02,0x02,0xfa,0x02,0x02,0x02,0xff,0x02,0x00,0x00 - -, -0x00,0x20,0x20,0x13,0x10,0x08,0x04,0x03,0x04,0x04,0x08,0x13,0x30,0x00,0x00 - -, -/* @400 (15x15,V)@ [suki software]*/ -0x60,0x38,0xe7,0x24,0x24,0x00,0xfe,0x02,0x02,0xfa,0x02,0x02,0xff,0x02,0x00 - -, -0x01,0x01,0x3f,0x11,0x09,0x20,0x23,0x10,0x0c,0x03,0x04,0x08,0x13,0x20,0x00 - -, -/* @401 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x40,0x44,0x4c,0x74,0x45,0x46,0x64,0x5c,0x44,0x40,0x00 - -, -0x00,0x00,0x3f,0x00,0x00,0x00,0x3f,0x11,0x11,0x11,0x11,0x3f,0x00,0x00,0x00 - -, -/* @402 (15x15,V)@ [suki software]*/ -0x00,0x22,0x14,0x88,0xf4,0x03,0xfe,0x02,0x02,0xfa,0x02,0x02,0xff,0x02,0x00 - -, -0x04,0x12,0x21,0x10,0x0f,0x20,0x23,0x10,0x0c,0x03,0x04,0x08,0x13,0x30,0x00 - -, -/* @403 (15x15,V)@ [suki software]*/ -0x00,0x00,0x90,0x88,0x4c,0x53,0x22,0x22,0x52,0x4a,0x86,0x80,0x00,0x00,0x00 - -, -0x01,0x01,0x00,0x3f,0x15,0x15,0x15,0x1f,0x15,0x15,0x3f,0x00,0x01,0x01,0x00 - -, -/* @404 (15x15,V)@ [suki software]*/ -0x40,0x40,0x28,0xe4,0xb2,0xb7,0xaa,0xea,0xaa,0xb6,0xf2,0x20,0x20,0x20,0x00 - -, -0x00,0x20,0x18,0x03,0x1e,0x22,0x26,0x2b,0x22,0x22,0x3b,0x04,0x18,0x00,0x00 - -, -/* @405 (15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x20,0x50,0x44,0x4c,0x74,0x45,0x66,0x5c,0x44,0x44,0x40,0x00 - -, -0x20,0x18,0x07,0x02,0x0c,0x00,0x3f,0x11,0x11,0x11,0x11,0x3f,0x00,0x00,0x00 - -, -/* @406 (15x15,V)@ [suki software]*/ -0x08,0x88,0xc9,0xae,0x58,0x00,0xf8,0x48,0x48,0x7f,0x48,0xc8,0x58,0x08,0x00 - -, -0x01,0x00,0x3f,0x00,0x21,0x18,0x27,0x10,0x0b,0x04,0x0a,0x11,0x20,0x20,0x00 - -, -/* @407 (15x15,V)@ [suki software]*/ -0x40,0x44,0x24,0x54,0x4c,0x44,0xf7,0x44,0x4c,0x54,0x54,0x26,0x64,0x20,0x00 - -, -0x02,0x22,0x22,0x12,0x0f,0x02,0x03,0x02,0x02,0x3f,0x02,0x02,0x02,0x02,0x00 - -, -/* @408 (15x15,V)@ [suki software]*/ -0x04,0x24,0x24,0x24,0x2f,0xa4,0x64,0xf4,0x64,0xaf,0x24,0x24,0x26,0x24,0x00 - -, -0x08,0x08,0x04,0x02,0x05,0x04,0x04,0x3f,0x04,0x04,0x05,0x02,0x0c,0x04,0x00 - -, -/* @409 (15x15,V)@ [suki software]*/ -0x00,0x08,0x08,0x08,0x88,0x48,0x28,0xff,0x28,0x48,0x88,0x08,0x0c,0x08,0x00 - -, -0x04,0x04,0x02,0x05,0x04,0x04,0x04,0x3f,0x04,0x04,0x04,0x05,0x02,0x04,0x00 - -, -/* @410 (15x15,V)@ [suki software]*/ -0x40,0x50,0x4c,0x47,0x4c,0xd4,0x44,0xe8,0xc7,0x44,0x4c,0x54,0x46,0x44,0x00 - -, -0x08,0x08,0x04,0x02,0x05,0x04,0x04,0x3f,0x04,0x05,0x02,0x04,0x0c,0x04,0x00 - -, -/* @411 (15x15,V)@ [suki software]*/ -0x00,0x00,0xee,0xa8,0xa8,0xe8,0x08,0x0f,0xe8,0xa8,0xa8,0xae,0xe0,0x00,0x00 - -, -0x20,0x10,0x0f,0x12,0x22,0x1f,0x20,0x10,0x0f,0x02,0x12,0x22,0x1f,0x00,0x00 - -, -/* @412 (15x15,V)@ [suki software]*/ -0x30,0xa8,0x64,0x13,0x08,0xfe,0x12,0xfe,0x00,0xfe,0x12,0x12,0xff,0x02,0x00 - -, -0x09,0x09,0x09,0x25,0x10,0x0f,0x11,0x2f,0x10,0x0f,0x11,0x21,0x1f,0x00,0x00 - -, -/* @413 (15x15,V)@ [suki software]*/ -0x20,0x22,0xd2,0x52,0x4a,0x46,0x42,0xde,0x42,0x46,0x4a,0xca,0x13,0x32,0x00 - -, -0x20,0x10,0x0f,0x05,0x05,0x05,0x05,0x3f,0x05,0x15,0x25,0x1f,0x00,0x00,0x00 - -, -/* @414 (15x15,V)@ [suki software]*/ -0x20,0x22,0x12,0x12,0x7a,0x4e,0x4a,0xca,0x4a,0x4a,0x7a,0x02,0x83,0x02,0x00 - -, -0x20,0x21,0x11,0x09,0x05,0x13,0x20,0x1f,0x02,0x04,0x0a,0x11,0x31,0x10,0x00 - -, -/* @415 (15x15,V)@ [suki software]*/ -0x00,0x9e,0x12,0xf2,0x9e,0x00,0xee,0xa8,0xe8,0x0f,0xe8,0xa8,0xae,0xe0,0x00 - -, -0x10,0x1f,0x08,0x0f,0x28,0x10,0x0f,0x12,0x2f,0x10,0x0f,0x12,0x22,0x1f,0x00 - -, -/* @416 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x40,0x48,0x49,0xfe,0x48,0x4c,0xfb,0x48,0x48,0x40,0x00 - -, -0x10,0x08,0x07,0x08,0x10,0x28,0x24,0x23,0x20,0x20,0x2f,0x20,0x20,0x20,0x00 - -, -/* @417 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x02,0x82,0xba,0xaa,0xaa,0xaa,0xaa,0xba,0x83,0x02,0x00 - -, -0x10,0x08,0x07,0x08,0x10,0x2f,0x2a,0x2a,0x2a,0x2f,0x2a,0x2a,0x2f,0x20,0x00 - -, -/* @418 (15x15,V)@ [suki software]*/ -0x00,0x00,0xc0,0x5e,0x52,0x56,0x5b,0xd6,0x5a,0x52,0x5e,0xc0,0x00,0x00,0x00 - -, -0x04,0x24,0x27,0x15,0x0d,0x05,0x05,0x07,0x05,0x3d,0x05,0x07,0x04,0x04,0x00 - -, -/* @419 (15x15,V)@ [suki software]*/ -0x00,0x00,0xff,0x20,0x20,0x20,0x20,0x00,0xff,0x40,0x20,0x10,0x18,0x00,0x00 - -, -0x00,0x00,0x1f,0x08,0x08,0x04,0x04,0x00,0x0f,0x10,0x10,0x10,0x10,0x1e,0x00 - -, -/* @420 (15x15,V)@ [suki software]*/ -0x20,0xae,0xaa,0xaa,0xfa,0xaa,0xaf,0xa2,0x20,0xfe,0x02,0x62,0x9a,0x06,0x00 - -, -0x00,0x3f,0x10,0x17,0x15,0x17,0x10,0x3f,0x00,0x3f,0x04,0x08,0x08,0x07,0x00 - -, -/* @421 (15x15,V)@ [suki software]*/ -0x20,0x50,0x4c,0x47,0x4c,0x54,0xc4,0xa8,0xa7,0xa4,0xac,0x94,0x06,0x04,0x00 - -, -0x04,0x04,0x05,0x05,0x05,0x05,0x1f,0x22,0x22,0x22,0x22,0x22,0x22,0x38,0x00 - -, -/* @422 (15x15,V)@ [suki software]*/ -0x10,0x88,0xc4,0x33,0x00,0x00,0xfc,0x44,0x44,0x7f,0x44,0xd4,0x4c,0x00,0x00 - -, -0x01,0x00,0x3f,0x20,0x10,0x2c,0x23,0x11,0x0a,0x04,0x0a,0x11,0x30,0x10,0x00 - -, -/* @423 (15x15,V)@ [suki software]*/ -0x00,0x42,0x4a,0x4a,0x3e,0x2a,0x22,0x7c,0x54,0x56,0x55,0x54,0x7c,0x00,0x00 - -, -0x10,0x11,0x09,0x05,0x3f,0x15,0x15,0x15,0x15,0x15,0x15,0x3d,0x01,0x01,0x00 - -, -/* @424 (15x15,V)@ [suki software]*/ -0x02,0x02,0xf2,0x12,0x17,0xb2,0x5a,0x52,0xb7,0x12,0x12,0xf2,0x02,0x02,0x00 - -, -0x00,0x00,0x3f,0x25,0x15,0x15,0x01,0x1f,0x29,0x29,0x25,0x25,0x38,0x00,0x00 - -, -/* @425 (15x15,V)@ [suki software]*/ -0x04,0xd4,0x64,0x44,0xf4,0x67,0xd4,0x04,0xc4,0x7f,0x44,0xc4,0x66,0x44,0x00 - -, -0x00,0x3f,0x02,0x01,0x3f,0x12,0x1f,0x21,0x20,0x13,0x0c,0x13,0x20,0x20,0x00 - -, -/* @426 (15x15,V)@ [suki software]*/ -0x00,0x00,0xff,0x88,0x48,0x28,0x80,0x3f,0x48,0x48,0x44,0x46,0x70,0x00,0x00 - -, -0x02,0x02,0x02,0x02,0x02,0x02,0x3f,0x02,0x02,0x02,0x02,0x02,0x03,0x02,0x00 - -, -/* @427 (15x15,V)@ [suki software]*/ -0x00,0x80,0xbf,0xa4,0x94,0x94,0x80,0x9f,0xa4,0xa4,0xa2,0xa2,0xb8,0x00,0x00 - -, -0x00,0x24,0x22,0x17,0x0a,0x06,0x02,0x00,0x1f,0x24,0x24,0x22,0x22,0x38,0x00 - -, -/* @428 (15x15,V)@ [suki software]*/ -0x00,0x00,0x7f,0x24,0xa4,0x14,0x80,0x3f,0x48,0x48,0x44,0x44,0x42,0x70,0x00 - -, -0x00,0x28,0x26,0x10,0x1f,0x30,0x28,0x25,0x22,0x21,0x38,0x02,0x0c,0x00,0x00 - -, -/* @429 (15x15,V)@ [suki software]*/ -0x00,0x04,0xe4,0x24,0x24,0x24,0x24,0xfe,0x22,0x22,0x23,0xf2,0x20,0x00,0x00 - -, -0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x3f,0x00,0x04,0x08,0x07,0x00,0x00,0x00 - -, -/* @430 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfc,0x04,0xf4,0x84,0x85,0x86,0x04,0xf4,0x84,0x44,0x66,0x04,0x00 - -, -0x20,0x18,0x07,0x00,0x3f,0x10,0x08,0x08,0x00,0x1f,0x20,0x20,0x20,0x3c,0x00 - -, -/* @431 (15x15,V)@ [suki software]*/ -0x08,0x30,0x80,0xfc,0x04,0xf4,0x54,0x55,0xf6,0x54,0x54,0x54,0xf6,0x04,0x00 - -, -0x21,0x11,0x0c,0x23,0x24,0x15,0x0d,0x05,0x05,0x05,0x3d,0x05,0x05,0x04,0x00 - -, -/* @432 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x00,0x21,0x26,0x20,0xa2,0x62,0xfa,0x22,0x22,0x02,0xff,0x02,0x00 - -, -0x00,0x3f,0x00,0x04,0x02,0x01,0x04,0x08,0x07,0x00,0x10,0x20,0x1f,0x00,0x00 - -, -/* @433 (15x15,V)@ [suki software]*/ -0x00,0xe2,0x2c,0x20,0xff,0x28,0xe6,0x40,0x70,0x9f,0x10,0x10,0xf8,0x10,0x00 - -, -0x00,0x3f,0x02,0x01,0x3f,0x12,0x1f,0x20,0x10,0x09,0x06,0x09,0x30,0x10,0x00 - -, -/* @434 (15x15,V)@ [suki software]*/ -0x00,0xfa,0x4c,0x28,0xff,0xac,0xfa,0x10,0x08,0xb7,0x44,0xa4,0x1c,0x04,0x00 - -, -0x00,0x25,0x24,0x24,0x15,0x0e,0x04,0x05,0x05,0x3e,0x04,0x04,0x05,0x05,0x00 - -, -/* @435 (15x15,V)@ [suki software]*/ -0x00,0x00,0xe0,0x00,0xf8,0x01,0x02,0x0c,0xc0,0x30,0x0e,0x20,0x40,0x80,0x00 - -, -0x10,0x11,0x10,0x08,0x0f,0x14,0x12,0x11,0x10,0x10,0x10,0x1c,0x00,0x01,0x00 - -, -/* @436 (15x15,V)@ [suki software]*/ -0x00,0xfe,0xa2,0xa2,0xa2,0xbe,0x80,0x94,0xe5,0x86,0xc4,0xb4,0x84,0x80,0x00 - -, -0x0c,0x03,0x3f,0x08,0x08,0x1f,0x00,0x04,0x04,0x3f,0x04,0x04,0x04,0x00,0x00 - -, -/* @437 (15x15,V)@ [suki software]*/ -0x80,0x7e,0xea,0x2a,0x2a,0xee,0x04,0xac,0xb5,0xe6,0xb4,0xac,0x24,0x00,0x00 - -, -0x20,0x24,0x25,0x25,0x25,0x25,0x3e,0x24,0x24,0x27,0x24,0x34,0x20,0x00,0x00 - -, -/* @438 (15x15,V)@ [suki software]*/ -0x40,0x3e,0xea,0xaa,0xaa,0xee,0x80,0xaa,0xae,0xfb,0xae,0x2a,0x2a,0x08,0x00 - -, -0x00,0x00,0x00,0x3f,0x0a,0x0a,0x0a,0x0a,0x0a,0x2a,0x3f,0x00,0x00,0x00,0x00 - -, -/* @439 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x00,0xfe,0x52,0xde,0x24,0x3d,0xe6,0x3c,0x24,0x24,0x00 - -, -0x10,0x08,0x07,0x0a,0x11,0x27,0x24,0x27,0x21,0x21,0x2f,0x21,0x21,0x20,0x00 - -, -/* @440 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x12,0x2a,0xc6,0x00,0xff,0x88,0x48,0x00,0x7f,0x88,0x84,0xe4,0x00 - -, -0x00,0x3f,0x02,0x04,0x03,0x20,0x24,0x24,0x24,0x3f,0x24,0x24,0x24,0x20,0x00 - -, -/* @441 (15x15,V)@ [suki software]*/ -0xc4,0x5f,0xf4,0x5f,0xc4,0x24,0xf8,0x07,0xfa,0x4a,0xfe,0x4a,0xfb,0x02,0x00 - -, -0x05,0x05,0x3f,0x05,0x05,0x04,0x3f,0x20,0x23,0x15,0x0f,0x11,0x21,0x20,0x00 - -, -/* @442 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe2,0x06,0x00,0x08,0x08,0x88,0x7f,0x08,0x08,0x08,0xfc,0x08,0x00 - -, -0x10,0x08,0x07,0x08,0x10,0x14,0x22,0x21,0x20,0x24,0x28,0x26,0x21,0x20,0x00 - -, -/* @443 (15x15,V)@ [suki software]*/ -0x20,0xb8,0x67,0x30,0x00,0xfc,0xd4,0x54,0xd5,0x56,0xd4,0x54,0xdc,0x00,0x00 - -, -0x09,0x1b,0x09,0x25,0x18,0x07,0x3f,0x02,0x1f,0x02,0x1f,0x22,0x3f,0x00,0x00 - -, -/* @444 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0xfa,0x02,0xfe,0x24,0x24,0x24,0x3a,0xa2,0x63,0x22,0x00,0x00 - -, -0x20,0x13,0x0c,0x03,0x04,0x19,0x08,0x14,0x12,0x21,0x20,0x20,0x20,0x20,0x00 - -, -/* @445 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfc,0x14,0xd4,0x54,0x55,0xd6,0x54,0xd4,0x54,0x5e,0xc4,0x00,0x00 - -, -0x20,0x18,0x07,0x00,0x3f,0x02,0x02,0x1f,0x02,0x1f,0x02,0x22,0x3f,0x00,0x00 - -, -/* @446 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x02,0xfa,0x2a,0x2a,0xfe,0x2a,0x2a,0x2a,0xfb,0x02,0x00 - -, -0x00,0x00,0x3f,0x00,0x20,0x23,0x15,0x09,0x0f,0x11,0x11,0x21,0x21,0x20,0x00 - -, -/* @447 (15x15,V)@ [suki software]*/ -0x44,0x44,0xa4,0x94,0x84,0xfc,0x85,0x86,0xfc,0x84,0x94,0x94,0x26,0x44,0x00 - -, -0x20,0x20,0x20,0x20,0x11,0x12,0x0c,0x08,0x0c,0x12,0x11,0x20,0x20,0x20,0x00 - -, -/* @448 (15x15,V)@ [suki software]*/ -0x08,0x08,0x08,0x08,0x08,0x08,0xf9,0x4e,0x48,0x48,0x88,0x88,0x0c,0x08,0x00 - -, -0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00 - -, -/* @449 (15x15,V)@ [suki software]*/ -0x44,0x55,0xe6,0x54,0x44,0xc0,0x20,0xff,0x40,0x44,0x55,0xe6,0x54,0x44,0x00 - -, -0x22,0x12,0x0f,0x02,0x22,0x10,0x0c,0x03,0x02,0x02,0x02,0x3f,0x02,0x02,0x00 - -, -/* @450 (15x15,V)@ [suki software]*/ -0x44,0x55,0xe6,0x54,0x44,0x22,0xec,0x00,0x44,0x55,0xe6,0x54,0x44,0x44,0x00 - -, -0x22,0x12,0x0f,0x02,0x02,0x00,0x1f,0x08,0x02,0x02,0x3f,0x02,0x02,0x00,0x00 - -, -/* @451 (15x15,V)@ [suki software]*/ -0x44,0x55,0xe6,0x54,0x44,0x18,0xd7,0x38,0x44,0x54,0xe7,0x54,0x44,0x40,0x00 - -, -0x22,0x12,0x0f,0x02,0x02,0x09,0x09,0x05,0x02,0x02,0x3f,0x02,0x02,0x00,0x00 - -, -/* @452 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x00,0xfc,0xd4,0x55,0xd6,0x54,0xd4,0x54,0xde,0x04,0x00 - -, -0x10,0x08,0x07,0x08,0x16,0x11,0x2f,0x21,0x27,0x21,0x27,0x29,0x2f,0x20,0x00 - -, -/* @453 (15x15,V)@ [suki software]*/ -0x08,0xc8,0xff,0x48,0x88,0x00,0x20,0xa2,0x22,0xe2,0x22,0xa2,0x30,0x20,0x00 - -, -0x03,0x00,0x3f,0x00,0x00,0x08,0x06,0x11,0x20,0x1f,0x00,0x01,0x0e,0x00,0x00 - -, -/* @454 (15x15,V)@ [suki software]*/ -0x00,0xf8,0x28,0x28,0xff,0xaa,0xaa,0xda,0x00,0x10,0x88,0x44,0x22,0x00,0x00 - -, -0x30,0x0f,0x20,0x1e,0x02,0x02,0x1e,0x20,0x28,0x29,0x24,0x22,0x21,0x38,0x00 - -, -/* @455 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x92,0x92,0xfe,0x02,0xba,0xaa,0xbe,0xaa,0xbe,0xaa,0xbb,0x02,0x00 - -, -0x30,0x0f,0x10,0x20,0x1f,0x22,0x12,0x0a,0x22,0x3e,0x02,0x0a,0x12,0x22,0x00 - -, -/* @456 (15x15,V)@ [suki software]*/ -0x40,0x44,0x54,0x54,0x54,0xd4,0x7f,0xd4,0x54,0x54,0x54,0x56,0x44,0x40,0x00 - -, -0x08,0x08,0x04,0x02,0x3f,0x20,0x10,0x09,0x02,0x04,0x0a,0x11,0x30,0x10,0x00 - -, -/* @457 (15x15,V)@ [suki software]*/ -0x00,0x7a,0x2c,0x7f,0xa8,0x8c,0xfa,0x90,0x4c,0x57,0x24,0x5c,0xc6,0x44,0x00 - -, -0x20,0x24,0x22,0x3f,0x2a,0x2a,0x2a,0x3f,0x2a,0x2a,0x3e,0x20,0x20,0x20,0x00 - -, -/* @458 (15x15,V)@ [suki software]*/ -0x00,0xfa,0x4c,0x28,0xff,0x2c,0xfa,0x20,0x18,0xaf,0x48,0xb8,0x0c,0x08,0x00 - -, -0x00,0x11,0x0c,0x00,0x1d,0x21,0x25,0x28,0x21,0x20,0x38,0x04,0x19,0x01,0x00 - -, -/* @459 (15x15,V)@ [suki software]*/ -0x00,0x80,0xbe,0x92,0xd2,0x92,0xbe,0x80,0x00,0xfc,0x00,0x00,0xff,0x00,0x00 - -, -0x20,0x10,0x08,0x04,0x13,0x20,0x10,0x0f,0x00,0x07,0x10,0x20,0x1f,0x00,0x00 - -, -/* @460 (15x15,V)@ [suki software]*/ -0x08,0x30,0x80,0xfe,0x02,0xfa,0xaa,0xab,0xae,0xaa,0xaa,0xfa,0x02,0x02,0x00 - -, -0x21,0x11,0x0c,0x0b,0x08,0x04,0x1c,0x2a,0x29,0x25,0x22,0x34,0x04,0x04,0x00 - -, -/* @461 (15x15,V)@ [suki software]*/ -0x00,0x10,0x90,0xff,0x90,0x10,0x90,0xff,0x50,0xa0,0x10,0x88,0x46,0x20,0x00 - -, -0x02,0x01,0x00,0x3f,0x02,0x01,0x00,0x3f,0x00,0x22,0x11,0x08,0x04,0x02,0x00 - -, -/* @462 (15x15,V)@ [suki software]*/ -0x10,0x51,0x96,0x10,0xf0,0x10,0x94,0x14,0xd4,0x10,0xff,0x12,0x14,0x10,0x00 - -, -0x10,0x08,0x04,0x03,0x0c,0x10,0x1f,0x10,0x0f,0x09,0x01,0x0e,0x10,0x3c,0x00 - -, -/* @463 (15x15,V)@ [suki software]*/ -0x10,0x22,0xc4,0x20,0xbe,0xe0,0x3f,0x24,0xf2,0x12,0xda,0x16,0xf2,0x02,0x00 - -, -0x04,0x3f,0x00,0x23,0x10,0x0b,0x24,0x23,0x17,0x08,0x07,0x08,0x17,0x20,0x00 - -, -/* @464 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x0c,0x04,0xf4,0x54,0x55,0x56,0xcc,0x44,0x44,0x0c,0x00 - -, -0x02,0x3e,0x01,0x00,0x22,0x12,0x0b,0x02,0x02,0x02,0x0b,0x12,0x32,0x02,0x00 - -, -/* @465 (15x15,V)@ [suki software]*/ -0x00,0x10,0x0c,0x04,0xe4,0xa4,0xa5,0x96,0x94,0x94,0x94,0x84,0x14,0x0c,0x00 - -, -0x00,0x04,0x24,0x24,0x17,0x0c,0x04,0x04,0x04,0x07,0x0c,0x14,0x26,0x04,0x00 - -, -/* @466 (15x15,V)@ [suki software]*/ -0x08,0x08,0xff,0x88,0x40,0x0c,0xe4,0xa4,0xa5,0x96,0x94,0x94,0x84,0x0c,0x00 - -, -0x11,0x21,0x1f,0x00,0x24,0x24,0x17,0x0c,0x04,0x04,0x07,0x0c,0x14,0x24,0x00 - -, -/* @467 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0xfc,0x24,0x24,0x24,0x24,0x22,0xe2,0x23,0x32,0x20,0x00,0x00 - -, -0x22,0x22,0x12,0x0b,0x06,0x02,0x02,0x02,0x02,0x07,0x0a,0x12,0x32,0x02,0x00 - -, -/* @468 (15x15,V)@ [suki software]*/ -0x00,0x02,0xcc,0x30,0x10,0x10,0xf0,0x00,0xff,0x40,0xa0,0x10,0x08,0x00,0x00 - -, -0x01,0x1f,0x00,0x08,0x04,0x03,0x10,0x20,0x1f,0x00,0x01,0x02,0x04,0x08,0x00 - -, -/* @469 (15x15,V)@ [suki software]*/ -0x10,0x90,0xff,0x50,0x90,0x02,0xf2,0x12,0x12,0xfe,0x12,0x12,0xfb,0x12,0x00 - -, -0x06,0x01,0x3f,0x00,0x00,0x00,0x3f,0x04,0x03,0x00,0x11,0x22,0x1f,0x00,0x00 - -, -/* @470 (15x15,V)@ [suki software]*/ -0x02,0xf2,0x12,0x12,0x12,0x92,0x7e,0x92,0x12,0x12,0x12,0xfa,0x13,0x02,0x00 - -, -0x00,0x3f,0x00,0x04,0x02,0x01,0x00,0x00,0x01,0x13,0x20,0x1f,0x00,0x00,0x00 - -, -/* @471 (15x15,V)@ [suki software]*/ -0x88,0x88,0xaa,0xaa,0xaa,0xaa,0xaa,0xfe,0xa9,0xa9,0xa9,0xe8,0x8c,0x88,0x00 - -, -0x20,0x20,0x12,0x0a,0x06,0x02,0x02,0x3f,0x02,0x06,0x0a,0x13,0x30,0x10,0x00 - -, -/* @472 (15x15,V)@ [suki software]*/ -0x20,0x18,0xef,0x08,0x18,0x80,0x89,0xfa,0x8c,0x88,0x8c,0xfa,0x89,0x88,0x00 - -, -0x00,0x00,0x1f,0x08,0x24,0x10,0x08,0x07,0x00,0x00,0x00,0x3f,0x00,0x00,0x00 - -, -/* @473 (15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x20,0x18,0x02,0xf2,0x12,0x12,0xfe,0x12,0x12,0xf3,0x02,0x00 - -, -0x20,0x18,0x07,0x02,0x0c,0x00,0x3f,0x04,0x03,0x00,0x01,0x22,0x3f,0x00,0x00 - -, -}, -//************************************* -{ -/* @474 (15x15,V)@ [suki software]*/ -0x88,0x90,0x40,0xfc,0x04,0xd4,0x54,0x55,0xf6,0x54,0x54,0x54,0xd6,0x04,0x00 - -, -0x20,0x10,0x0c,0x03,0x00,0x3f,0x04,0x02,0x01,0x02,0x14,0x20,0x1f,0x00,0x00 - -, -/* @475 (15x15,V)@ [suki software]*/ -0x80,0x88,0x88,0x88,0x89,0xfe,0x88,0x88,0x8c,0xfb,0x88,0x88,0x88,0x80,0x00 - -, -0x00,0x20,0x20,0x10,0x08,0x07,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00 - -, -/* @476 (15x15,V)@ [suki software]*/ -0x44,0x44,0xfc,0x44,0x44,0x00,0xfc,0x44,0xc4,0x7f,0x44,0x44,0xd4,0x0c,0x00 - -, -0x08,0x08,0x07,0x24,0x14,0x0c,0x23,0x20,0x11,0x0a,0x04,0x0b,0x30,0x10,0x00 - -, -/* @477 (15x15,V)@ [suki software]*/ -0x20,0x4c,0x14,0xc4,0x04,0xef,0x24,0x24,0x24,0xff,0x24,0x24,0x66,0x04,0x00 - -, -0x04,0x04,0x3f,0x20,0x10,0x2f,0x21,0x13,0x15,0x09,0x15,0x13,0x20,0x20,0x00 - -, -/* @478 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x08,0x92,0x5a,0x32,0xfe,0x19,0x55,0x91,0x90,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x01,0x3f,0x15,0x15,0x1f,0x15,0x15,0x3f,0x00,0x00 - -, -/* @479 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x48,0x1e,0x10,0xf0,0x9f,0x90,0x92,0x9c,0x10,0x00 - -, -0x01,0x11,0x20,0x1f,0x20,0x10,0x28,0x26,0x11,0x0a,0x04,0x0a,0x11,0x20,0x00 - -, -/* @480 (15x15,V)@ [suki software]*/ -0x20,0x38,0xe7,0x24,0x24,0x08,0x08,0xc8,0x28,0xff,0x48,0x88,0x08,0x08,0x00 - -, -0x01,0x01,0x3f,0x11,0x09,0x02,0x05,0x04,0x04,0x3f,0x04,0x05,0x02,0x04,0x00 - -, -/* @481 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x00,0xf8,0x48,0xc8,0x48,0x7f,0x48,0xc8,0x18,0x00,0x00 - -, -0x02,0x3e,0x01,0x20,0x18,0x27,0x20,0x11,0x0a,0x04,0x0a,0x11,0x20,0x20,0x00 - -, -/* @482 (15x15,V)@ [suki software]*/ -0x10,0x10,0xff,0x10,0x04,0xf4,0x54,0x54,0xff,0x54,0x55,0x56,0xf4,0x04,0x00 - -, -0x00,0x00,0x3f,0x00,0x04,0x07,0x0d,0x15,0x05,0x05,0x25,0x3f,0x05,0x04,0x00 - -, -/* @483 (15x15,V)@ [suki software]*/ -0x30,0x54,0x54,0x54,0x5f,0xd4,0x34,0x00,0x10,0xff,0x10,0x10,0xf8,0x10,0x00 - -, -0x00,0x04,0x14,0x22,0x1f,0x02,0x22,0x10,0x0c,0x03,0x10,0x20,0x1f,0x00,0x00 - -, -/* @484 (15x15,V)@ [suki software]*/ -0x08,0x08,0xff,0x88,0x04,0xf4,0x54,0x54,0xff,0x54,0x55,0x56,0xf4,0x04,0x00 - -, -0x11,0x21,0x1f,0x00,0x04,0x07,0x0d,0x15,0x05,0x05,0x25,0x3f,0x05,0x04,0x00 - -, -/* @485 (15x15,V)@ [suki software]*/ -0x40,0x30,0x2f,0xe4,0x24,0x24,0x00,0xf8,0x8c,0x8b,0x88,0x88,0xfc,0x08,0x00 - -, -0x01,0x01,0x01,0x3f,0x11,0x09,0x00,0x3f,0x10,0x10,0x10,0x10,0x3f,0x00,0x00 - -, -/* @486 (15x15,V)@ [suki software]*/ -0x10,0x48,0x94,0x27,0x0c,0x14,0xc4,0x48,0x64,0x57,0x4c,0x54,0xc6,0x04,0x00 - -, -0x00,0x04,0x3c,0x02,0x01,0x00,0x3f,0x12,0x12,0x12,0x12,0x12,0x3f,0x00,0x00 - -, -/* @487 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x00,0xf8,0x88,0x8c,0x8b,0x88,0x88,0x88,0xfc,0x08,0x00 - -, -0x00,0x00,0x3f,0x00,0x00,0x3f,0x10,0x10,0x10,0x10,0x10,0x10,0x3f,0x00,0x00 - -, -/* @488 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x7c,0x54,0x54,0x56,0xd5,0x54,0x54,0x54,0x7e,0x04,0x00,0x00 - -, -0x00,0x00,0x1f,0x01,0x01,0x01,0x01,0x3f,0x01,0x01,0x09,0x11,0x0f,0x00,0x00 - -, -/* @489 (15x15,V)@ [suki software]*/ -0x80,0x80,0xfc,0x97,0xa4,0xfc,0x00,0xf8,0x88,0x8c,0x8b,0x88,0xfc,0x08,0x00 - -, -0x20,0x18,0x07,0x12,0x24,0x1f,0x00,0x3f,0x10,0x10,0x10,0x10,0x3f,0x00,0x00 - -, -/* @490 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x92,0x92,0xfe,0x20,0x54,0x54,0x54,0x5f,0xd4,0x54,0x34,0x10,0x00 - -, -0x30,0x0f,0x10,0x20,0x1f,0x00,0x02,0x12,0x22,0x1f,0x02,0x02,0x02,0x02,0x00 - -, -/* @491 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x92,0x92,0xfe,0x04,0xf4,0x54,0x54,0xff,0x54,0x55,0xf6,0x04,0x00 - -, -0x30,0x0f,0x10,0x20,0x1f,0x04,0x07,0x0d,0x15,0x05,0x25,0x3f,0x05,0x04,0x00 - -, -/* @492 (15x15,V)@ [suki software]*/ -0x08,0x31,0xc6,0x30,0x54,0x54,0x5f,0xd4,0x34,0x10,0xff,0x10,0xf8,0x10,0x00 - -, -0x02,0x3f,0x00,0x04,0x14,0x24,0x1f,0x22,0x12,0x0c,0x13,0x20,0x1f,0x00,0x00 - -, -/* @493 (15x15,V)@ [suki software]*/ -0x10,0x60,0x02,0x8c,0x60,0x00,0xf8,0x88,0x8c,0x8b,0x88,0x88,0xfc,0x08,0x00 - -, -0x04,0x04,0x3e,0x01,0x00,0x00,0x3f,0x10,0x10,0x10,0x10,0x10,0x3f,0x00,0x00 - -, -/* @494 (15x15,V)@ [suki software]*/ -0x00,0xe2,0x9a,0x82,0xf2,0x8e,0x20,0xd2,0x0a,0x04,0x04,0xca,0x11,0x00,0x00 - -, -0x04,0x04,0x12,0x22,0x10,0x2f,0x20,0x10,0x0b,0x04,0x0a,0x11,0x20,0x20,0x00 - -, -/* @495 (15x15,V)@ [suki software]*/ -0x08,0x88,0xff,0x48,0x08,0xe8,0xa8,0xa8,0xff,0xa8,0xa9,0xaa,0xe8,0x08,0x00 - -, -0x11,0x20,0x1f,0x00,0x00,0x3f,0x02,0x02,0x3f,0x02,0x12,0x22,0x1f,0x00,0x00 - -, -/* @496 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x20,0x20,0x40,0x80,0x80,0x00,0x00,0x00 - -, -0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00 - -, -/* @497 (15x15,V)@ [suki software]*/ -0xfc,0x04,0x04,0xfc,0x08,0xe8,0xa8,0xa8,0xff,0xa8,0xa9,0xaa,0xe8,0x08,0x00 - -, -0x07,0x02,0x02,0x07,0x00,0x3f,0x02,0x02,0x3f,0x02,0x12,0x22,0x1f,0x00,0x00 - -, -/* @498 (15x15,V)@ [suki software]*/ -0x08,0x08,0x89,0xce,0xa8,0x58,0x20,0x00,0x00,0xff,0x20,0x40,0x80,0x80,0x00 - -, -0x02,0x01,0x00,0x3f,0x00,0x01,0x02,0x00,0x00,0x3f,0x00,0x00,0x00,0x01,0x00 - -, -/* @499 (15x15,V)@ [suki software]*/ -0x10,0x10,0xff,0x10,0x10,0x00,0xfc,0x54,0x56,0x55,0x54,0x5e,0xc4,0x00,0x00 - -, -0x08,0x08,0x07,0x04,0x02,0x04,0x05,0x05,0x05,0x3f,0x05,0x05,0x05,0x04,0x00 - -, -/* @500 (15x15,V)@ [suki software]*/ -0x02,0x02,0x02,0x82,0x42,0x22,0xf2,0x0e,0x02,0x22,0x42,0x82,0x03,0x02,0x00 - -, -0x02,0x02,0x01,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00 - -, -/* @501 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0x48,0xf8,0x4c,0x4b,0xf8,0x48,0x48,0x48,0xe8,0x4c,0x08,0x00 - -, -0x02,0x01,0x00,0x00,0x1f,0x00,0x00,0x3f,0x00,0x08,0x10,0x0f,0x00,0x00,0x00 - -, -/* @502 (15x15,V)@ [suki software]*/ -0x00,0x20,0x20,0x3c,0xa0,0x20,0x20,0xbf,0x24,0x24,0x24,0x24,0x20,0x20,0x00 - -, -0x00,0x28,0x24,0x22,0x21,0x10,0x10,0x0f,0x08,0x04,0x02,0x01,0x00,0x00,0x00 - -, -/* @503 (15x15,V)@ [suki software]*/ -0x48,0x84,0x13,0xa6,0x0a,0xd2,0x5a,0x54,0xfb,0x56,0x52,0xda,0x12,0x12,0x00 - -, -0x04,0x04,0x3e,0x01,0x04,0x07,0x0d,0x15,0x07,0x25,0x3d,0x07,0x04,0x04,0x00 - -, -/* @504 (15x15,V)@ [suki software]*/ -0x40,0x44,0x4c,0x75,0x46,0x64,0x5c,0x44,0x40,0xfe,0x02,0x62,0x9a,0x06,0x00 - -, -0x00,0x00,0x3f,0x09,0x09,0x09,0x1f,0x00,0x00,0x3f,0x04,0x08,0x08,0x07,0x00 - -, -/* @505 (15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x10,0x28,0x88,0xe8,0x5c,0x4b,0xe8,0x48,0x48,0xcc,0x08,0x00 - -, -0x00,0x00,0x3f,0x00,0x01,0x00,0x1f,0x00,0x00,0x3f,0x00,0x10,0x1f,0x00,0x00 - -, -/* @506 (15x15,V)@ [suki software]*/ -0x10,0x10,0xff,0x90,0x40,0x4c,0xb4,0xd4,0xb5,0xa6,0xd4,0xb4,0x14,0x0c,0x00 - -, -0x12,0x21,0x1f,0x00,0x02,0x11,0x0a,0x12,0x22,0x1e,0x02,0x0a,0x11,0x01,0x00 - -, -/* @507 (15x15,V)@ [suki software]*/ -0x22,0x14,0x88,0xf4,0x02,0x22,0xaa,0xaa,0xaa,0xbf,0xaa,0xaa,0x22,0x20,0x00 - -, -0x02,0x11,0x20,0x1f,0x00,0x00,0x3f,0x0a,0x0a,0x0a,0x2a,0x3f,0x00,0x00,0x00 - -, -/* @508 (15x15,V)@ [suki software]*/ -0x10,0x94,0x94,0xb4,0xdf,0x94,0x94,0x90,0xff,0x10,0x12,0x14,0xd8,0x10,0x00 - -, -0x08,0x04,0x02,0x3f,0x12,0x04,0x2a,0x20,0x10,0x0b,0x04,0x0a,0x11,0x38,0x00 - -, -/* @509 (15x15,V)@ [suki software]*/ -0x08,0x08,0xc8,0xff,0x48,0x88,0x00,0x08,0x08,0x88,0x48,0xff,0x08,0x08,0x00 - -, -0x04,0x03,0x00,0x3f,0x00,0x00,0x05,0x02,0x01,0x10,0x20,0x1f,0x00,0x00,0x00 - -, -/* @510 (15x15,V)@ [suki software]*/ -0x00,0x10,0x10,0x10,0x10,0x90,0x50,0x30,0xff,0x10,0x10,0x10,0x18,0x10,0x00 - -, -0x08,0x08,0x04,0x02,0x01,0x00,0x10,0x20,0x1f,0x00,0x00,0x00,0x00,0x00,0x00 - -, -/* @511 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0xfa,0x02,0xfe,0x00,0x08,0x08,0x88,0x48,0xff,0x08,0x08,0x00 - -, -0x20,0x13,0x0c,0x03,0x04,0x0b,0x10,0x02,0x01,0x10,0x20,0x1f,0x00,0x00,0x00 - -, -/* @512 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x92,0x92,0xfe,0x00,0x8c,0xb4,0x84,0xda,0x82,0x93,0x8a,0x80,0x00 - -, -0x00,0x0f,0x04,0x04,0x17,0x08,0x04,0x02,0x01,0x3f,0x02,0x04,0x18,0x08,0x00 - -, -/* @513 (15x15,V)@ [suki software]*/ -0x00,0x9e,0x12,0xf2,0x9e,0x00,0x8c,0x94,0x84,0xda,0xa2,0x93,0x8a,0x80,0x00 - -, -0x10,0x1f,0x08,0x0f,0x08,0x10,0x08,0x04,0x02,0x3f,0x02,0x04,0x18,0x08,0x00 - -, -/* @514 (15x15,V)@ [suki software]*/ -0x00,0x80,0x8a,0xb2,0x82,0x82,0x86,0xda,0x82,0xa1,0x91,0x8d,0x80,0x80,0x00 - -, -0x10,0x10,0x08,0x04,0x02,0x01,0x00,0x3f,0x01,0x02,0x04,0x08,0x18,0x08,0x00 - -, -/* @515 (15x15,V)@ [suki software]*/ -0x40,0x4a,0x52,0x42,0xee,0x42,0x51,0x4d,0x40,0x10,0x88,0x44,0x22,0x00,0x00 - -, -0x10,0x08,0x06,0x01,0x3f,0x01,0x22,0x24,0x11,0x11,0x08,0x04,0x02,0x00,0x00 - -, -/* @516 (15x15,V)@ [suki software]*/ -0x04,0x24,0x24,0x64,0xa4,0x2f,0x24,0xd4,0x1f,0x94,0x74,0x14,0x06,0x04,0x00 - -, -0x21,0x21,0x11,0x09,0x05,0x03,0x01,0x3f,0x03,0x05,0x09,0x11,0x31,0x11,0x00 - -, -/* @517 (15x15,V)@ [suki software]*/ -0x80,0x42,0xa2,0x5a,0x92,0x57,0xb2,0x82,0xba,0x57,0xd2,0x32,0x12,0x02,0x00 - -, -0x04,0x04,0x22,0x11,0x0a,0x12,0x22,0x1e,0x02,0x02,0x0a,0x11,0x23,0x01,0x00 - -, -/* @518 (15x15,V)@ [suki software]*/ -0xa0,0x90,0x6c,0x48,0xaf,0xda,0xaa,0xd0,0xa2,0xd6,0x8a,0x96,0xa2,0x80,0x00 - -, -0x02,0x02,0x01,0x01,0x3f,0x24,0x15,0x16,0x0c,0x14,0x17,0x28,0x21,0x00,0x00 - -, -/* @519 (15x15,V)@ [suki software]*/ -0x20,0x20,0x28,0xa8,0x6c,0x3a,0xa9,0x68,0x28,0x6a,0xac,0x28,0x20,0x20,0x00 - -, -0x02,0x02,0x21,0x2a,0x2a,0x25,0x14,0x12,0x09,0x08,0x04,0x01,0x03,0x01,0x00 - -, -/* @520 (15x15,V)@ [suki software]*/ -0x88,0x88,0x4a,0xca,0xaa,0x9a,0xee,0x8a,0x9a,0xaa,0xcb,0x4a,0x88,0x88,0x00 - -, -0x00,0x20,0x20,0x27,0x24,0x24,0x1f,0x14,0x14,0x14,0x1f,0x10,0x20,0x00,0x00 - -, -/* @521 (15x15,V)@ [suki software]*/ -0x82,0x62,0xbe,0x22,0xa2,0x62,0xa0,0xa0,0xff,0x50,0x52,0x54,0x50,0x00,0x00 - -, -0x21,0x10,0x09,0x06,0x01,0x20,0x20,0x10,0x11,0x0a,0x04,0x0a,0x11,0x3c,0x00 - -, -/* @522 (15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x10,0xe4,0x9c,0xf7,0x84,0x80,0xfc,0x24,0xe4,0x22,0x22,0x00 - -, -0x00,0x00,0x3f,0x04,0x04,0x04,0x3f,0x22,0x1a,0x07,0x00,0x3f,0x00,0x00,0x00 - -, -/* @523 (15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x08,0x30,0x28,0xac,0x6a,0xb9,0x28,0x6c,0xa8,0x20,0x20,0x00 - -, -0x00,0x00,0x3f,0x00,0x01,0x25,0x2a,0x29,0x14,0x12,0x09,0x04,0x01,0x01,0x00 - -, -/* @524 (15x15,V)@ [suki software]*/ -0x40,0x30,0x00,0xff,0x10,0x08,0xf0,0x00,0x00,0xff,0x00,0x00,0xf0,0x00,0x00 - -, -0x20,0x10,0x0c,0x03,0x04,0x08,0x1f,0x10,0x10,0x1f,0x10,0x10,0x1f,0x00,0x00 - -, -/* @525 (15x15,V)@ [suki software]*/ -0x04,0x04,0x84,0x84,0xcf,0xa4,0x94,0x94,0xa4,0xcf,0x44,0x84,0x86,0x84,0x00 - -, -0x01,0x01,0x00,0x00,0x1f,0x20,0x20,0x24,0x28,0x27,0x20,0x20,0x3c,0x00,0x00 - -, -/* @526 (15x15,V)@ [suki software]*/ -0x40,0x40,0xfc,0x57,0x44,0xfc,0x20,0xd0,0x4c,0x43,0x44,0xc8,0x10,0x20,0x00 - -, -0x20,0x18,0x07,0x11,0x22,0x1f,0x00,0x1f,0x20,0x22,0x24,0x23,0x38,0x00,0x00 - -, -/* @527 (15x15,V)@ [suki software]*/ -0x40,0x40,0x20,0x10,0xc8,0x44,0x43,0x42,0x44,0xc8,0x10,0x20,0x60,0x20,0x00 - -, -0x00,0x00,0x00,0x00,0x1f,0x20,0x20,0x22,0x24,0x23,0x20,0x20,0x3c,0x00,0x00 - -, -/* @528 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x70,0x40,0x20,0xd0,0x4c,0x43,0x44,0xc8,0x10,0x60,0x20,0x00 - -, -0x02,0x3e,0x01,0x00,0x00,0x00,0x1f,0x20,0x22,0x24,0x23,0x20,0x38,0x00,0x00 - -, -/* @529 (15x15,V)@ [suki software]*/ -0x02,0x7a,0x42,0xfa,0x0a,0xef,0xaa,0xea,0xaf,0xfa,0x0a,0x0e,0xca,0x02,0x00 - -, -0x11,0x2f,0x11,0x0f,0x00,0x0f,0x2a,0x2e,0x1b,0x09,0x06,0x09,0x10,0x3c,0x00 - -, -/* @530 (15x15,V)@ [suki software]*/ -0x08,0x88,0xff,0x48,0x08,0xe0,0xae,0xea,0x0a,0xea,0xaf,0xa2,0xe0,0x00,0x00 - -, -0x11,0x20,0x1f,0x00,0x22,0x12,0x0a,0x06,0x3f,0x02,0x06,0x0a,0x32,0x12,0x00 - -, -/* @531 (15x15,V)@ [suki software]*/ -0x24,0xa8,0xff,0xa8,0x24,0x42,0xcc,0x30,0xae,0xa8,0xbf,0xa8,0xa8,0x28,0x00 - -, -0x06,0x01,0x3f,0x00,0x21,0x10,0x0f,0x10,0x27,0x24,0x24,0x24,0x27,0x20,0x00 - -, -/* @532 (15x15,V)@ [suki software]*/ -0x08,0xc8,0xff,0x48,0x82,0xfa,0xaa,0xff,0xaa,0xaa,0xff,0xaa,0xfa,0x02,0x00 - -, -0x03,0x00,0x3f,0x00,0x00,0x00,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x00,0x00,0x00 - -, -/* @533 (15x15,V)@ [suki software]*/ -0x02,0x02,0xfa,0xaa,0xaa,0xff,0xaa,0xaa,0xff,0xaa,0xaa,0xfa,0x02,0x02,0x00 - -, -0x00,0x00,0x00,0x3e,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x3e,0x00,0x00,0x00,0x00 - -, -/* @534 (15x15,V)@ [suki software]*/ -0x00,0x04,0x04,0xf4,0x54,0x5f,0x54,0x54,0x54,0x5f,0xf4,0x04,0x06,0x04,0x00 - -, -0x04,0x04,0x04,0x05,0x05,0x05,0x05,0x3f,0x05,0x05,0x05,0x04,0x06,0x04,0x00 - -, -/* @535 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x02,0xfa,0x0a,0xea,0x0a,0xfa,0x02,0xf2,0x02,0xfb,0x02,0x00 - -, -0x20,0x18,0x07,0x20,0x13,0x08,0x07,0x08,0x13,0x00,0x13,0x20,0x1f,0x00,0x00 - -, -/* @536 (15x15,V)@ [suki software]*/ -0x10,0x28,0x24,0xa7,0xac,0xb4,0xa4,0xf8,0xa4,0xa7,0xac,0xb4,0x26,0x24,0x00 - -, -0x20,0x20,0x10,0x17,0x08,0x04,0x02,0x3f,0x04,0x08,0x08,0x17,0x30,0x10,0x00 - -, -/* @537 (15x15,V)@ [suki software]*/ -0x20,0x10,0xfc,0x03,0xfe,0x02,0xfa,0x02,0xfe,0x00,0xfc,0x00,0xff,0x00,0x00 - -, -0x00,0x00,0x3f,0x00,0x13,0x08,0x07,0x08,0x13,0x00,0x13,0x20,0x1f,0x00,0x00 - -, -/* @538 (15x15,V)@ [suki software]*/ -0x40,0x40,0xfe,0x42,0x42,0xfe,0x40,0x40,0xfe,0x42,0x42,0xff,0x42,0x40,0x00 - -, -0x20,0x18,0x07,0x10,0x20,0x1f,0x20,0x18,0x07,0x10,0x20,0x1f,0x00,0x00,0x00 - -, -/* @539 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x40,0xfe,0x02,0xfa,0x02,0xfe,0x00,0xfc,0x00,0xff,0x00,0x00 - -, -0x02,0x3e,0x01,0x20,0x13,0x08,0x07,0x08,0x33,0x00,0x13,0x20,0x1f,0x00,0x00 - -, -/* @540 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x0a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4f,0x02,0x00,0x00 - -, -0x20,0x18,0x07,0x01,0x11,0x39,0x15,0x13,0x11,0x11,0x15,0x19,0x31,0x01,0x00 - -, -/* @541 (15x15,V)@ [suki software]*/ -0x00,0xbe,0x22,0xe2,0x3e,0x00,0xf8,0xa9,0xce,0xf8,0xcc,0xab,0x88,0xf8,0x00 - -, -0x10,0x3f,0x10,0x0f,0x09,0x09,0x00,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x00,0x00 - -, -/* @542 (15x15,V)@ [suki software]*/ -0x08,0x88,0xff,0x48,0x08,0x94,0x54,0x54,0x14,0xfe,0x12,0x53,0xda,0x10,0x00 - -, -0x11,0x20,0x1f,0x00,0x00,0x3f,0x12,0x12,0x10,0x1f,0x10,0x12,0x3f,0x00,0x00 - -, -/* @543 (15x15,V)@ [suki software]*/ -0x00,0x00,0x02,0x0e,0x32,0xc2,0x0a,0x32,0x82,0x62,0x1f,0x02,0x00,0x00,0x00 - -, -0x20,0x20,0x10,0x10,0x08,0x08,0x05,0x02,0x05,0x08,0x08,0x10,0x30,0x10,0x00 - -, -/* @544 (15x15,V)@ [suki software]*/ -0x04,0x24,0x24,0xa4,0xaf,0x64,0x34,0x24,0xa4,0x2f,0x24,0x34,0x26,0x04,0x00 - -, -0x04,0x04,0x02,0x3f,0x20,0x22,0x22,0x22,0x3f,0x22,0x22,0x23,0x32,0x20,0x00 - -, -/* @545 (15x15,V)@ [suki software]*/ -0x84,0x84,0x84,0x44,0x4f,0x24,0x14,0xcc,0x14,0x2f,0x44,0x44,0x86,0x84,0x00 - -, -0x00,0x10,0x11,0x09,0x05,0x11,0x21,0x1f,0x01,0x05,0x09,0x19,0x00,0x00,0x00 - -, -/* @546 (15x15,V)@ [suki software]*/ -0x00,0x44,0x44,0xe4,0x54,0x4c,0x44,0x7f,0x44,0x4c,0xd4,0x24,0x46,0x44,0x00 - -, -0x00,0x20,0x20,0x2f,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2f,0x20,0x20,0x00,0x00 - -, -/* @547 (15x15,V)@ [suki software]*/ -0x82,0xe2,0x3e,0x22,0xe2,0x44,0xa4,0x94,0x8c,0xff,0x8c,0x94,0x26,0x44,0x00 - -, -0x00,0x1f,0x08,0x08,0x2f,0x20,0x2f,0x2a,0x2a,0x2a,0x2a,0x2f,0x30,0x20,0x00 - -, -/* @548 (15x15,V)@ [suki software]*/ -0x08,0x88,0xff,0x48,0x88,0x84,0x4f,0x24,0xd4,0x14,0x2f,0x44,0x84,0x84,0x00 - -, -0x11,0x20,0x1f,0x00,0x10,0x08,0x15,0x21,0x1f,0x01,0x05,0x09,0x11,0x00,0x00 - -, -/* @549 (15x15,V)@ [suki software]*/ -0x00,0x4c,0xa4,0x5c,0x94,0xd4,0xb5,0x86,0xb4,0x54,0xd4,0x34,0x0c,0x00,0x00 - -, -0x00,0x22,0x12,0x09,0x02,0x12,0x22,0x1e,0x02,0x02,0x0a,0x11,0x21,0x01,0x00 - -, -/* @550 (15x15,V)@ [suki software]*/ -0x00,0x10,0x10,0x08,0x94,0x72,0x10,0x90,0x13,0x14,0xf8,0x08,0x10,0x10,0x00 - -, -0x00,0x00,0x3d,0x21,0x20,0x20,0x3e,0x20,0x21,0x21,0x20,0x3c,0x00,0x00,0x00 - -, -/* @551 (15x15,V)@ [suki software]*/ -0x00,0x84,0xa4,0xa5,0xa6,0xe4,0xbc,0xa4,0xa4,0xa6,0xa5,0xa4,0x84,0x80,0x00 - -, -0x10,0x10,0x08,0x24,0x23,0x22,0x22,0x22,0x3e,0x22,0x22,0x22,0x30,0x20,0x00 - -, -/* @552 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x10,0x4c,0x44,0x44,0xe5,0x26,0x24,0x24,0x94,0x0c,0x00 - -, -0x00,0x00,0x1f,0x10,0x0a,0x02,0x02,0x02,0x1f,0x21,0x21,0x21,0x21,0x39,0x00 - -, -/* @553 (15x15,V)@ [suki software]*/ -0x08,0x08,0xff,0x88,0x48,0x00,0xfc,0x24,0xa4,0xa4,0xe2,0x23,0x32,0x20,0x00 - -, -0x11,0x21,0x1f,0x00,0x20,0x18,0x07,0x00,0x00,0x00,0x3f,0x01,0x02,0x04,0x00 - -, -/* @554 (15x15,V)@ [suki software]*/ -0x00,0x40,0x7c,0x40,0x7f,0x28,0xa8,0x00,0x3f,0x48,0x48,0x44,0x74,0x00,0x00 - -, -0x21,0x21,0x11,0x09,0x05,0x03,0x3f,0x01,0x03,0x05,0x09,0x11,0x31,0x10,0x00 - -, -/* @555 (15x15,V)@ [suki software]*/ -0x48,0x48,0x34,0xa2,0x55,0x88,0x04,0x10,0x10,0x90,0x50,0xff,0x10,0x10,0x00 - -, -0x08,0x0a,0x15,0x22,0x21,0x1f,0x04,0x02,0x01,0x10,0x20,0x1f,0x00,0x00,0x00 - -, -/* @556 (15x15,V)@ [suki software]*/ -0x08,0x88,0xff,0x48,0x08,0x10,0x7c,0x4b,0xca,0x7a,0xce,0x48,0x78,0x00,0x00 - -, -0x11,0x20,0x1f,0x00,0x02,0x02,0x02,0x11,0x14,0x14,0x25,0x2a,0x02,0x03,0x00 - -, -/* @557 (15x15,V)@ [suki software]*/ -0x08,0x08,0xff,0x88,0x48,0x20,0xac,0x6a,0xb9,0x28,0x6a,0xac,0x28,0x20,0x00 - -, -0x11,0x21,0x1f,0x00,0x01,0x25,0x2a,0x29,0x14,0x12,0x08,0x04,0x01,0x01,0x00 - -, -/* @558 (15x15,V)@ [suki software]*/ -0xf8,0x08,0xff,0x08,0xf8,0x00,0xf8,0xa9,0xae,0xf8,0xac,0xab,0xf8,0x00,0x00 - -, -0x11,0x11,0x0f,0x09,0x0d,0x18,0x05,0x04,0x04,0x3f,0x04,0x04,0x05,0x04,0x00 - -, -/* @559 (15x15,V)@ [suki software]*/ -0x60,0x18,0xcf,0x28,0x18,0x08,0x7c,0x4b,0xca,0x7a,0xce,0x48,0x78,0x00,0x00 - -, -0x00,0x00,0x3f,0x10,0x08,0x02,0x02,0x11,0x14,0x14,0x29,0x22,0x02,0x03,0x00 - -, -/* @560 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe2,0x06,0x10,0x78,0x4c,0xcb,0x7a,0xce,0x4a,0x78,0x00,0x80,0x00 - -, -0x00,0x00,0x1f,0x10,0x0a,0x02,0x01,0x14,0x14,0x15,0x2a,0x02,0x02,0x03,0x00 - -, -/* @561 (15x15,V)@ [suki software]*/ -0x00,0x30,0xac,0x63,0x30,0x00,0xfc,0x04,0xf5,0x56,0xf4,0x54,0xf6,0x04,0x00 - -, -0x00,0x13,0x12,0x09,0x29,0x18,0x27,0x20,0x25,0x25,0x3f,0x25,0x25,0x20,0x00 - -, -/* @562 (15x15,V)@ [suki software]*/ -0x20,0x38,0xe7,0x24,0x24,0x00,0xc4,0x4c,0x54,0x45,0x66,0x54,0x4c,0x44,0x00 - -, -0x01,0x01,0x1f,0x11,0x29,0x10,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 - -, -/* @563 (15x15,V)@ [suki software]*/ -0x00,0x04,0xc4,0x44,0x4c,0x74,0x45,0x46,0x64,0x5c,0x44,0x44,0x44,0x44,0x00 - -, -0x20,0x18,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 - -, -/* @564 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x01,0xf6,0x50,0x5a,0xf2,0x52,0x5a,0xf2,0x02,0x02,0xfe,0x00,0x00 - -, -0x00,0x3f,0x04,0x05,0x05,0x05,0x1f,0x05,0x05,0x05,0x14,0x20,0x1f,0x00,0x00 - -, -/* @565 (15x15,V)@ [suki software]*/ -0x02,0xfa,0xba,0xab,0xba,0x8a,0xfa,0x00,0xfa,0x0a,0xee,0x0a,0xfb,0x02,0x00 - -, -0x20,0x20,0x2f,0x2a,0x1a,0x1f,0x10,0x20,0x17,0x08,0x07,0x08,0x17,0x20,0x00 - -, -/* @566 (15x15,V)@ [suki software]*/ -0x00,0x00,0x80,0xbe,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xbf,0x82,0x00,0x00 - -, -0x00,0x00,0x3f,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x3f,0x00,0x00 - -, -/* @567 (15x15,V)@ [suki software]*/ -0x20,0x22,0x14,0x88,0xf7,0x00,0x80,0xbe,0xaa,0xaa,0xaa,0xaa,0xbf,0x82,0x00 - -, -0x02,0x12,0x21,0x10,0x0f,0x00,0x3f,0x14,0x14,0x14,0x14,0x14,0x14,0x3f,0x00 - -, -}, -//************************************** - -{ -/* @568 (15x15,V)@ [suki software]*/ -0x10,0x10,0xff,0x10,0x10,0x02,0x62,0x52,0xca,0x46,0xc3,0x42,0xe0,0x40,0x00 - -, -0x04,0x0c,0x07,0x02,0x0a,0x24,0x12,0x09,0x04,0x12,0x21,0x10,0x0f,0x00,0x00 - -, -/* @569 (15x15,V)@ [suki software]*/ -0x00,0x20,0x18,0x4a,0x4c,0x48,0x48,0x4f,0x48,0x48,0x4c,0x0a,0x28,0x18,0x00 - -, -0x00,0x01,0x11,0x31,0x19,0x15,0x13,0x11,0x11,0x15,0x19,0x31,0x01,0x00,0x00 - -, -/* @570 (15x15,V)@ [suki software]*/ -0x20,0x18,0x08,0x0a,0xec,0xa8,0xa8,0xaf,0xa8,0xa8,0xec,0x0a,0x28,0x18,0x00 - -, -0x00,0x00,0x00,0x1e,0x02,0x02,0x02,0x3f,0x02,0x02,0x12,0x1e,0x00,0x00,0x00 - -, -/* @571 (15x15,V)@ [suki software]*/ -0x40,0x40,0x40,0xff,0x40,0x60,0xd0,0x48,0x44,0x42,0x43,0x40,0x40,0x00,0x00 - -, -0x00,0x00,0x00,0x3f,0x10,0x10,0x08,0x09,0x02,0x04,0x08,0x08,0x10,0x10,0x00 - -, -/* @572 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x47,0x30,0x92,0x9c,0x90,0x9f,0x90,0x98,0x96,0x50,0x30,0x00 - -, -0x00,0x00,0x3f,0x00,0x02,0x32,0x2a,0x26,0x22,0x22,0x2a,0x32,0x02,0x02,0x00 - -, -/* @573 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x92,0x92,0xfe,0x00,0x42,0x62,0xd2,0x4a,0xc6,0x43,0xe2,0x40,0x00 - -, -0x30,0x0f,0x10,0x20,0x1f,0x04,0x12,0x09,0x04,0x12,0x21,0x10,0x0f,0x00,0x00 - -, -/* @574 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x03,0x02,0x00 - -, -0x20,0x18,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 - -, -/* @575 (15x15,V)@ [suki software]*/ -0x00,0xe2,0x2c,0xa0,0xbf,0xa0,0x28,0xe6,0x20,0xf8,0x0f,0x08,0xf8,0x08,0x00 - -, -0x00,0x3f,0x00,0x07,0x04,0x17,0x20,0x1f,0x10,0x0b,0x04,0x0b,0x10,0x20,0x00 - -, -/* @576 (15x15,V)@ [suki software]*/ -0x00,0xf8,0x28,0xff,0x28,0xf8,0x02,0x42,0xe2,0x52,0x4a,0xc7,0x42,0xc0,0x00 - -, -0x00,0x01,0x01,0x3f,0x01,0x09,0x24,0x12,0x09,0x04,0x12,0x21,0x10,0x0f,0x00 - -, -/* @577 (15x15,V)@ [suki software]*/ -0xfc,0x04,0x04,0xfc,0x00,0x80,0xbe,0xaa,0xaa,0xaa,0xaa,0xbf,0x82,0x00,0x00 - -, -0x03,0x01,0x01,0x01,0x00,0x3f,0x14,0x14,0x14,0x14,0x14,0x14,0x3f,0x00,0x00 - -, -/* @578 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x00,0x80,0xbe,0xaa,0xaa,0xaa,0xaa,0xbf,0x82,0x00,0x00 - -, -0x00,0x00,0x3f,0x00,0x00,0x3f,0x14,0x14,0x14,0x14,0x14,0x14,0x3f,0x00,0x00 - -, -/* @579 (15x15,V)@ [suki software]*/ -0x20,0xa4,0x24,0xff,0x24,0x24,0x00,0x22,0x92,0x8e,0xa2,0xa2,0x9f,0x02,0x00 - -, -0x30,0x0f,0x04,0x0f,0x11,0x11,0x21,0x20,0x2f,0x24,0x24,0x24,0x2f,0x20,0x00 - -, -/* @580 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x08,0xc0,0x38,0x00,0xff,0x00,0x08,0x10,0x60,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x20,0x20,0x10,0x10,0x0b,0x04,0x02,0x01,0x00,0x00 - -, -/* @581 (15x15,V)@ [suki software]*/ -0x40,0x30,0xef,0x24,0x24,0x04,0x40,0x38,0x00,0xff,0x00,0x08,0x90,0x20,0x00 - -, -0x01,0x01,0x3f,0x11,0x09,0x21,0x20,0x10,0x10,0x09,0x04,0x02,0x01,0x00,0x00 - -, -/* @582 (15x15,V)@ [suki software]*/ -0x04,0xf4,0x54,0x54,0x5f,0x54,0xf4,0x00,0xfe,0x12,0x12,0x12,0xff,0x02,0x00 - -, -0x04,0x05,0x05,0x05,0x3f,0x05,0x25,0x18,0x07,0x01,0x11,0x21,0x1f,0x00,0x00 - -, -/* @583 (15x15,V)@ [suki software]*/ -0xfc,0x04,0xfc,0x00,0xf4,0x54,0x5f,0xf4,0x00,0xfe,0x12,0x12,0xff,0x02,0x00 - -, -0x07,0x02,0x03,0x04,0x05,0x05,0x3f,0x25,0x14,0x0f,0x11,0x21,0x1f,0x00,0x00 - -, -/* @584 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x00,0xf4,0x54,0x5f,0xf4,0x04,0xfe,0x12,0x12,0xff,0x02,0x00 - -, -0x02,0x3e,0x01,0x04,0x05,0x05,0x3f,0x25,0x14,0x0f,0x01,0x21,0x3f,0x00,0x00 - -, -/* @585 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0xf6,0x59,0x50,0x56,0xf9,0x50,0x50,0x56,0xf9,0x00,0x00,0x00 - -, -0x00,0x24,0x24,0x15,0x15,0x0d,0x05,0x3f,0x05,0x0d,0x15,0x15,0x24,0x24,0x00 - -, -/* @586 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0x04,0xfc,0x80,0x60,0x18,0x00,0xff,0x00,0x08,0x90,0x20,0x00 - -, -0x00,0x07,0x01,0x21,0x23,0x20,0x10,0x10,0x08,0x09,0x04,0x02,0x01,0x00,0x00 - -, -/* @587 (15x15,V)@ [suki software]*/ -0x40,0x30,0x00,0xff,0x10,0x88,0x60,0x18,0x00,0xff,0x00,0x08,0x90,0x20,0x00 - -, -0x20,0x10,0x0c,0x03,0x04,0x28,0x20,0x10,0x10,0x09,0x04,0x02,0x01,0x00,0x00 - -, -/* @588 (15x15,V)@ [suki software]*/ -0x04,0x04,0x44,0x64,0x5c,0x47,0x44,0xf4,0x44,0x44,0x44,0x44,0x06,0x04,0x00 - -, -0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x3f,0x04,0x04,0x04,0x04,0x06,0x04,0x00 - -, -/* @589 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x48,0xf0,0x00,0x00,0xff,0x40,0x40,0x60,0x40,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x10,0x1f,0x10,0x10,0x1f,0x10,0x10,0x10,0x10,0x00 - -, -/* @590 (15x15,V)@ [suki software]*/ -0x10,0x10,0xff,0x90,0x04,0xb4,0xad,0xa6,0xb4,0x24,0xf8,0x0f,0xf8,0x08,0x00 - -, -0x12,0x21,0x1f,0x00,0x00,0x3f,0x0a,0x2a,0x3f,0x20,0x19,0x06,0x19,0x20,0x00 - -, -/* @591 (15x15,V)@ [suki software]*/ -0x00,0x0c,0x6b,0xaa,0xff,0xaa,0xaa,0xea,0x80,0xbe,0x80,0x40,0x7f,0x00,0x00 - -, -0x08,0x08,0x0a,0x0a,0x0a,0x0a,0x2a,0x3f,0x0a,0x0a,0x0a,0x0a,0x08,0x08,0x00 - -, -/* @592 (15x15,V)@ [suki software]*/ -0x90,0x48,0xe4,0x1b,0x20,0x20,0xff,0x10,0x14,0x04,0xfc,0x04,0x04,0xfc,0x00 - -, -0x00,0x00,0x3f,0x00,0x00,0x00,0x27,0x12,0x09,0x06,0x11,0x20,0x10,0x0f,0x00 - -, -/* @593 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x00,0xb4,0xad,0xa6,0xb4,0x24,0xf8,0x0f,0x88,0x78,0x08,0x00 - -, -0x02,0x3e,0x01,0x00,0x3f,0x0a,0x2a,0x3f,0x10,0x09,0x06,0x09,0x10,0x20,0x00 - -, -/* @594 (15x15,V)@ [suki software]*/ -0x08,0xc8,0xff,0x28,0x40,0x88,0xff,0x48,0x88,0xfe,0x02,0x62,0x9a,0x06,0x00 - -, -0x03,0x00,0x3f,0x00,0x01,0x00,0x3f,0x00,0x00,0x3f,0x04,0x08,0x08,0x07,0x00 - -, -/* @595 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x22,0x22,0x22,0x22,0x3e,0x22,0x22,0x22,0xf3,0x22,0x00,0x00 - -, -0x00,0x00,0x3f,0x21,0x21,0x21,0x21,0x3f,0x21,0x21,0x21,0x23,0x30,0x20,0x00 - -, -/* @596 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x42,0x52,0xd2,0x52,0xd2,0x52,0x52,0x5a,0x53,0x42,0x00,0x00 - -, -0x20,0x18,0x07,0x00,0x00,0x3f,0x10,0x09,0x02,0x04,0x0a,0x11,0x30,0x10,0x00 - -, -/* @597 (15x15,V)@ [suki software]*/ -0x40,0x20,0x10,0x0c,0x00,0x00,0xbf,0x00,0x00,0x04,0x08,0x10,0x30,0x00,0x00 - -, -0x20,0x22,0x22,0x22,0x22,0x22,0x3f,0x22,0x22,0x22,0x22,0x23,0x32,0x20,0x00 - -, -/* @598 (15x15,V)@ [suki software]*/ -0x00,0x00,0xe0,0x3e,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xbf,0x22,0x00,0x00 - -, -0x20,0x10,0x0f,0x02,0x3e,0x22,0x12,0x16,0x0a,0x0a,0x16,0x12,0x22,0x20,0x00 - -, -/* @599 (15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x08,0x10,0x20,0x18,0x08,0xc8,0xbf,0x08,0x08,0x28,0x18,0x00 - -, -0x00,0x00,0x3f,0x00,0x20,0x10,0x08,0x06,0x01,0x1f,0x20,0x20,0x20,0x38,0x00 - -, -/* @600 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x08,0x06,0xe2,0x22,0x22,0x22,0xe2,0x02,0x0a,0x06,0x00 - -, -0x02,0x3e,0x01,0x20,0x10,0x08,0x07,0x00,0x00,0x00,0x1f,0x20,0x20,0x3c,0x00 - -, -/* @601 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0x7a,0x86,0x04,0xc4,0xbc,0x87,0xf4,0x84,0x84,0x84,0x04,0x00 - -, -0x00,0x3f,0x02,0x04,0x13,0x08,0x06,0x10,0x20,0x1f,0x00,0x02,0x04,0x18,0x00 - -, -/* @602 (15x15,V)@ [suki software]*/ -0x20,0xa4,0x24,0xff,0x24,0x24,0x10,0x48,0x44,0x23,0xa4,0x88,0x10,0x10,0x00 - -, -0x30,0x0f,0x04,0x0f,0x11,0x11,0x20,0x2a,0x2a,0x25,0x24,0x22,0x22,0x20,0x00 - -, -/* @603 (15x15,V)@ [suki software]*/ -0x08,0x88,0x49,0xee,0x98,0x40,0x10,0x50,0x90,0x10,0x10,0xff,0x10,0x10,0x00 - -, -0x01,0x00,0x00,0x3f,0x00,0x03,0x00,0x00,0x01,0x10,0x20,0x1f,0x00,0x00,0x00 - -, -/* @604 (15x15,V)@ [suki software]*/ -0x10,0x10,0xff,0x90,0x50,0x00,0x9a,0xec,0xa8,0xaf,0xa8,0xec,0x8a,0x18,0x00 - -, -0x12,0x21,0x1f,0x00,0x00,0x08,0x0a,0x0a,0x2a,0x3f,0x0a,0x0a,0x0a,0x08,0x00 - -, -/* @605 (15x15,V)@ [suki software]*/ -0x14,0x14,0x94,0xfe,0x53,0x92,0x20,0x98,0x0f,0xe8,0x08,0xa8,0x1c,0x08,0x00 - -, -0x04,0x03,0x00,0x3f,0x00,0x09,0x06,0x11,0x20,0x1f,0x00,0x00,0x03,0x0c,0x00 - -, -/* @606 (15x15,V)@ [suki software]*/ -0x10,0x10,0xff,0x10,0x10,0xf8,0x48,0x48,0xc8,0x3f,0xc8,0x09,0x0e,0xc8,0x00 - -, -0x04,0x04,0x03,0x22,0x18,0x07,0x04,0x28,0x27,0x10,0x0b,0x0c,0x13,0x3c,0x00 - -, -/* @607 (15x15,V)@ [suki software]*/ -0x08,0xc8,0xff,0x28,0x84,0x4a,0xb2,0xae,0xa0,0xa7,0xba,0xa9,0x44,0x40,0x00 - -, -0x03,0x00,0x3f,0x00,0x20,0x20,0x2b,0x32,0x22,0x32,0x2a,0x23,0x20,0x20,0x00 - -, -/* @608 (15x15,V)@ [suki software]*/ -0x00,0x00,0xf8,0x48,0x48,0xc8,0x08,0x7f,0x88,0x08,0x0a,0xcc,0x08,0x08,0x00 - -, -0x20,0x18,0x07,0x08,0x08,0x2f,0x20,0x10,0x0b,0x04,0x0b,0x10,0x20,0x3c,0x00 - -, -/* @609 (15x15,V)@ [suki software]*/ -0x00,0x00,0x80,0xbe,0x92,0x92,0x92,0x92,0x92,0x92,0xbf,0x82,0x80,0x00,0x00 - -, -0x00,0x20,0x20,0x24,0x24,0x24,0x24,0x3f,0x24,0x24,0x24,0x24,0x30,0x20,0x00 - -, -/* @610 (15x15,V)@ [suki software]*/ -0x00,0x28,0x28,0xaa,0xfa,0x0a,0x0a,0xfe,0x09,0xf9,0x49,0x48,0x28,0x88,0x00 - -, -0x00,0x11,0x11,0x08,0x05,0x02,0x01,0x3f,0x01,0x02,0x05,0x09,0x11,0x11,0x00 - -, -/* @611 (15x15,V)@ [suki software]*/ -0x10,0x12,0xd2,0xfe,0x93,0x12,0x80,0xbe,0x92,0x92,0x92,0x92,0xbe,0x80,0x00 - -, -0x04,0x03,0x00,0x3f,0x00,0x21,0x24,0x24,0x24,0x3f,0x24,0x24,0x24,0x20,0x00 - -, -/* @612 (15x15,V)@ [suki software]*/ -0x00,0x48,0x24,0xf2,0x09,0x02,0xfa,0x02,0x02,0xfe,0x12,0x12,0x12,0x00,0x00 - -, -0x00,0x10,0x0c,0x01,0x1c,0x21,0x23,0x2d,0x21,0x21,0x39,0x05,0x09,0x01,0x00 - -, -/* @613 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x46,0xaa,0xb2,0xae,0xa0,0xaf,0x94,0x2a,0x44,0x40,0x00 - -, -0x02,0x3e,0x01,0x20,0x20,0x23,0x2a,0x32,0x22,0x32,0x2b,0x20,0x20,0x20,0x00 - -, -/* @614 (15x15,V)@ [suki software]*/ -0x20,0x20,0xe2,0x0c,0x00,0xf8,0x48,0xc8,0x08,0xff,0x08,0x8a,0x6c,0x08,0x00 - -, -0x00,0x00,0x0f,0x24,0x18,0x07,0x08,0x27,0x10,0x09,0x06,0x09,0x10,0x3c,0x00 - -, -/* @615 (15x15,V)@ [suki software]*/ -0x00,0x10,0x12,0xf2,0x22,0xa2,0xfa,0xaa,0xa6,0x3b,0xc2,0x20,0x10,0x00,0x00 - -, -0x10,0x08,0x06,0x01,0x04,0x24,0x3f,0x04,0x04,0x04,0x01,0x06,0x08,0x10,0x00 - -, -/* @616 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x00,0x40,0x5e,0x52,0xd2,0x52,0x52,0x5f,0x42,0x00,0x00 - -, -0x10,0x08,0x07,0x08,0x10,0x14,0x25,0x25,0x27,0x25,0x25,0x25,0x24,0x24,0x00 - -, -/* @617 (15x15,V)@ [suki software]*/ -0x02,0xfa,0x82,0x82,0xfe,0x80,0x00,0x7c,0x54,0x7f,0x54,0x54,0x7e,0x04,0x00 - -, -0x04,0x04,0x12,0x22,0x10,0x0f,0x01,0x05,0x17,0x25,0x25,0x15,0x0d,0x01,0x00 - -, -/* @618 (15x15,V)@ [suki software]*/ -0x14,0x14,0xd4,0xfe,0x53,0x12,0x08,0x72,0x02,0xfe,0x02,0x62,0x1a,0x00,0x00 - -, -0x04,0x03,0x00,0x3f,0x00,0x01,0x01,0x01,0x01,0x3f,0x01,0x01,0x01,0x01,0x00 - -, -/* @619 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0x04,0xfc,0x20,0x50,0x4c,0x4b,0x48,0xe8,0x48,0x0c,0x08,0x00 - -, -0x00,0x07,0x02,0x02,0x07,0x00,0x18,0x24,0x22,0x21,0x20,0x20,0x20,0x3c,0x00 - -, -/* @620 (15x15,V)@ [suki software]*/ -0x08,0x30,0x80,0xfc,0x44,0x3c,0xe4,0x25,0x26,0x04,0xf4,0x14,0xf6,0x04,0x00 - -, -0x21,0x11,0x0c,0x23,0x11,0x0d,0x03,0x05,0x19,0x00,0x1f,0x08,0x1f,0x00,0x00 - -, -/* @621 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x20,0x24,0x24,0x24,0x3f,0xe4,0x24,0x24,0x20,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x01,0x03,0x0d,0x01,0x21,0x3f,0x01,0x01,0x01,0x00 - -, -/* @622 (15x15,V)@ [suki software]*/ -0x80,0x80,0xbe,0xaa,0xaa,0xaa,0xbe,0x80,0x00,0xff,0x20,0x10,0x18,0x00,0x00 - -, -0x30,0x0e,0x08,0x10,0x1f,0x22,0x22,0x22,0x20,0x23,0x24,0x24,0x24,0x27,0x00 - -, -/* @623 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x40,0xfc,0x20,0x20,0xff,0x10,0x10,0xf8,0x10,0x00,0x00 - -, -0x02,0x3e,0x01,0x00,0x00,0x1f,0x20,0x20,0x27,0x20,0x22,0x23,0x20,0x38,0x00 - -, -/* @624 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x00,0x00,0xfe,0x22,0x22,0xa2,0x22,0x3f,0x02,0x00,0x00 - -, -0x10,0x08,0x07,0x08,0x14,0x12,0x11,0x10,0x10,0x10,0x11,0x12,0x14,0x10,0x00 - -, -/* @625 (15x15,V)@ [suki software]*/ -0x02,0xe2,0x22,0x22,0x3e,0x40,0xfc,0x20,0x20,0xff,0x10,0x10,0xf8,0x10,0x00 - -, -0x00,0x11,0x21,0x11,0x0f,0x00,0x1f,0x20,0x20,0x27,0x21,0x22,0x21,0x3c,0x00 - -, -/* @626 (15x15,V)@ [suki software]*/ -0x02,0xfa,0x82,0x82,0xff,0x82,0x20,0xfc,0x10,0xff,0x10,0x08,0xf8,0x00,0x00 - -, -0x04,0x04,0x12,0x22,0x10,0x0f,0x00,0x1f,0x20,0x27,0x21,0x22,0x21,0x38,0x00 - -, -/* @627 (15x15,V)@ [suki software]*/ -0x02,0x02,0xfe,0x92,0x92,0xfe,0x02,0xf0,0x00,0x00,0xff,0x20,0x20,0x20,0x00 - -, -0x08,0x08,0x07,0x04,0x04,0x3f,0x12,0x1f,0x10,0x10,0x1f,0x10,0x10,0x10,0x00 - -, -/* @628 (15x15,V)@ [suki software]*/ -0x20,0x20,0xa0,0x3e,0x20,0x20,0x20,0xff,0x24,0x24,0x26,0xa4,0x30,0x20,0x00 - -, -0x00,0x00,0x3f,0x20,0x28,0x24,0x22,0x21,0x22,0x2c,0x20,0x3f,0x00,0x00,0x00 - -, -/* @629 (15x15,V)@ [suki software]*/ -0x80,0x40,0xf0,0x0c,0x83,0x90,0x88,0x54,0xa7,0x24,0x14,0x0c,0x04,0x00,0x00 - -, -0x00,0x00,0x3f,0x00,0x20,0x24,0x22,0x23,0x15,0x11,0x09,0x05,0x03,0x01,0x00 - -, -/* @630 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0xfe,0x22,0x22,0x22,0xe2,0x22,0x22,0x22,0x3f,0x02,0x00,0x00 - -, -0x20,0x10,0x0c,0x03,0x00,0x00,0x00,0x00,0x03,0x04,0x08,0x10,0x30,0x10,0x00 - -, -/* @631 (15x15,V)@ [suki software]*/ -0x20,0x20,0x24,0xa4,0x24,0xe4,0x24,0x3f,0x24,0xe4,0xa4,0x26,0x34,0x20,0x00 - -, -0x00,0x24,0x22,0x11,0x08,0x07,0x00,0x10,0x20,0x1f,0x00,0x01,0x02,0x0c,0x00 - -, -/* @632 (15x15,V)@ [suki software]*/ -0x48,0xc8,0x7f,0x48,0xc8,0x02,0x9a,0x42,0xfe,0x00,0x8a,0x52,0xfe,0x00,0x00 - -, -0x20,0x11,0x0a,0x04,0x0b,0x10,0x14,0x28,0x27,0x20,0x24,0x28,0x27,0x20,0x00 - -, -/* @633 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0xfc,0x24,0x24,0xa4,0xa4,0xe2,0x22,0x23,0x22,0x30,0x20,0x00 - -, -0x20,0x10,0x0c,0x03,0x00,0x00,0x00,0x00,0x3f,0x01,0x01,0x02,0x06,0x00,0x00 - -, -/* @634 (15x15,V)@ [suki software]*/ -0x40,0x30,0x00,0xff,0x10,0x08,0x00,0xfe,0x42,0x42,0x42,0x42,0xff,0x02,0x00 - -, -0x20,0x10,0x0c,0x03,0x04,0x28,0x10,0x08,0x06,0x00,0x00,0x02,0x0c,0x30,0x00 - -, -/* @635 (15x15,V)@ [suki software]*/ -0x00,0x04,0x44,0x44,0x64,0xd4,0x4d,0x46,0xc4,0x54,0x64,0xc4,0x06,0x04,0x00 - -, -0x00,0x20,0x10,0x08,0x04,0x03,0x00,0x00,0x1f,0x20,0x20,0x20,0x20,0x38,0x00 - -, -/* @636 (15x15,V)@ [suki software]*/ -0x02,0x04,0x8c,0x60,0x00,0xf8,0x88,0x88,0x88,0xff,0x88,0x88,0xfc,0x08,0x00 - -, -0x02,0x3e,0x01,0x00,0x00,0x01,0x00,0x00,0x00,0x3f,0x00,0x00,0x01,0x00,0x00 - -, -/* @637 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0xf8,0x08,0x08,0x08,0xff,0x08,0x08,0x08,0xfc,0x08,0x00,0x00 - -, -0x00,0x10,0x30,0x11,0x11,0x11,0x11,0x1f,0x11,0x11,0x11,0x15,0x18,0x30,0x00 - -, -/* @638 (15x15,V)@ [suki software]*/ -0x80,0x60,0x2e,0xa8,0xa8,0xa8,0xa8,0xbf,0xa8,0xa8,0xa8,0x28,0xae,0x60,0x00 - -, -0x00,0x22,0x12,0x0a,0x02,0x12,0x22,0x1e,0x02,0x02,0x0a,0x12,0x32,0x00,0x00 - -, -/* @639 (15x15,V)@ [suki software]*/ -0x10,0x4c,0x44,0x44,0x44,0xf4,0x45,0xc6,0x54,0x64,0x44,0x44,0x54,0x0c,0x00 - -, -0x20,0x20,0x10,0x08,0x16,0x11,0x08,0x1f,0x24,0x22,0x21,0x20,0x20,0x38,0x00 - -, -/* @640 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x08,0xf0,0x10,0x10,0xff,0x10,0x10,0xf8,0x10,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x00,0x3f,0x11,0x11,0x1f,0x11,0x11,0x3f,0x00,0x00 - -, -/* @641 (15x15,V)@ [suki software]*/ -0x02,0xfa,0x8e,0x7a,0x8e,0xfa,0x82,0x40,0xfe,0x40,0xfc,0x40,0xff,0x00,0x00 - -, -0x00,0x3f,0x12,0x12,0x12,0x1f,0x20,0x18,0x07,0x00,0x1f,0x00,0x3f,0x00,0x00 - -, -/* @642 (15x15,V)@ [suki software]*/ -0xfc,0x44,0xfc,0x44,0xfc,0x00,0x54,0xd4,0x74,0x5f,0x54,0xd4,0x54,0x44,0x00 - -, -0x0f,0x04,0x07,0x04,0x0f,0x04,0x02,0x01,0x05,0x09,0x21,0x3f,0x01,0x01,0x00 - -, -/* @643 (15x15,V)@ [suki software]*/ -0x00,0x9e,0x12,0xf2,0x92,0x9e,0x44,0x54,0xd4,0x7f,0x54,0xd4,0x54,0x44,0x00 - -, -0x08,0x1f,0x08,0x07,0x14,0x0a,0x04,0x03,0x06,0x0a,0x22,0x3f,0x02,0x02,0x00 - -, -/* @644 (15x15,V)@ [suki software]*/ -0x10,0x12,0x92,0xfe,0x91,0x11,0xfe,0x22,0xaa,0xbe,0xaa,0x22,0xff,0x02,0x00 - -, -0x04,0x03,0x00,0x3f,0x20,0x11,0x0f,0x00,0x07,0x04,0x17,0x20,0x1f,0x00,0x00 - -, -/* @645 (15x15,V)@ [suki software]*/ -0x90,0x52,0x32,0xfe,0x51,0x91,0x20,0x98,0x60,0x1f,0x20,0x50,0x88,0x00,0x00 - -, -0x00,0x10,0x0c,0x01,0x1c,0x20,0x21,0x24,0x28,0x20,0x38,0x02,0x0c,0x01,0x00 - -, -/* @646 (15x15,V)@ [suki software]*/ -0x10,0x08,0x54,0x53,0x56,0xd2,0x7a,0x50,0x54,0x53,0x56,0x5a,0x12,0x02,0x00 - -, -0x21,0x11,0x09,0x05,0x07,0x0d,0x15,0x05,0x05,0x25,0x3f,0x05,0x05,0x01,0x00 - -, -/* @647 (15x15,V)@ [suki software]*/ -0x80,0x40,0xf0,0x0c,0x13,0x10,0x10,0xff,0x10,0x10,0xf8,0x10,0x00,0x00,0x00 - -, -0x00,0x00,0x3f,0x00,0x20,0x10,0x0c,0x03,0x00,0x00,0x1f,0x20,0x20,0x38,0x00 - -, -/* @648 (15x15,V)@ [suki software]*/ -0x20,0x30,0xac,0x63,0x10,0x00,0xfe,0x52,0x52,0x7e,0x52,0x52,0xff,0x02,0x00 - -, -0x09,0x1b,0x09,0x05,0x25,0x18,0x07,0x00,0x07,0x05,0x17,0x20,0x1f,0x00,0x00 - -, -/* @649 (15x15,V)@ [suki software]*/ -0xfe,0x22,0x22,0xfe,0x14,0x14,0xfc,0x92,0x52,0x20,0xff,0x20,0x10,0x08,0x00 - -, -0x1f,0x09,0x09,0x1f,0x02,0x01,0x3f,0x20,0x11,0x0e,0x01,0x06,0x18,0x20,0x00 - -, -/* @650 (15x15,V)@ [suki software]*/ -0x00,0x00,0x42,0x42,0xc2,0x7e,0x42,0x42,0x42,0x42,0xc2,0x7e,0x00,0x00,0x00 - -, -0x10,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x00 - -, -/* @651 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0xfe,0xaa,0xaa,0xab,0xaa,0xaa,0xaa,0xfe,0x00,0x00,0x00,0x00 - -, -0x22,0x22,0x22,0x12,0x0a,0x06,0x03,0x06,0x0a,0x13,0x12,0x22,0x22,0x22,0x00 - -, -/* @652 (15x15,V)@ [suki software]*/ -0x08,0x88,0x49,0xee,0x98,0x40,0x24,0x04,0xfc,0x04,0x04,0x04,0xfe,0x04,0x00 - -, -0x01,0x00,0x00,0x3f,0x00,0x21,0x10,0x0c,0x03,0x00,0x10,0x20,0x1f,0x00,0x00 - -, -/* @653 (15x15,V)@ [suki software]*/ -0x00,0x00,0x7c,0x40,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0x7c,0x00,0x00,0x00 - -, -0x00,0x00,0x1f,0x10,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x10,0x3f,0x00,0x00 - -, -/* @654 (15x15,V)@ [suki software]*/ -0x08,0xc8,0xff,0x28,0x40,0xfe,0x0a,0xea,0x2a,0xea,0x8a,0x22,0xfe,0x22,0x00 - -, -0x03,0x00,0x3f,0x10,0x08,0x07,0x10,0x15,0x09,0x0d,0x08,0x21,0x3f,0x00,0x00 - -, -/* @655 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x0a,0xea,0xaa,0xaa,0xea,0x8a,0x22,0x22,0xfe,0x23,0x22,0x00 - -, -0x20,0x18,0x07,0x10,0x16,0x10,0x0c,0x0a,0x08,0x11,0x22,0x1f,0x00,0x00,0x00 - -, -/* @656 (15x15,V)@ [suki software]*/ -0x00,0xbe,0x12,0xf2,0x1e,0x00,0x82,0x97,0x92,0xfa,0xd7,0xb2,0x92,0x82,0x00 - -, -0x10,0x1f,0x10,0x0f,0x09,0x05,0x02,0x3e,0x2b,0x2a,0x2a,0x2a,0x3e,0x00,0x00 - -, -/* @657 (15x15,V)@ [suki software]*/ -0x20,0x38,0xef,0x28,0x08,0xfe,0x92,0x92,0xfe,0x10,0xff,0x10,0x10,0xf0,0x00 - -, -0x01,0x01,0x1f,0x09,0x11,0x1f,0x08,0x28,0x1f,0x08,0x17,0x20,0x10,0x0f,0x00 - -, -/* @658 (15x15,V)@ [suki software]*/ -0x50,0x48,0x47,0x74,0xcc,0x20,0x10,0xfc,0x4b,0x48,0xfe,0x48,0x48,0x08,0x00 - -, -0x10,0x12,0x12,0x12,0x3f,0x00,0x00,0x3f,0x12,0x12,0x1f,0x12,0x12,0x10,0x00 - -, -/* @659 (15x15,V)@ [suki software]*/ -0x10,0x21,0x86,0x40,0xfe,0x22,0xde,0x10,0xa8,0xa4,0xe3,0xa4,0x88,0x10,0x00 - -, -0x02,0x3e,0x01,0x00,0x3f,0x02,0x13,0x08,0x06,0x20,0x3f,0x02,0x04,0x18,0x00 - -, -/* @660 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x22,0x5a,0x86,0x20,0x10,0x28,0x24,0xe3,0x24,0x28,0x10,0x20,0x00 - -, -0x00,0x3f,0x02,0x04,0x13,0x09,0x05,0x11,0x21,0x1f,0x01,0x05,0x09,0x10,0x00 - -, -/* @661 (15x15,V)@ [suki software]*/ -0x00,0xc4,0xa4,0x94,0xff,0x8c,0x94,0xa0,0x94,0xff,0x8c,0x94,0xa4,0x00,0x00 - -, -0x00,0x20,0x10,0x08,0x0e,0x10,0x10,0x3f,0x24,0x24,0x24,0x25,0x20,0x20,0x00 - -, -}, -//************************************* -{ -/* @662 (15x15,V)@ [suki software]*/ -0x04,0xc4,0x7c,0x44,0xc6,0x04,0x00,0x7c,0x40,0x40,0xff,0x40,0x40,0x7c,0x00 - -, -0x01,0x1f,0x08,0x08,0x1f,0x00,0x00,0x1f,0x10,0x10,0x1f,0x10,0x10,0x3f,0x00 - -, -/* @663 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x40,0xcc,0x20,0x28,0xa8,0xff,0xa8,0xb0,0xac,0x20,0x00 - -, -0x00,0x00,0x3f,0x00,0x00,0x1f,0x0a,0x01,0x3f,0x14,0x14,0x14,0x3f,0x00,0x00 - -, -/* @664 (15x15,V)@ [suki software]*/ -0x80,0xa2,0xa2,0xe2,0xbe,0xaa,0x2a,0xab,0xaa,0xea,0xbe,0xa2,0xa2,0x80,0x00 - -, -0x20,0x3e,0x2a,0x2b,0x2a,0x1e,0x10,0x20,0x3e,0x2b,0x2a,0x2a,0x3e,0x20,0x00 - -, -/* @665 (15x15,V)@ [suki software]*/ -0x08,0x08,0xff,0x88,0x48,0x04,0x54,0x5c,0x75,0x56,0x54,0x6c,0x46,0x04,0x00 - -, -0x11,0x21,0x1f,0x00,0x00,0x00,0x3f,0x15,0x15,0x1f,0x15,0x15,0x3f,0x00,0x00 - -, -/* @666 (15x15,V)@ [suki software]*/ -0x20,0xf8,0x57,0xf4,0x5c,0xf4,0x00,0xf0,0x10,0x10,0xff,0x10,0xf8,0x10,0x00 - -, -0x30,0x0f,0x02,0x1f,0x22,0x3f,0x00,0x23,0x21,0x21,0x1f,0x11,0x1b,0x30,0x00 - -, -/* @667 (15x15,V)@ [suki software]*/ -0x00,0x80,0x60,0x9e,0x08,0x08,0xf8,0x00,0x00,0xff,0x10,0x20,0x40,0xc0,0x00 - -, -0x21,0x20,0x10,0x0b,0x04,0x0b,0x08,0x10,0x10,0x2f,0x20,0x20,0x20,0x20,0x00 - -, -/* @668 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x20,0x2e,0x28,0xa8,0x6f,0x28,0x28,0x2e,0x20,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x00,0x3f,0x01,0x1f,0x01,0x1f,0x21,0x3f,0x00,0x00 - -, -/* @669 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0xfe,0x00,0x00,0x00,0xfc,0x00,0x00,0x00,0xfe,0x00,0x00,0x00 - -, -0x20,0x10,0x0c,0x03,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x3f,0x00,0x00,0x00 - -, -/* @670 (15x15,V)@ [suki software]*/ -0x00,0x2c,0x24,0xd4,0x2c,0x24,0x25,0x26,0xe4,0x24,0x2c,0x14,0x2c,0x00,0x00 - -, -0x00,0x20,0x21,0x11,0x11,0x09,0x05,0x23,0x3f,0x01,0x01,0x01,0x01,0x00,0x00 - -, -/* @671 (15x15,V)@ [suki software]*/ -0x08,0xc8,0xff,0x28,0x48,0x20,0xa8,0x6f,0xaa,0x2a,0x3a,0xa6,0x60,0x20,0x00 - -, -0x03,0x00,0x3f,0x00,0x00,0x15,0x12,0x09,0x24,0x23,0x1d,0x02,0x0c,0x10,0x00 - -, -/* @672 (15x15,V)@ [suki software]*/ -0x40,0x20,0x10,0xfc,0x43,0x48,0x48,0xc8,0x78,0x4f,0x48,0x48,0x48,0x40,0x00 - -, -0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x09,0x09,0x11,0x29,0x05,0x03,0x00,0x00 - -, -/* @673 (15x15,V)@ [suki software]*/ -0x40,0xfc,0x54,0x67,0x44,0xfc,0x80,0x40,0x3e,0x02,0x02,0x3f,0x42,0x40,0x00 - -, -0x30,0x0f,0x01,0x12,0x20,0x1f,0x00,0x00,0x3f,0x11,0x11,0x11,0x3f,0x00,0x00 - -, -/* @674 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0xfc,0x20,0xa0,0xae,0xa8,0xe8,0xaf,0xa8,0xa8,0xae,0x20,0x00 - -, -0x00,0x07,0x01,0x03,0x00,0x3f,0x00,0x00,0x1f,0x00,0x1f,0x20,0x3f,0x00,0x00 - -, -/* @675 (15x15,V)@ [suki software]*/ -0x00,0x80,0xbc,0xa4,0xa4,0xa4,0xa4,0xff,0xa4,0xa4,0xa4,0xbe,0x84,0x00,0x00 - -, -0x00,0x07,0x04,0x04,0x04,0x04,0x04,0x3f,0x04,0x04,0x04,0x04,0x07,0x00,0x00 - -, -/* @676 (15x15,V)@ [suki software]*/ -0x08,0x30,0x80,0xfc,0x84,0x44,0xa4,0x95,0x8e,0x94,0xa4,0x44,0xc6,0x44,0x00 - -, -0x21,0x11,0x0c,0x03,0x00,0x00,0x1f,0x20,0x20,0x24,0x27,0x20,0x38,0x00,0x00 - -, -/* @677 (15x15,V)@ [suki software]*/ -0x00,0x2c,0x24,0xd4,0x4c,0x44,0xe5,0x56,0x44,0x44,0x6c,0xd4,0x24,0x0c,0x00 - -, -0x00,0x00,0x00,0x3f,0x22,0x31,0x2b,0x25,0x2b,0x31,0x20,0x3f,0x00,0x00,0x00 - -, -/* @678 (15x15,V)@ [suki software]*/ -0xf8,0x08,0xff,0x08,0xf8,0x24,0xe4,0xac,0xb5,0xe6,0xb4,0xac,0xe4,0x20,0x00 - -, -0x03,0x00,0x3f,0x02,0x03,0x20,0x2b,0x2a,0x2a,0x3f,0x2a,0x2a,0x2b,0x20,0x00 - -, -/* @679 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfc,0x44,0x44,0x44,0x45,0xfe,0xc4,0x44,0x44,0x44,0x66,0x44,0x00 - -, -0x20,0x18,0x07,0x08,0x04,0x02,0x01,0x3f,0x00,0x01,0x02,0x04,0x18,0x08,0x00 - -, -/* @680 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x01,0x02,0x0c,0xe8,0x8a,0x8a,0xfa,0x82,0x82,0x02,0xff,0x02,0x00 - -, -0x00,0x3f,0x00,0x02,0x02,0x02,0x02,0x0a,0x12,0x08,0x17,0x20,0x1f,0x00,0x00 - -, -/* @681 (15x15,V)@ [suki software]*/ -0x20,0x10,0xe8,0x24,0x23,0x22,0xe4,0x08,0x00,0xf8,0x00,0x00,0xff,0x00,0x00 - -, -0x00,0x00,0x1f,0x20,0x22,0x22,0x21,0x38,0x00,0x03,0x10,0x20,0x1f,0x00,0x00 - -, -/* @682 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0x04,0xfc,0x40,0x30,0x0c,0xeb,0x08,0x08,0x28,0x18,0x00,0x00 - -, -0x00,0x07,0x02,0x22,0x23,0x10,0x08,0x04,0x03,0x02,0x04,0x08,0x10,0x20,0x00 - -, -/* @683 (15x15,V)@ [suki software]*/ -0x40,0x30,0x00,0xff,0x10,0x48,0x20,0x18,0x0f,0xe8,0x08,0x28,0x18,0x00,0x00 - -, -0x20,0x10,0x0c,0x03,0x24,0x28,0x10,0x08,0x06,0x01,0x06,0x08,0x30,0x10,0x00 - -, -/* @684 (15x15,V)@ [suki software]*/ -0x08,0x08,0xff,0x88,0x48,0x94,0xf4,0x94,0xfc,0x92,0x92,0xf2,0x90,0x80,0x00 - -, -0x11,0x21,0x1f,0x00,0x00,0x24,0x27,0x24,0x3f,0x24,0x24,0x27,0x24,0x00,0x00 - -, -/* @685 (15x15,V)@ [suki software]*/ -0x60,0x38,0xef,0x28,0x28,0x90,0x94,0xf4,0x94,0xfe,0x92,0xf3,0x92,0x90,0x00 - -, -0x01,0x01,0x3f,0x11,0x09,0x04,0x24,0x27,0x24,0x3f,0x24,0x27,0x24,0x04,0x00 - -, -/* @686 (15x15,V)@ [suki software]*/ -0x80,0x90,0x92,0x92,0xf2,0x92,0x92,0xfe,0x92,0x91,0xf1,0x90,0x90,0x80,0x00 - -, -0x00,0x24,0x24,0x24,0x27,0x24,0x24,0x3f,0x24,0x24,0x27,0x24,0x24,0x00,0x00 - -, -/* @687 (15x15,V)@ [suki software]*/ -0x40,0x44,0x54,0xd4,0x54,0x74,0x5f,0x54,0x54,0x54,0xd4,0x56,0x44,0x00,0x00 - -, -0x02,0x02,0x01,0x00,0x3f,0x25,0x25,0x25,0x25,0x3f,0x00,0x01,0x02,0x02,0x00 - -, -/* @688 (15x15,V)@ [suki software]*/ -0x10,0xd0,0xff,0x50,0x90,0x44,0xd4,0x74,0x5f,0x54,0x54,0xd4,0x44,0x40,0x00 - -, -0x03,0x00,0x3f,0x00,0x02,0x01,0x3f,0x25,0x25,0x25,0x25,0x3f,0x01,0x02,0x00 - -, -/* @689 (15x15,V)@ [suki software]*/ -0x02,0xf2,0x9e,0x72,0x9e,0xf2,0x04,0x74,0x54,0x55,0x56,0x74,0x06,0x04,0x00 - -, -0x00,0x3f,0x12,0x12,0x12,0x1f,0x04,0x05,0x25,0x3d,0x07,0x05,0x05,0x04,0x00 - -, -/* @690 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x22,0xea,0x2a,0xaa,0x2a,0x6a,0xaa,0x6a,0x2b,0x22,0x20,0x00 - -, -0x20,0x18,0x07,0x00,0x3f,0x13,0x12,0x12,0x12,0x12,0x13,0x3f,0x01,0x01,0x00 - -, -/* @691 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x04,0x74,0x54,0x55,0x56,0x54,0x54,0x74,0x06,0x04,0x00 - -, -0x02,0x3e,0x01,0x00,0x04,0x05,0x05,0x25,0x3d,0x07,0x05,0x05,0x04,0x04,0x00 - -, -/* @692 (15x15,V)@ [suki software]*/ -0x20,0x30,0xac,0x63,0x10,0x04,0xf4,0x04,0x04,0xff,0x04,0x04,0xf6,0x04,0x00 - -, -0x09,0x1b,0x09,0x05,0x05,0x00,0x01,0x01,0x01,0x1f,0x21,0x21,0x23,0x38,0x00 - -, -/* @693 (15x15,V)@ [suki software]*/ -0x40,0x4a,0x2a,0x1a,0xfa,0xae,0xab,0xaa,0xaa,0xfa,0x1a,0x2a,0x4a,0x48,0x00 - -, -0x20,0x2e,0x2a,0x3f,0x2a,0x3e,0x00,0x2e,0x2a,0x3f,0x2a,0x2a,0x3e,0x20,0x00 - -, -/* @694 (15x15,V)@ [suki software]*/ -0x12,0x96,0x6a,0x5e,0xe0,0x56,0x4a,0x5e,0x20,0xff,0x10,0x12,0xd4,0x10,0x00 - -, -0x01,0x3f,0x15,0x15,0x1f,0x15,0x15,0x35,0x10,0x09,0x06,0x09,0x10,0x3c,0x00 - -, -/* @695 (15x15,V)@ [suki software]*/ -0x20,0x30,0xac,0x63,0x10,0x00,0xf0,0x50,0x50,0x5f,0x54,0x54,0xf6,0x04,0x00 - -, -0x09,0x1b,0x09,0x05,0x05,0x00,0x05,0x05,0x05,0x3f,0x05,0x05,0x05,0x04,0x00 - -, -/* @696 (15x15,V)@ [suki software]*/ -0x08,0x90,0x40,0xfc,0x04,0xe4,0x04,0xf5,0x86,0x04,0xfc,0x84,0x46,0x04,0x00 - -, -0x21,0x10,0x0c,0x13,0x30,0x1f,0x10,0x0f,0x08,0x00,0x1f,0x20,0x20,0x3c,0x00 - -, -/* @697 (15x15,V)@ [suki software]*/ -0x04,0x14,0x24,0x84,0x04,0x8f,0x74,0x44,0xc4,0x4f,0x44,0x44,0xc6,0x04,0x00 - -, -0x02,0x02,0x1f,0x20,0x21,0x10,0x08,0x04,0x03,0x04,0x08,0x11,0x30,0x10,0x00 - -, -/* @698 (15x15,V)@ [suki software]*/ -0x82,0xe2,0x5e,0x42,0xc2,0x88,0x49,0x3a,0xcc,0x08,0xcc,0x3b,0xc8,0x08,0x00 - -, -0x00,0x1f,0x08,0x08,0x1f,0x11,0x1d,0x13,0x38,0x01,0x19,0x17,0x10,0x38,0x00 - -, -/* @699 (15x15,V)@ [suki software]*/ -0x00,0xf0,0x00,0xfe,0x20,0xfe,0x20,0x08,0xff,0x24,0xfd,0x26,0x24,0x04,0x00 - -, -0x08,0x0f,0x08,0x07,0x04,0x0f,0x08,0x04,0x3f,0x11,0x1f,0x11,0x11,0x10,0x00 - -, -/* @700 (15x15,V)@ [suki software]*/ -0x20,0x24,0x24,0xfe,0x23,0x22,0x44,0x4c,0x74,0xc7,0x64,0x5c,0x46,0x44,0x00 - -, -0x00,0x3f,0x11,0x11,0x11,0x3f,0x00,0x02,0x02,0x3f,0x02,0x02,0x02,0x00,0x00 - -, -/* @701 (15x15,V)@ [suki software]*/ -0x04,0x04,0x64,0xd4,0x4d,0xa6,0x14,0x24,0x34,0xae,0x65,0xa4,0x14,0x04,0x00 - -, -0x00,0x10,0x09,0x01,0x1d,0x21,0x25,0x28,0x21,0x21,0x31,0x05,0x1b,0x00,0x00 - -, -/* @702 (15x15,V)@ [suki software]*/ -0x90,0x91,0xfa,0x84,0xa2,0xa4,0xa3,0x92,0x8e,0x92,0xa2,0xaa,0xa6,0x00,0x00 - -, -0x00,0x00,0x10,0x3c,0x13,0x12,0x16,0x0a,0x02,0x1e,0x20,0x20,0x20,0x38,0x00 - -, -/* @703 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x00,0x12,0xd2,0x52,0x52,0xd2,0x12,0x02,0xff,0x02,0x00 - -, -0x00,0x00,0x1f,0x08,0x04,0x00,0x07,0x02,0x02,0x07,0x10,0x20,0x1f,0x00,0x00 - -, -/* @704 (15x15,V)@ [suki software]*/ -0x00,0x00,0xf0,0x00,0xfe,0x20,0x20,0x00,0xff,0x40,0x40,0x20,0x30,0x00,0x00 - -, -0x10,0x30,0x1f,0x08,0x0f,0x04,0x04,0x00,0x1f,0x20,0x20,0x20,0x20,0x3c,0x00 - -, -/* @705 (15x15,V)@ [suki software]*/ -0x04,0xf4,0x14,0x14,0xff,0x14,0x14,0xf4,0x04,0x00,0xfc,0x00,0xff,0x00,0x00 - -, -0x10,0x09,0x04,0x02,0x3f,0x02,0x05,0x09,0x00,0x00,0x17,0x20,0x1f,0x00,0x00 - -, -/* @706 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0xfa,0x02,0xfe,0x00,0xbe,0xea,0xaa,0xaa,0xaa,0xbf,0x82,0x00 - -, -0x20,0x13,0x08,0x07,0x08,0x13,0x29,0x24,0x12,0x09,0x14,0x23,0x10,0x0f,0x00 - -, -/* @707 (15x15,V)@ [suki software]*/ -0x00,0x02,0x8c,0x60,0x98,0x40,0x30,0x0f,0xe8,0x08,0x08,0x28,0x18,0x00,0x00 - -, -0x01,0x01,0x1f,0x20,0x20,0x10,0x0c,0x03,0x00,0x03,0x04,0x08,0x30,0x10,0x00 - -, -/* @708 (15x15,V)@ [suki software]*/ -0x02,0xfe,0x92,0x92,0xfe,0x02,0x00,0xf9,0x4e,0x48,0x4c,0x4b,0xf8,0x00,0x00 - -, -0x08,0x0f,0x04,0x04,0x3f,0x0a,0x04,0x1e,0x20,0x21,0x26,0x38,0x02,0x0c,0x00 - -, -/* @709 (15x15,V)@ [suki software]*/ -0x00,0x42,0x22,0x9a,0x52,0x37,0xd2,0x52,0xb2,0x17,0x12,0xfa,0x12,0x00,0x00 - -, -0x00,0x10,0x0d,0x00,0x1e,0x21,0x22,0x2c,0x22,0x22,0x39,0x04,0x08,0x10,0x00 - -, -/* @710 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfc,0x04,0x84,0x44,0xb6,0x25,0xa4,0x74,0x24,0x04,0xfe,0x04,0x00 - -, -0x00,0x00,0x3f,0x10,0x14,0x14,0x12,0x11,0x11,0x12,0x14,0x10,0x3f,0x00,0x00 - -, -/* @711 (15x15,V)@ [suki software]*/ -0x00,0x40,0x20,0x58,0x4f,0xc8,0x78,0x88,0x88,0x78,0x08,0x08,0xfc,0x08,0x00 - -, -0x00,0x04,0x24,0x22,0x11,0x08,0x04,0x02,0x01,0x11,0x22,0x10,0x0f,0x00,0x00 - -, -/* @712 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0xff,0x80,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0x00,0x00,0x00 - -, -0x20,0x18,0x07,0x00,0x20,0x13,0x0c,0x03,0x00,0x01,0x06,0x08,0x10,0x20,0x00 - -, -/* @713 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x80,0x7f,0x40,0x80,0x00,0x80,0x7f,0x80,0x00,0x00,0x00,0x00 - -, -0x10,0x18,0x16,0x11,0x10,0x10,0x19,0x16,0x11,0x10,0x11,0x16,0x14,0x10,0x00 - -, -/* @714 (15x15,V)@ [suki software]*/ -0x00,0x02,0xcc,0x30,0x44,0xd4,0x54,0x7f,0x54,0x54,0xd4,0x56,0x44,0x40,0x00 - -, -0x01,0x1f,0x00,0x22,0x25,0x24,0x15,0x0f,0x05,0x0d,0x14,0x35,0x03,0x01,0x00 - -, -/* @715 (15x15,V)@ [suki software]*/ -0x24,0x28,0xa0,0xff,0xa8,0x24,0x00,0xfe,0x22,0x22,0x22,0xff,0x02,0x00,0x00 - -, -0x04,0x03,0x00,0x3f,0x00,0x23,0x20,0x3f,0x22,0x22,0x22,0x3f,0x20,0x20,0x00 - -, -/* @716 (15x15,V)@ [suki software]*/ -0x02,0xfa,0x8e,0x7a,0x8e,0xfa,0x22,0xa4,0xbf,0xa4,0xa4,0xbf,0xa4,0x20,0x00 - -, -0x00,0x3f,0x12,0x12,0x12,0x1f,0x00,0x3f,0x14,0x14,0x14,0x14,0x3f,0x00,0x00 - -, -/* @717 (15x15,V)@ [suki software]*/ -0x20,0x28,0xe4,0xb7,0xac,0x24,0x44,0x28,0xf4,0xa7,0xac,0xb4,0xa4,0x24,0x00 - -, -0x20,0x18,0x07,0x20,0x1f,0x20,0x22,0x13,0x0a,0x07,0x0a,0x12,0x22,0x22,0x00 - -, -/* @718 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x00,0x80,0x3e,0x22,0xe2,0x22,0x22,0x3f,0x02,0x00,0x00 - -, -0x00,0x00,0x3f,0x20,0x10,0x0f,0x04,0x08,0x1f,0x21,0x21,0x21,0x21,0x20,0x00 - -, -/* @719 (15x15,V)@ [suki software]*/ -0x00,0x9e,0x12,0xf2,0x9e,0x20,0xf6,0xaa,0xa2,0xf3,0xa2,0xaa,0xf6,0x00,0x00 - -, -0x10,0x1f,0x10,0x0f,0x08,0x00,0x0e,0x0a,0x0a,0x3f,0x0a,0x0a,0x0e,0x00,0x00 - -, -/* @720 (15x15,V)@ [suki software]*/ -0x00,0x08,0x04,0xfb,0xae,0xaa,0xaa,0xac,0xaa,0xab,0xfe,0x02,0x02,0x00,0x00 - -, -0x12,0x12,0x0a,0x26,0x32,0x2b,0x26,0x22,0x2a,0x32,0x26,0x0a,0x13,0x12,0x00 - -, -/* @721 (15x15,V)@ [suki software]*/ -0x00,0x08,0x16,0xf2,0xaa,0xa6,0xa2,0xf3,0xa2,0xa6,0xaa,0xea,0x12,0x06,0x00 - -, -0x00,0x00,0x0e,0x0a,0x0a,0x0a,0x0a,0x3f,0x0a,0x0a,0x0a,0x0a,0x0e,0x00,0x00 - -, -/* @722 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x80,0xee,0x48,0x48,0xef,0x48,0x48,0x4e,0x40,0x00 - -, -0x01,0x11,0x20,0x1f,0x01,0x00,0x3f,0x15,0x15,0x1f,0x15,0x15,0x15,0x10,0x00 - -, -/* @723 (15x15,V)@ [suki software]*/ -0x00,0x00,0x8e,0xe8,0x58,0x48,0x48,0xdf,0x68,0x48,0x48,0x48,0x4e,0x00,0x00 - -, -0x02,0x01,0x00,0x3f,0x15,0x15,0x15,0x1f,0x15,0x15,0x15,0x15,0x10,0x00,0x00 - -, -/* @724 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x00,0xce,0x78,0x48,0x48,0xff,0x48,0x48,0x6e,0x40,0x00 - -, -0x00,0x00,0x3f,0x00,0x01,0x3f,0x15,0x15,0x15,0x1f,0x15,0x15,0x15,0x10,0x00 - -, -/* @725 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x12,0x12,0xfe,0x10,0xf8,0x16,0xd5,0x54,0x5c,0x56,0xd4,0x10,0x00 - -, -0x30,0x0f,0x11,0x21,0x1f,0x20,0x1f,0x00,0x1f,0x20,0x22,0x24,0x23,0x38,0x00 - -, -/* @726 (15x15,V)@ [suki software]*/ -0x08,0x90,0xfc,0x04,0x14,0x94,0x74,0x95,0x1e,0x94,0x74,0x94,0x16,0x04,0x00 - -, -0x21,0x10,0x0f,0x00,0x05,0x04,0x04,0x04,0x3f,0x04,0x04,0x04,0x05,0x04,0x00 - -, -/* @727 (15x15,V)@ [suki software]*/ -0x24,0x28,0xa0,0xff,0x28,0xa4,0x44,0x3c,0x45,0xc6,0x24,0x3c,0xc4,0x00,0x00 - -, -0x04,0x03,0x00,0x3f,0x01,0x02,0x02,0x02,0x02,0x3f,0x02,0x02,0x02,0x02,0x00 - -, -/* @728 (15x15,V)@ [suki software]*/ -0x10,0x61,0x06,0xc0,0x30,0xc4,0x3c,0x44,0x85,0x46,0x3c,0x44,0x84,0x00,0x00 - -, -0x04,0x04,0x3f,0x00,0x02,0x02,0x02,0x02,0x3f,0x02,0x02,0x02,0x02,0x02,0x00 - -, -/* @729 (15x15,V)@ [suki software]*/ -0x00,0x42,0x52,0xd6,0x4a,0x4a,0x5e,0x60,0x52,0xd6,0x4a,0x5f,0x42,0x00,0x00 - -, -0x04,0x06,0x05,0x04,0x05,0x06,0x04,0x3e,0x05,0x04,0x05,0x06,0x04,0x04,0x00 - -, -/* @730 (15x15,V)@ [suki software]*/ -0x08,0x08,0xc8,0xff,0x48,0x88,0x00,0x48,0x88,0x08,0x08,0xff,0x08,0x08,0x00 - -, -0x04,0x03,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x11,0x20,0x1f,0x00,0x00,0x00 - -, -/* @731 (15x15,V)@ [suki software]*/ -0x04,0x04,0x84,0xc4,0x34,0x0c,0x17,0x14,0x14,0xd4,0x34,0x14,0x06,0x04,0x00 - -, -0x02,0x01,0x00,0x3f,0x00,0x01,0x01,0x11,0x21,0x1f,0x01,0x01,0x01,0x01,0x00 - -, -/* @732 (15x15,V)@ [suki software]*/ -0x00,0x10,0x10,0x50,0x90,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x18,0x10,0x00 - -, -0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x10,0x20,0x1f,0x00,0x00,0x00,0x00,0x00 - -, -/* @733 (15x15,V)@ [suki software]*/ -0x84,0xc4,0x7c,0x44,0xc4,0x84,0xa8,0xa9,0xee,0xb8,0xac,0xab,0xa8,0x88,0x00 - -, -0x00,0x1f,0x08,0x08,0x2f,0x10,0x28,0x26,0x23,0x3e,0x22,0x22,0x22,0x20,0x00 - -, -/* @734 (15x15,V)@ [suki software]*/ -0x08,0x08,0xff,0x88,0x48,0xc0,0x5f,0x55,0xd5,0x55,0x55,0x5f,0x40,0x40,0x00 - -, -0x11,0x21,0x1f,0x00,0x10,0x1f,0x09,0x0a,0x3f,0x28,0x17,0x09,0x17,0x20,0x00 - -, -/* @735 (15x15,V)@ [suki software]*/ -0x08,0x08,0xff,0x88,0x48,0x80,0xa9,0xaa,0xfc,0xa8,0xac,0xab,0xa8,0x88,0x00 - -, -0x01,0x21,0x3f,0x00,0x10,0x28,0x24,0x23,0x22,0x3e,0x22,0x22,0x22,0x20,0x00 - -, -/* @736 (15x15,V)@ [suki software]*/ -0x08,0x08,0xff,0x88,0x48,0x24,0xa4,0xbf,0xa4,0xa4,0xbf,0xa4,0x24,0x20,0x00 - -, -0x11,0x21,0x1f,0x00,0x00,0x00,0x3f,0x14,0x14,0x14,0x14,0x3f,0x00,0x00,0x00 - -, -/* @737 (15x15,V)@ [suki software]*/ -0x08,0x88,0xff,0x48,0x08,0xc0,0x3c,0x40,0x80,0xff,0x40,0x3c,0x40,0x80,0x00 - -, -0x11,0x20,0x1f,0x00,0x21,0x22,0x22,0x22,0x22,0x3f,0x22,0x22,0x22,0x20,0x00 - -, -/* @738 (15x15,V)@ [suki software]*/ -0x60,0x38,0xef,0x28,0x08,0x20,0xa4,0xbf,0xa4,0xa4,0xbf,0xa4,0x24,0x20,0x00 - -, -0x01,0x01,0x3f,0x11,0x09,0x00,0x3f,0x14,0x14,0x14,0x14,0x3f,0x00,0x00,0x00 - -, -/* @739 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x84,0x44,0xaf,0x94,0x94,0xaf,0x44,0x84,0x84,0x00 - -, -0x01,0x11,0x20,0x1f,0x01,0x00,0x3e,0x12,0x12,0x12,0x12,0x3e,0x00,0x00,0x00 - -, -/* @740 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe2,0x06,0x10,0x10,0x10,0x90,0x7f,0x90,0x10,0x10,0x18,0x10,0x00 - -, -0x10,0x08,0x07,0x08,0x10,0x14,0x22,0x21,0x20,0x20,0x21,0x22,0x24,0x20,0x00 - -, -/* @741 (15x15,V)@ [suki software]*/ -0x20,0x10,0x8c,0x87,0xdc,0xa4,0x94,0x98,0xa7,0xc4,0x4c,0x94,0x86,0x84,0x00 - -, -0x01,0x01,0x00,0x3e,0x12,0x12,0x12,0x12,0x12,0x12,0x3e,0x00,0x01,0x00,0x00 - -, -/* @742 (15x15,V)@ [suki software]*/ -0x08,0x30,0x80,0xfc,0x14,0x14,0xbc,0x55,0x36,0x54,0xbc,0x94,0x16,0x14,0x00 - -, -0x21,0x11,0x0c,0x03,0x01,0x3d,0x24,0x25,0x25,0x25,0x25,0x3c,0x01,0x01,0x00 - -, -/* @743 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x48,0x04,0x04,0x04,0x04,0xfc,0x04,0x06,0x04,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x00,0x00,0x00,0x10,0x20,0x1f,0x00,0x00,0x00,0x00 - -, -/* @744 (15x15,V)@ [suki software]*/ -0x10,0x10,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x18,0x10,0x00 - -, -0x20,0x20,0x10,0x08,0x04,0x03,0x00,0x01,0x02,0x04,0x08,0x10,0x30,0x10,0x00 - -, -/* @745 (15x15,V)@ [suki software]*/ -0x00,0x80,0x80,0xbe,0x92,0x92,0x92,0xf2,0x92,0x92,0xbf,0x82,0x80,0x80,0x00 - -, -0x10,0x10,0x08,0x04,0x02,0x01,0x00,0x3f,0x01,0x02,0x04,0x08,0x18,0x08,0x00 - -, -/* @746 (15x15,V)@ [suki software]*/ -0x00,0x02,0x02,0x82,0x42,0x72,0x9e,0x12,0x12,0x12,0xd2,0x33,0x02,0x00,0x00 - -, -0x00,0x22,0x21,0x20,0x10,0x10,0x08,0x05,0x02,0x01,0x00,0x00,0x00,0x00,0x00 - -, -/* @747 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x44,0x54,0xd4,0x74,0xdf,0x54,0xd4,0x56,0x44,0x40,0x00 - -, -0x00,0x00,0x3f,0x02,0x12,0x11,0x0a,0x24,0x3f,0x04,0x0a,0x09,0x12,0x02,0x00 - -, -/* @748 (15x15,V)@ [suki software]*/ -0x08,0x0a,0xfa,0xaa,0xff,0xaa,0xaa,0xfa,0x08,0xff,0x08,0x0a,0xcc,0x08,0x00 - -, -0x08,0x2a,0x1a,0x0f,0x0a,0x0f,0x1a,0x2a,0x10,0x09,0x06,0x09,0x10,0x38,0x00 - -, -/* @749 (15x15,V)@ [suki software]*/ -0x80,0x64,0x24,0x24,0x2f,0x24,0x24,0xef,0x24,0x24,0x2f,0x24,0xa4,0x64,0x00 - -, -0x00,0x00,0x00,0x1f,0x01,0x01,0x01,0x3f,0x01,0x09,0x11,0x0f,0x00,0x00,0x00 - -, -/* @750 (15x15,V)@ [suki software]*/ -0x02,0x82,0x72,0xae,0x22,0xe2,0x02,0xb0,0xac,0xa3,0xa0,0xa8,0xb0,0x60,0x00 - -, -0x21,0x10,0x08,0x04,0x03,0x00,0x00,0x3f,0x10,0x10,0x10,0x10,0x3f,0x00,0x00 - -, -/* @751 (15x15,V)@ [suki software]*/ -0x40,0x20,0x10,0xfc,0x03,0x20,0x20,0x20,0xff,0x10,0x10,0x12,0x1c,0x10,0x00 - -, -0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x01,0x06,0x08,0x10,0x20,0x3c,0x00 - -, -/* @752 (15x15,V)@ [suki software]*/ -0x10,0x08,0x04,0xfe,0x41,0x48,0x48,0x4f,0x54,0x65,0xe6,0x44,0x44,0x74,0x00 - -, -0x00,0x20,0x20,0x17,0x10,0x08,0x07,0x08,0x08,0x10,0x17,0x20,0x20,0x00,0x00 - -, -/* @753 (15x15,V)@ [suki software]*/ -0x10,0x08,0x04,0x7e,0x01,0x08,0x48,0x8f,0x18,0x25,0x46,0x44,0x74,0x00,0x00 - -, -0x10,0x11,0x09,0x05,0x3f,0x21,0x11,0x13,0x05,0x09,0x15,0x13,0x31,0x10,0x00 - -, -/* @754 (15x15,V)@ [suki software]*/ -0x10,0x88,0xc4,0x23,0x18,0xa0,0xa4,0xa4,0xbf,0xa4,0xe4,0xa4,0xa4,0xa0,0x00 - -, -0x01,0x00,0x3f,0x00,0x00,0x00,0x02,0x04,0x10,0x20,0x1f,0x00,0x00,0x00,0x00 - -, -/* @755 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x10,0x54,0xd4,0x54,0xff,0x54,0xd4,0x7c,0x10,0x10,0x00, - -0x10,0x08,0x07,0x08,0x14,0x14,0x22,0x29,0x2f,0x21,0x22,0x24,0x24,0x20,0x00 - -, - -}, -//************************************** -{ -/* @756 (15x15,V)@ [suki software]*/ -0x00,0x00,0x08,0xe8,0x2c,0x2a,0x29,0x28,0x28,0x2a,0xec,0x18,0x00,0x00,0x00 - -, -0x10,0x0c,0x00,0x01,0x1d,0x21,0x23,0x2d,0x21,0x21,0x39,0x04,0x18,0x00,0x00 - -, -/* @757 (15x15,V)@ [suki software]*/ -0x02,0xfe,0x92,0x92,0xfe,0x02,0x38,0x08,0x08,0xff,0x88,0x08,0x38,0x00,0x00 - -, -0x08,0x0f,0x04,0x04,0x3f,0x22,0x12,0x08,0x07,0x00,0x3f,0x20,0x20,0x3c,0x00 - -, -/* @758 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x08,0x00,0xfc,0x24,0x24,0x24,0x24,0xfe,0x04,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x10,0x10,0x17,0x12,0x12,0x12,0x12,0x17,0x10,0x00 - -, -/* @759 (15x15,V)@ [suki software]*/ -0x40,0x40,0x40,0xfe,0x42,0x42,0x4a,0x72,0x42,0x42,0xff,0x42,0x40,0x40,0x00 - -, -0x20,0x10,0x0c,0x03,0x00,0x00,0x00,0x00,0x10,0x20,0x1f,0x00,0x00,0x00,0x00 - -, -/* @760 (15x15,V)@ [suki software]*/ -0x00,0x00,0xf8,0x29,0x2a,0x28,0xf8,0x28,0x2a,0x29,0xf8,0x00,0x00,0x00,0x00 - -, -0x04,0x04,0x05,0x05,0x05,0x05,0x3f,0x05,0x05,0x05,0x05,0x04,0x04,0x00,0x00 - -, -/* @761 (15x15,V)@ [suki software]*/ -0x00,0xf8,0xa9,0xae,0xf8,0xac,0xab,0xf8,0x00,0xfe,0x02,0x72,0x8e,0x00,0x00 - -, -0x04,0x05,0x04,0x04,0x3f,0x04,0x04,0x05,0x04,0x3f,0x04,0x08,0x08,0x07,0x00 - -, -/* @762 (15x15,V)@ [suki software]*/ -0x08,0x08,0xff,0x88,0x48,0x00,0xf9,0x2e,0x28,0xf8,0x2c,0x2b,0xf8,0x00,0x00 - -, -0x11,0x21,0x1f,0x00,0x04,0x04,0x05,0x05,0x05,0x3f,0x05,0x05,0x05,0x04,0x00 - -, -/* @763 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x92,0x92,0xfe,0x00,0x00,0xfe,0x22,0x22,0x22,0x22,0xff,0x02,0x00 - -, -0x30,0x0f,0x10,0x20,0x1f,0x00,0x10,0x17,0x12,0x12,0x12,0x12,0x17,0x10,0x00 - -, -/* @764 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0xfe,0x22,0x22,0x22,0x22,0x22,0x22,0xff,0x02,0x00,0x00,0x00 - -, -0x10,0x10,0x10,0x17,0x12,0x12,0x12,0x12,0x12,0x12,0x17,0x10,0x18,0x10,0x00 - -, -/* @765 (15x15,V)@ [suki software]*/ -0x10,0x08,0xa4,0x6b,0xaa,0x6a,0xaa,0x6a,0x2a,0x2a,0xea,0x0a,0x03,0x02,0x00 - -, -0x00,0x22,0x2a,0x25,0x10,0x0e,0x08,0x15,0x12,0x20,0x07,0x08,0x10,0x3c,0x00 - -, -/* @766 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x00,0xfc,0x24,0x24,0x24,0x24,0x24,0xfe,0x04,0x00,0x00 - -, -0x00,0x00,0x3f,0x00,0x20,0x27,0x22,0x22,0x22,0x22,0x22,0x27,0x30,0x20,0x00 - -, -/* @767 (15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x08,0x10,0xf8,0x29,0x2e,0xf8,0x2c,0x2b,0x28,0xf8,0x00,0x00 - -, -0x00,0x00,0x3f,0x00,0x04,0x05,0x05,0x05,0x3f,0x05,0x05,0x05,0x05,0x04,0x00 - -, -/* @768 (15x15,V)@ [suki software]*/ -0x10,0x61,0x02,0xc6,0x00,0x50,0x4c,0x20,0xdf,0x10,0x28,0x24,0x42,0x00,0x00 - -, -0x02,0x02,0x3f,0x00,0x20,0x24,0x13,0x08,0x07,0x04,0x0a,0x11,0x21,0x20,0x00 - -, -/* @769 (15x15,V)@ [suki software]*/ -0x20,0x22,0xe4,0x00,0xa2,0x3a,0xe6,0x00,0xf4,0x04,0xfc,0x22,0x23,0x22,0x00 - -, -0x00,0x00,0x2f,0x14,0x0b,0x04,0x0b,0x10,0x13,0x22,0x23,0x22,0x22,0x22,0x00 - -, -/* @770 (15x15,V)@ [suki software]*/ -0x82,0xf2,0x92,0x92,0x1e,0x00,0xf9,0xaa,0xa8,0xf8,0xaa,0xa9,0xf8,0x00,0x00 - -, -0x00,0x10,0x20,0x1f,0x00,0x04,0x05,0x04,0x04,0x3f,0x04,0x04,0x05,0x04,0x00 - -, -/* @771 (15x15,V)@ [suki software]*/ -0x40,0x22,0x12,0x8e,0x8a,0x92,0xa2,0xfe,0xaa,0xaa,0xaa,0xa6,0x22,0x20,0x00 - -, -0x00,0x10,0x30,0x17,0x14,0x14,0x14,0x1f,0x14,0x14,0x1c,0x17,0x30,0x00,0x00 - -, -/* @772 (15x15,V)@ [suki software]*/ -0x00,0x00,0x22,0x24,0x28,0x20,0x20,0x3f,0x20,0x28,0x24,0x22,0xe0,0x00,0x00 - -, -0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x3f,0x00,0x00 - -, -/* @773 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x0a,0x24,0x28,0x20,0x3f,0x20,0x28,0xe4,0x02,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x10,0x12,0x12,0x12,0x12,0x12,0x12,0x3f,0x00,0x00 - -, -/* @774 (15x15,V)@ [suki software]*/ -0x00,0x20,0x18,0x0a,0xec,0x28,0x28,0x2f,0x28,0x28,0xec,0x0a,0x28,0x18,0x00 - -, -0x00,0x20,0x20,0x20,0x11,0x0f,0x01,0x01,0x1f,0x21,0x21,0x20,0x20,0x38,0x00 - -, -/* @775 (15x15,V)@ [suki software]*/ -0x44,0x8c,0x34,0x04,0xc4,0x1f,0x94,0x94,0xd4,0xbf,0x94,0x84,0x86,0x04,0x00 - -, -0x04,0x04,0x3c,0x03,0x08,0x28,0x24,0x12,0x09,0x24,0x23,0x10,0x0f,0x00,0x00 - -, -/* @776 (15x15,V)@ [suki software]*/ -0x08,0x88,0xff,0x48,0x88,0x22,0x24,0x38,0x20,0x3f,0x20,0x38,0xe6,0x00,0x00 - -, -0x06,0x01,0x3f,0x00,0x00,0x11,0x12,0x12,0x12,0x12,0x12,0x12,0x3f,0x00,0x00 - -, -/* @777 (15x15,V)@ [suki software]*/ -0x00,0x00,0x04,0x04,0x04,0x04,0xfc,0x04,0x04,0x04,0x04,0x04,0xfe,0x04,0x00 - -, -0x20,0x20,0x10,0x08,0x04,0x03,0x00,0x00,0x08,0x10,0x20,0x10,0x0f,0x00,0x00 - -, -/* @778 (15x15,V)@ [suki software]*/ -0x08,0x08,0xff,0x88,0x48,0x00,0xfc,0x84,0x96,0xa5,0xa4,0x9c,0xc0,0x80,0x00 - -, -0x11,0x21,0x1f,0x00,0x00,0x0e,0x08,0x08,0x0f,0x08,0x2e,0x20,0x1f,0x00,0x00 - -, -/* @779 (15x15,V)@ [suki software]*/ -0x00,0xbe,0x22,0xe2,0x3e,0x00,0xca,0x52,0x46,0x1a,0x42,0x51,0xcd,0x00,0x00 - -, -0x10,0x1f,0x10,0x0f,0x09,0x09,0x3f,0x12,0x12,0x10,0x12,0x12,0x3f,0x00,0x00 - -, -/* @780 (15x15,V)@ [suki software]*/ -0x20,0x10,0xfc,0x03,0x22,0x32,0xae,0x22,0x72,0x02,0xf8,0x00,0xfe,0x00,0x00 - -, -0x00,0x00,0x3f,0x00,0x12,0x12,0x0f,0x0a,0x0a,0x00,0x13,0x20,0x1f,0x00,0x00 - -, -/* @781 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0xfe,0x82,0x8b,0x92,0x82,0xa2,0xa2,0x9e,0x80,0x80,0x00,0x00 - -, -0x00,0x00,0x0e,0x08,0x08,0x0f,0x08,0x08,0x08,0x2e,0x20,0x10,0x0f,0x00,0x00 - -, -/* @782 (15x15,V)@ [suki software]*/ -0x08,0x88,0xc9,0x6e,0x98,0x44,0x54,0xd4,0x74,0x5f,0x54,0xd4,0x56,0x44,0x00 - -, -0x01,0x00,0x3f,0x00,0x04,0x02,0x01,0x05,0x09,0x01,0x21,0x3f,0x01,0x01,0x00 - -, -/* @783 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x3e,0x4a,0x4a,0x4a,0x4a,0x4a,0xca,0x5f,0x42,0x70,0x00,0x00 - -, -0x01,0x01,0x01,0x01,0x05,0x09,0x01,0x11,0x21,0x1f,0x01,0x01,0x01,0x01,0x00 - -, -/* @784 (15x15,V)@ [suki software]*/ -0x02,0x22,0x32,0x2a,0xe6,0x22,0x32,0x22,0x00,0xfc,0x00,0x00,0xff,0x00,0x00 - -, -0x10,0x31,0x11,0x11,0x1f,0x09,0x09,0x09,0x00,0x07,0x10,0x20,0x1f,0x00,0x00 - -, -/* @785 (15x15,V)@ [suki software]*/ -0x14,0x14,0x94,0xfe,0x53,0x92,0x8c,0x54,0x44,0x1a,0x42,0x53,0xca,0x00,0x00 - -, -0x04,0x03,0x00,0x3f,0x00,0x00,0x3f,0x12,0x12,0x10,0x12,0x12,0x3f,0x00,0x00 - -, -/* @786 (15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x08,0x10,0xf0,0x50,0x50,0x5f,0x54,0x54,0xf4,0x04,0x00,0x00 - -, -0x00,0x00,0x3f,0x00,0x04,0x05,0x05,0x05,0x3f,0x05,0x05,0x05,0x04,0x04,0x00 - -, -/* @787 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x04,0x04,0xf5,0x56,0x5c,0x54,0x56,0xf5,0x04,0x04,0x00 - -, -0x10,0x08,0x07,0x08,0x10,0x10,0x27,0x25,0x25,0x25,0x25,0x27,0x20,0x20,0x00 - -, -/* @788 (15x15,V)@ [suki software]*/ -0x00,0x21,0xe2,0x14,0x08,0x90,0x88,0x47,0x3c,0x24,0x44,0x94,0x8c,0x00,0x00 - -, -0x20,0x20,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3e,0x20,0x20,0x00 - -, -/* @789 (15x15,V)@ [suki software]*/ -0x10,0x88,0xc4,0x33,0x04,0x74,0x54,0x74,0x5f,0x54,0x74,0x54,0x76,0x04,0x00 - -, -0x01,0x00,0x3f,0x00,0x1d,0x01,0x1d,0x21,0x23,0x2d,0x21,0x31,0x05,0x19,0x00 - -, -/* @790 (15x15,V)@ [suki software]*/ -0x10,0x88,0xc4,0x23,0x18,0x80,0xbe,0xaa,0xaa,0xaa,0xaa,0xbf,0x82,0x80,0x00 - -, -0x01,0x00,0x3f,0x00,0x02,0x02,0x06,0x0a,0x02,0x22,0x3f,0x02,0x02,0x02,0x00 - -, -/* @791 (15x15,V)@ [suki software]*/ -0x00,0xf8,0x8c,0x8b,0x88,0xf8,0x20,0x10,0x4c,0x8b,0x08,0x08,0xfc,0x08,0x00 - -, -0x00,0x3f,0x10,0x10,0x10,0x3f,0x00,0x00,0x00,0x11,0x20,0x10,0x0f,0x00,0x00 - -, -/* @792 (15x15,V)@ [suki software]*/ -0x00,0x9e,0x12,0xf2,0x1e,0x2a,0x92,0xae,0xa0,0xa3,0xac,0x92,0x29,0x44,0x00 - -, -0x10,0x1f,0x10,0x0f,0x29,0x20,0x27,0x2c,0x34,0x24,0x34,0x2f,0x20,0x20,0x00 - -, -/* @793 (15x15,V)@ [suki software]*/ -0x40,0x30,0x00,0xff,0x10,0x08,0x04,0x04,0x04,0x04,0xfc,0x04,0x06,0x04,0x00 - -, -0x20,0x10,0x0c,0x03,0x04,0x08,0x00,0x00,0x10,0x20,0x1f,0x00,0x00,0x00,0x00 - -, -/* @794 (15x15,V)@ [suki software]*/ -0x80,0x80,0x46,0xaa,0x92,0xae,0xa0,0xa7,0xa8,0x94,0xb2,0x49,0xc4,0x40,0x00 - -, -0x20,0x20,0x20,0x27,0x2c,0x34,0x24,0x24,0x34,0x2c,0x27,0x20,0x30,0x20,0x00 - -, -/* @795 (15x15,V)@ [suki software]*/ -0x90,0x88,0x84,0xa7,0xac,0xb4,0xa4,0xf8,0xa4,0xa7,0xac,0xb4,0x86,0x84,0x00 - -, -0x00,0x02,0x02,0x02,0x06,0x1a,0x02,0x02,0x12,0x22,0x1f,0x02,0x02,0x00,0x00 - -, -/* @796 (15x15,V)@ [suki software]*/ -0xfe,0x22,0x22,0xfe,0x44,0x2a,0x92,0xae,0xa0,0xaf,0x94,0xaa,0x44,0x40,0x00 - -, -0x1f,0x09,0x09,0x0f,0x20,0x20,0x2f,0x34,0x24,0x24,0x34,0x2f,0x20,0x20,0x00 - -, -/* @797 (15x15,V)@ [suki software]*/ -0x40,0x46,0x2a,0xf2,0xaa,0xae,0xa8,0xa9,0xaa,0xa4,0xeb,0x14,0x22,0x20,0x00 - -, -0x00,0x22,0x22,0x22,0x1b,0x0a,0x0a,0x0a,0x0a,0x1b,0x22,0x22,0x22,0x38,0x00 - -, -/* @798 (15x15,V)@ [suki software]*/ -0x00,0x0a,0x12,0x22,0xc2,0x32,0x0e,0x00,0xfe,0x02,0x22,0x5a,0x87,0x02,0x00 - -, -0x08,0x04,0x02,0x01,0x00,0x01,0x06,0x00,0x3f,0x00,0x04,0x08,0x07,0x00,0x00 - -, -/* @799 (15x15,V)@ [suki software]*/ -0x10,0x10,0xff,0x10,0x10,0x80,0xbe,0xaa,0xaa,0xaa,0xaa,0xbf,0x82,0x80,0x00 - -, -0x04,0x0c,0x07,0x22,0x12,0x08,0x06,0x08,0x10,0x3f,0x22,0x22,0x22,0x20,0x00 - -, -/* @800 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x00,0xfc,0x44,0x44,0x44,0xfc,0x42,0x43,0x62,0x40,0x00 - -, -0x00,0x00,0x3f,0x00,0x00,0x1f,0x10,0x08,0x14,0x21,0x06,0x08,0x10,0x3c,0x00 - -, -/* @801 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x04,0xe4,0x2c,0xb5,0xe6,0xa4,0xb4,0x2c,0xe6,0x04,0x00 - -, -0x02,0x3e,0x01,0x00,0x00,0x3f,0x00,0x0e,0x0b,0x0a,0x0e,0x20,0x3f,0x00,0x00 - -, -/* @802 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x00,0xf8,0x48,0x48,0xff,0x48,0x48,0x48,0xfc,0x08,0x00 - -, -0x10,0x08,0x07,0x08,0x10,0x27,0x24,0x24,0x27,0x24,0x24,0x24,0x27,0x20,0x00 - -, -/* @803 (15x15,V)@ [suki software]*/ -0x14,0x94,0x94,0xfc,0x92,0x92,0x50,0x20,0xfc,0x0b,0x08,0x08,0xfc,0x08,0x00 - -, -0x00,0x3f,0x08,0x08,0x08,0x1f,0x20,0x20,0x10,0x0b,0x04,0x0b,0x10,0x20,0x00 - -, -/* @804 (15x15,V)@ [suki software]*/ -0x10,0x08,0xc4,0x47,0x4c,0x54,0x44,0xf4,0x48,0x47,0x4c,0xd4,0x06,0x04,0x00 - -, -0x00,0x00,0x3f,0x12,0x12,0x12,0x12,0x1f,0x12,0x12,0x12,0x3f,0x00,0x00,0x00 - -, -/* @805 (15x15,V)@ [suki software]*/ -0x20,0x22,0x14,0x88,0xf4,0x03,0x40,0x30,0x00,0xff,0x40,0x20,0x18,0x00,0x00 - -, -0x04,0x02,0x11,0x20,0x1f,0x20,0x10,0x0c,0x03,0x00,0x03,0x0c,0x30,0x10,0x00 - -, -/* @806 (15x15,V)@ [suki software]*/ -0x10,0x61,0x82,0x66,0x80,0x88,0x4c,0x57,0xa4,0x34,0x4e,0x44,0xc0,0x40,0x00 - -, -0x02,0x3e,0x01,0x00,0x10,0x09,0x15,0x21,0x1f,0x01,0x05,0x09,0x18,0x00,0x00 - -, -/* @807 (15x15,V)@ [suki software]*/ -0x00,0x12,0x12,0x96,0x6a,0x4a,0x5e,0xe0,0x52,0x56,0x4a,0x4a,0x3f,0x02,0x00 - -, -0x04,0x02,0x01,0x3f,0x15,0x15,0x15,0x1f,0x15,0x15,0x15,0x15,0x10,0x00,0x00 - -, -/* @808 (15x15,V)@ [suki software]*/ -0x88,0x78,0x0f,0x08,0xf8,0x00,0xe4,0xac,0xb5,0xe6,0xb4,0xac,0xe4,0x04,0x00 - -, -0x20,0x11,0x0a,0x04,0x0b,0x00,0x3f,0x00,0x0e,0x0b,0x0e,0x20,0x3f,0x00,0x00 - -, -/* @809 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x00,0xfc,0x44,0x44,0xfe,0x42,0x43,0x62,0x40,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x00,0x1f,0x08,0x04,0x31,0x06,0x08,0x10,0x3c,0x00 - -, -/* @810 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfc,0x04,0xe4,0xa4,0xa5,0xa6,0xe4,0x94,0x94,0xd4,0x86,0x04,0x00 - -, -0x20,0x18,0x07,0x00,0x3f,0x10,0x08,0x14,0x20,0x07,0x08,0x10,0x20,0x3c,0x00 - -, -/* @811 (15x15,V)@ [suki software]*/ -0x20,0x20,0xfe,0x20,0x20,0x40,0xfc,0x20,0x20,0xff,0x10,0x10,0xf8,0x10,0x00 - -, -0x08,0x18,0x0f,0x04,0x04,0x00,0x1f,0x20,0x20,0x27,0x21,0x22,0x21,0x38,0x00 - -, -/* @812 (15x15,V)@ [suki software]*/ -0x00,0xc2,0x52,0x52,0x52,0x77,0x52,0xda,0x52,0x77,0x52,0x52,0x42,0xc0,0x00 - -, -0x01,0x00,0x00,0x1f,0x01,0x01,0x01,0x3f,0x01,0x11,0x1f,0x00,0x01,0x00,0x00 - -, -/* @813 (15x15,V)@ [suki software]*/ -0x10,0x08,0x14,0xd7,0x5c,0x54,0x54,0xf8,0x54,0x57,0x5c,0x74,0x06,0x04,0x00 - -, -0x20,0x20,0x13,0x12,0x0a,0x06,0x02,0x3f,0x02,0x0a,0x12,0x12,0x0e,0x00,0x00 - -, -/* @814 (15x15,V)@ [suki software]*/ -0x80,0x60,0x24,0xa4,0xac,0xb4,0xa5,0xe6,0xb4,0xac,0xa4,0xa6,0x64,0x20,0x00 - -, -0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x3f,0x00,0x08,0x10,0x0f,0x00,0x00,0x00 - -, -/* @815 (15x15,V)@ [suki software]*/ -0x00,0x00,0xe8,0x29,0x2a,0x2c,0x28,0xf8,0x2c,0x2b,0x28,0x38,0x00,0x00,0x00 - -, -0x00,0x20,0x11,0x09,0x05,0x03,0x01,0x3f,0x01,0x09,0x11,0x09,0x07,0x00,0x00 - -, -/* @816 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x00,0xe4,0xa5,0xa6,0xfc,0xa4,0xa6,0xbd,0x80,0x00,0x00 - -, -0x10,0x08,0x07,0x08,0x10,0x28,0x24,0x22,0x2f,0x20,0x24,0x28,0x27,0x20,0x00 - -, -/* @817 (15x15,V)@ [suki software]*/ -0x20,0x30,0xac,0x63,0x10,0x64,0xa4,0xac,0xb5,0xe6,0xb4,0xac,0xa4,0x60,0x00 - -, -0x09,0x1b,0x09,0x05,0x05,0x00,0x1f,0x00,0x00,0x3f,0x08,0x10,0x0f,0x00,0x00 - -, -/* @818 (15x15,V)@ [suki software]*/ -0x04,0xf4,0x54,0x5f,0x54,0xf4,0x04,0x02,0xfa,0x0a,0xee,0x0a,0xfb,0x02,0x00 - -, -0x24,0x17,0x0d,0x05,0x0d,0x17,0x24,0x20,0x17,0x08,0x07,0x08,0x17,0x30,0x00 - -, -/* @819 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x08,0xfc,0x04,0x05,0xfe,0x24,0x24,0x26,0x24,0x00 - -, -0x01,0x11,0x20,0x1f,0x10,0x0c,0x03,0x3f,0x11,0x11,0x11,0x11,0x3f,0x00,0x00 - -, -/* @820 (15x15,V)@ [suki software]*/ -0x10,0x61,0x06,0xc0,0x30,0x04,0xf4,0x54,0x5f,0x54,0x54,0xf4,0x06,0x04,0x00 - -, -0x02,0x02,0x3f,0x00,0x24,0x24,0x17,0x0d,0x05,0x05,0x0d,0x17,0x34,0x04,0x00 - -, -/* @821 (15x15,V)@ [suki software]*/ -0x82,0xe2,0x3e,0x22,0xe2,0x00,0xfc,0x44,0xff,0x44,0xff,0x44,0xfc,0x00,0x00 - -, -0x00,0x1f,0x08,0x08,0x0f,0x22,0x13,0x0a,0x03,0x02,0x03,0x0a,0x13,0x22,0x00 - -, -/* @822 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0xe0,0x20,0x20,0x20,0x3f,0x24,0x24,0x24,0xe4,0x04,0x00,0x00 - -, -0x00,0x20,0x18,0x03,0x02,0x0a,0x32,0x02,0x0a,0x32,0x02,0x0b,0x30,0x00,0x00 - -, -/* @823 (15x15,V)@ [suki software]*/ -0x00,0x00,0xf8,0x48,0x48,0xff,0x48,0x48,0xff,0x48,0x48,0xf8,0x00,0x00,0x00 - -, -0x02,0x22,0x23,0x12,0x0a,0x03,0x02,0x02,0x03,0x0a,0x12,0x33,0x02,0x02,0x00 - -, -/* @824 (15x15,V)@ [suki software]*/ -0x44,0xd4,0x54,0x7f,0x54,0xd4,0x40,0x0c,0x24,0x25,0xe6,0x24,0x24,0x0c,0x00 - -, -0x00,0x3f,0x05,0x15,0x25,0x1f,0x10,0x0f,0x08,0x10,0x1f,0x21,0x21,0x20,0x00 - -, -/* @825 (15x15,V)@ [suki software]*/ -0x00,0x24,0x24,0xff,0x14,0x14,0x80,0x54,0x3f,0x44,0x04,0xfc,0x00,0xc0,0x00 - -, -0x00,0x20,0x21,0x25,0x24,0x25,0x24,0x3f,0x24,0x24,0x24,0x24,0x21,0x21,0x00 - -, -/* @826 (15x15,V)@ [suki software]*/ -0x00,0x00,0xf8,0x48,0x48,0x48,0xff,0x48,0x48,0x48,0x48,0xfc,0x08,0x00,0x00 - -, -0x00,0x00,0x07,0x02,0x02,0x02,0x1f,0x22,0x22,0x22,0x22,0x23,0x20,0x38,0x00 - -, -/* @827 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x00,0xfc,0x84,0x84,0x84,0xfc,0x84,0x84,0xfe,0x04,0x00 - -, -0x00,0x00,0x3f,0x00,0x00,0x1f,0x08,0x08,0x08,0x0f,0x08,0x08,0x1f,0x00,0x00 - -, -/* @828 (15x15,V)@ [suki software]*/ -0x40,0x20,0x10,0xec,0x27,0x24,0xe4,0x24,0x24,0xe4,0x04,0x04,0xfe,0x04,0x00 - -, -0x00,0x00,0x00,0x1f,0x09,0x09,0x0f,0x09,0x09,0x0f,0x20,0x20,0x1f,0x00,0x00 - -, -/* @829 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfc,0x04,0x04,0x04,0x05,0xfe,0x24,0x24,0x24,0x24,0x26,0x04,0x00 - -, -0x20,0x18,0x07,0x00,0x3f,0x11,0x11,0x11,0x11,0x11,0x11,0x3f,0x00,0x00,0x00 - -, -/* @830 (15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x08,0x10,0xfc,0x04,0x04,0x05,0xfe,0x24,0x24,0x24,0x24,0x00 - -, -0x00,0x00,0x3f,0x20,0x18,0x07,0x00,0x3f,0x11,0x11,0x11,0x11,0x3f,0x00,0x00 - -, -/* @831 (15x15,V)@ [suki software]*/ -0x00,0x04,0x04,0xf4,0x55,0x36,0x5c,0x54,0x3e,0x55,0x54,0xf4,0x04,0x04,0x00 - -, -0x00,0x24,0x24,0x25,0x15,0x15,0x0d,0x07,0x0d,0x15,0x15,0x25,0x24,0x24,0x00 - -, -/* @832 (15x15,V)@ [suki software]*/ -0x10,0x61,0x06,0xc0,0x00,0x2c,0x24,0x24,0x25,0xe6,0x24,0x24,0x24,0x0c,0x00 - -, -0x02,0x02,0x3f,0x20,0x10,0x08,0x07,0x08,0x10,0x1f,0x21,0x21,0x21,0x20,0x00 - -, -/* @833 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x4a,0xfa,0x4a,0xfa,0x4e,0x20,0xde,0x42,0x42,0x5f,0xd2,0x10,0x00 - -, -0x30,0x2f,0x12,0x0b,0x02,0x0b,0x12,0x20,0x11,0x0a,0x04,0x0b,0x10,0x20,0x00 - -, -/* @834 (15x15,V)@ [suki software]*/ -0x42,0xf2,0x2e,0x22,0xe2,0x00,0xfe,0x42,0x4a,0x7e,0x4a,0x42,0xff,0x02,0x00 - -, -0x00,0x0f,0x04,0x04,0x27,0x18,0x07,0x00,0x07,0x05,0x17,0x20,0x1f,0x00,0x00 - -, -/* @835 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0x04,0xfc,0x00,0x02,0x02,0x82,0x42,0x22,0x12,0xff,0x02,0x00 - -, -0x00,0x07,0x02,0x02,0x03,0x00,0x02,0x01,0x00,0x10,0x20,0x10,0x0f,0x00,0x00 - -, -/* @836 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x4a,0x7e,0x4a,0x02,0xfe,0x10,0xfc,0x4b,0x48,0xfe,0x48,0x48,0x00 - -, -0x30,0x0f,0x07,0x05,0x17,0x20,0x1f,0x00,0x3f,0x12,0x12,0x1f,0x12,0x12,0x00 - -, -/* @837 (15x15,V)@ [suki software]*/ -0x02,0x8c,0x60,0x00,0xfe,0x02,0xaa,0xaa,0xbe,0xaa,0xaa,0x02,0xff,0x02,0x00 - -, -0x01,0x0f,0x20,0x18,0x07,0x00,0x07,0x04,0x04,0x04,0x17,0x20,0x1f,0x00,0x00 - -, -/* @838 (15x15,V)@ [suki software]*/ -0x00,0x00,0x04,0x04,0x04,0x84,0x84,0x44,0x24,0x14,0x04,0xfe,0x04,0x00,0x00 - -, -0x00,0x02,0x02,0x01,0x01,0x00,0x00,0x00,0x10,0x20,0x10,0x0f,0x00,0x00,0x00 - -, -/* @839 (15x15,V)@ [suki software]*/ -0x08,0x08,0xff,0x88,0x48,0x00,0xf0,0x50,0x50,0x5f,0x54,0x54,0xf4,0x04,0x00 - -, -0x11,0x21,0x1f,0x00,0x04,0x04,0x05,0x05,0x05,0x3f,0x05,0x05,0x05,0x04,0x00 - -, -/* @840 (15x15,V)@ [suki software]*/ -0x00,0x00,0x80,0xbe,0x92,0x92,0x92,0xf2,0x92,0x92,0x92,0xbf,0x82,0x00,0x00 - -, -0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x08,0x10,0x0f,0x00,0x00 - -, -/* @841 (15x15,V)@ [suki software]*/ -0x40,0x30,0x2e,0xe8,0x28,0x28,0x40,0x30,0x4f,0x88,0x08,0x08,0xfc,0x08,0x00 - -, -0x01,0x01,0x01,0x3f,0x11,0x09,0x00,0x00,0x00,0x11,0x20,0x10,0x0f,0x00,0x00 - -, -/* @842 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe2,0x04,0x00,0x00,0xfe,0x2a,0xaa,0xbe,0xaa,0x2a,0xfe,0x00,0x00 - -, -0x00,0x00,0x1f,0x08,0x24,0x18,0x07,0x00,0x07,0x04,0x17,0x20,0x1f,0x00,0x00 - -, -/* @843 (15x15,V)@ [suki software]*/ -0x00,0xbe,0x22,0xe2,0x22,0x3e,0x90,0x8e,0x88,0xff,0x88,0x88,0x88,0x80,0x00 - -, -0x10,0x1f,0x10,0x0f,0x09,0x29,0x10,0x08,0x06,0x01,0x06,0x08,0x10,0x20,0x00 - -, -/* @844 (15x15,V)@ [suki software]*/ -0x00,0x20,0xa4,0xa4,0x92,0xd5,0x68,0xc8,0x54,0x55,0x22,0x24,0x20,0x20,0x00 - -, -0x00,0x00,0x22,0x2a,0x2a,0x25,0x25,0x1a,0x13,0x0a,0x0a,0x06,0x02,0x00,0x00 - -, -/* @845 (15x15,V)@ [suki software]*/ -0x42,0xf2,0x2e,0x22,0xe2,0x04,0xfe,0x84,0xbf,0xa4,0xa4,0xbf,0x84,0x04,0x00 - -, -0x00,0x1f,0x04,0x04,0x2f,0x12,0x0a,0x06,0x02,0x3f,0x06,0x0a,0x12,0x22,0x00 - -, -/* @846 (15x15,V)@ [suki software]*/ -0xf8,0x08,0xff,0x08,0xf8,0x04,0x04,0xfe,0x84,0xbf,0xa4,0xbf,0x84,0x04,0x00 - -, -0x11,0x11,0x0f,0x09,0x2d,0x12,0x0a,0x06,0x02,0x3f,0x06,0x0a,0x12,0x22,0x00 - -, -/* @847 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x40,0x50,0x4e,0x48,0xff,0x48,0x48,0x48,0x48,0x40,0x00 - -, -0x10,0x08,0x07,0x08,0x10,0x28,0x24,0x23,0x20,0x21,0x22,0x24,0x2c,0x20,0x00 - -, -/* @848 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x04,0x04,0xfe,0x84,0xbf,0xa4,0xbf,0x84,0x84,0x04,0x00 - -, -0x00,0x00,0x1f,0x28,0x22,0x12,0x0a,0x06,0x3f,0x02,0x06,0x0a,0x12,0x22,0x00 - -, -/* @849 (15x15,V)@ [suki software]*/ -0x00,0x80,0xd8,0xa9,0xa9,0xd9,0x8b,0x85,0xdd,0xab,0xa9,0xd8,0x80,0x80,0x00 - -, -0x22,0x21,0x20,0x20,0x3f,0x2a,0x2a,0x2a,0x2a,0x2a,0x3f,0x20,0x21,0x20,0x00 - -, -}, -//************************************** -{ -/* @850 (15x15,V)@ [suki software]*/ -0x02,0x02,0x02,0x02,0x02,0x02,0x02,0xfe,0x02,0x02,0x02,0x02,0x03,0x02,0x00 - -, -0x00,0x00,0x00,0x00,0x00,0x10,0x20,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00 - -, -/* @851 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x92,0x92,0xfe,0x00,0x02,0x02,0x02,0x02,0xfe,0x02,0x03,0x02,0x00 - -, -0x00,0x1f,0x08,0x08,0x1f,0x00,0x00,0x00,0x10,0x20,0x1f,0x00,0x00,0x00,0x00 - -, -/* @852 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0x02,0xfe,0x00,0x02,0x02,0x02,0xfe,0x02,0x02,0x03,0x02,0x00 - -, -0x00,0x07,0x01,0x01,0x03,0x00,0x00,0x10,0x20,0x1f,0x00,0x00,0x00,0x00,0x00 - -, -/* @853 (15x15,V)@ [suki software]*/ -0x40,0x30,0x2f,0xe8,0x28,0x28,0x02,0x02,0x02,0x02,0xfe,0x02,0x03,0x02,0x00 - -, -0x01,0x01,0x01,0x1f,0x09,0x05,0x01,0x00,0x10,0x20,0x1f,0x00,0x00,0x00,0x00 - -, -/* @854 (15x15,V)@ [suki software]*/ -0x02,0x02,0x02,0xfe,0x02,0x00,0xfa,0x0a,0x0a,0xee,0x0a,0x0a,0xfb,0x02,0x00 - -, -0x00,0x08,0x10,0x0f,0x00,0x20,0x27,0x10,0x08,0x07,0x00,0x08,0x17,0x30,0x00 - -, -/* @855 (15x15,V)@ [suki software]*/ -0x00,0x00,0xf0,0x00,0x7f,0x55,0x55,0x55,0x55,0x55,0x7f,0x00,0xf0,0x00,0x00 - -, -0x24,0x24,0x1d,0x05,0x05,0x3f,0x00,0x00,0x3f,0x05,0x05,0x05,0x3d,0x00,0x00 - -, -/* @856 (15x15,V)@ [suki software]*/ -0x60,0x38,0xe7,0x24,0x24,0x00,0x2c,0x24,0x25,0xe6,0x24,0x24,0x24,0x0c,0x00 - -, -0x01,0x01,0x3f,0x11,0x29,0x10,0x0f,0x08,0x10,0x1f,0x21,0x21,0x21,0x20,0x00 - -, -/* @857 (15x15,V)@ [suki software]*/ -0x00,0x10,0x2c,0xa4,0x24,0x24,0x25,0xe6,0x24,0x24,0x24,0x24,0x14,0x0c,0x00 - -, -0x20,0x10,0x08,0x07,0x08,0x10,0x10,0x3f,0x22,0x22,0x22,0x22,0x20,0x20,0x00 - -, -/* @858 (15x15,V)@ [suki software]*/ -0x20,0x21,0x22,0xe6,0x00,0x04,0x04,0x04,0x04,0xfc,0x04,0x04,0x06,0x04,0x00 - -, -0x00,0x00,0x00,0x1f,0x08,0x04,0x00,0x10,0x20,0x1f,0x00,0x00,0x00,0x00,0x00 - -, -/* @859 (15x15,V)@ [suki software]*/ -0x80,0x80,0x92,0x92,0x92,0x92,0x92,0xfe,0x92,0x91,0x91,0x91,0x80,0x80,0x00 - -, -0x00,0x00,0x10,0x38,0x14,0x12,0x11,0x10,0x10,0x14,0x18,0x30,0x00,0x00,0x00 - -, -/* @860 (15x15,V)@ [suki software]*/ -0x00,0x04,0x84,0xc4,0xa4,0x9c,0x87,0xf4,0x84,0x84,0x84,0xc4,0x86,0x04,0x00 - -, -0x00,0x10,0x08,0x04,0x02,0x10,0x20,0x1f,0x00,0x00,0x02,0x04,0x18,0x00,0x00 - -, -/* @861 (15x15,V)@ [suki software]*/ -0x00,0x20,0x10,0x08,0x04,0x8f,0x54,0x24,0x54,0x8c,0x84,0x00,0x00,0x00,0x00 - -, -0x02,0x02,0x02,0x01,0x05,0x04,0x09,0x09,0x12,0x30,0x00,0x01,0x03,0x01,0x00 - -, -/* @862 (15x15,V)@ [suki software]*/ -0x22,0x22,0x2a,0xea,0xaf,0xaa,0xfa,0xaa,0xaa,0xaf,0xea,0x22,0x22,0x22,0x00 - -, -0x20,0x20,0x28,0x2b,0x2a,0x2a,0x3f,0x2a,0x2a,0x2a,0x2b,0x28,0x20,0x00,0x00 - -, -/* @863 (15x15,V)@ [suki software]*/ -0x38,0x00,0xff,0x08,0x32,0xaa,0xaa,0xaf,0xfa,0xaa,0xaf,0xaa,0x22,0x22,0x00 - -, -0x00,0x00,0x3f,0x00,0x28,0x2f,0x2a,0x2a,0x3f,0x2a,0x2a,0x2f,0x28,0x20,0x00 - -, -/* @864 (15x15,V)@ [suki software]*/ -0x20,0x24,0x24,0xe4,0x24,0x24,0x20,0x10,0x10,0xff,0x10,0x10,0xf8,0x10,0x00 - -, -0x04,0x0e,0x05,0x04,0x04,0x27,0x14,0x08,0x06,0x01,0x10,0x20,0x1f,0x00,0x00 - -, -/* @865 (15x15,V)@ [suki software]*/ -0x08,0xc8,0xff,0x48,0x88,0x00,0xc4,0xb4,0x8f,0xf4,0x84,0x84,0x84,0x00,0x00 - -, -0x03,0x00,0x3f,0x00,0x10,0x08,0x04,0x12,0x20,0x1f,0x00,0x02,0x04,0x18,0x00 - -, -/* @866 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x00,0xfe,0x02,0xd2,0x52,0x52,0xd2,0x02,0xff,0x02,0x00 - -, -0x00,0x00,0x3f,0x00,0x00,0x3f,0x00,0x07,0x02,0x02,0x17,0x20,0x1f,0x00,0x00 - -, -/* @867 (15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x10,0x20,0xfe,0x02,0xd2,0x52,0x52,0xd2,0x02,0xff,0x02,0x00 - -, -0x00,0x00,0x3f,0x00,0x00,0x3f,0x00,0x07,0x02,0x02,0x17,0x20,0x1f,0x00,0x00 - -, -/* @868 (15x15,V)@ [suki software]*/ -0x02,0x04,0x8c,0x60,0x00,0xc8,0xb8,0x8c,0x8b,0xe8,0x88,0x88,0xcc,0x88,0x00 - -, -0x01,0x1f,0x00,0x00,0x10,0x08,0x06,0x10,0x20,0x1f,0x00,0x02,0x04,0x18,0x00 - -, -/* @869 (15x15,V)@ [suki software]*/ -0x08,0x31,0x82,0x66,0x00,0xfe,0x02,0xca,0x4a,0x4a,0xca,0x02,0xff,0x02,0x00 - -, -0x02,0x1e,0x01,0x00,0x00,0x3f,0x00,0x07,0x02,0x02,0x17,0x20,0x1f,0x00,0x00 - -, -/* @870 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x84,0x42,0x00,0xfc,0x96,0x95,0xfc,0x00,0x84,0x84,0xfe,0x04,0x00 - -, -0x20,0x20,0x20,0x10,0x08,0x06,0x00,0x00,0x1e,0x20,0x20,0x20,0x20,0x38,0x00 - -, -/* @871 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x48,0x20,0xc4,0x18,0x00,0xff,0x00,0x00,0x00,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x04,0x04,0x02,0x02,0x02,0x3f,0x01,0x01,0x01,0x00 - -, -/* @872 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x20,0xc2,0x0c,0x00,0x00,0xff,0x00,0x00,0x00,0x80,0x00,0x00 - -, -0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x3f,0x01,0x01,0x01,0x01,0x01,0x00 - -, -/* @873 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x22,0x52,0x8e,0x20,0x24,0x24,0x24,0xbf,0x24,0x24,0x24,0x20,0x00 - -, -0x00,0x3f,0x02,0x24,0x13,0x08,0x07,0x08,0x10,0x1f,0x22,0x22,0x23,0x22,0x00 - -, -/* @874 (15x15,V)@ [suki software]*/ -0x00,0x02,0x02,0xf2,0x92,0x92,0x92,0x92,0x92,0x92,0xf2,0x03,0x02,0x00,0x00 - -, -0x10,0x10,0x10,0x11,0x12,0x1c,0x10,0x10,0x18,0x16,0x11,0x10,0x10,0x10,0x00 - -, -/* @875 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x02,0x7a,0xca,0x4a,0x4a,0x4a,0xca,0x7b,0x02,0x00,0x00 - -, -0x10,0x08,0x07,0x08,0x14,0x14,0x24,0x27,0x24,0x26,0x25,0x24,0x26,0x24,0x00 - -, -/* @876 (15x15,V)@ [suki software]*/ -0x08,0x30,0x80,0xfc,0x14,0xd4,0x54,0x55,0x56,0x54,0x54,0xd4,0x16,0x04,0x00 - -, -0x21,0x11,0x08,0x27,0x20,0x23,0x2a,0x32,0x22,0x32,0x2a,0x23,0x20,0x20,0x00 - -, -/* @877 (15x15,V)@ [suki software]*/ -0x20,0x24,0xa4,0xa4,0xff,0xa4,0xb8,0x26,0x20,0xfe,0x02,0x62,0x9a,0x06,0x00 - -, -0x02,0x01,0x3f,0x12,0x12,0x12,0x3f,0x00,0x00,0x3f,0x04,0x08,0x08,0x07,0x00 - -, -/* @878 (15x15,V)@ [suki software]*/ -0x08,0x48,0x38,0x88,0xff,0x9a,0xaa,0x88,0xc6,0xaa,0x92,0x2a,0x46,0x40,0x00 - -, -0x00,0x00,0x00,0x3f,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x3f,0x00,0x00,0x00,0x00 - -, -/* @879 (15x15,V)@ [suki software]*/ -0x20,0x22,0x2a,0xaa,0xaa,0xaa,0xbf,0xaa,0xaa,0xaa,0xaa,0x2a,0x22,0x00,0x00 - -, -0x02,0x02,0x0a,0x0f,0x0a,0x0a,0x0f,0x0a,0x2a,0x2a,0x1f,0x0a,0x0a,0x02,0x00 - -, -/* @880 (15x15,V)@ [suki software]*/ -0x60,0x1c,0x10,0xff,0x90,0x00,0x94,0x54,0x94,0x1f,0xd4,0x14,0x54,0x30,0x00 - -, -0x02,0x02,0x01,0x3f,0x00,0x02,0x22,0x23,0x12,0x0a,0x07,0x0a,0x32,0x02,0x00 - -, -/* @881 (15x15,V)@ [suki software]*/ -0x20,0x22,0x14,0x88,0xf4,0x03,0xf8,0x08,0x08,0xff,0x08,0x08,0xfc,0x08,0x00 - -, -0x04,0x12,0x21,0x10,0x0f,0x10,0x33,0x11,0x11,0x1f,0x11,0x15,0x09,0x30,0x00 - -, -/* @882 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x10,0x94,0x34,0x54,0x1f,0xd4,0x14,0x16,0x34,0x10,0x00 - -, -0x00,0x00,0x1f,0x08,0x20,0x22,0x23,0x12,0x0a,0x07,0x0a,0x12,0x32,0x02,0x00 - -, -/* @883 (15x15,V)@ [suki software]*/ -0x10,0x10,0xff,0x10,0x10,0x20,0xa4,0xa4,0xff,0xa4,0xb4,0xa8,0x26,0x20,0x00 - -, -0x04,0x0c,0x07,0x02,0x02,0x01,0x3f,0x14,0x14,0x14,0x14,0x3f,0x00,0x00,0x00 - -, -/* @884 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x12,0x12,0xfe,0x20,0x24,0xa4,0xff,0xa4,0xb4,0xa8,0x26,0x20,0x00 - -, -0x00,0x1f,0x09,0x09,0x1f,0x02,0x01,0x3f,0x14,0x14,0x14,0x3f,0x00,0x00,0x00 - -, -/* @885 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0xfa,0x02,0xfe,0x20,0xa4,0xa4,0xff,0xa4,0xb4,0xae,0x20,0x00 - -, -0x20,0x13,0x0c,0x03,0x04,0x1b,0x02,0x3f,0x14,0x14,0x14,0x14,0x3f,0x00,0x00 - -, -/* @886 (15x15,V)@ [suki software]*/ -0x08,0x08,0xc8,0xff,0x48,0x88,0x20,0x20,0x20,0xfe,0x20,0x20,0x20,0x00,0x00 - -, -0x04,0x03,0x00,0x3f,0x00,0x11,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x10,0x00 - -, -/* @887 (15x15,V)@ [suki software]*/ -0x60,0x38,0xe7,0x24,0x24,0x00,0xfc,0x14,0x7c,0x55,0x56,0x7c,0x14,0x04,0x00 - -, -0x01,0x01,0x1f,0x09,0x25,0x18,0x27,0x21,0x13,0x15,0x09,0x15,0x23,0x20,0x00 - -, -/* @888 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x12,0x12,0xfe,0x00,0x20,0x20,0x20,0xff,0x20,0x30,0x20,0x00,0x00 - -, -0x30,0x0f,0x11,0x21,0x1f,0x10,0x10,0x10,0x10,0x1f,0x10,0x10,0x18,0x10,0x00 - -, -/* @889 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfc,0x04,0x14,0x14,0x7c,0x55,0x56,0x54,0x7c,0x14,0x16,0x04,0x00 - -, -0x20,0x18,0x07,0x20,0x21,0x21,0x13,0x15,0x09,0x15,0x13,0x21,0x20,0x20,0x00 - -, -/* @890 (15x15,V)@ [suki software]*/ -0x08,0x31,0x82,0x66,0x00,0xfc,0x14,0x7c,0x55,0x56,0x7c,0x14,0x14,0x04,0x00 - -, -0x02,0x3e,0x01,0x20,0x18,0x27,0x21,0x23,0x15,0x09,0x15,0x13,0x20,0x20,0x00 - -, -/* @891 (15x15,V)@ [suki software]*/ -0x08,0x08,0xf8,0x0f,0x08,0xf8,0x00,0xf8,0x88,0x89,0x8e,0x88,0x88,0xf8,0x00 - -, -0x20,0x11,0x0a,0x04,0x0a,0x21,0x18,0x07,0x00,0x00,0x00,0x00,0x00,0x01,0x00 - -, -/* @892 (15x15,V)@ [suki software]*/ -0x28,0xc9,0x0e,0x88,0x68,0x00,0xae,0xa8,0xa8,0xef,0xa8,0xa8,0xae,0x20,0x00 - -, -0x08,0x09,0x06,0x05,0x04,0x00,0x3f,0x00,0x1f,0x00,0x1f,0x20,0x3f,0x00,0x00 - -, -/* @893 (15x15,V)@ [suki software]*/ -0xa0,0x98,0x8f,0xf8,0x88,0x88,0x02,0xf2,0x92,0x92,0x92,0x92,0xf3,0x02,0x00 - -, -0x20,0x10,0x0c,0x03,0x04,0x28,0x20,0x25,0x28,0x20,0x30,0x2c,0x21,0x20,0x00 - -, -/* @894 (15x15,V)@ [suki software]*/ -0x60,0x38,0xe7,0x24,0x24,0xfe,0x92,0x92,0x21,0x9e,0x82,0x9e,0xa0,0x20,0x00 - -, -0x01,0x01,0x1f,0x09,0x05,0x3f,0x04,0x22,0x10,0x0b,0x04,0x0a,0x11,0x20,0x00 - -, -/* @895 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x92,0x92,0x91,0x20,0xde,0x42,0x42,0x5f,0xe2,0x20,0x20,0x00 - -, -0x04,0x04,0x3f,0x04,0x22,0x22,0x20,0x11,0x0a,0x04,0x0b,0x10,0x20,0x20,0x00 - -, -/* @896 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x24,0x28,0xff,0xa8,0x24,0x20,0xfe,0x22,0x22,0xe2,0x21,0x20,0x00 - -, -0x00,0x1f,0x12,0x11,0x17,0x10,0x21,0x10,0x0f,0x00,0x00,0x3f,0x00,0x00,0x00 - -, -/* @897 (15x15,V)@ [suki software]*/ -0x20,0xb8,0x67,0x30,0x00,0xfe,0x92,0x91,0x20,0x9e,0x82,0x9f,0xa2,0x20,0x00 - -, -0x09,0x1b,0x09,0x05,0x08,0x3f,0x04,0x24,0x20,0x17,0x08,0x14,0x23,0x20,0x00 - -, -/* @898 (15x15,V)@ [suki software]*/ -0x10,0x10,0xff,0x10,0x50,0x20,0xf8,0x4f,0x48,0x49,0xfa,0x48,0x48,0x08,0x00 - -, -0x04,0x0c,0x07,0x02,0x02,0x00,0x3f,0x12,0x12,0x12,0x1f,0x12,0x12,0x10,0x00 - -, -/* @899 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0xf9,0x8a,0x8c,0x88,0x88,0x8c,0x8a,0xf9,0x00,0x00,0x00,0x00 - -, -0x20,0x20,0x20,0x10,0x08,0x07,0x00,0x00,0x1f,0x20,0x20,0x20,0x20,0x3c,0x00 - -, -/* @900 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0x22,0x5a,0x86,0x00,0x00,0x80,0x7f,0x80,0x00,0x00,0x00,0x00 - -, -0x00,0x3f,0x00,0x04,0x24,0x13,0x08,0x06,0x01,0x00,0x03,0x0c,0x10,0x20,0x00 - -, -/* @901 (15x15,V)@ [suki software]*/ -0x04,0x14,0x64,0x84,0x64,0x1c,0x00,0x50,0x90,0x10,0x10,0xff,0x10,0x10,0x00 - -, -0x10,0x08,0x06,0x01,0x02,0x0c,0x00,0x00,0x03,0x10,0x20,0x1f,0x00,0x00,0x00 - -, -/* @902 (15x15,V)@ [suki software]*/ -0x10,0x10,0xff,0x10,0x04,0x74,0x55,0x56,0x74,0x14,0xf8,0x0f,0xf8,0x08,0x00 - -, -0x04,0x04,0x03,0x02,0x04,0x15,0x25,0x1f,0x25,0x10,0x09,0x06,0x19,0x20,0x00 - -, -/* @903 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0x04,0xfc,0x00,0xf4,0x04,0x04,0xff,0x04,0x04,0xf6,0x04,0x00 - -, -0x00,0x07,0x02,0x02,0x07,0x00,0x01,0x01,0x01,0x1f,0x21,0x21,0x21,0x3c,0x00 - -, -/* @904 (15x15,V)@ [suki software]*/ -0x00,0xbe,0x22,0xe2,0xbe,0x04,0xf4,0x55,0x7e,0x54,0x7e,0x55,0xf4,0x04,0x00 - -, -0x10,0x1f,0x08,0x0f,0x08,0x04,0x05,0x0d,0x15,0x05,0x25,0x3f,0x05,0x04,0x00 - -, -/* @905 (15x15,V)@ [suki software]*/ -0x04,0x04,0x74,0x55,0x56,0x54,0x74,0x44,0x30,0xcf,0x08,0xf8,0x0c,0x08,0x00 - -, -0x08,0x09,0x09,0x25,0x3d,0x07,0x25,0x24,0x10,0x09,0x06,0x09,0x10,0x20,0x00 - -, -/* @906 (15x15,V)@ [suki software]*/ -0xe8,0x08,0x08,0xff,0x08,0xe8,0x02,0xfa,0x0a,0x0e,0xea,0x0a,0xfb,0x02,0x00 - -, -0x01,0x01,0x01,0x3f,0x11,0x09,0x20,0x27,0x10,0x08,0x07,0x08,0x17,0x20,0x00 - -, -/* @907 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0xea,0x8a,0x8a,0xfe,0x8a,0x8a,0xea,0x0a,0x02,0xff,0x02,0x00 - -, -0x00,0x3f,0x10,0x10,0x10,0x10,0x13,0x14,0x14,0x14,0x16,0x10,0x3f,0x00,0x00 - -, -/* @908 (15x15,V)@ [suki software]*/ -0x60,0x38,0xe7,0x24,0x24,0x00,0xe8,0x08,0x08,0xff,0x08,0x08,0xec,0x08,0x00 - -, -0x01,0x01,0x1f,0x09,0x05,0x00,0x01,0x01,0x01,0x1f,0x21,0x21,0x23,0x38,0x00 - -, -/* @909 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x12,0xd2,0x52,0x52,0x7e,0x52,0x51,0x51,0xd1,0x18,0x10,0x00 - -, -0x20,0x18,0x07,0x00,0x3f,0x15,0x15,0x15,0x15,0x15,0x15,0x3f,0x00,0x00,0x00 - -, -/* @910 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x00,0xfe,0x0a,0xea,0xaa,0xbe,0xa9,0xa9,0xe9,0x08,0x00 - -, -0x10,0x08,0x07,0x08,0x14,0x13,0x20,0x2f,0x2a,0x2a,0x2a,0x2a,0x2f,0x20,0x00 - -, -/* @911 (15x15,V)@ [suki software]*/ -0x08,0x88,0xff,0x48,0x28,0xc2,0xaa,0x92,0x2e,0x80,0xaa,0x92,0xae,0x00,0x00 - -, -0x11,0x20,0x1f,0x00,0x11,0x0a,0x04,0x2b,0x10,0x0b,0x04,0x0a,0x11,0x20,0x00 - -, -/* @912 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0x04,0xfc,0x10,0x88,0x8c,0x57,0xa4,0xd4,0x8e,0x84,0x00,0x00 - -, -0x00,0x07,0x01,0x01,0x23,0x24,0x24,0x12,0x15,0x08,0x04,0x02,0x01,0x00,0x00 - -, -/* @913 (15x15,V)@ [suki software]*/ -0x00,0x90,0x90,0x88,0x48,0x4c,0x57,0xa4,0x24,0x14,0x0e,0x84,0x00,0x00,0x00 - -, -0x00,0x20,0x24,0x24,0x22,0x12,0x1d,0x11,0x09,0x09,0x05,0x03,0x01,0x00,0x00 - -, -/* @914 (15x15,V)@ [suki software]*/ -0x80,0x84,0x44,0x24,0x14,0x0c,0x07,0x0c,0xd4,0x24,0x24,0x46,0x44,0x40,0x00 - -, -0x00,0x01,0x01,0x03,0x0d,0x01,0x11,0x21,0x1f,0x01,0x01,0x01,0x01,0x00,0x00 - -, -/* @915 (15x15,V)@ [suki software]*/ -0x20,0x20,0xfe,0x20,0x20,0x40,0x20,0x1e,0x02,0xc2,0x1f,0x22,0xa0,0x20,0x00 - -, -0x04,0x0c,0x07,0x02,0x12,0x09,0x05,0x03,0x01,0x3f,0x03,0x05,0x09,0x11,0x00 - -, -/* @916 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfc,0x57,0x54,0xfc,0x80,0xa0,0x9e,0xc2,0x82,0xbf,0xa2,0xa0,0x00 - -, -0x11,0x11,0x09,0x15,0x23,0x1f,0x10,0x08,0x04,0x3f,0x02,0x04,0x08,0x10,0x00 - -, -/* @917 (15x15,V)@ [suki software]*/ -0x00,0x40,0x40,0x20,0x1e,0x02,0x02,0xc2,0x02,0x1f,0x22,0x20,0x20,0x20,0x00 - -, -0x00,0x11,0x11,0x09,0x05,0x03,0x01,0x3f,0x01,0x03,0x05,0x09,0x11,0x10,0x00 - -, -/* @918 (15x15,V)@ [suki software]*/ -0x00,0xde,0x12,0xf2,0x92,0x1e,0xc0,0xa0,0x9e,0xc2,0x82,0x9f,0xa2,0xa0,0x00 - -, -0x10,0x1f,0x10,0x0f,0x08,0x10,0x08,0x04,0x02,0x3f,0x02,0x04,0x08,0x10,0x00 - -, -/* @919 (15x15,V)@ [suki software]*/ -0x80,0x80,0xfc,0x96,0xa5,0xfc,0x00,0x0c,0xe4,0x05,0x06,0x84,0xc4,0x0c,0x00 - -, -0x20,0x18,0x07,0x12,0x24,0x1f,0x00,0x00,0x1f,0x21,0x21,0x20,0x20,0x38,0x00 - -, -/* @920 (15x15,V)@ [suki software]*/ -0x40,0x20,0x1e,0x02,0xc2,0x02,0x3f,0x22,0x00,0xfc,0x00,0x00,0xff,0x00,0x00 - -, -0x10,0x09,0x05,0x03,0x3f,0x03,0x05,0x09,0x00,0x07,0x10,0x20,0x1f,0x00,0x00 - -, -/* @921 (15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x08,0x54,0x24,0xd4,0x5c,0x57,0x74,0x54,0xd4,0x56,0x44,0x00 - -, -0x00,0x00,0x3f,0x00,0x00,0x00,0x3f,0x05,0x05,0x05,0x25,0x3f,0x00,0x00,0x00 - -, -/* @922 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x42,0x9a,0x66,0x10,0x0a,0xfe,0xab,0xaa,0xaa,0xaa,0xfa,0x02,0x00 - -, -0x00,0x23,0x20,0x28,0x28,0x28,0x28,0x3f,0x28,0x28,0x28,0x2a,0x23,0x20,0x00 - -, -/* @923 (15x15,V)@ [suki software]*/ -0xf8,0x08,0xff,0x08,0xf8,0x24,0x24,0xfe,0xa2,0x20,0xff,0x22,0xac,0x20,0x00 - -, -0x13,0x11,0x0f,0x09,0x0d,0x0a,0x21,0x3f,0x10,0x08,0x07,0x0a,0x11,0x38,0x00 - -, -/* @924 (15x15,V)@ [suki software]*/ -0xf0,0x00,0xfe,0x00,0xf0,0x24,0x24,0xfc,0x22,0x20,0xff,0x20,0xa4,0x28,0x00 - -, -0x0f,0x08,0x07,0x04,0x07,0x12,0x22,0x1f,0x01,0x08,0x05,0x0e,0x11,0x38,0x00 - -, -/* @925 (15x15,V)@ [suki software]*/ -0x14,0x14,0xfe,0x92,0xff,0x10,0xd6,0x10,0xfc,0x06,0x55,0x44,0x3c,0x00,0x00 - -, -0x11,0x21,0x1f,0x04,0x03,0x0d,0x10,0x3c,0x05,0x05,0x15,0x25,0x11,0x0f,0x00 - -, -/* @926 (15x15,V)@ [suki software]*/ -0x20,0x10,0xfc,0x03,0x14,0x14,0xfc,0x92,0x10,0xff,0x10,0x12,0xd4,0x10,0x00 - -, -0x00,0x00,0x3f,0x00,0x12,0x21,0x1f,0x00,0x10,0x09,0x06,0x09,0x10,0x3c,0x00 - -, -/* @927 (15x15,V)@ [suki software]*/ -0x4c,0x24,0xbc,0x55,0x56,0xb4,0x0c,0xfa,0x0a,0x0e,0xea,0x0a,0xfb,0x02,0x00 - -, -0x02,0x01,0x3e,0x12,0x12,0x1e,0x21,0x27,0x10,0x08,0x07,0x08,0x17,0x20,0x00 - -, -/* @928 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x40,0x20,0xf8,0x07,0x00,0xff,0x40,0x20,0x18,0x00,0x00 - -, -0x00,0x00,0x1f,0x08,0x04,0x00,0x3f,0x00,0x01,0x1f,0x20,0x20,0x20,0x3c,0x00 - -, -/* @929 (15x15,V)@ [suki software]*/ -0x88,0x78,0x0f,0x08,0xf8,0x20,0x24,0xfe,0x22,0xa0,0xff,0x22,0xac,0x20,0x00 - -, -0x20,0x11,0x0a,0x04,0x0b,0x00,0x22,0x3f,0x11,0x08,0x05,0x0e,0x11,0x38,0x00 - -, -/* @930 (15x15,V)@ [suki software]*/ -0x80,0x8a,0x92,0xa2,0x82,0xfe,0x82,0x82,0xfe,0xa2,0x92,0x8b,0x82,0x80,0x00 - -, -0x00,0x08,0x06,0x00,0x1e,0x20,0x21,0x26,0x20,0x20,0x38,0x02,0x0c,0x00,0x00 - -, -/* @931 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x02,0x02,0xf2,0x12,0x12,0x12,0x12,0xfa,0x12,0x03,0x02,0x00 - -, -0x20,0x18,0x07,0x00,0x00,0x1f,0x20,0x20,0x21,0x22,0x21,0x20,0x20,0x3c,0x00 - -, -/* @932 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x48,0xfe,0x02,0xf2,0x12,0x12,0x12,0xf3,0x02,0x00 - -, -0x01,0x11,0x20,0x1f,0x20,0x18,0x07,0x00,0x1f,0x20,0x22,0x24,0x23,0x3c,0x00 - -, -/* @933 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x80,0x80,0x5f,0x75,0xd5,0x55,0x55,0x5f,0xc0,0x00,0x00 - -, -0x10,0x08,0x07,0x08,0x10,0x17,0x24,0x25,0x24,0x25,0x25,0x28,0x27,0x20,0x00 - -, -/* @934 (15x15,V)@ [suki software]*/ -0x80,0xae,0xaa,0xae,0xa0,0xae,0xaa,0x8e,0x00,0xfe,0x02,0x72,0x8f,0x02,0x00 - -, -0x00,0x00,0x02,0x13,0x22,0x12,0x0e,0x00,0x00,0x3f,0x04,0x08,0x04,0x03,0x00 - -, -/* @935 (15x15,V)@ [suki software]*/ -0x20,0x18,0xef,0x08,0x18,0x24,0x24,0xfe,0xa2,0x20,0xff,0x22,0xac,0x20,0x00 - -, -0x00,0x00,0x1f,0x08,0x00,0x12,0x21,0x1f,0x00,0x08,0x07,0x0a,0x11,0x3c,0x00 - -, -/* @936 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x82,0xca,0xaa,0x9e,0xaa,0xaa,0xca,0x82,0xff,0x02,0x00,0x00 - -, -0x10,0x18,0x04,0x00,0x1e,0x20,0x21,0x26,0x20,0x20,0x38,0x02,0x04,0x18,0x00 - -, -/* @937 (15x15,V)@ [suki software]*/ -0x02,0x02,0xf2,0x12,0x12,0xfa,0x16,0x12,0xf2,0x12,0x12,0xfa,0x13,0x02,0x00 - -, -0x00,0x00,0x3f,0x00,0x00,0x1f,0x00,0x00,0x1f,0x10,0x20,0x1f,0x00,0x00,0x00 - -, -/* @938 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x00,0xfe,0x00,0x00,0x00,0xfe,0x00,0x00,0x00,0x00,0x00 - -, -0x00,0x20,0x10,0x08,0x06,0x01,0x00,0x00,0x00,0x1f,0x20,0x20,0x20,0x3c,0x00 - -, -/* @939 (15x15,V)@ [suki software]*/ -0x00,0x02,0x02,0xfe,0x92,0x92,0x92,0x92,0x92,0xfe,0x02,0x03,0x02,0x00,0x00 - -, -0x04,0x04,0x04,0x07,0x04,0x04,0x04,0x04,0x04,0x3f,0x02,0x02,0x02,0x02,0x00 - -, -/* @940 (15x15,V)@ [suki software]*/ -0x00,0x20,0x10,0x0c,0x8b,0x08,0x08,0xe8,0x08,0x88,0x08,0x28,0x18,0x00,0x00 - -, -0x00,0x08,0x04,0x02,0x01,0x10,0x20,0x1f,0x00,0x00,0x01,0x02,0x0c,0x00,0x00 - -, -/* @941 (15x15,V)@ [suki software]*/ -0x20,0x18,0xef,0x08,0x28,0x1a,0x02,0xfe,0x92,0x92,0x92,0xfe,0x03,0x02,0x00 - -, -0x00,0x00,0x1f,0x08,0x04,0x00,0x04,0x07,0x04,0x04,0x04,0x3f,0x02,0x02,0x00 - -, -/* @942 (15x15,V)@ [suki software]*/ -0x10,0x61,0x06,0xc0,0x32,0x02,0xfe,0x92,0x92,0x92,0x92,0xfe,0x03,0x02,0x00 - -, -0x02,0x02,0x3f,0x00,0x04,0x04,0x07,0x04,0x04,0x04,0x04,0x3f,0x02,0x02,0x00 - -, -/* @943 (15x15,V)@ [suki software]*/ -0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x0c,0x08,0x00,0x00,0x00 - -, -0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x0c,0x08,0x00 - -, -}, -//************************************** -{ -/* @944 (15x15,V)@ [suki software]*/ -0x04,0x44,0xd4,0x54,0x54,0x54,0xd4,0x54,0x04,0xff,0x04,0x05,0x06,0x04,0x00 - -, -0x20,0x20,0x17,0x08,0x07,0x08,0x17,0x30,0x00,0x01,0x06,0x08,0x10,0x3c,0x00 - -, -/* @945 (15x15,V)@ [suki software]*/ -0x00,0x18,0x16,0x10,0x90,0x7f,0xd0,0x50,0x50,0x51,0x56,0xd0,0x18,0x10,0x00 - -, -0x20,0x10,0x28,0x26,0x21,0x10,0x11,0x0a,0x04,0x0a,0x11,0x10,0x30,0x10,0x00 - -, -/* @946 (15x15,V)@ [suki software]*/ -0x00,0x80,0x8f,0x99,0x69,0x0f,0x09,0x09,0xcf,0x09,0x09,0x09,0xef,0x00,0x00 - -, -0x00,0x00,0x00,0x3f,0x10,0x08,0x00,0x00,0x07,0x00,0x10,0x20,0x1f,0x00,0x00 - -, -/* @947 (15x15,V)@ [suki software]*/ -0x10,0x08,0x84,0xc7,0x34,0x0c,0x04,0xe8,0x84,0x97,0xac,0x84,0x86,0x84,0x00 - -, -0x02,0x01,0x00,0x3f,0x01,0x21,0x21,0x13,0x14,0x08,0x14,0x22,0x20,0x38,0x00 - -, -/* @948 (15x15,V)@ [suki software]*/ -0x40,0x20,0x10,0xfc,0x23,0x20,0x20,0xff,0x20,0x10,0x12,0xd4,0x10,0x10,0x00 - -, -0x00,0x00,0x00,0x3f,0x00,0x20,0x10,0x10,0x0b,0x04,0x0b,0x10,0x20,0x3c,0x00 - -, -/* @949 (15x15,V)@ [suki software]*/ -0x00,0x24,0x24,0x24,0x24,0x24,0x2c,0x32,0xa2,0x62,0x23,0x22,0x00,0x00,0x00 - -, -0x10,0x08,0x04,0x04,0x0a,0x12,0x11,0x21,0x20,0x20,0x20,0x20,0x20,0x20,0x00 - -, -/* @950 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x01,0x86,0xe0,0x58,0x42,0xfa,0x22,0xaa,0x32,0x02,0xff,0x02,0x00 - -, -0x00,0x3f,0x00,0x00,0x0f,0x00,0x04,0x02,0x03,0x04,0x0e,0x20,0x3f,0x00,0x00 - -, -/* @951 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x80,0x88,0x88,0x88,0xff,0x88,0x88,0x8c,0xc8,0x80,0x00 - -, -0x02,0x3e,0x01,0x00,0x10,0x38,0x14,0x12,0x11,0x10,0x14,0x18,0x30,0x00,0x00 - -, -/* @952 (15x15,V)@ [suki software]*/ -0x44,0x44,0xfc,0x44,0x44,0x80,0x88,0x88,0x88,0xff,0x88,0x88,0xc8,0x80,0x00 - -, -0x08,0x18,0x0f,0x08,0x04,0x34,0x18,0x14,0x13,0x10,0x10,0x14,0x18,0x30,0x00 - -, -/* @953 (15x15,V)@ [suki software]*/ -0x22,0x4a,0x12,0xc2,0x47,0x52,0xf2,0x52,0xf7,0x4a,0xea,0x5a,0x42,0x02,0x00 - -, -0x04,0x3c,0x03,0x02,0x02,0x3f,0x2a,0x2a,0x3f,0x2a,0x2a,0x3f,0x02,0x02,0x00 - -, -/* @954 (15x15,V)@ [suki software]*/ -0xf8,0x08,0xff,0x08,0x08,0xf8,0x00,0xfe,0x22,0xc2,0xff,0x02,0x00,0x00,0x00 - -, -0x03,0x00,0x3f,0x02,0x24,0x13,0x0c,0x03,0x00,0x00,0x1f,0x20,0x20,0x3c,0x00 - -, -/* @955 (15x15,V)@ [suki software]*/ -0x00,0x10,0x92,0x96,0x5a,0x32,0x12,0xfe,0x12,0x39,0x55,0x91,0x90,0x90,0x00 - -, -0x01,0x01,0x00,0x3f,0x15,0x15,0x15,0x1f,0x15,0x15,0x15,0x3f,0x00,0x00,0x00 - -, -/* @956 (15x15,V)@ [suki software]*/ -0x92,0x5a,0x12,0x7e,0x11,0x55,0x00,0x12,0x22,0xfe,0x10,0x22,0xfe,0x00,0x00 - -, -0x00,0x3f,0x15,0x1f,0x15,0x3f,0x00,0x12,0x21,0x1f,0x12,0x21,0x1f,0x00,0x00 - -, -/* @957 (15x15,V)@ [suki software]*/ -0x40,0x24,0x14,0xff,0x24,0x5a,0xa4,0x5a,0x25,0x14,0xff,0x14,0x24,0x00,0x00 - -, -0x22,0x22,0x22,0x12,0x12,0x0a,0x07,0x02,0x06,0x0a,0x12,0x22,0x22,0x22,0x00 - -, -/* @958 (15x15,V)@ [suki software]*/ -0x84,0x44,0xfc,0x24,0xe6,0x04,0x00,0xfe,0x22,0xc2,0x02,0xff,0x02,0x00,0x00 - -, -0x00,0x00,0x1f,0x04,0x2f,0x10,0x0c,0x03,0x00,0x00,0x00,0x1f,0x10,0x1c,0x00 - -, -/* @959 (15x15,V)@ [suki software]*/ -0x60,0x38,0xef,0x28,0x28,0x00,0xfe,0x22,0xc2,0x02,0xff,0x02,0x00,0x00,0x00 - -, -0x01,0x01,0x3f,0x11,0x29,0x11,0x0f,0x00,0x00,0x00,0x1f,0x20,0x20,0x3c,0x00 - -, -/* @960 (15x15,V)@ [suki software]*/ -0x08,0x04,0x7f,0x2a,0x3e,0xaa,0x7e,0x2a,0xc4,0xab,0x12,0x2a,0x46,0x42,0x00 - -, -0x00,0x20,0x24,0x15,0x0d,0x05,0x27,0x3d,0x04,0x0c,0x16,0x24,0x28,0x00,0x00 - -, -/* @961 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0xfe,0x02,0x22,0xc2,0x02,0xff,0x02,0x00,0x00,0x00,0x00 - -, -0x00,0x20,0x10,0x0c,0x03,0x00,0x00,0x00,0x00,0x0f,0x10,0x10,0x10,0x1e,0x00 - -, -/* @962 (15x15,V)@ [suki software]*/ -0x40,0x30,0x00,0xff,0x10,0x0a,0xf2,0x12,0x1a,0xd6,0x12,0x12,0xf3,0x02,0x00 - -, -0x20,0x10,0x0c,0x03,0x04,0x28,0x27,0x10,0x0c,0x03,0x04,0x08,0x17,0x20,0x00 - -, -/* @963 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0xfc,0x24,0xe4,0x24,0x22,0x22,0x22,0xa3,0x72,0x20,0x00,0x00 - -, -0x20,0x10,0x0c,0x23,0x20,0x10,0x11,0x0a,0x04,0x0a,0x09,0x10,0x30,0x10,0x00 - -, -/* @964 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x00,0xfe,0x12,0x52,0x92,0x12,0xd1,0x31,0x00,0x00,0x00 - -, -0x10,0x08,0x07,0x08,0x14,0x13,0x28,0x24,0x22,0x21,0x22,0x24,0x28,0x20,0x00 - -, -/* @965 (15x15,V)@ [suki software]*/ -0x04,0x44,0x94,0x24,0x8f,0x04,0xe4,0x24,0x2f,0x24,0x24,0xe4,0x06,0x04,0x00 - -, -0x00,0x04,0x3c,0x02,0x01,0x00,0x1f,0x20,0x20,0x22,0x24,0x23,0x20,0x3c,0x00 - -, -/* @966 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0xfa,0x02,0xfe,0x00,0xfe,0x12,0xf2,0x12,0x11,0xf9,0x10,0x00 - -, -0x20,0x13,0x0c,0x03,0x04,0x2b,0x10,0x2f,0x10,0x0b,0x04,0x0b,0x10,0x20,0x00 - -, -/* @967 (15x15,V)@ [suki software]*/ -0x20,0x22,0x14,0x88,0xf4,0x03,0x00,0xfe,0x02,0x82,0x02,0x02,0xff,0x02,0x00 - -, -0x04,0x12,0x21,0x10,0x0f,0x00,0x00,0x1f,0x20,0x20,0x21,0x21,0x20,0x3c,0x00 - -, -/* @968 (15x15,V)@ [suki software]*/ -0x20,0x18,0xef,0x08,0x18,0x00,0xfc,0x14,0xf4,0x12,0x12,0x93,0x72,0x00,0x00 - -, -0x00,0x00,0x1f,0x28,0x14,0x28,0x27,0x10,0x0b,0x04,0x0a,0x11,0x30,0x10,0x00 - -, -/* @969 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x00,0x24,0x24,0x24,0x2c,0xb2,0x62,0x23,0x02,0x00,0x00 - -, -0x02,0x3e,0x01,0x00,0x10,0x08,0x0c,0x12,0x21,0x20,0x20,0x20,0x20,0x20,0x00 - -, -/* @970 (15x15,V)@ [suki software]*/ -0x20,0x20,0xff,0x20,0x20,0x28,0x08,0x08,0xf9,0x4e,0x48,0x48,0xc8,0x08,0x00 - -, -0x04,0x0c,0x07,0x24,0x22,0x12,0x08,0x06,0x01,0x10,0x20,0x10,0x0f,0x00,0x00 - -, -/* @971 (15x15,V)@ [suki software]*/ -0x00,0x24,0x24,0x24,0x2f,0x24,0xec,0x34,0x24,0x2f,0x24,0x24,0x24,0x24,0x00 - -, -0x00,0x20,0x20,0x10,0x08,0x06,0x01,0x11,0x21,0x21,0x11,0x0f,0x00,0x00,0x00 - -, -/* @972 (15x15,V)@ [suki software]*/ -0x08,0x08,0x08,0x08,0x08,0x88,0x79,0x4e,0x48,0x48,0xe8,0x48,0x0c,0x08,0x00 - -, -0x00,0x20,0x10,0x08,0x06,0x01,0x00,0x10,0x20,0x10,0x0f,0x00,0x00,0x00,0x00 - -, -/* @973 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x92,0x92,0xfe,0x08,0x08,0x08,0xf9,0x4e,0x48,0x48,0xc8,0x08,0x00 - -, -0x30,0x0f,0x10,0x20,0x1f,0x20,0x10,0x0c,0x03,0x10,0x20,0x10,0x0f,0x00,0x00 - -, -/* @974 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfc,0x14,0x94,0x94,0x95,0xb6,0xd4,0x94,0x94,0x9e,0x84,0x00,0x00 - -, -0x20,0x18,0x07,0x20,0x20,0x10,0x0c,0x03,0x12,0x22,0x22,0x1e,0x00,0x00,0x00 - -, -/* @975 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0x32,0xce,0x08,0x08,0xf8,0x49,0x4e,0x48,0xe8,0x4c,0x08,0x00 - -, -0x00,0x3f,0x02,0x24,0x23,0x10,0x0c,0x03,0x00,0x10,0x20,0x1f,0x00,0x00,0x00 - -, -/* @976 (15x15,V)@ [suki software]*/ -0x08,0x08,0xf8,0x0f,0x08,0xf8,0x08,0x08,0xf9,0x4a,0x4c,0x48,0xc8,0x08,0x00 - -, -0x20,0x11,0x0a,0x04,0x0a,0x21,0x10,0x0c,0x03,0x10,0x20,0x10,0x0f,0x00,0x00 - -, -/* @977 (15x15,V)@ [suki software]*/ -0x40,0x20,0x10,0xfc,0x03,0x08,0x08,0xf8,0x49,0x4e,0x48,0xe8,0x4c,0x08,0x00 - -, -0x00,0x00,0x00,0x3f,0x20,0x10,0x0c,0x03,0x00,0x10,0x20,0x1f,0x00,0x00,0x00 - -, -/* @978 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe2,0x06,0x00,0x08,0x08,0xf8,0x49,0x4e,0x48,0xe8,0x4c,0x08,0x00 - -, -0x00,0x00,0x1f,0x08,0x24,0x10,0x0c,0x03,0x00,0x10,0x20,0x1f,0x00,0x00,0x00 - -, -/* @979 (15x15,V)@ [suki software]*/ -0x20,0x30,0xac,0x63,0x10,0x00,0x08,0x08,0xf8,0x49,0x4e,0x48,0xc8,0x08,0x00 - -, -0x09,0x1b,0x09,0x05,0x25,0x10,0x08,0x06,0x01,0x10,0x20,0x10,0x0f,0x00,0x00 - -, -/* @980 (15x15,V)@ [suki software]*/ -0x08,0x08,0xf9,0x4e,0x48,0xc8,0x08,0x20,0xf8,0x0f,0x08,0xf8,0x0c,0x08,0x00 - -, -0x20,0x18,0x07,0x10,0x10,0x0f,0x20,0x20,0x10,0x09,0x06,0x09,0x10,0x20,0x00 - -, -/* @981 (15x15,V)@ [suki software]*/ -0x04,0x24,0x24,0x24,0x24,0xff,0x04,0x04,0xf4,0x2f,0x24,0x24,0x26,0x04,0x00 - -, -0x04,0x05,0x05,0x05,0x05,0x3f,0x00,0x00,0x3f,0x05,0x05,0x05,0x05,0x04,0x00 - -, -/* @982 (15x15,V)@ [suki software]*/ -0x08,0x48,0x48,0x48,0x48,0xff,0x00,0x00,0xff,0x48,0x48,0x48,0x4c,0x08,0x00 - -, -0x04,0x04,0x04,0x04,0x04,0x3f,0x00,0x00,0x3f,0x04,0x04,0x04,0x06,0x04,0x00 - -, -/* @983 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0x04,0xfc,0x48,0x48,0xff,0x00,0x00,0xff,0x48,0x48,0x48,0x00 - -, -0x00,0x07,0x01,0x01,0x03,0x02,0x02,0x3f,0x00,0x00,0x3f,0x02,0x02,0x02,0x00 - -, -/* @984 (15x15,V)@ [suki software]*/ -0x00,0x02,0x02,0x02,0x02,0x02,0x02,0xfe,0x20,0x50,0x48,0x84,0x00,0x00,0x00 - -, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x06,0x08,0x10,0x20,0x3c,0x00,0x00 - -, -/* @985 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x92,0x92,0xfe,0x00,0xfe,0x42,0x7e,0x42,0x42,0xff,0x02,0x00 - -, -0x20,0x18,0x07,0x10,0x20,0x1f,0x00,0x1f,0x20,0x20,0x20,0x20,0x20,0x3c,0x00 - -, -/* @986 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0x52,0x52,0x52,0xfe,0x02,0xfe,0x52,0x52,0x53,0x12,0x00,0x00 - -, -0x00,0x3f,0x10,0x12,0x12,0x12,0x1f,0x10,0x1f,0x12,0x12,0x12,0x12,0x00,0x00 - -, -/* @987 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe2,0x06,0x00,0x48,0x48,0xff,0x00,0x00,0xff,0x48,0x48,0x48,0x00 - -, -0x00,0x00,0x1f,0x08,0x04,0x02,0x02,0x3f,0x00,0x00,0x3f,0x02,0x02,0x02,0x00 - -, -/* @988 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0x04,0xfc,0x20,0x20,0x20,0xff,0x20,0x22,0x2c,0x20,0x20,0x00 - -, -0x00,0x07,0x01,0x21,0x23,0x10,0x08,0x06,0x01,0x01,0x06,0x08,0x30,0x10,0x00 - -, -/* @989 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x92,0x92,0xfe,0x08,0xe8,0x28,0x28,0xff,0x28,0x28,0xec,0x08,0x00 - -, -0x30,0x0f,0x10,0x20,0x1f,0x00,0x07,0x00,0x00,0x3f,0x00,0x04,0x07,0x00,0x00 - -, -/* @990 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfc,0x04,0x64,0x54,0x45,0xf6,0x44,0x44,0x54,0x64,0x46,0x44,0x00 - -, -0x20,0x1c,0x03,0x10,0x28,0x24,0x22,0x13,0x15,0x09,0x15,0x23,0x20,0x20,0x00 - -, -/* @991 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x00,0xe4,0x24,0x24,0xff,0x24,0xff,0x24,0x24,0x3e,0x04,0x00 - -, -0x02,0x3e,0x01,0x00,0x21,0x11,0x0d,0x03,0x01,0x3f,0x01,0x09,0x09,0x07,0x00 - -, -/* @992 (15x15,V)@ [suki software]*/ -0x00,0x82,0xba,0xaa,0xea,0xbf,0xaa,0xaa,0xff,0xaa,0xaa,0xae,0x60,0x00,0x00 - -, -0x00,0x20,0x20,0x27,0x10,0x08,0x06,0x00,0x08,0x08,0x17,0x30,0x00,0x00,0x00 - -, -/* @993 (15x15,V)@ [suki software]*/ -0x04,0x04,0x84,0x44,0x2f,0x14,0x04,0x04,0x34,0x4f,0x84,0x84,0x06,0x04,0x00 - -, -0x01,0x21,0x20,0x11,0x09,0x07,0x11,0x21,0x21,0x1f,0x00,0x00,0x01,0x01,0x00 - -, -/* @994 (15x15,V)@ [suki software]*/ -0x02,0xfa,0x8e,0x7a,0x8e,0xfa,0x42,0xb0,0x8e,0x80,0x87,0x98,0xa0,0x40,0x00 - -, -0x00,0x3f,0x12,0x12,0x12,0x1f,0x20,0x10,0x0c,0x13,0x20,0x10,0x0f,0x00,0x00 - -, -/* @995 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0x04,0xfc,0x40,0xb0,0x8e,0x80,0x87,0x88,0x90,0x60,0x20,0x00 - -, -0x00,0x03,0x01,0x21,0x23,0x10,0x08,0x07,0x10,0x20,0x10,0x0f,0x00,0x00,0x00 - -, -/* @996 (15x15,V)@ [suki software]*/ -0x20,0x10,0x2c,0xe3,0x2a,0x2a,0x6a,0xaa,0x2a,0x2a,0xea,0x0b,0x02,0x00,0x00 - -, -0x00,0x22,0x11,0x0a,0x06,0x12,0x22,0x1e,0x01,0x01,0x07,0x08,0x10,0x38,0x00 - -, -/* @997 (15x15,V)@ [suki software]*/ -0x40,0x40,0x20,0x50,0x48,0xc6,0x40,0x40,0x43,0x4c,0xd0,0x20,0x40,0x40,0x00 - -, -0x00,0x20,0x20,0x10,0x08,0x07,0x00,0x10,0x20,0x10,0x0f,0x00,0x00,0x00,0x00 - -, -/* @998 (15x15,V)@ [suki software]*/ -0x20,0x30,0xac,0x63,0x10,0x48,0xb0,0x8e,0x80,0x80,0x87,0x98,0x20,0x40,0x00 - -, -0x09,0x1b,0x09,0x05,0x25,0x10,0x08,0x04,0x13,0x20,0x10,0x0f,0x00,0x00,0x00 - -, -/* @999 (15x15,V)@ [suki software]*/ -0x10,0x10,0xff,0x10,0x10,0x08,0x78,0x88,0x09,0x0e,0xf8,0x08,0x0c,0x08,0x00 - -, -0x04,0x0c,0x07,0x24,0x22,0x12,0x08,0x05,0x02,0x05,0x08,0x10,0x30,0x10,0x00 - -, -/* @1000 (15x15,V)@ [suki software]*/ -0x40,0x24,0x14,0x0c,0x7f,0x14,0x44,0xa0,0x14,0x7f,0x14,0x24,0x44,0x00,0x00 - -, -0x00,0x20,0x20,0x14,0x13,0x08,0x04,0x03,0x04,0x0c,0x12,0x11,0x20,0x20,0x00 - -, -/* @1001 (15x15,V)@ [suki software]*/ -0x10,0x20,0x01,0xc6,0x30,0x40,0xb0,0x8e,0x80,0x87,0x98,0xa0,0x40,0x40,0x00 - -, -0x02,0x02,0x3f,0x00,0x20,0x10,0x08,0x07,0x10,0x20,0x10,0x0f,0x00,0x00,0x00 - -, -/* @1002 (15x15,V)@ [suki software]*/ -0x24,0x28,0xa0,0xff,0xa8,0x24,0x40,0xb0,0x8e,0x80,0x87,0x98,0x20,0x40,0x00 - -, -0x04,0x03,0x00,0x3f,0x00,0x21,0x10,0x0c,0x03,0x10,0x20,0x1f,0x00,0x00,0x00 - -, -/* @1003 (15x15,V)@ [suki software]*/ -0x80,0x84,0x44,0xa4,0x94,0x8c,0x87,0x84,0x8c,0x94,0xa4,0xc6,0x44,0x40,0x00 - -, -0x00,0x00,0x00,0x3f,0x14,0x14,0x14,0x1f,0x14,0x14,0x14,0x3f,0x00,0x00,0x00 - -, -/* @1004 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x80,0x60,0x98,0x86,0x80,0x87,0x98,0xa0,0x40,0x40,0x00 - -, -0x00,0x00,0x3f,0x00,0x20,0x10,0x08,0x07,0x10,0x20,0x10,0x0f,0x00,0x00,0x00 - -, -/* @1005 (15x15,V)@ [suki software]*/ -0x00,0x10,0x10,0x88,0x54,0x33,0x10,0x10,0x13,0xf4,0x08,0x10,0x10,0x10,0x00 - -, -0x00,0x11,0x0d,0x00,0x1e,0x20,0x22,0x25,0x21,0x20,0x38,0x02,0x0c,0x00,0x00 - -, -/* @1006 (15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x10,0x20,0xd4,0x7c,0x54,0x5f,0x54,0x7c,0x54,0xd4,0x10,0x00 - -, -0x00,0x00,0x3f,0x00,0x20,0x27,0x10,0x08,0x07,0x08,0x08,0x10,0x17,0x20,0x00 - -, -/* @1007 (15x15,V)@ [suki software]*/ -0x40,0x48,0x48,0x2a,0x2c,0xd8,0x08,0x3f,0xc8,0x1c,0x2a,0x28,0x48,0x40,0x00 - -, -0x00,0x24,0x25,0x15,0x0d,0x07,0x05,0x05,0x07,0x0d,0x15,0x15,0x25,0x04,0x00 - -, -/* @1008 (15x15,V)@ [suki software]*/ -0x00,0x08,0x48,0x48,0x48,0x48,0xff,0x48,0x48,0x48,0x48,0x4c,0x08,0x00,0x00 - -, -0x02,0x02,0x02,0x02,0x02,0x02,0x3f,0x02,0x02,0x02,0x02,0x02,0x03,0x02,0x00 - -, -/* @1009 (15x15,V)@ [suki software]*/ -0x40,0x48,0x48,0xff,0x48,0x48,0x48,0x10,0x90,0x10,0x10,0xff,0x10,0x10,0x00 - -, -0x10,0x32,0x12,0x1f,0x0a,0x0a,0x0a,0x00,0x00,0x13,0x20,0x1f,0x00,0x00,0x00 - -, -/* @1010 (15x15,V)@ [suki software]*/ -0x10,0xd0,0xff,0x50,0x90,0x00,0xfe,0x12,0x22,0xc2,0x32,0xff,0x02,0x00,0x00 - -, -0x03,0x00,0x3f,0x00,0x20,0x18,0x07,0x02,0x01,0x00,0x03,0x0f,0x10,0x3c,0x00 - -, -/* @1011 (15x15,V)@ [suki software]*/ -0xf0,0x10,0xff,0x10,0xf0,0x80,0x48,0xc4,0xab,0xd2,0xaa,0xa6,0xc2,0x40,0x00 - -, -0x11,0x11,0x0f,0x09,0x0d,0x18,0x00,0x0a,0x0a,0x3f,0x0a,0x0a,0x0a,0x08,0x00 - -, -/* @1012 (15x15,V)@ [suki software]*/ -0x00,0xf8,0x00,0xfe,0x00,0xf8,0x48,0xc4,0xab,0xd2,0x9a,0xa6,0xc2,0x40,0x00 - -, -0x00,0x07,0x04,0x03,0x02,0x07,0x08,0x0a,0x0a,0x3f,0x0a,0x0a,0x0a,0x08,0x00 - -, -/* @1013 (15x15,V)@ [suki software]*/ -0x20,0x38,0xe7,0x24,0x24,0x44,0xc8,0xa4,0xab,0xd2,0xaa,0xa6,0x40,0x40,0x00 - -, -0x01,0x01,0x1f,0x09,0x05,0x09,0x0a,0x0a,0x0a,0x3f,0x0a,0x0a,0x0a,0x08,0x00 - -, -/* @1014 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x02,0x12,0x22,0xc2,0x22,0x1a,0x02,0xff,0x02,0x00,0x00,0x00 - -, -0x20,0x18,0x07,0x08,0x04,0x03,0x00,0x01,0x06,0x00,0x03,0x0c,0x10,0x3c,0x00 - -, -/* @1015 (15x15,V)@ [suki software]*/ -0x08,0x30,0x80,0xfc,0x04,0xf4,0x54,0x95,0x16,0xd4,0x14,0xf4,0x06,0x04,0x00 - -, -0x21,0x11,0x2c,0x13,0x08,0x17,0x08,0x04,0x03,0x0c,0x00,0x0f,0x10,0x38,0x00 - -, -/* @1016 (15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x20,0x18,0x40,0xc8,0xa7,0xaa,0xd2,0xaa,0xa6,0xc2,0x40,0x00 - -, -0x20,0x18,0x07,0x02,0x04,0x08,0x0a,0x0a,0x0a,0x3f,0x0a,0x0a,0x0a,0x08,0x00 - -, -/* @1017 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x20,0x28,0x64,0x5b,0xf2,0x5a,0x56,0x22,0x20,0x20,0x00 - -, -0x20,0x10,0x0f,0x08,0x10,0x15,0x25,0x25,0x3f,0x25,0x25,0x25,0x24,0x20,0x00 - -, -/* @1018 (15x15,V)@ [suki software]*/ -0x00,0x02,0x8c,0x60,0x18,0x02,0xfa,0x82,0x82,0x82,0xff,0x82,0x80,0x00,0x00 - -, -0x02,0x02,0x3f,0x00,0x04,0x04,0x04,0x04,0x04,0x14,0x24,0x10,0x0f,0x00,0x00 - -, -/* @1019 (15x15,V)@ [suki software]*/ -0x20,0xb8,0x67,0x10,0x42,0xcc,0x00,0xa8,0xa4,0x9f,0xd4,0xac,0xa4,0x20,0x00 - -, -0x09,0x1b,0x09,0x25,0x10,0x0f,0x10,0x28,0x2a,0x2a,0x3f,0x2a,0x2a,0x28,0x00 - -, -/* @1020 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x00,0xfe,0x02,0x32,0xc2,0x3a,0x02,0xff,0x02,0x00,0x00 - -, -0x00,0x00,0x0f,0x24,0x1a,0x07,0x04,0x03,0x00,0x03,0x04,0x0f,0x10,0x3c,0x00 - -, -/* @1021 (15x15,V)@ [suki software]*/ -0x00,0x44,0x54,0x54,0xd4,0x74,0x5f,0x54,0x54,0xd4,0x54,0x56,0x44,0x00,0x00 - -, -0x04,0x04,0x0a,0x09,0x0a,0x0a,0x3f,0x0a,0x0a,0x0a,0x09,0x09,0x02,0x02,0x00 - -, -/* @1022 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x02,0x32,0x52,0x92,0x52,0x32,0x02,0xff,0x02,0x00,0x00,0x00 - -, -0x20,0x18,0x07,0x04,0x02,0x01,0x00,0x01,0x02,0x04,0x03,0x0c,0x10,0x3c,0x00 - -, -/* @1023 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x08,0xe8,0x28,0xff,0x28,0xff,0x28,0x28,0x38,0x00,0x00 - -, -0x00,0x00,0x3f,0x00,0x21,0x11,0x09,0x07,0x01,0x3f,0x05,0x09,0x09,0x07,0x00 - -, -/* @1024 (15x15,V)@ [suki software]*/ -0x00,0x42,0x42,0x22,0x12,0x0a,0x06,0x7e,0x0a,0x0a,0x92,0x12,0x23,0x62,0x00 - -, -0x00,0x00,0x00,0x3f,0x11,0x11,0x11,0x11,0x11,0x11,0x3f,0x01,0x00,0x00,0x00 - -, -/* @1025 (15x15,V)@ [suki software]*/ -0x00,0x40,0x48,0x48,0x48,0x48,0x48,0xff,0x48,0x48,0x48,0x4c,0x48,0x40,0x00 - -, -0x00,0x20,0x20,0x10,0x08,0x04,0x03,0x00,0x03,0x04,0x08,0x10,0x30,0x10,0x00 - -, -/* @1026 (15x15,V)@ [suki software]*/ -0x04,0xfc,0x54,0xff,0x54,0x55,0xfe,0x44,0x30,0xcf,0x08,0x08,0xfc,0x08,0x00 - -, -0x21,0x21,0x19,0x07,0x25,0x25,0x1d,0x21,0x10,0x0b,0x04,0x0b,0x10,0x20,0x00 - -, -/* @1027 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x92,0x92,0xfe,0x00,0x88,0x88,0x88,0xff,0x88,0x8c,0x88,0x80,0x00 - -, -0x30,0x0f,0x10,0x20,0x1f,0x20,0x10,0x08,0x06,0x01,0x06,0x08,0x10,0x20,0x00 - -, -/* @1028 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x22,0xfa,0x00,0xfc,0x24,0xfc,0x4a,0x52,0x4a,0xd1,0x4d,0x00,0x00 - -, -0x20,0x13,0x09,0x07,0x00,0x3f,0x02,0x03,0x12,0x22,0x1f,0x02,0x02,0x02,0x00 - -, -/* @1029 (15x15,V)@ [suki software]*/ -0x08,0x08,0xff,0x88,0x48,0x80,0x88,0x88,0xff,0x88,0x88,0x8c,0xc8,0x80,0x00 - -, -0x11,0x21,0x1f,0x00,0x20,0x10,0x08,0x06,0x01,0x02,0x04,0x08,0x10,0x20,0x00 - -, -/* @1030 (15x15,V)@ [suki software]*/ -0x08,0x88,0xff,0x48,0x00,0xe8,0x28,0xff,0x28,0x28,0xff,0x28,0x38,0x00,0x00 - -, -0x11,0x20,0x1f,0x00,0x20,0x11,0x09,0x07,0x01,0x01,0x3f,0x09,0x09,0x07,0x00 - -, -/* @1031 (15x15,V)@ [suki software]*/ -0x44,0x74,0x4f,0xf4,0x44,0x44,0x82,0xba,0xaa,0xaa,0xaa,0xba,0x83,0x02,0x00 - -, -0x04,0x0c,0x04,0x3f,0x02,0x02,0x3f,0x14,0x14,0x1f,0x14,0x14,0x3f,0x00,0x00 - -, -/* @1032 (15x15,V)@ [suki software]*/ -0xf8,0x08,0xff,0x08,0xf8,0x00,0x82,0xba,0xaa,0xaa,0xaa,0xba,0x83,0x02,0x00 - -, -0x07,0x00,0x3f,0x04,0x07,0x00,0x3f,0x14,0x14,0x1f,0x14,0x14,0x3f,0x00,0x00 - -, -/* @1033 (15x15,V)@ [suki software]*/ -0x10,0x48,0x54,0xf3,0x56,0x56,0xf6,0x56,0xd6,0x16,0xf2,0x02,0x02,0x00,0x00 - -, -0x20,0x27,0x15,0x0f,0x05,0x05,0x3f,0x15,0x1d,0x00,0x07,0x08,0x10,0x3c,0x00 - -, -/* @1034 (15x15,V)@ [suki software]*/ -0x10,0x08,0x84,0xc7,0x34,0x4c,0x54,0x48,0x44,0x47,0xe4,0x4c,0x46,0x44,0x00 - -, -0x02,0x01,0x00,0x3f,0x00,0x00,0x01,0x06,0x10,0x20,0x1f,0x00,0x00,0x00,0x00 - -, -/* @1035 (15x15,V)@ [suki software]*/ -0x40,0x20,0x10,0xfc,0x03,0x20,0x20,0x20,0xff,0x20,0x22,0x2c,0x20,0x20,0x00 - -, -0x00,0x00,0x00,0x3f,0x20,0x10,0x0c,0x03,0x00,0x03,0x04,0x08,0x30,0x10,0x00 - -, -/* @1036 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x00,0x4a,0x52,0x46,0x5a,0xc2,0x51,0x4d,0x01,0x00,0x00 - -, -0x00,0x00,0x3f,0x00,0x02,0x02,0x12,0x22,0x1f,0x02,0x02,0x02,0x02,0x02,0x00 - -, -/* @1037 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x92,0x92,0xfe,0x00,0xfe,0x42,0xc2,0x52,0x52,0xcf,0x02,0x00 - -, -0x20,0x18,0x07,0x10,0x20,0x1f,0x00,0x3f,0x10,0x0b,0x04,0x0b,0x30,0x10,0x00 - -, -}, -//************************************** -{ -/* @1038 (15x15,V)@ [suki software]*/ -0x10,0x21,0x86,0x60,0x02,0x26,0x2a,0x22,0xae,0xa2,0x71,0x2d,0x01,0x00,0x00 - -, -0x02,0x3e,0x01,0x00,0x02,0x02,0x12,0x22,0x1f,0x02,0x02,0x02,0x03,0x02,0x00 - -, -/* @1039 (15x15,V)@ [suki software]*/ -0x10,0x61,0x02,0xc6,0x30,0x44,0x4c,0x74,0x45,0x46,0x64,0x5c,0x44,0x40,0x00 - -, -0x02,0x02,0x3f,0x00,0x00,0x00,0x3f,0x11,0x11,0x11,0x11,0x3f,0x00,0x00,0x00 - -, -/* @1040 (15x15,V)@ [suki software]*/ -0x08,0x08,0x89,0xee,0x98,0x02,0x82,0xba,0xaa,0xaa,0xaa,0xba,0x83,0x02,0x00 - -, -0x02,0x01,0x00,0x3f,0x00,0x01,0x3f,0x12,0x12,0x1f,0x12,0x12,0x3f,0x00,0x00 - -, -/* @1041 (15x15,V)@ [suki software]*/ -0x08,0x88,0xc9,0x2e,0x98,0x20,0xf8,0x07,0x20,0x20,0xff,0x22,0x2c,0x20,0x00 - -, -0x01,0x00,0x3f,0x01,0x02,0x00,0x3f,0x20,0x18,0x07,0x00,0x07,0x18,0x20,0x00 - -, -/* @1042 (15x15,V)@ [suki software]*/ -0x00,0x00,0xe4,0x24,0x24,0xff,0x24,0x24,0xff,0x24,0x24,0x3e,0x04,0x00,0x00 - -, -0x00,0x20,0x21,0x11,0x09,0x07,0x01,0x01,0x3f,0x01,0x09,0x11,0x0f,0x00,0x00 - -, -/* @1043 (15x15,V)@ [suki software]*/ -0x04,0x04,0xf4,0x94,0x94,0x94,0xff,0x94,0x94,0x95,0x96,0xf4,0x04,0x04,0x00 - -, -0x00,0x00,0x3f,0x04,0x04,0x04,0x3f,0x04,0x04,0x14,0x24,0x1f,0x00,0x00,0x00 - -, -/* @1044 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x28,0x22,0x22,0xfe,0xa2,0x22,0x22,0x22,0x20,0x00 - -, -0x01,0x11,0x20,0x1f,0x20,0x10,0x0c,0x03,0x00,0x1f,0x20,0x20,0x20,0x3c,0x00 - -, -/* @1045 (15x15,V)@ [suki software]*/ -0x44,0x74,0x4c,0xf7,0x44,0x00,0xe8,0xa8,0xa8,0xff,0xa8,0xaa,0xec,0x08,0x00 - -, -0x02,0x06,0x02,0x3f,0x01,0x00,0x3f,0x02,0x02,0x3f,0x02,0x22,0x3f,0x00,0x00 - -, -/* @1046 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x00,0xfc,0x84,0xc4,0x35,0x46,0x44,0x44,0xf6,0x44,0x00 - -, -0x00,0x00,0x3f,0x20,0x18,0x07,0x00,0x3f,0x00,0x01,0x12,0x20,0x1f,0x00,0x00 - -, -/* @1047 (15x15,V)@ [suki software]*/ -0x40,0x48,0x48,0x44,0xa6,0xa9,0x90,0x90,0xa8,0xa5,0xa2,0x42,0x44,0x40,0x00 - -, -0x00,0x20,0x22,0x22,0x2a,0x32,0x22,0x3f,0x22,0x32,0x2a,0x22,0x32,0x20,0x00 - -, -/* @1048 (15x15,V)@ [suki software]*/ -0x00,0x44,0x44,0xa2,0xa1,0x94,0x88,0x88,0x54,0x51,0x21,0x22,0x24,0x20,0x00 - -, -0x00,0x20,0x10,0x0f,0x02,0x02,0x02,0x02,0x3e,0x02,0x02,0x03,0x02,0x00,0x00 - -, -/* @1049 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x12,0x12,0xfe,0x08,0xe8,0xa8,0xa8,0xff,0xa8,0xaa,0xec,0x08,0x00 - -, -0x30,0x0f,0x11,0x21,0x1f,0x00,0x3f,0x02,0x02,0x3f,0x02,0x22,0x3f,0x00,0x00 - -, -/* @1050 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x12,0x12,0xfe,0x00,0xfc,0x44,0xe4,0x1d,0x26,0x24,0xfc,0x24,0x00 - -, -0x30,0x0f,0x11,0x21,0x1f,0x20,0x1f,0x00,0x3f,0x00,0x13,0x20,0x1f,0x00,0x00 - -, -/* @1051 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfc,0x84,0x44,0xe4,0x1d,0x46,0x44,0x44,0x44,0xfc,0x44,0x44,0x00 - -, -0x20,0x18,0x07,0x00,0x00,0x3f,0x00,0x01,0x06,0x10,0x20,0x1f,0x00,0x00,0x00 - -, -/* @1052 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x22,0x12,0x7a,0x06,0x0b,0x9a,0x2a,0x4a,0x7e,0x0a,0x0a,0x00 - -, -0x20,0x1c,0x03,0x00,0x3f,0x01,0x15,0x0b,0x05,0x0b,0x15,0x21,0x3f,0x00,0x00 - -, -/* @1053 (15x15,V)@ [suki software]*/ -0x20,0x24,0xa4,0x24,0xff,0x24,0x24,0x24,0x00,0xff,0x10,0x20,0x20,0x40,0x00 - -, -0x20,0x18,0x07,0x08,0x1f,0x11,0x21,0x21,0x20,0x2f,0x20,0x20,0x20,0x20,0x00 - -, -/* @1054 (15x15,V)@ [suki software]*/ -0x02,0x82,0xba,0xaa,0xaa,0xaa,0xba,0x83,0x02,0xf8,0x00,0x00,0xff,0x00,0x00 - -, -0x00,0x3f,0x14,0x14,0x1f,0x14,0x14,0x3f,0x00,0x07,0x10,0x20,0x1f,0x00,0x00 - -, -/* @1055 (15x15,V)@ [suki software]*/ -0x80,0x81,0x5d,0xb5,0x15,0x9f,0xf5,0x55,0x5f,0x55,0x55,0xdd,0x41,0x00,0x00 - -, -0x04,0x02,0x3f,0x00,0x20,0x28,0x27,0x2d,0x15,0x15,0x2d,0x27,0x20,0x20,0x00 - -, -/* @1056 (15x15,V)@ [suki software]*/ -0xfe,0x02,0xfa,0x02,0xfe,0x10,0x94,0x14,0xd4,0x14,0xff,0x12,0x14,0x10,0x00 - -, -0x23,0x18,0x07,0x08,0x11,0x30,0x1f,0x10,0x0f,0x09,0x01,0x0e,0x10,0x38,0x00 - -, -/* @1057 (15x15,V)@ [suki software]*/ -0x00,0x10,0x08,0x04,0xfb,0xaa,0xaa,0xaa,0xaa,0xaa,0xfa,0x03,0x02,0x00,0x00 - -, -0x00,0x20,0x28,0x24,0x23,0x12,0x16,0x0a,0x0a,0x16,0x12,0x20,0x20,0x20,0x00 - -, -/* @1058 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x00,0xf4,0x54,0x54,0xff,0x54,0x55,0x56,0xf4,0x04,0x00 - -, -0x00,0x00,0x3f,0x00,0x04,0x07,0x05,0x0d,0x17,0x05,0x25,0x3f,0x05,0x04,0x00 - -, -/* @1059 (15x15,V)@ [suki software]*/ -0x80,0x40,0x20,0xf8,0x07,0x10,0x90,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x00 - -, -0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x03,0x00,0x10,0x20,0x1f,0x00,0x00,0x00 - -, -/* @1060 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0xfc,0x54,0x54,0x56,0x55,0x54,0x54,0x5e,0xc4,0x00,0x00,0x00 - -, -0x04,0x04,0x04,0x05,0x05,0x05,0x05,0x3f,0x05,0x05,0x05,0x05,0x04,0x04,0x00 - -, -/* @1061 (15x15,V)@ [suki software]*/ -0x00,0x10,0x10,0x08,0x64,0x82,0x00,0x00,0x00,0x82,0x64,0x08,0x18,0x00,0x00 - -, -0x20,0x20,0x20,0x10,0x10,0x08,0x05,0x02,0x05,0x08,0x08,0x10,0x30,0x10,0x00 - -, -/* @1062 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x92,0x92,0xfe,0x08,0x04,0xfb,0xaa,0xaa,0xaa,0xaa,0xfa,0x02,0x00 - -, -0x30,0x0f,0x10,0x20,0x1f,0x20,0x24,0x12,0x17,0x0a,0x0a,0x16,0x32,0x10,0x00 - -, -/* @1063 (15x15,V)@ [suki software]*/ -0x00,0x20,0x10,0x08,0xf4,0x17,0x14,0xd4,0x1c,0x16,0x14,0xf0,0x00,0x00,0x00 - -, -0x00,0x20,0x20,0x20,0x17,0x10,0x08,0x07,0x08,0x08,0x10,0x17,0x30,0x00,0x00 - -, -/* @1064 (15x15,V)@ [suki software]*/ -0x00,0x08,0x06,0x0a,0xea,0xaa,0xaa,0xab,0xaa,0xaa,0xea,0x02,0x0a,0x06,0x00 - -, -0x00,0x00,0x00,0x3e,0x2a,0x2a,0x2a,0x3e,0x2a,0x2a,0x2a,0x3e,0x00,0x00,0x00 - -, -/* @1065 (15x15,V)@ [suki software]*/ -0x20,0x20,0x21,0xe6,0x00,0x00,0x00,0x00,0x00,0xff,0x20,0x40,0x80,0x80,0x00 - -, -0x00,0x00,0x00,0x1f,0x08,0x04,0x02,0x00,0x00,0x3f,0x00,0x00,0x00,0x01,0x00 - -, -/* @1066 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0x32,0xce,0x20,0xf8,0x17,0x50,0x90,0x10,0xff,0x10,0x10,0x00 - -, -0x00,0x3f,0x02,0x04,0x03,0x00,0x3f,0x00,0x00,0x11,0x20,0x1f,0x00,0x00,0x00 - -, -/* @1067 (15x15,V)@ [suki software]*/ -0x08,0x08,0xf8,0x0f,0x08,0xf8,0x04,0x44,0x44,0x44,0x44,0x44,0xfe,0x04,0x00 - -, -0x20,0x11,0x0a,0x04,0x0a,0x11,0x00,0x08,0x08,0x08,0x08,0x08,0x1f,0x00,0x00 - -, -/* @1068 (15x15,V)@ [suki software]*/ -0x20,0x38,0xa7,0x60,0x18,0x04,0xf4,0x54,0x54,0xff,0x54,0x55,0xf6,0x04,0x00 - -, -0x09,0x1b,0x09,0x05,0x05,0x04,0x07,0x0d,0x15,0x07,0x25,0x3f,0x05,0x04,0x00 - -, -/* @1069 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0x04,0xfc,0x20,0xf8,0x07,0x50,0x90,0x10,0xff,0x10,0x10,0x00 - -, -0x00,0x07,0x02,0x02,0x03,0x00,0x3f,0x00,0x00,0x11,0x20,0x1f,0x00,0x00,0x00 - -, -/* @1070 (15x15,V)@ [suki software]*/ -0xfc,0x04,0x04,0xfc,0x02,0xfa,0xaa,0xaf,0xaa,0xaa,0xaf,0xfa,0x82,0x02,0x00 - -, -0x07,0x01,0x01,0x03,0x04,0x02,0x0f,0x0c,0x0a,0x09,0x2a,0x24,0x1f,0x00,0x00 - -, -/* @1071 (15x15,V)@ [suki software]*/ -0xfc,0x04,0x04,0xfc,0x02,0xfa,0xaa,0xae,0xaa,0xaa,0xaa,0xfa,0x03,0x02,0x00 - -, -0x03,0x01,0x01,0x21,0x24,0x24,0x24,0x15,0x0a,0x0a,0x17,0x12,0x22,0x3a,0x00 - -, -/* @1072 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe2,0x06,0x00,0x04,0x64,0x54,0x4d,0xc6,0x44,0x34,0x84,0x04,0x00 - -, -0x00,0x00,0x1f,0x08,0x00,0x24,0x24,0x12,0x11,0x08,0x04,0x0a,0x11,0x30,0x00 - -, -/* @1073 (15x15,V)@ [suki software]*/ -0x04,0xc4,0x44,0x44,0x44,0x7e,0x44,0x30,0xdf,0x10,0x10,0xf0,0x18,0x10,0x00 - -, -0x00,0x1f,0x10,0x08,0x08,0x24,0x20,0x10,0x0b,0x04,0x0a,0x11,0x20,0x20,0x00 - -, -/* @1074 (15x15,V)@ [suki software]*/ -0x08,0xc8,0xff,0x28,0x48,0xfe,0x92,0xfe,0x00,0x7a,0x42,0xfe,0x42,0x42,0x00 - -, -0x03,0x00,0x3f,0x00,0x00,0x0f,0x24,0x26,0x10,0x0c,0x03,0x3f,0x20,0x38,0x00 - -, -/* @1075 (15x15,V)@ [suki software]*/ -0x40,0x30,0xef,0x28,0x28,0x28,0x02,0xfa,0x82,0xfe,0x92,0x92,0x93,0x02,0x00 - -, -0x01,0x01,0x1f,0x11,0x09,0x05,0x00,0x00,0x00,0x10,0x20,0x10,0x0f,0x00,0x00 - -, -/* @1076 (15x15,V)@ [suki software]*/ -0x00,0x84,0x94,0x94,0x95,0x96,0xfc,0x94,0x96,0x95,0x94,0x94,0x84,0x00,0x00 - -, -0x20,0x20,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3e,0x20,0x20,0x00 - -, -/* @1077 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x40,0xfe,0x92,0xfe,0x00,0x7a,0x42,0xfe,0x42,0x43,0x42,0x00 - -, -0x02,0x3e,0x01,0x00,0x0f,0x08,0x26,0x14,0x08,0x06,0x01,0x3f,0x20,0x38,0x00 - -, -/* @1078 (15x15,V)@ [suki software]*/ -0x40,0x42,0x42,0x42,0x42,0x42,0xfe,0x42,0x42,0x42,0x43,0x42,0x60,0x40,0x00 - -, -0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 - -, -/* @1079 (15x15,V)@ [suki software]*/ -0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x18,0x10,0x00 - -, -0x00,0x00,0x00,0x3f,0x11,0x11,0x11,0x11,0x11,0x3f,0x00,0x00,0x00,0x00,0x00 - -, -/* @1080 (15x15,V)@ [suki software]*/ -0x08,0x08,0xc8,0xff,0x48,0x88,0x42,0x42,0x42,0xfe,0x42,0x43,0x42,0x40,0x00 - -, -0x04,0x03,0x00,0x3f,0x00,0x01,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00 - -, -/* @1081 (15x15,V)@ [suki software]*/ -0x10,0x90,0xff,0x50,0x90,0x00,0x10,0xff,0x10,0x10,0x10,0xff,0x10,0x10,0x00 - -, -0x06,0x01,0x3f,0x00,0x00,0x01,0x00,0x3f,0x11,0x11,0x11,0x3f,0x00,0x00,0x00 - -, -/* @1082 (15x15,V)@ [suki software]*/ -0x10,0x08,0x24,0x27,0x2c,0x24,0x34,0xe8,0x24,0x27,0x2c,0x34,0x26,0x04,0x00 - -, -0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x3f,0x01,0x01,0x01,0x01,0x01,0x01,0x00 - -, -/* @1083 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x92,0x92,0xfe,0x40,0x42,0x42,0xfe,0x42,0x43,0x42,0x40,0x00 - -, -0x20,0x18,0x07,0x10,0x20,0x1f,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00 - -, -/* @1084 (15x15,V)@ [suki software]*/ -0x20,0x24,0x24,0x24,0xff,0x24,0x24,0x42,0x42,0x42,0xfe,0x43,0x42,0x40,0x00 - -, -0x20,0x18,0x07,0x08,0x1f,0x12,0x22,0x20,0x20,0x20,0x2f,0x20,0x20,0x20,0x00 - -, -/* @1085 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfc,0x14,0xd4,0x54,0x54,0xd4,0x07,0xbc,0xc5,0x26,0x14,0x84,0x00 - -, -0x02,0x11,0x0c,0x00,0x1d,0x21,0x25,0x29,0x21,0x20,0x38,0x05,0x1a,0x03,0x00 - -, -/* @1086 (15x15,V)@ [suki software]*/ -0x12,0x12,0xd2,0xfe,0x51,0x91,0x40,0x42,0x42,0xfe,0x42,0x43,0x62,0x40,0x00 - -, -0x04,0x03,0x00,0x3f,0x00,0x01,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00 - -, -/* @1087 (15x15,V)@ [suki software]*/ -0x08,0x0a,0xfa,0x4a,0x4e,0xfa,0x08,0x48,0x30,0xcf,0x08,0x88,0x7c,0x08,0x00 - -, -0x08,0x08,0x0f,0x05,0x05,0x3f,0x04,0x24,0x10,0x09,0x06,0x09,0x10,0x20,0x00 - -, -/* @1088 (15x15,V)@ [suki software]*/ -0x10,0xd4,0xdd,0x56,0x5c,0xd4,0x90,0xa4,0x97,0xaa,0xea,0xb6,0x92,0x90,0x00 - -, -0x08,0x0b,0x0a,0x3f,0x0a,0x0b,0x20,0x2f,0x10,0x0e,0x08,0x10,0x2f,0x20,0x00 - -, -/* @1089 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x02,0x12,0x22,0x42,0x82,0x62,0x1a,0x02,0x02,0xff,0x02,0x00 - -, -0x00,0x00,0x3f,0x08,0x04,0x02,0x01,0x00,0x01,0x06,0x10,0x20,0x1f,0x00,0x00 - -, -/* @1090 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x12,0xa2,0x42,0xb2,0x02,0xff,0x02,0x00,0xfc,0x00,0xff,0x00,0x00 - -, -0x00,0x3f,0x01,0x00,0x00,0x10,0x21,0x1f,0x00,0x00,0x17,0x20,0x1f,0x00,0x00 - -, -/* @1091 (15x15,V)@ [suki software]*/ -0x40,0x30,0xef,0x28,0x28,0x00,0xfe,0x12,0x22,0xc2,0x3a,0x02,0xff,0x02,0x00 - -, -0x01,0x01,0x1f,0x11,0x09,0x00,0x3f,0x04,0x03,0x00,0x11,0x22,0x1f,0x00,0x00 - -, -/* @1092 (15x15,V)@ [suki software]*/ -0x50,0x48,0x47,0x44,0xfc,0x44,0x40,0x04,0x04,0x04,0xfc,0x04,0x06,0x04,0x00 - -, -0x00,0x1f,0x10,0x10,0x0f,0x08,0x1f,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x00 - -, -/* @1093 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x92,0x92,0xfe,0x00,0x04,0x04,0xfc,0x04,0x06,0x04,0x00,0x00 - -, -0x20,0x18,0x07,0x10,0x20,0x1f,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x10,0x00 - -, -/* @1094 (15x15,V)@ [suki software]*/ -0x20,0x30,0xac,0x63,0x18,0x00,0xfe,0x12,0x22,0xc2,0x3a,0x02,0xff,0x02,0x00 - -, -0x10,0x13,0x0a,0x09,0x09,0x00,0x3f,0x02,0x01,0x00,0x13,0x20,0x1f,0x00,0x00 - -, -/* @1095 (15x15,V)@ [suki software]*/ -0x00,0x00,0xee,0x28,0x28,0xa8,0x28,0x2f,0x28,0xa8,0x28,0x2e,0xe0,0x00,0x00 - -, -0x00,0x00,0x3f,0x00,0x08,0x08,0x05,0x02,0x05,0x08,0x00,0x20,0x3f,0x00,0x00 - -, -/* @1096 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x24,0xa4,0xff,0xa4,0xa4,0xa4,0xff,0xa4,0x24,0x20,0x00 - -, -0x02,0x3e,0x01,0x02,0x01,0x00,0x1f,0x24,0x24,0x24,0x27,0x20,0x39,0x01,0x00 - -, -/* @1097 (15x15,V)@ [suki software]*/ -0x08,0x88,0x48,0xff,0x48,0x88,0x04,0x04,0x04,0xfc,0x04,0x06,0x04,0x00,0x00 - -, -0x06,0x01,0x00,0x3f,0x00,0x11,0x10,0x10,0x10,0x1f,0x10,0x10,0x18,0x10,0x00 - -, -/* @1098 (15x15,V)@ [suki software]*/ -0x18,0x14,0x12,0xd7,0x5a,0x52,0x5a,0x54,0x53,0x56,0xda,0x12,0x12,0x10,0x00 - -, -0x00,0x3f,0x01,0x01,0x1d,0x15,0x15,0x15,0x15,0x1d,0x01,0x21,0x3f,0x00,0x00 - -, -/* @1099 (15x15,V)@ [suki software]*/ -0x80,0x80,0xbe,0xaa,0xaa,0xaa,0xeb,0xaa,0xaa,0xaa,0xbf,0x82,0xc0,0x80,0x00 - -, -0x08,0x08,0x04,0x02,0x05,0x04,0x3e,0x04,0x05,0x06,0x02,0x04,0x0c,0x04,0x00 - -, -/* @1100 (15x15,V)@ [suki software]*/ -0x00,0x02,0x82,0x82,0xba,0xaa,0xaa,0xab,0xaa,0xaa,0xba,0x82,0x82,0x02,0x00 - -, -0x00,0x00,0x3f,0x00,0x00,0x0e,0x0a,0x0a,0x0a,0x0e,0x00,0x20,0x3f,0x00,0x00 - -, -/* @1101 (15x15,V)@ [suki software]*/ -0x80,0x62,0x22,0x22,0xba,0xaa,0xaa,0xab,0xaa,0xaa,0xba,0x22,0xa2,0x60,0x00 - -, -0x00,0x00,0x00,0x3e,0x0b,0x0a,0x0a,0x0a,0x0a,0x0a,0x2b,0x3e,0x00,0x00,0x00 - -, -/* @1102 (15x15,V)@ [suki software]*/ -0x00,0x08,0x48,0x49,0x4a,0x4c,0xf8,0x48,0x4c,0x4a,0x49,0x48,0x08,0x00,0x00 - -, -0x02,0x22,0x1a,0x02,0x02,0x0a,0x33,0x02,0x0a,0x32,0x02,0x0a,0x32,0x02,0x00 - -, -/* @1103 (15x15,V)@ [suki software]*/ -0x24,0x28,0xa0,0xff,0xa8,0x24,0x48,0x49,0x4e,0xf8,0x4c,0x4b,0x48,0x08,0x00 - -, -0x04,0x03,0x00,0x3f,0x00,0x23,0x1a,0x02,0x1a,0x03,0x1a,0x02,0x0a,0x32,0x00 - -, -/* @1104 (15x15,V)@ [suki software]*/ -0x08,0x08,0xff,0x88,0x48,0x82,0x82,0xba,0xaa,0xab,0xaa,0xba,0x82,0x02,0x00 - -, -0x11,0x21,0x1f,0x00,0x00,0x3f,0x00,0x0e,0x0a,0x0a,0x0e,0x20,0x3f,0x00,0x00 - -, -/* @1105 (15x15,V)@ [suki software]*/ -0x20,0x38,0xe7,0x24,0x24,0x02,0x82,0xba,0xaa,0xab,0xaa,0xba,0x82,0x02,0x00 - -, -0x01,0x01,0x1f,0x11,0x09,0x00,0x3f,0x00,0x0e,0x0a,0x0e,0x20,0x3f,0x00,0x00 - -, -/* @1106 (15x15,V)@ [suki software]*/ -0x12,0xd2,0xfe,0x91,0x11,0x82,0x82,0xba,0xaa,0xab,0xaa,0xba,0x82,0x02,0x00 - -, -0x03,0x00,0x3f,0x00,0x01,0x3f,0x00,0x0e,0x0a,0x0a,0x0e,0x20,0x3f,0x00,0x00 - -, -/* @1107 (15x15,V)@ [suki software]*/ -0x40,0x50,0x48,0x4e,0x48,0x48,0x48,0x7f,0x48,0x48,0x48,0x4c,0x68,0x40,0x00 - -, -0x00,0x00,0x00,0x3f,0x11,0x11,0x11,0x11,0x11,0x11,0x3f,0x00,0x00,0x00,0x00 - -, -/* @1108 (15x15,V)@ [suki software]*/ -0x00,0x82,0x82,0xba,0xaa,0xaa,0xaa,0xba,0x82,0x82,0xfe,0x83,0xc2,0x80,0x00 - -, -0x00,0x00,0x00,0x0e,0x0a,0x0a,0x0a,0x0e,0x10,0x20,0x1f,0x00,0x00,0x00,0x00 - -, -/* @1109 (15x15,V)@ [suki software]*/ -0x82,0xba,0xaa,0xaa,0xba,0x82,0xfe,0xa2,0x18,0x0f,0xe8,0x08,0x28,0x18,0x00 - -, -0x00,0x0e,0x0a,0x0a,0x0e,0x20,0x1f,0x20,0x18,0x06,0x01,0x06,0x18,0x20,0x00 - -, -/* @1110 (15x15,V)@ [suki software]*/ -0x08,0x08,0xff,0x88,0x00,0xf9,0x42,0x24,0xb8,0x54,0xb4,0x04,0xfe,0x04,0x00 - -, -0x11,0x21,0x1f,0x00,0x00,0x3f,0x01,0x0f,0x0a,0x0a,0x0e,0x21,0x3f,0x00,0x00 - -, -/* @1111 (15x15,V)@ [suki software]*/ -0x20,0x20,0x20,0x20,0x20,0x3f,0xd0,0x10,0x11,0x12,0x94,0x50,0x10,0x10,0x00 - -, -0x00,0x10,0x10,0x10,0x08,0x08,0x05,0x06,0x0a,0x11,0x10,0x20,0x20,0x38,0x00 - -, -/* @1112 (15x15,V)@ [suki software]*/ -0x20,0x10,0xac,0xa3,0xa4,0xa8,0x00,0xfc,0x04,0x37,0x44,0x44,0x3e,0x04,0x00 - -, -0x00,0x00,0x1f,0x08,0x08,0x1f,0x04,0x05,0x05,0x05,0x15,0x25,0x11,0x0f,0x00 - -, -/* @1113 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x92,0x92,0xfe,0x00,0x10,0x8c,0x57,0x24,0x54,0x8e,0x84,0x80,0x00 - -, -0x30,0x0f,0x10,0x20,0x1f,0x01,0x01,0x3e,0x12,0x12,0x12,0x3e,0x01,0x00,0x00 - -, -/* @1114 (15x15,V)@ [suki software]*/ -0x08,0x90,0x40,0xfc,0x44,0x24,0x9c,0x95,0x96,0x94,0x94,0x94,0x16,0x04,0x00 - -, -0x21,0x10,0x0c,0x03,0x00,0x18,0x24,0x22,0x22,0x21,0x20,0x20,0x20,0x38,0x00 - -, -/* @1115 (15x15,V)@ [suki software]*/ -0x0c,0x54,0x54,0x55,0xfe,0x54,0x54,0x54,0x0c,0x00,0xf8,0x00,0xff,0x00,0x00 - -, -0x01,0x3d,0x25,0x25,0x27,0x25,0x3d,0x01,0x01,0x00,0x17,0x20,0x1f,0x00,0x00 - -, -/* @1116 (15x15,V)@ [suki software]*/ -0x00,0x04,0xc4,0x44,0x5f,0x54,0xf4,0x54,0x54,0x5f,0x44,0xc4,0x04,0x00,0x00 - -, -0x04,0x04,0x05,0x05,0x05,0x05,0x3f,0x05,0x05,0x05,0x05,0x05,0x04,0x04,0x00 - -, -/* @1117 (15x15,V)@ [suki software]*/ -0x00,0x02,0x02,0xfa,0xaa,0xaf,0xaa,0xaa,0xaa,0xaf,0xfa,0x02,0x02,0x02,0x00 - -, -0x04,0x04,0x02,0x1f,0x12,0x1a,0x16,0x12,0x16,0x2a,0x22,0x12,0x0e,0x00,0x00 - -, -/* @1118 (15x15,V)@ [suki software]*/ -0x08,0xc8,0xff,0x48,0x88,0x10,0x08,0x8f,0x54,0x24,0x54,0x8e,0x84,0x80,0x00 - -, -0x03,0x00,0x3f,0x00,0x00,0x01,0x3f,0x12,0x12,0x12,0x12,0x3e,0x01,0x00,0x00 - -, -/* @1119 (15x15,V)@ [suki software]*/ -0xf0,0x10,0xff,0x10,0x10,0xf0,0x20,0x10,0x2c,0x23,0x24,0x28,0x10,0x20,0x00 - -, -0x11,0x11,0x0f,0x09,0x0d,0x19,0x00,0x3f,0x11,0x11,0x11,0x11,0x3f,0x00,0x00 - -, -/* @1120 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x01,0x46,0x20,0x9a,0x6e,0x4a,0xaa,0x1a,0x02,0x02,0xff,0x02,0x00 - -, -0x00,0x3f,0x00,0x01,0x01,0x0f,0x09,0x09,0x0f,0x01,0x11,0x20,0x1f,0x00,0x00 - -, -/* @1121 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x22,0xda,0x06,0x80,0x82,0xba,0xaa,0xaa,0xaa,0xbb,0x82,0x00,0x00 - -, -0x00,0x3f,0x02,0x03,0x00,0x3f,0x00,0x04,0x05,0x1e,0x05,0x24,0x3f,0x00,0x00 - -, -/* @1122 (15x15,V)@ [suki software]*/ -0x40,0x30,0xef,0x24,0x24,0x20,0x10,0x8c,0x57,0x24,0x54,0x8c,0x80,0x80,0x00 - -, -0x01,0x01,0x3f,0x11,0x09,0x00,0x01,0x3f,0x11,0x11,0x11,0x3f,0x00,0x00,0x00 - -, -/* @1123 (15x15,V)@ [suki software]*/ -0x40,0x40,0x20,0x10,0x08,0x04,0xe3,0x04,0x08,0x10,0x20,0x20,0x40,0x40,0x00 - -, -0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 - -, -/* @1124 (15x15,V)@ [suki software]*/ -0x00,0x10,0x08,0x04,0x8b,0x52,0x22,0x52,0x4a,0x86,0x80,0x00,0x00,0x00,0x00 - -, -0x02,0x02,0x01,0x3f,0x11,0x11,0x11,0x11,0x11,0x3f,0x00,0x01,0x01,0x01,0x00 - -, -/* @1125 (15x15,V)@ [suki software]*/ -0x20,0x30,0xac,0x63,0x10,0x20,0x50,0x4c,0x43,0x44,0x48,0x50,0x20,0x20,0x00 - -, -0x12,0x13,0x12,0x09,0x09,0x00,0x3f,0x11,0x11,0x11,0x11,0x3f,0x00,0x00,0x00 - -, -/* @1126 (15x15,V)@ [suki software]*/ -0x08,0xc8,0xff,0x48,0x88,0x00,0xfe,0x52,0xd2,0x52,0x52,0x7f,0x82,0x00,0x00 - -, -0x03,0x00,0x3f,0x00,0x00,0x00,0x3f,0x20,0x11,0x06,0x0a,0x11,0x20,0x20,0x00 - -, -/* @1127 (15x15,V)@ [suki software]*/ -0x00,0xbe,0x22,0xe2,0x22,0x3e,0x00,0xfe,0x52,0xd2,0x52,0x52,0x7f,0x02,0x00 - -, -0x10,0x3f,0x10,0x0f,0x09,0x09,0x00,0x3f,0x20,0x13,0x04,0x0a,0x11,0x20,0x00 - -, -/* @1128 (15x15,V)@ [suki software]*/ -0x44,0x54,0x54,0xff,0x54,0x54,0x88,0x88,0xff,0x88,0x88,0xff,0x88,0x88,0x00 - -, -0x08,0x06,0x01,0x3f,0x01,0x22,0x10,0x0c,0x03,0x00,0x00,0x3f,0x00,0x00,0x00 - -, -/* @1129 (15x15,V)@ [suki software]*/ -0x00,0x02,0xfa,0x2a,0x2a,0x2a,0x2a,0xfe,0x2a,0x2a,0x2a,0xfa,0x03,0x02,0x00 - -, -0x20,0x20,0x21,0x13,0x15,0x09,0x15,0x13,0x21,0x21,0x21,0x21,0x20,0x20,0x00 - -, -/* @1130 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfc,0x44,0x54,0x54,0x55,0xfe,0x54,0x54,0x54,0xf4,0x46,0x44,0x00 - -, -0x20,0x18,0x27,0x20,0x11,0x09,0x05,0x03,0x05,0x09,0x11,0x13,0x20,0x20,0x00 - -, -/* @1131 (15x15,V)@ [suki software]*/ -0x20,0x62,0xa2,0xaa,0xeb,0xaa,0xbe,0xaa,0xaa,0xeb,0xaa,0xe2,0x22,0x00,0x00 - -, -0x00,0x28,0x2a,0x2a,0x1a,0x0a,0x0f,0x0a,0x0a,0x1a,0x2a,0x2a,0x28,0x00,0x00 - -, -}, -//************************************** -{ -/* @1132 (15x15,V)@ [suki software]*/ -0x10,0x10,0xff,0x10,0x10,0x02,0xfa,0x4a,0x4a,0xfe,0x4a,0x4a,0xfb,0x02,0x00 - -, -0x04,0x04,0x07,0x22,0x22,0x20,0x13,0x15,0x09,0x17,0x11,0x21,0x21,0x20,0x00 - -, -/* @1133 (15x15,V)@ [suki software]*/ -0x02,0x02,0xfe,0x92,0x92,0xfe,0x82,0x70,0x00,0xff,0x40,0x20,0x10,0x00,0x00 - -, -0x08,0x08,0x07,0x04,0x04,0x3f,0x12,0x08,0x06,0x01,0x02,0x04,0x18,0x10,0x00 - -, -/* @1134 (15x15,V)@ [suki software]*/ -0x08,0xc8,0xff,0x28,0xc8,0x02,0xfa,0x4a,0x4a,0xfe,0x4a,0x4a,0xfb,0x02,0x00 - -, -0x03,0x00,0x3f,0x00,0x20,0x20,0x23,0x15,0x09,0x17,0x11,0x21,0x21,0x20,0x00 - -, -/* @1135 (15x15,V)@ [suki software]*/ -0x00,0x04,0x04,0x04,0x04,0x04,0xfc,0x04,0x04,0x04,0x04,0x06,0x04,0x00,0x00 - -, -0x10,0x10,0x10,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x10,0x10,0x18,0x10,0x00 - -, -/* @1136 (15x15,V)@ [suki software]*/ -0x04,0x04,0x04,0xfc,0x04,0x44,0x20,0xf8,0x0f,0x08,0x08,0xf8,0x0c,0x08,0x00 - -, -0x04,0x0c,0x04,0x07,0x22,0x22,0x20,0x10,0x0b,0x04,0x0b,0x10,0x30,0x10,0x00 - -, -/* @1137 (15x15,V)@ [suki software]*/ -0x04,0x04,0x04,0xfc,0x04,0x04,0x10,0x10,0x10,0xff,0x10,0x10,0xf8,0x10,0x00 - -, -0x04,0x0c,0x04,0x03,0x22,0x12,0x08,0x04,0x03,0x10,0x20,0x10,0x0f,0x00,0x00 - -, -/* @1138 (15x15,V)@ [suki software]*/ -0x20,0x24,0x24,0x24,0xbf,0x64,0xa4,0x24,0x7f,0xa4,0x24,0x26,0x24,0x20,0x00 - -, -0x04,0x04,0x12,0x0d,0x00,0x20,0x3f,0x00,0x04,0x18,0x05,0x1a,0x02,0x02,0x00 - -, -/* @1139 (15x15,V)@ [suki software]*/ -0x00,0x44,0x44,0x24,0x14,0xaf,0x24,0x24,0x3c,0xd5,0x56,0x4c,0x44,0x74,0x00 - -, -0x04,0x24,0x25,0x25,0x15,0x0f,0x05,0x05,0x05,0x0f,0x15,0x15,0x25,0x24,0x00 - -, -/* @1140 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x00,0x10,0x10,0xff,0x10,0x10,0xff,0x10,0x18,0x10,0x00 - -, -0x00,0x00,0x3f,0x00,0x21,0x11,0x0d,0x01,0x01,0x01,0x05,0x09,0x31,0x01,0x00 - -, -/* @1141 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfc,0x56,0x55,0x54,0xfc,0x00,0xe2,0x22,0x22,0x22,0x3e,0x00,0x00 - -, -0x11,0x11,0x09,0x05,0x13,0x21,0x1f,0x00,0x01,0x11,0x21,0x11,0x0f,0x00,0x00 - -, -/* @1142 (15x15,V)@ [suki software]*/ -0x80,0x40,0x20,0x10,0x08,0x06,0xc0,0x00,0x07,0x18,0x20,0x40,0xc0,0x40,0x00 - -, -0x00,0x00,0x10,0x38,0x14,0x13,0x10,0x10,0x12,0x14,0x18,0x30,0x00,0x00,0x00 - -, -/* @1143 (15x15,V)@ [suki software]*/ -0x10,0x0c,0x04,0xf4,0x94,0x94,0x95,0x96,0x94,0x94,0xf4,0x04,0x14,0x0c,0x00 - -, -0x00,0x00,0x3e,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x3e,0x00,0x00,0x00 - -, -/* @1144 (15x15,V)@ [suki software]*/ -0x00,0x00,0xc2,0xb2,0x92,0x92,0x92,0x92,0x92,0x92,0x9f,0x82,0x00,0x00,0x00 - -, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x20,0x20,0x10,0x0f,0x00,0x00,0x00 - -, -/* @1145 (15x15,V)@ [suki software]*/ -0x04,0x04,0xfc,0x04,0x04,0x00,0xfe,0x22,0x42,0x82,0xff,0x02,0x00,0x00,0x00 - -, -0x04,0x04,0x03,0x22,0x12,0x0c,0x03,0x00,0x00,0x00,0x1f,0x20,0x20,0x38,0x00 - -, -/* @1146 (15x15,V)@ [suki software]*/ -0x00,0x90,0x92,0x92,0x92,0x92,0x12,0xde,0x12,0x12,0x12,0x93,0x52,0x10,0x00 - -, -0x10,0x10,0x08,0x04,0x02,0x11,0x20,0x1f,0x01,0x02,0x05,0x08,0x10,0x10,0x00 - -, -/* @1147 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x10,0x10,0xff,0x10,0x10,0xff,0x10,0x10,0x00,0x00 - -, -0x01,0x11,0x20,0x1f,0x20,0x11,0x09,0x05,0x01,0x01,0x05,0x09,0x11,0x21,0x00 - -, -/* @1148 (15x15,V)@ [suki software]*/ -0x00,0x10,0x12,0xd2,0x52,0x52,0x52,0x5e,0x52,0x52,0x52,0xd3,0x12,0x10,0x00 - -, -0x00,0x20,0x20,0x17,0x10,0x08,0x04,0x03,0x08,0x08,0x10,0x17,0x30,0x00,0x00 - -, -/* @1149 (15x15,V)@ [suki software]*/ -0x00,0x08,0x08,0x08,0xff,0x08,0x08,0x08,0x08,0xff,0x08,0x08,0x08,0x00,0x00 - -, -0x21,0x21,0x11,0x09,0x05,0x01,0x01,0x01,0x01,0x05,0x09,0x11,0x31,0x01,0x00 - -, -/* @1150 (15x15,V)@ [suki software]*/ -0x20,0x38,0xe7,0x24,0x24,0x04,0x20,0x98,0x6f,0x08,0x08,0x08,0x08,0xf8,0x00 - -, -0x01,0x01,0x1f,0x11,0x09,0x01,0x02,0x07,0x02,0x02,0x17,0x20,0x10,0x0f,0x00 - -, -/* @1151 (15x15,V)@ [suki software]*/ -0x40,0x20,0x18,0x07,0x04,0xc4,0x34,0x84,0x04,0x04,0x04,0x04,0xfe,0x04,0x00 - -, -0x00,0x00,0x04,0x06,0x05,0x04,0x02,0x02,0x03,0x16,0x20,0x10,0x0f,0x00,0x00 - -, -/* @1152 (15x15,V)@ [suki software]*/ -0x10,0x21,0x86,0x60,0x00,0x20,0x18,0x8f,0x68,0x08,0x08,0x08,0xfc,0x08,0x00 - -, -0x02,0x3e,0x01,0x00,0x00,0x02,0x03,0x02,0x02,0x13,0x26,0x10,0x0f,0x00,0x00 - -, -/* @1153 (15x15,V)@ [suki software]*/ -0x04,0x84,0x44,0xb4,0xa4,0xaf,0xa4,0xa4,0xa4,0x2f,0x24,0x24,0xe6,0x04,0x00 - -, -0x01,0x00,0x00,0x0f,0x04,0x04,0x04,0x04,0x07,0x10,0x20,0x10,0x0f,0x00,0x00 - -, -/* @1154 (15x15,V)@ [suki software]*/ -0x00,0x22,0x14,0x88,0xf4,0x22,0x18,0xe7,0x24,0x24,0xe4,0x04,0xfc,0x00,0x00 - -, -0x04,0x02,0x11,0x20,0x1f,0x00,0x00,0x07,0x02,0x02,0x17,0x20,0x1f,0x00,0x00 - -, -/* @1155 (15x15,V)@ [suki software]*/ -0x10,0x10,0xff,0x10,0x10,0x00,0xfc,0x24,0x24,0x22,0x22,0x23,0x32,0x20,0x00 - -, -0x04,0x04,0x03,0x22,0x12,0x0c,0x03,0x00,0x3f,0x11,0x11,0x11,0x3f,0x00,0x00 - -, -/* @1156 (15x15,V)@ [suki software]*/ -0x08,0x08,0xc8,0xff,0x48,0x88,0x30,0x8c,0x6b,0x08,0x08,0x08,0xfc,0x08,0x00 - -, -0x04,0x03,0x00,0x3f,0x00,0x00,0x02,0x03,0x02,0x03,0x16,0x20,0x1f,0x00,0x00 - -, -/* @1157 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0xfa,0x02,0xfe,0x20,0x18,0x8f,0x68,0x08,0x08,0x08,0xf8,0x00 - -, -0x20,0x13,0x0c,0x03,0x04,0x0b,0x10,0x06,0x05,0x02,0x13,0x26,0x10,0x0f,0x00 - -, -/* @1158 (15x15,V)@ [suki software]*/ -0x10,0xe8,0x27,0xe4,0x04,0xfc,0x00,0x48,0x4c,0xb7,0xe4,0x94,0x8c,0x80,0x00 - -, -0x00,0x07,0x01,0x13,0x10,0x0f,0x20,0x22,0x11,0x16,0x08,0x04,0x02,0x01,0x00 - -, -/* @1159 (15x15,V)@ [suki software]*/ -0x00,0x82,0x82,0xba,0xaa,0xaa,0xef,0xaa,0xaa,0xaa,0xba,0x82,0x82,0x00,0x00 - -, -0x02,0x02,0x0a,0x0a,0x0b,0x0a,0x3e,0x0a,0x0b,0x0a,0x0a,0x0a,0x02,0x02,0x00 - -, -/* @1160 (15x15,V)@ [suki software]*/ -0x04,0x44,0xc4,0x74,0x44,0xcf,0x04,0x44,0x4f,0xf4,0x44,0x44,0x46,0x44,0x00 - -, -0x20,0x22,0x15,0x08,0x14,0x23,0x00,0x3e,0x12,0x13,0x12,0x12,0x3e,0x00,0x00 - -, -/* @1161 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0x04,0xfc,0x08,0x88,0x88,0x88,0xff,0x88,0x88,0x8c,0x08,0x00 - -, -0x00,0x07,0x02,0x02,0x07,0x00,0x3f,0x10,0x10,0x10,0x10,0x10,0x3f,0x00,0x00 - -, -/* @1162 (15x15,V)@ [suki software]*/ -0x50,0x48,0x44,0xf7,0x4c,0x04,0xf4,0x18,0x97,0x94,0xdc,0x94,0x96,0x14,0x00 - -, -0x02,0x12,0x22,0x1f,0x01,0x00,0x3f,0x20,0x2f,0x20,0x3f,0x28,0x2f,0x20,0x00 - -, -/* @1163 (15x15,V)@ [suki software]*/ -0x40,0x20,0x10,0xfc,0x03,0x08,0x88,0x88,0x88,0xff,0x88,0x88,0x88,0x08,0x00 - -, -0x00,0x00,0x00,0x3f,0x00,0x00,0x3f,0x10,0x10,0x10,0x10,0x10,0x3f,0x00,0x00 - -, -/* @1164 (15x15,V)@ [suki software]*/ -0x10,0x62,0x04,0x8c,0x60,0x10,0x90,0x90,0x90,0xff,0x90,0x90,0x98,0x10,0x00 - -, -0x04,0x04,0x3e,0x01,0x00,0x00,0x3f,0x10,0x10,0x10,0x10,0x10,0x3f,0x00,0x00 - -, -/* @1165 (15x15,V)@ [suki software]*/ -0x82,0x82,0xf2,0x4a,0x26,0x00,0xfc,0x04,0xfc,0x02,0x3e,0xc3,0x02,0x00,0x00 - -, -0x10,0x20,0x1f,0x00,0x20,0x18,0x07,0x00,0x1f,0x08,0x1c,0x03,0x0c,0x10,0x00 - -, -/* @1166 (15x15,V)@ [suki software]*/ -0x08,0x08,0xf8,0x0f,0x08,0xf8,0x08,0x88,0x88,0xff,0x88,0x88,0x8c,0x08,0x00 - -, -0x20,0x11,0x0a,0x04,0x0a,0x11,0x00,0x3f,0x10,0x10,0x10,0x10,0x3f,0x00,0x00 - -, -/* @1167 (15x15,V)@ [suki software]*/ -0x04,0xd4,0x54,0x54,0x5f,0x54,0xd4,0x08,0xc8,0x48,0x7f,0x48,0xc8,0x08,0x00 - -, -0x20,0x21,0x2d,0x11,0x19,0x15,0x11,0x20,0x11,0x0a,0x04,0x0b,0x10,0x20,0x00 - -, -/* @1168 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0x88,0x88,0x88,0xff,0x88,0x88,0x88,0xc8,0x88,0x0c,0x08,0x00 - -, -0x00,0x00,0x3f,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x3f,0x00,0x00,0x00,0x00 - -, -/* @1169 (15x15,V)@ [suki software]*/ -0x00,0x80,0xbc,0xa4,0xa4,0xa4,0xff,0xa4,0xa4,0xa4,0xa4,0xfc,0x80,0x00,0x00 - -, -0x20,0x20,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3e,0x21,0x20,0x00 - -, -/* @1170 (15x15,V)@ [suki software]*/ -0x80,0x60,0x20,0xbe,0xaa,0xaa,0xaa,0xba,0xa2,0xbf,0x22,0xa0,0x60,0x00,0x00 - -, -0x00,0x00,0x00,0x3f,0x0a,0x0a,0x0a,0x0a,0x2a,0x3f,0x00,0x00,0x00,0x00,0x00 - -, -/* @1171 (15x15,V)@ [suki software]*/ -0x00,0x08,0x88,0x44,0x22,0x10,0x0c,0x10,0x22,0x42,0x44,0x88,0x80,0x80,0x00 - -, -0x01,0x01,0x00,0x3f,0x11,0x11,0x11,0x11,0x11,0x11,0x3f,0x00,0x01,0x00,0x00 - -, -/* @1172 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x92,0x92,0xfe,0x40,0x20,0x9e,0x82,0x82,0x9f,0xa2,0x20,0x20,0x00 - -, -0x30,0x0f,0x10,0x20,0x1f,0x20,0x20,0x11,0x0a,0x04,0x0a,0x11,0x30,0x10,0x00 - -, -/* @1173 (15x15,V)@ [suki software]*/ -0x10,0x90,0x90,0xff,0x90,0x90,0x50,0x20,0xd8,0x17,0x10,0x10,0xf8,0x10,0x00 - -, -0x00,0x3f,0x08,0x08,0x08,0x1f,0x20,0x20,0x10,0x0b,0x04,0x0b,0x10,0x20,0x00 - -, -/* @1174 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0xfa,0x8a,0xfa,0x00,0xfa,0x0a,0x0e,0xea,0x0a,0xfb,0x02,0x00 - -, -0x30,0x0f,0x00,0x0f,0x08,0x04,0x20,0x27,0x10,0x08,0x07,0x08,0x17,0x30,0x00 - -, -/* @1175 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0x12,0xd2,0x52,0x52,0x7e,0x52,0xd2,0x12,0x02,0xff,0x02,0x00 - -, -0x00,0x3f,0x10,0x10,0x17,0x14,0x14,0x14,0x14,0x17,0x10,0x10,0x3f,0x00,0x00 - -, -/* @1176 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfc,0x14,0x94,0xf4,0x55,0x56,0xf4,0x54,0x54,0x5e,0x44,0x00,0x00 - -, -0x20,0x18,0x07,0x01,0x00,0x3f,0x15,0x15,0x1f,0x15,0x15,0x15,0x15,0x00,0x00 - -, -/* @1177 (15x15,V)@ [suki software]*/ -0x24,0x24,0x24,0x24,0xfe,0x22,0x23,0x22,0x00,0xfc,0x00,0x00,0xff,0x00,0x00 - -, -0x00,0x3f,0x11,0x11,0x11,0x11,0x3f,0x00,0x00,0x07,0x10,0x20,0x1f,0x00,0x00 - -, -/* @1178 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0xfc,0x04,0x04,0xfc,0x02,0x02,0x7e,0x82,0x02,0x00,0x00,0x00 - -, -0x20,0x10,0x0c,0x03,0x00,0x00,0x1f,0x08,0x0a,0x1c,0x01,0x06,0x18,0x10,0x00 - -, -/* @1179 (15x15,V)@ [suki software]*/ -0x00,0xc0,0x5e,0x52,0xf2,0x52,0x5f,0xc2,0x00,0xfc,0x00,0x00,0xff,0x00,0x00 - -, -0x00,0x3f,0x04,0x02,0x01,0x12,0x24,0x1f,0x00,0x03,0x10,0x20,0x1f,0x00,0x00 - -, -/* @1180 (15x15,V)@ [suki software]*/ -0x00,0x08,0x06,0x0a,0xea,0x2a,0x7a,0xab,0xaa,0x2a,0xea,0x02,0x0a,0x06,0x00 - -, -0x10,0x11,0x09,0x25,0x27,0x15,0x0d,0x25,0x25,0x1f,0x05,0x09,0x09,0x09,0x00 - -, -/* @1181 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x00,0x48,0x48,0x48,0xff,0x48,0x48,0x48,0x40,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x20,0x22,0x22,0x22,0x3f,0x22,0x22,0x22,0x20,0x00 - -, -/* @1182 (15x15,V)@ [suki software]*/ -0x08,0x89,0xce,0x38,0x80,0x24,0x24,0xff,0x24,0x24,0x00,0xff,0x40,0x80,0x00 - -, -0x01,0x00,0x3f,0x01,0x12,0x11,0x11,0x0f,0x09,0x09,0x00,0x3f,0x00,0x01,0x00 - -, -/* @1183 (15x15,V)@ [suki software]*/ -0x08,0x48,0x4a,0x4a,0xea,0x0a,0x0a,0xfe,0x09,0xe9,0x09,0x89,0xc8,0x08,0x00 - -, -0x04,0x04,0x02,0x02,0x0f,0x00,0x00,0x3f,0x00,0x07,0x09,0x08,0x08,0x0e,0x00 - -, -/* @1184 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x80,0x9e,0x92,0xf2,0x92,0x92,0x92,0x9f,0x02,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x20,0x10,0x0c,0x03,0x10,0x20,0x10,0x0f,0x00,0x00 - -, -/* @1185 (15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x08,0x90,0x82,0x46,0x2a,0x92,0x2a,0x47,0x82,0x80,0x80,0x00 - -, -0x00,0x00,0x3f,0x00,0x20,0x22,0x22,0x22,0x3f,0x22,0x22,0x22,0x32,0x20,0x00 - -, -/* @1186 (15x15,V)@ [suki software]*/ -0x08,0xc8,0xff,0x28,0x40,0x0c,0xf4,0x94,0x95,0x96,0x94,0xf4,0x04,0x0c,0x00 - -, -0x03,0x00,0x3f,0x00,0x00,0x00,0x3f,0x12,0x12,0x12,0x12,0x12,0x3e,0x00,0x00 - -, -/* @1187 (15x15,V)@ [suki software]*/ -0x00,0x80,0x90,0x90,0x91,0x96,0x90,0xf0,0x90,0x94,0x93,0x90,0x90,0x80,0x00 - -, -0x00,0x20,0x20,0x10,0x08,0x04,0x03,0x00,0x03,0x04,0x08,0x10,0x20,0x20,0x00 - -, -/* @1188 (15x15,V)@ [suki software]*/ -0x10,0x0c,0x04,0xf4,0x94,0x94,0x95,0x96,0x94,0x94,0xf4,0x04,0x14,0x0c,0x00 - -, -0x00,0x00,0x00,0x3f,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x3e,0x00,0x00,0x00 - -, -/* @1189 (15x15,V)@ [suki software]*/ -0x08,0x46,0x52,0xd2,0x52,0xd2,0x52,0xa2,0x22,0x22,0xfa,0x22,0x26,0x00,0x00 - -, -0x20,0x10,0x0c,0x03,0x00,0x1f,0x20,0x20,0x23,0x28,0x2f,0x20,0x38,0x00,0x00 - -, -/* @1190 (15x15,V)@ [suki software]*/ -0x04,0x14,0x24,0xc4,0x3c,0x00,0xfe,0x02,0x02,0xfa,0x02,0x02,0xff,0x02,0x00 - -, -0x08,0x04,0x03,0x00,0x21,0x26,0x11,0x08,0x06,0x01,0x1f,0x20,0x21,0x38,0x00 - -, -/* @1191 (15x15,V)@ [suki software]*/ -0x48,0x34,0x13,0xd6,0x5a,0x52,0x5a,0x54,0x53,0xd6,0x1a,0x52,0x32,0x00,0x00 - -, -0x00,0x00,0x00,0x3f,0x15,0x15,0x15,0x15,0x15,0x15,0x3c,0x00,0x00,0x00,0x00 - -, -/* @1192 (15x15,V)@ [suki software]*/ -0x20,0x18,0xef,0x08,0x18,0x00,0x0c,0xf4,0x95,0x96,0x94,0xf4,0x04,0x0c,0x00 - -, -0x00,0x00,0x1f,0x08,0x04,0x00,0x00,0x3f,0x12,0x12,0x12,0x12,0x3e,0x00,0x00 - -, -/* @1193 (15x15,V)@ [suki software]*/ -0x50,0x48,0x47,0xfc,0x44,0x44,0x3a,0xea,0xbf,0x82,0xfa,0xaf,0xba,0x82,0x00 - -, -0x00,0x1f,0x10,0x0f,0x08,0x1f,0x01,0x3f,0x2a,0x2a,0x3f,0x2a,0x2a,0x20,0x00 - -, -/* @1194 (15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x10,0x28,0x08,0xbe,0xaa,0xba,0xae,0xaa,0xbf,0x8a,0x08,0x00 - -, -0x00,0x00,0x3f,0x00,0x00,0x20,0x2f,0x10,0x08,0x06,0x08,0x10,0x2f,0x00,0x00 - -, -/* @1195 (15x15,V)@ [suki software]*/ -0x10,0x61,0x06,0xc0,0x3a,0xaa,0xef,0xba,0xc2,0xba,0xaf,0xaa,0xba,0x82,0x00 - -, -0x02,0x3e,0x01,0x02,0x01,0x3f,0x2a,0x2a,0x2a,0x3f,0x2a,0x2a,0x2a,0x20,0x00 - -, -/* @1196 (15x15,V)@ [suki software]*/ -0x08,0x08,0x08,0xbe,0xaa,0xaa,0xaa,0xbe,0xaa,0xaa,0xbf,0x0a,0x08,0x08,0x00 - -, -0x00,0x20,0x20,0x27,0x10,0x10,0x08,0x06,0x08,0x10,0x27,0x20,0x00,0x00,0x00 - -, -/* @1197 (15x15,V)@ [suki software]*/ -0x40,0x40,0x44,0x48,0x50,0xc0,0x7f,0x40,0xc0,0x50,0x48,0x44,0x40,0x40,0x00 - -, -0x20,0x20,0x10,0x08,0x04,0x03,0x00,0x00,0x1f,0x20,0x20,0x20,0x20,0x38,0x00 - -, -/* @1198 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfc,0x04,0x04,0x04,0x05,0x06,0x04,0x04,0x04,0x04,0x06,0x04,0x00 - -, -0x20,0x18,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 - -, -/* @1199 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x94,0x48,0xf4,0x02,0x44,0x44,0xfc,0x44,0x44,0x00,0x00 - -, -0x10,0x08,0x07,0x08,0x10,0x14,0x27,0x20,0x24,0x24,0x27,0x24,0x24,0x20,0x00 - -, -/* @1200 (15x15,V)@ [suki software]*/ -0x42,0x42,0xfe,0x42,0x42,0x00,0xfc,0xa6,0xa5,0xfc,0xa4,0xa4,0xfe,0x04,0x00 - -, -0x08,0x08,0x0f,0x24,0x24,0x10,0x08,0x04,0x02,0x1f,0x24,0x27,0x24,0x38,0x00 - -, -/* @1201 (15x15,V)@ [suki software]*/ -0x80,0x88,0x88,0xff,0x88,0x88,0x80,0xfe,0x02,0xfa,0x02,0x02,0xff,0x02,0x00 - -, -0x20,0x10,0x0c,0x03,0x02,0x2c,0x10,0x09,0x04,0x03,0x1e,0x20,0x21,0x38,0x00 - -, -/* @1202 (15x15,V)@ [suki software]*/ -0x00,0x40,0x40,0x44,0x44,0x44,0x44,0xff,0x44,0x44,0x44,0x44,0x60,0x40,0x00 - -, -0x00,0x20,0x22,0x22,0x22,0x22,0x22,0x3f,0x22,0x22,0x22,0x22,0x32,0x20,0x00 - -, -/* @1203 (15x15,V)@ [suki software]*/ -0x04,0xc4,0x7c,0x44,0xc6,0x04,0x48,0x48,0x48,0xff,0x48,0x48,0x48,0x40,0x00 - -, -0x01,0x1f,0x04,0x04,0x0f,0x10,0x12,0x12,0x12,0x1f,0x12,0x12,0x12,0x10,0x00 - -, -/* @1204 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x00,0x00,0xff,0x00,0x44,0x44,0x44,0x44,0x44,0x44,0xfe,0x04,0x00 - -, -0x00,0x23,0x10,0x08,0x07,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x1f,0x00,0x00 - -, -/* @1205 (15x15,V)@ [suki software]*/ -0x20,0x10,0xf8,0x94,0x97,0x94,0x94,0xf4,0x9e,0x94,0x90,0xf8,0x10,0x00,0x00 - -, -0x00,0x00,0x07,0x04,0x04,0x04,0x04,0x1f,0x24,0x24,0x24,0x27,0x20,0x38,0x00 - -, -/* @1206 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x01,0x46,0x50,0x52,0x52,0xfa,0x52,0x52,0x42,0x02,0xff,0x02,0x00 - -, -0x00,0x3f,0x00,0x08,0x0a,0x0a,0x0a,0x0f,0x0a,0x0a,0x08,0x20,0x3f,0x00,0x00 - -, -/* @1207 (15x15,V)@ [suki software]*/ -0x08,0x68,0x5c,0xeb,0x48,0x48,0x10,0x10,0xff,0x10,0x10,0xf8,0x10,0x00,0x00 - -, -0x04,0x04,0x04,0x3f,0x02,0x22,0x10,0x0c,0x03,0x00,0x00,0x1f,0x10,0x1c,0x00 - -, -/* @1208 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfc,0x94,0x94,0x96,0xfd,0x94,0x94,0x94,0x94,0xfe,0x04,0x00,0x00 - -, -0x20,0x20,0x10,0x08,0x04,0x03,0x00,0x1f,0x20,0x2c,0x2a,0x2c,0x20,0x38,0x00 - -, -/* @1209 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x20,0x10,0xfc,0x13,0xd2,0x5a,0x56,0xd0,0x10,0x10,0x00 - -, -0x00,0x00,0x1f,0x08,0x24,0x18,0x07,0x00,0x1f,0x22,0x24,0x23,0x20,0x38,0x00 - -, -/* @1210 (15x15,V)@ [suki software]*/ -0x80,0x8a,0x52,0x22,0x52,0x4e,0xc0,0x47,0x48,0x54,0x32,0x48,0xc4,0x40,0x00 - -, -0x00,0x22,0x22,0x22,0x12,0x0a,0x07,0x02,0x06,0x0a,0x12,0x32,0x02,0x00,0x00 - -, -/* @1211 (15x15,V)@ [suki software]*/ -0x08,0x08,0xc8,0xff,0x48,0x80,0x48,0x48,0x48,0xff,0x48,0x4c,0x48,0x40,0x00 - -, -0x04,0x03,0x00,0x3f,0x00,0x10,0x12,0x12,0x12,0x1f,0x12,0x12,0x12,0x10,0x00 - -, -/* @1212 (15x15,V)@ [suki software]*/ -0x08,0x88,0xff,0x48,0x88,0x00,0xfe,0x22,0x22,0x22,0x22,0xe2,0x02,0x00,0x00 - -, -0x06,0x01,0x3f,0x00,0x00,0x00,0x3f,0x11,0x11,0x11,0x11,0x13,0x10,0x10,0x00 - -, -/* @1213 (15x15,V)@ [suki software]*/ -0x00,0x9e,0x12,0xf2,0x9e,0x20,0xf0,0x1c,0xd7,0x54,0x5c,0x54,0xd0,0x10,0x00 - -, -0x10,0x1f,0x10,0x0f,0x28,0x10,0x0f,0x00,0x1f,0x20,0x22,0x24,0x23,0x38,0x00 - -, -/* @1214 (15x15,V)@ [suki software]*/ -0x20,0x20,0xae,0xaa,0xaa,0xaa,0xbf,0xaa,0xaa,0xaa,0xae,0x20,0x20,0x20,0x00 - -, -0x20,0x20,0x2f,0x20,0x10,0x08,0x07,0x08,0x08,0x10,0x17,0x20,0x00,0x00,0x00 - -, -/* @1215 (15x15,V)@ [suki software]*/ -0xa0,0x90,0xa8,0xa4,0xa3,0xa2,0xa4,0x98,0x00,0xfc,0x00,0x00,0xff,0x00,0x00 - -, -0x00,0x18,0x14,0x12,0x11,0x10,0x14,0x38,0x00,0x07,0x10,0x20,0x1f,0x00,0x00 - -, -/* @1216 (15x15,V)@ [suki software]*/ -0x44,0x74,0x4c,0xf7,0x44,0x44,0x00,0xbe,0x2a,0x2a,0xaa,0x2a,0x3f,0x02,0x00 - -, -0x04,0x04,0x04,0x3f,0x02,0x02,0x00,0x3f,0x12,0x02,0x1f,0x24,0x22,0x39,0x00 - -, -/* @1217 (15x15,V)@ [suki software]*/ -0x10,0x61,0x06,0x80,0x24,0x14,0x4c,0x64,0xd5,0x46,0x64,0x4c,0x16,0x04,0x00 - -, -0x02,0x3e,0x01,0x08,0x08,0x04,0x3e,0x21,0x12,0x04,0x0c,0x12,0x31,0x10,0x00 - -, -/* @1218 (15x15,V)@ [suki software]*/ -0x08,0x88,0x68,0xff,0x48,0x00,0xbe,0x2a,0x2a,0x2a,0xaa,0x2a,0x3f,0x02,0x00 - -, -0x02,0x01,0x00,0x3f,0x00,0x00,0x3f,0x12,0x0a,0x00,0x1f,0x22,0x21,0x39,0x00 - -, -/* @1219 (15x15,V)@ [suki software]*/ -0x40,0x30,0xef,0x28,0x28,0x08,0x80,0xbe,0x92,0xf2,0x92,0x92,0xbe,0x80,0x00 - -, -0x01,0x01,0x3f,0x11,0x09,0x01,0x3f,0x04,0x02,0x01,0x02,0x14,0x20,0x1f,0x00 - -, -/* @1220 (15x15,V)@ [suki software]*/ -0x00,0x04,0x74,0x55,0x56,0x54,0x74,0x04,0x00,0xfe,0x02,0x22,0x5a,0x86,0x00 - -, -0x00,0x09,0x09,0x29,0x3d,0x07,0x05,0x04,0x00,0x3f,0x04,0x08,0x08,0x07,0x00 - -, -/* @1221 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0x0a,0x4a,0x4a,0xfa,0x4a,0xca,0x4a,0x0a,0x02,0xff,0x02,0x00 - -, -0x00,0x3f,0x10,0x14,0x14,0x14,0x17,0x14,0x14,0x15,0x14,0x14,0x3f,0x00,0x00 - -, -/* @1222 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x7e,0x4a,0x4a,0x4a,0xfe,0x4a,0x4a,0x4a,0x7f,0x02,0x00,0x00 - -, -0x00,0x11,0x11,0x09,0x05,0x03,0x01,0x3f,0x03,0x05,0x09,0x11,0x11,0x11,0x00 - -, -/* @1223 (15x15,V)@ [suki software]*/ -0x00,0x82,0x82,0xfa,0xaa,0xaa,0xfb,0xaa,0xaa,0xaa,0xfa,0x82,0x82,0x80,0x00 - -, -0x14,0x14,0x12,0x09,0x3c,0x22,0x13,0x14,0x08,0x08,0x15,0x12,0x22,0x20,0x00 - -, -/* @1224 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x08,0x28,0x48,0x88,0x08,0x08,0xff,0x08,0x08,0x08,0x00 - -, -0x10,0x08,0x07,0x08,0x10,0x10,0x20,0x20,0x24,0x28,0x27,0x20,0x20,0x20,0x00 - -, -/* @1225 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0x04,0xfc,0x20,0x10,0x48,0x47,0x44,0x48,0x50,0x20,0x20,0x00 - -, -0x00,0x07,0x01,0x01,0x03,0x00,0x3f,0x11,0x11,0x11,0x11,0x3f,0x00,0x00,0x00 - -, -}, -//************************************** -{ -/* @1226 (15x15,V)@ [suki software]*/ -0x60,0xbe,0xaa,0xba,0xa2,0xbe,0x60,0x08,0x68,0x59,0xca,0x48,0x28,0x08,0x00 - -, -0x00,0x3f,0x0a,0x0a,0x2a,0x3f,0x00,0x24,0x12,0x09,0x04,0x0a,0x31,0x00,0x00 - -, -/* @1227 (15x15,V)@ [suki software]*/ -0x02,0x02,0xf2,0x8a,0x46,0x04,0x44,0x64,0x5d,0xc6,0x44,0x34,0x86,0x04,0x00 - -, -0x11,0x21,0x1f,0x00,0x20,0x24,0x14,0x12,0x09,0x04,0x06,0x09,0x30,0x00,0x00 - -, -/* @1228 (15x15,V)@ [suki software]*/ -0x10,0x21,0xc6,0x90,0x88,0xf7,0x94,0xb4,0xd4,0x94,0x94,0xf6,0x84,0x80,0x00 - -, -0x02,0x3e,0x01,0x00,0x0c,0x0b,0x08,0x09,0x0a,0x28,0x38,0x0f,0x08,0x00,0x00 - -, -/* @1229 (15x15,V)@ [suki software]*/ -0x20,0x90,0xac,0xa3,0xaa,0xaa,0xea,0xaa,0xaa,0xaa,0x2a,0xeb,0x02,0x00,0x00 - -, -0x00,0x20,0x28,0x2a,0x2b,0x16,0x12,0x09,0x14,0x22,0x00,0x0f,0x10,0x3c,0x00 - -, -/* @1230 (15x15,V)@ [suki software]*/ -0x04,0x04,0x44,0xc4,0x64,0x54,0x4d,0xc6,0x44,0x34,0x84,0x04,0x06,0x04,0x00 - -, -0x00,0x28,0x28,0x24,0x14,0x12,0x09,0x04,0x02,0x05,0x08,0x10,0x30,0x00,0x00 - -, -/* @1231 (15x15,V)@ [suki software]*/ -0x00,0x10,0x0c,0x54,0x54,0x54,0x55,0xfe,0x54,0x54,0x54,0x44,0x14,0x0c,0x00 - -, -0x00,0x01,0x01,0x3d,0x25,0x25,0x25,0x27,0x25,0x25,0x3d,0x01,0x01,0x01,0x00 - -, -/* @1232 (15x15,V)@ [suki software]*/ -0x02,0xfa,0x82,0x82,0xfe,0x80,0x44,0x64,0x55,0xce,0x44,0x34,0x04,0x04,0x00 - -, -0x04,0x04,0x12,0x22,0x10,0x0f,0x20,0x22,0x11,0x08,0x04,0x0a,0x11,0x20,0x00 - -, -/* @1233 (15x15,V)@ [suki software]*/ -0x02,0xfa,0x7e,0x0a,0x7e,0x8a,0xfa,0x10,0xff,0x90,0x90,0x90,0xff,0x10,0x00 - -, -0x00,0x3f,0x12,0x12,0x12,0x12,0x3f,0x00,0x3f,0x10,0x10,0x10,0x3f,0x00,0x00 - -, -/* @1234 (15x15,V)@ [suki software]*/ -0x00,0x0a,0xfa,0xaa,0xae,0xfa,0x88,0x90,0x0c,0xb7,0x44,0xa4,0x1c,0x04,0x00 - -, -0x01,0x11,0x0d,0x00,0x1c,0x21,0x22,0x2c,0x21,0x20,0x38,0x04,0x19,0x01,0x00 - -, -/* @1235 (15x15,V)@ [suki software]*/ -0x08,0x08,0xff,0x88,0x88,0x88,0xff,0x08,0x08,0xfe,0x02,0x22,0x5a,0x86,0x00 - -, -0x00,0x00,0x1f,0x08,0x08,0x08,0x1f,0x00,0x00,0x3f,0x04,0x08,0x08,0x07,0x00 - -, -/* @1236 (15x15,V)@ [suki software]*/ -0x04,0xf4,0x54,0x5f,0x54,0xf4,0x00,0x94,0x94,0xff,0x94,0x94,0x96,0x84,0x00 - -, -0x04,0x05,0x05,0x3f,0x05,0x05,0x04,0x04,0x00,0x3f,0x04,0x08,0x08,0x07,0x00 - -, -/* @1237 (15x15,V)@ [suki software]*/ -0x20,0x20,0x10,0x50,0x48,0x44,0x4b,0x72,0x44,0xc8,0x10,0x10,0x30,0x10,0x00 - -, -0x00,0x00,0x00,0x3e,0x12,0x12,0x12,0x12,0x13,0x12,0x3e,0x00,0x00,0x00,0x00 - -, -/* @1238 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x40,0xf0,0x02,0x12,0xa2,0xfa,0xaa,0x16,0x03,0xf2,0x00,0x00 - -, -0x02,0x3e,0x01,0x00,0x1f,0x12,0x11,0x14,0x17,0x10,0x11,0x12,0x3f,0x00,0x00 - -, -/* @1239 (15x15,V)@ [suki software]*/ -0x10,0x0c,0x54,0x54,0x54,0xfc,0x55,0x56,0xfc,0x54,0x54,0x44,0x14,0x0c,0x00 - -, -0x10,0x11,0x09,0x05,0x03,0x11,0x15,0x15,0x29,0x23,0x05,0x09,0x19,0x09,0x00 - -, -/* @1240 (15x15,V)@ [suki software]*/ -0x00,0xf0,0x02,0x12,0x22,0x42,0x82,0xf2,0x4a,0x26,0x13,0x02,0xf0,0x00,0x00 - -, -0x00,0x3f,0x10,0x12,0x12,0x15,0x18,0x17,0x11,0x12,0x16,0x10,0x3f,0x00,0x00 - -, -/* @1241 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0xfc,0x00,0xf8,0xa8,0xa8,0xa8,0x28,0xff,0x0a,0x8c,0x68,0x00 - -, -0x00,0x03,0x21,0x13,0x0c,0x03,0x07,0x24,0x27,0x10,0x09,0x0e,0x11,0x38,0x00 - -, -/* @1242 (15x15,V)@ [suki software]*/ -0x08,0x26,0x22,0x12,0x2a,0x26,0x22,0xe2,0x22,0x26,0x2a,0x12,0x2a,0x06,0x00 - -, -0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x3f,0x02,0x02,0x02,0x02,0x02,0x02,0x00 - -, -/* @1243 (15x15,V)@ [suki software]*/ -0x04,0xf4,0x54,0x5f,0xf4,0x04,0xb0,0x28,0xe4,0x43,0xa4,0x28,0xf0,0x10,0x00 - -, -0x04,0x05,0x05,0x3f,0x05,0x04,0x08,0x25,0x3f,0x00,0x04,0x22,0x3f,0x00,0x00 - -, -/* @1244 (15x15,V)@ [suki software]*/ -0x10,0x10,0xff,0x90,0x00,0xfc,0xd4,0x54,0xd4,0x04,0x3f,0xc4,0x36,0x84,0x00 - -, -0x12,0x21,0x1f,0x00,0x1b,0x00,0x1d,0x21,0x25,0x28,0x21,0x38,0x05,0x0b,0x00 - -, -/* @1245 (15x15,V)@ [suki software]*/ -0x08,0x88,0xff,0x48,0x48,0x00,0xbe,0xaa,0xaa,0xaa,0xaa,0xbf,0x82,0x00,0x00 - -, -0x11,0x20,0x1f,0x00,0x04,0x04,0x04,0x04,0x04,0x3f,0x04,0x04,0x04,0x04,0x00 - -, -/* @1246 (15x15,V)@ [suki software]*/ -0x00,0x00,0x80,0xbe,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xbf,0x82,0x00,0x00 - -, -0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x3f,0x02,0x02,0x02,0x02,0x02,0x02,0x00 - -, -/* @1247 (15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x08,0xfc,0x04,0xd4,0x54,0xd4,0x3f,0xc4,0x25,0x16,0x84,0x00 - -, -0x00,0x00,0x3f,0x12,0x09,0x00,0x1d,0x21,0x25,0x29,0x20,0x31,0x0a,0x13,0x00 - -, -/* @1248 (15x15,V)@ [suki software]*/ -0x60,0x10,0xff,0x08,0x30,0x80,0xbe,0xaa,0xaa,0xaa,0xaa,0xbf,0x82,0x00,0x00 - -, -0x00,0x00,0x3f,0x00,0x04,0x04,0x04,0x04,0x04,0x3f,0x04,0x04,0x04,0x04,0x00 - -, -/* @1249 (15x15,V)@ [suki software]*/ -0x60,0x10,0xff,0x20,0x18,0x00,0xbe,0xaa,0xaa,0xaa,0xaa,0xaa,0xbf,0x02,0x00 - -, -0x20,0x18,0x07,0x02,0x0c,0x04,0x04,0x04,0x04,0x3f,0x04,0x04,0x04,0x04,0x00 - -, -/* @1250 (15x15,V)@ [suki software]*/ -0x10,0x61,0x06,0xc0,0x30,0x42,0x42,0x42,0x42,0xfe,0x42,0x43,0x62,0x40,0x00 - -, -0x02,0x02,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00 - -, -/* @1251 (15x15,V)@ [suki software]*/ -0x10,0x61,0x06,0xc0,0x30,0x02,0x3e,0xc2,0x02,0x82,0x62,0x1f,0x02,0x00,0x00 - -, -0x02,0x02,0x3f,0x20,0x20,0x10,0x08,0x05,0x02,0x05,0x08,0x10,0x30,0x10,0x00 - -, -/* @1252 (15x15,V)@ [suki software]*/ -0x80,0x84,0x44,0x24,0x14,0x0c,0xc7,0x04,0x0c,0x14,0x24,0x44,0xc6,0x44,0x00 - -, -0x00,0x20,0x21,0x11,0x09,0x05,0x03,0x01,0x11,0x21,0x19,0x07,0x00,0x00,0x00 - -, -/* @1253 (15x15,V)@ [suki software]*/ -0x10,0x90,0xff,0x50,0x90,0x08,0x08,0xe8,0x29,0x2e,0xe8,0x08,0x0c,0x08,0x00 - -, -0x06,0x01,0x3f,0x00,0x20,0x11,0x08,0x07,0x00,0x00,0x1f,0x20,0x20,0x38,0x00 - -, -/* @1254 (15x15,V)@ [suki software]*/ -0x40,0xfc,0x54,0x67,0x44,0xfc,0x08,0x08,0xe9,0x2e,0x28,0xe8,0x0c,0x08,0x00 - -, -0x30,0x0f,0x01,0x12,0x20,0x1f,0x20,0x10,0x0f,0x00,0x00,0x1f,0x20,0x38,0x00 - -, -/* @1255 (15x15,V)@ [suki software]*/ -0x10,0x10,0xff,0x10,0x10,0x62,0xba,0xaa,0xab,0xaa,0xaa,0xba,0xa2,0x60,0x00 - -, -0x04,0x04,0x03,0x02,0x29,0x2a,0x15,0x0a,0x25,0x3e,0x02,0x05,0x08,0x10,0x00 - -, -/* @1256 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0xfc,0x00,0x62,0xa2,0xba,0xaa,0xab,0xaa,0xba,0x22,0x62,0x00 - -, -0x00,0x03,0x01,0x03,0x10,0x12,0x15,0x0a,0x25,0x3e,0x04,0x0a,0x11,0x10,0x00 - -, -/* @1257 (15x15,V)@ [suki software]*/ -0x80,0x62,0x22,0xa2,0xba,0xaa,0xaa,0xab,0xaa,0xaa,0xba,0x22,0xa2,0x60,0x00 - -, -0x00,0x00,0x2a,0x2a,0x15,0x0a,0x29,0x26,0x1a,0x05,0x08,0x08,0x10,0x10,0x00 - -, -/* @1258 (15x15,V)@ [suki software]*/ -0x00,0xc4,0x44,0x5c,0x54,0x54,0x55,0x56,0xd4,0xd4,0x5c,0x44,0x46,0xc4,0x00 - -, -0x01,0x10,0x14,0x15,0x15,0x15,0x1f,0x2b,0x2a,0x2a,0x2a,0x28,0x21,0x38,0x00 - -, -/* @1259 (15x15,V)@ [suki software]*/ -0x20,0xa4,0x24,0xe4,0x3f,0xe4,0xa4,0x24,0x20,0xfe,0x02,0x62,0x9a,0x06,0x00 - -, -0x24,0x13,0x08,0x07,0x20,0x3f,0x00,0x03,0x00,0x3f,0x04,0x08,0x08,0x07,0x00 - -, -/* @1260 (15x15,V)@ [suki software]*/ -0x08,0x08,0xf8,0x0f,0x08,0xf8,0x42,0x42,0x42,0xf2,0x4a,0x46,0x42,0x40,0x00 - -, -0x20,0x11,0x0a,0x04,0x0a,0x11,0x00,0x10,0x20,0x1f,0x00,0x00,0x00,0x00,0x00 - -, -/* @1261 (15x15,V)@ [suki software]*/ -0x44,0x54,0x54,0xff,0x54,0x54,0x00,0x44,0x44,0xfc,0x22,0x23,0x22,0x00,0x00 - -, -0x08,0x06,0x01,0x3f,0x01,0x06,0x00,0x02,0x02,0x1f,0x21,0x21,0x21,0x39,0x00 - -, -/* @1262 (15x15,V)@ [suki software]*/ -0x40,0x40,0x40,0x5e,0xd2,0x52,0x52,0x52,0x52,0x52,0x5f,0x42,0x40,0x40,0x00 - -, -0x00,0x00,0x00,0x02,0x03,0x01,0x11,0x21,0x21,0x11,0x0f,0x00,0x00,0x00,0x00 - -, -/* @1263 (15x15,V)@ [suki software]*/ -0x10,0x61,0x06,0x80,0x50,0x4e,0x48,0x48,0x7f,0x48,0x48,0x4c,0x48,0x40,0x00 - -, -0x02,0x3e,0x01,0x00,0x00,0x3f,0x11,0x11,0x11,0x11,0x11,0x3f,0x00,0x00,0x00 - -, -/* @1264 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0x04,0xfc,0x02,0xf2,0x12,0x12,0xf2,0x02,0x02,0xff,0x02,0x00 - -, -0x00,0x07,0x01,0x01,0x03,0x00,0x03,0x01,0x01,0x03,0x10,0x20,0x1f,0x00,0x00 - -, -/* @1265 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0x04,0xfc,0x00,0xfe,0xaa,0xaa,0xaa,0xaa,0xbf,0xc2,0x80,0x00 - -, -0x00,0x03,0x01,0x01,0x01,0x0f,0x08,0x0a,0x09,0x0a,0x2c,0x20,0x1f,0x00,0x00 - -, -/* @1266 (15x15,V)@ [suki software]*/ -0x04,0x84,0xc4,0x34,0x04,0xaf,0xa4,0xa4,0xa4,0x2f,0x24,0xe4,0x36,0x24,0x00 - -, -0x01,0x00,0x3f,0x00,0x00,0x0f,0x04,0x04,0x07,0x10,0x20,0x1f,0x00,0x00,0x00 - -, -/* @1267 (15x15,V)@ [suki software]*/ -0x44,0x94,0x24,0x04,0x94,0x1f,0xd4,0x54,0x54,0xdf,0x14,0xf4,0x16,0x14,0x00 - -, -0x04,0x04,0x3e,0x01,0x00,0x00,0x07,0x04,0x04,0x17,0x20,0x1f,0x00,0x00,0x00 - -, -/* @1268 (15x15,V)@ [suki software]*/ -0x08,0xc8,0xff,0x48,0x88,0x04,0x44,0x64,0x5d,0xc6,0x44,0x34,0x84,0x04,0x00 - -, -0x03,0x00,0x3f,0x00,0x00,0x24,0x24,0x12,0x09,0x04,0x06,0x09,0x30,0x00,0x00 - -, -/* @1269 (15x15,V)@ [suki software]*/ -0x00,0x24,0x24,0x24,0x24,0xa4,0xfc,0x62,0xa2,0x22,0x23,0x32,0x20,0x00,0x00 - -, -0x08,0x08,0x04,0x02,0x01,0x00,0x3f,0x00,0x00,0x01,0x02,0x04,0x18,0x08,0x00 - -, -/* @1270 (15x15,V)@ [suki software]*/ -0x00,0x14,0x14,0x94,0xfe,0x53,0x92,0x00,0xfc,0x04,0x04,0x04,0xfe,0x04,0x00 - -, -0x04,0x02,0x01,0x00,0x3f,0x00,0x01,0x00,0x0f,0x04,0x04,0x04,0x0f,0x00,0x00 - -, -/* @1271 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x00,0xe4,0x24,0x24,0xe4,0x04,0x04,0xfc,0x06,0x04,0x00 - -, -0x00,0x00,0x3f,0x00,0x00,0x07,0x02,0x02,0x03,0x10,0x20,0x1f,0x00,0x00,0x00 - -, -/* @1272 (15x15,V)@ [suki software]*/ -0x40,0x40,0x20,0x10,0x28,0x24,0x23,0x22,0x24,0x28,0x10,0x20,0x60,0x20,0x00 - -, -0x00,0x00,0x00,0x3f,0x11,0x11,0x11,0x11,0x11,0x11,0x3f,0x00,0x00,0x00,0x00 - -, -/* @1273 (15x15,V)@ [suki software]*/ -0x20,0x20,0x10,0x10,0xe8,0xa4,0xaa,0xa9,0xaa,0xa4,0xe8,0x10,0x30,0x10,0x00 - -, -0x20,0x20,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3e,0x20,0x20,0x00 - -, -/* @1274 (15x15,V)@ [suki software]*/ -0x48,0x48,0x34,0xaa,0xd1,0x08,0x90,0x8c,0x57,0x24,0x54,0x8e,0x84,0x80,0x00 - -, -0x0a,0x0a,0x15,0x22,0x11,0x0e,0x00,0x3f,0x11,0x11,0x11,0x3f,0x00,0x00,0x00 - -, -/* @1275 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x01,0x16,0xd0,0xb2,0x96,0x9a,0x52,0x12,0x12,0x02,0xff,0x02,0x00 - -, -0x00,0x3f,0x00,0x14,0x14,0x0a,0x09,0x04,0x02,0x05,0x08,0x20,0x3f,0x00,0x00 - -, -/* @1276 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x04,0xe4,0x24,0x24,0xe4,0x04,0x04,0xfc,0x06,0x04,0x00 - -, -0x02,0x3e,0x01,0x00,0x00,0x03,0x02,0x02,0x03,0x10,0x20,0x1f,0x00,0x00,0x00 - -, -/* @1277 (15x15,V)@ [suki software]*/ -0x10,0x61,0x06,0xc0,0x20,0xfe,0x12,0x92,0x92,0xfe,0x92,0x12,0xff,0x02,0x00 - -, -0x02,0x02,0x3f,0x00,0x00,0x3f,0x10,0x17,0x14,0x14,0x17,0x10,0x3f,0x00,0x00 - -, -/* @1278 (15x15,V)@ [suki software]*/ -0x20,0xa4,0xe4,0x3f,0xe4,0xa4,0x00,0x24,0x24,0xe4,0x3f,0xe4,0x24,0x20,0x00 - -, -0x23,0x10,0x0f,0x20,0x3f,0x00,0x05,0x22,0x19,0x07,0x20,0x3f,0x01,0x06,0x00 - -, -/* @1279 (15x15,V)@ [suki software]*/ -0x08,0x88,0xc9,0x2e,0x98,0x00,0xbe,0xea,0xaa,0xaa,0xaa,0xbf,0x82,0x00,0x00 - -, -0x01,0x00,0x3f,0x01,0x02,0x01,0x0e,0x08,0x0a,0x09,0x1a,0x20,0x1f,0x00,0x00 - -, -/* @1280 (15x15,V)@ [suki software]*/ -0x80,0x4c,0xf4,0xaf,0xf4,0xa4,0xac,0x00,0xfc,0x06,0x55,0x44,0x3c,0x00,0x00 - -, -0x00,0x00,0x3f,0x0a,0x0f,0x0a,0x0a,0x04,0x05,0x05,0x15,0x25,0x11,0x0f,0x00 - -, -/* @1281 (15x15,V)@ [suki software]*/ -0x44,0x24,0x14,0x8f,0xa4,0xa4,0x9c,0x80,0xbe,0xa2,0xa2,0x22,0x3e,0x00,0x00 - -, -0x00,0x20,0x20,0x2f,0x10,0x08,0x06,0x00,0x08,0x10,0x17,0x20,0x20,0x00,0x00 - -, -/* @1282 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0xfc,0x00,0x7e,0x4a,0x52,0xfe,0x52,0x4a,0x42,0x7f,0x02,0x00 - -, -0x00,0x03,0x01,0x21,0x14,0x05,0x15,0x25,0x07,0x15,0x25,0x05,0x15,0x24,0x00 - -, -/* @1283 (15x15,V)@ [suki software]*/ -0x00,0x00,0xbe,0xa2,0xaa,0xb2,0xfe,0xa2,0xb2,0xaa,0xa2,0xbf,0x02,0x00,0x00 - -, -0x02,0x22,0x1a,0x02,0x0a,0x32,0x03,0x0a,0x32,0x02,0x02,0x0a,0x32,0x02,0x00 - -, -/* @1284 (15x15,V)@ [suki software]*/ -0x00,0x18,0xa0,0xfc,0x04,0xf4,0x54,0x55,0x56,0x54,0x54,0xf4,0x06,0x04,0x00 - -, -0x21,0x11,0x0c,0x03,0x00,0x3f,0x21,0x11,0x13,0x05,0x09,0x15,0x32,0x10,0x00 - -, -/* @1285 (15x15,V)@ [suki software]*/ -0x10,0x88,0xc4,0x33,0x00,0x00,0xfe,0x52,0xd2,0x52,0x52,0x7f,0x82,0x00,0x00 - -, -0x01,0x00,0x3f,0x00,0x00,0x00,0x3f,0x10,0x13,0x04,0x0a,0x11,0x30,0x10,0x00 - -, -/* @1286 (15x15,V)@ [suki software]*/ -0x00,0x22,0x14,0x88,0xf4,0x02,0x00,0xfe,0x52,0xd2,0x52,0x52,0x7f,0x02,0x00 - -, -0x04,0x12,0x21,0x10,0x0f,0x00,0x00,0x3f,0x10,0x03,0x04,0x0a,0x31,0x10,0x00 - -, -/* @1287 (15x15,V)@ [suki software]*/ -0x40,0x30,0x00,0xff,0x10,0x20,0xfe,0x52,0xd2,0x52,0x52,0x7f,0x02,0x00,0x00 - -, -0x00,0x00,0x00,0x3f,0x00,0x00,0x3f,0x10,0x09,0x02,0x04,0x0a,0x31,0x10,0x00 - -, -/* @1288 (15x15,V)@ [suki software]*/ -0xfc,0x04,0x04,0xfc,0x00,0x04,0x74,0x54,0x55,0x56,0x54,0x74,0x06,0x04,0x00 - -, -0x03,0x01,0x01,0x03,0x00,0x01,0x01,0x11,0x21,0x1d,0x03,0x01,0x01,0x00,0x00 - -, -/* @1289 (15x15,V)@ [suki software]*/ -0x00,0x04,0x04,0x74,0x54,0x54,0x55,0x56,0x54,0x54,0x74,0x04,0x06,0x04,0x00 - -, -0x00,0x01,0x01,0x01,0x01,0x11,0x21,0x1d,0x05,0x03,0x01,0x01,0x00,0x00,0x00 - -, -/* @1290 (15x15,V)@ [suki software]*/ -0x08,0xc8,0xff,0x48,0x88,0x10,0xd4,0x5f,0x54,0xf4,0x5f,0x54,0xd4,0x10,0x00 - -, -0x03,0x00,0x3f,0x00,0x20,0x20,0x17,0x0d,0x05,0x07,0x0d,0x15,0x37,0x00,0x00 - -, -/* @1291 (15x15,V)@ [suki software]*/ -0x10,0x88,0xe6,0x10,0xf8,0x54,0xf7,0x5c,0xf4,0x00,0x24,0x24,0xe4,0x24,0x00 - -, -0x01,0x00,0x3f,0x04,0x15,0x0d,0x07,0x0d,0x15,0x04,0x10,0x20,0x1f,0x00,0x00 - -, -/* @1292 (15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x08,0x30,0x02,0xf2,0x92,0x92,0x92,0x92,0xfb,0x12,0x00,0x00 - -, -0x00,0x00,0x3f,0x00,0x10,0x10,0x17,0x14,0x14,0x14,0x14,0x17,0x10,0x10,0x00 - -, -/* @1293 (15x15,V)@ [suki software]*/ -0x00,0x42,0x42,0x5a,0x56,0x53,0x52,0xfa,0x52,0x52,0x52,0x52,0x42,0x42,0x00 - -, -0x00,0x21,0x23,0x15,0x09,0x17,0x20,0x21,0x17,0x09,0x15,0x23,0x21,0x20,0x00 - -, -/* @1294 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0x04,0xfc,0x10,0x10,0xff,0x10,0x10,0xff,0x10,0x10,0x00,0x00 - -, -0x00,0x07,0x02,0x02,0x27,0x11,0x09,0x05,0x01,0x01,0x05,0x09,0x11,0x21,0x00 - -, -/* @1295 (15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x20,0x18,0x00,0x10,0xff,0x10,0x10,0xff,0x10,0x10,0x00,0x00 - -, -0x20,0x18,0x07,0x02,0x2c,0x11,0x09,0x05,0x01,0x01,0x01,0x05,0x09,0x31,0x00 - -, -/* @1296 (15x15,V)@ [suki software]*/ -0x00,0xf8,0x08,0xff,0x08,0xf8,0x04,0x04,0x04,0xfc,0x04,0x06,0x04,0x00,0x00 - -, -0x10,0x11,0x11,0x0f,0x09,0x2d,0x20,0x20,0x20,0x3f,0x20,0x20,0x30,0x20,0x00 - -, -/* @1297 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x08,0xf8,0x08,0x00,0xfc,0x06,0x55,0x44,0x3c,0x00,0x00 - -, -0x02,0x3e,0x01,0x02,0x02,0x01,0x05,0x04,0x05,0x05,0x15,0x21,0x11,0x0f,0x00 - -, -/* @1298 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x00,0x10,0x10,0xff,0x10,0x10,0xff,0x10,0x10,0x00,0x00 - -, -0x02,0x3e,0x01,0x00,0x21,0x11,0x09,0x05,0x01,0x01,0x05,0x09,0x31,0x01,0x00 - -, -/* @1299 (15x15,V)@ [suki software]*/ -0x00,0x50,0x4c,0x44,0x44,0xc4,0x75,0x46,0x44,0x44,0x44,0x54,0x4c,0x00,0x00 - -, -0x10,0x10,0x08,0x04,0x12,0x39,0x14,0x12,0x11,0x10,0x14,0x18,0x30,0x00,0x00 - -, -/* @1300 (15x15,V)@ [suki software]*/ -0x00,0xc2,0xb2,0x92,0x92,0x9e,0x00,0x00,0xc0,0x3e,0x00,0x00,0x00,0x00,0x00 - -, -0x00,0x00,0x10,0x20,0x10,0x0f,0x18,0x16,0x11,0x10,0x10,0x12,0x1c,0x30,0x00 - -, -/* @1301 (15x15,V)@ [suki software]*/ -0x20,0x30,0xac,0x63,0x20,0x10,0x04,0x04,0x04,0xfc,0x04,0x04,0x04,0x00,0x00 - -, -0x00,0x13,0x12,0x0a,0x09,0x11,0x10,0x10,0x10,0x1f,0x10,0x10,0x18,0x10,0x00 - -, -/* @1302 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0xfc,0x20,0xf8,0x07,0x90,0x72,0x52,0xda,0x56,0x50,0x10,0x00 - -, -0x00,0x07,0x02,0x03,0x00,0x3f,0x20,0x11,0x09,0x05,0x03,0x0d,0x11,0x21,0x00 - -, -/* @1303 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x90,0x72,0x52,0x52,0xd2,0x52,0x5f,0x52,0x50,0x10,0x00 - -, -0x00,0x00,0x3f,0x00,0x22,0x12,0x0a,0x06,0x03,0x06,0x0a,0x12,0x33,0x12,0x00 - -, -/* @1304 (15x15,V)@ [suki software]*/ -0x22,0x14,0x88,0xf4,0x43,0xf8,0x07,0x90,0x72,0x52,0xd2,0x5f,0x52,0x10,0x00 - -, -0x02,0x11,0x20,0x1f,0x00,0x3f,0x20,0x12,0x0a,0x06,0x03,0x0e,0x12,0x22,0x00 - -, -/* @1305 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0x04,0xfc,0x82,0x82,0xfa,0x46,0x40,0xff,0x00,0x00,0x00,0x00 - -, -0x00,0x07,0x01,0x01,0x03,0x10,0x20,0x1f,0x00,0x00,0x1f,0x20,0x20,0x38,0x00 - -, -/* @1306 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x02,0x82,0xbe,0xaa,0xaa,0xaa,0xaa,0xaa,0xbe,0x03,0x02,0x00 - -, -0x20,0x18,0x07,0x04,0x04,0x04,0x14,0x24,0x1e,0x05,0x04,0x04,0x04,0x04,0x00 - -, -/* @1307 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0xf8,0x00,0x92,0x72,0x52,0xd2,0x5f,0x52,0x50,0x10,0x00 - -, -0x00,0x00,0x3f,0x00,0x0f,0x22,0x12,0x0a,0x06,0x03,0x06,0x0a,0x32,0x12,0x00 - -, -/* @1308 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfc,0x14,0x14,0x94,0x94,0x94,0x92,0x92,0x92,0xd3,0x92,0x00,0x00 - -, -0x20,0x18,0x07,0x00,0x00,0x3f,0x10,0x10,0x10,0x10,0x10,0x3f,0x00,0x00,0x00 - -, -/* @1309 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0x04,0xfc,0x80,0x94,0xa4,0x84,0xfe,0x82,0xa3,0x9a,0x80,0x00 - -, -0x00,0x07,0x02,0x02,0x07,0x00,0x00,0x10,0x20,0x1f,0x00,0x00,0x00,0x00,0x00 - -, -/* @1310 (15x15,V)@ [suki software]*/ -0x80,0x84,0x84,0x94,0xe4,0x84,0x84,0xfc,0x82,0xc2,0xa3,0x9a,0x80,0x80,0x00 - -, -0x00,0x00,0x00,0x00,0x00,0x10,0x20,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00 - -, -/* @1311 (15x15,V)@ [suki software]*/ -0x00,0x10,0x48,0x44,0x27,0x94,0x4c,0x24,0x9c,0x04,0x04,0xfe,0x04,0x00,0x00 - -, -0x10,0x0c,0x00,0x01,0x1d,0x20,0x21,0x26,0x20,0x21,0x39,0x00,0x04,0x08,0x00 - -, -/* @1312 (15x15,V)@ [suki software]*/ -0x42,0x42,0xfe,0x42,0x02,0xc8,0x48,0x7f,0xc8,0x00,0xfe,0x12,0xfe,0x00,0x00 - -, -0x08,0x08,0x07,0x04,0x00,0x0f,0x04,0x24,0x17,0x08,0x17,0x21,0x1f,0x00,0x00 - -, -/* @1313 (15x15,V)@ [suki software]*/ -0x00,0xc4,0x44,0x54,0x54,0xd4,0x5f,0x54,0xd4,0x54,0x54,0x46,0xc4,0x00,0x00 - -, -0x01,0x20,0x22,0x2c,0x20,0x3f,0x20,0x20,0x3f,0x28,0x24,0x22,0x20,0x00,0x00 - -, -/* @1314 (15x15,V)@ [suki software]*/ -0x24,0x24,0x24,0xf4,0x24,0x2f,0x24,0x04,0xf4,0x5f,0x54,0x54,0xf6,0x04,0x00 - -, -0x00,0x1f,0x09,0x09,0x09,0x0f,0x20,0x10,0x0f,0x02,0x12,0x22,0x1f,0x00,0x00 - -, -/* @1315 (15x15,V)@ [suki software]*/ -0x08,0xc8,0x48,0x7f,0x48,0xc8,0x08,0x00,0xfe,0x12,0x12,0x12,0xff,0x02,0x00 - -, -0x00,0x1f,0x04,0x04,0x04,0x2f,0x10,0x08,0x07,0x01,0x11,0x21,0x1f,0x00,0x00 - -, -/* @1316 (15x15,V)@ [suki software]*/ -0xf8,0x88,0xff,0x88,0xf8,0x90,0x90,0xff,0x90,0x00,0xfe,0x92,0x92,0xfe,0x00 - -, -0x11,0x10,0x0f,0x08,0x08,0x0f,0x04,0x24,0x17,0x08,0x07,0x10,0x20,0x1f,0x00 - -, -/* @1317 (15x15,V)@ [suki software]*/ -0x22,0x14,0x88,0xf4,0x03,0x00,0xfc,0x04,0xfc,0x02,0x7e,0x83,0x02,0x00,0x00 - -, -0x02,0x11,0x10,0x2f,0x10,0x0c,0x03,0x00,0x1f,0x08,0x1c,0x03,0x0c,0x10,0x00 - -, -/* @1318 (15x15,V)@ [suki software]*/ -0x24,0xa8,0xff,0xa8,0x24,0xc8,0x7f,0xc8,0x08,0xfe,0x92,0x92,0xfe,0x00,0x00 - -, -0x06,0x01,0x3f,0x00,0x01,0x0f,0x24,0x17,0x08,0x07,0x10,0x20,0x1f,0x00,0x00 - -, -/* @1319 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x88,0x88,0xff,0x88,0x00,0xfe,0x92,0x92,0xff,0x02,0x00 - -, -0x02,0x3e,0x01,0x00,0x0f,0x04,0x24,0x17,0x08,0x07,0x10,0x20,0x1f,0x00,0x00 - -, -}, -//************************************** -{ -/* @1320 (15x15,V)@ [suki software]*/ -0x02,0xf2,0x92,0x92,0x9e,0x00,0xfc,0x04,0xfc,0x02,0xfe,0x03,0x02,0x00,0x00 - -, -0x00,0x10,0x20,0x10,0x2f,0x10,0x0f,0x00,0x1f,0x08,0x1c,0x03,0x0c,0x10,0x00 - -, -/* @1321 (15x15,V)@ [suki software]*/ -0x00,0x00,0xf8,0x48,0x48,0x48,0xff,0xaa,0xaa,0xaa,0xaa,0x8a,0xd8,0x00,0x00 - -, -0x20,0x18,0x07,0x20,0x10,0x0e,0x02,0x02,0x02,0x1e,0x20,0x20,0x20,0x38,0x00 - -, -/* @1322 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0xfc,0x00,0xf8,0x08,0x28,0xff,0xaa,0xaa,0x8a,0xda,0x08,0x00 - -, -0x00,0x07,0x21,0x13,0x08,0x27,0x10,0x0e,0x02,0x02,0x1e,0x20,0x20,0x38,0x00 - -, -/* @1323 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x00,0xf8,0x48,0x49,0x4e,0x48,0x48,0xfc,0x08,0x00 - -, -0x01,0x11,0x20,0x1f,0x20,0x18,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 - -, -/* @1324 (15x15,V)@ [suki software]*/ -0x00,0x02,0x02,0x82,0x7e,0x22,0x22,0x22,0x22,0xf2,0x22,0x03,0x02,0x00,0x00 - -, -0x20,0x20,0x20,0x23,0x22,0x22,0x22,0x22,0x3e,0x23,0x20,0x20,0x30,0x20,0x00 - -, -/* @1325 (15x15,V)@ [suki software]*/ -0x10,0x61,0x02,0x84,0x60,0x00,0xf8,0x48,0x49,0x4a,0x48,0x48,0xfc,0x08,0x00 - -, -0x02,0x02,0x3e,0x01,0x20,0x18,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 - -, -/* @1326 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0xfc,0x44,0x44,0x45,0x46,0x44,0x44,0x44,0xfe,0x04,0x00,0x00 - -, -0x20,0x10,0x0c,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 - -, -/* @1327 (15x15,V)@ [suki software]*/ -0x04,0x04,0x04,0x84,0x64,0x1f,0x04,0x04,0xe4,0x1f,0x84,0x84,0x46,0x04,0x00 - -, -0x04,0x02,0x01,0x3f,0x00,0x04,0x04,0x02,0x1f,0x21,0x20,0x20,0x20,0x3c,0x00 - -, -/* @1328 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0x04,0xfc,0x10,0xfc,0x03,0x20,0x10,0x7f,0x88,0x84,0xe0,0x00 - -, -0x00,0x07,0x01,0x01,0x03,0x04,0x05,0x04,0x04,0x3f,0x04,0x04,0x04,0x04,0x00 - -, -/* @1329 (15x15,V)@ [suki software]*/ -0x20,0x10,0x08,0xfc,0x03,0x20,0x20,0x7f,0x90,0x88,0x88,0x84,0x86,0xe0,0x00 - -, -0x04,0x04,0x04,0x05,0x04,0x04,0x3f,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00 - -, -/* @1330 (15x15,V)@ [suki software]*/ -0x22,0x14,0x88,0xf4,0x03,0x60,0xbe,0xaa,0xaa,0xba,0xa2,0xbf,0x62,0x00,0x00 - -, -0x02,0x11,0x20,0x1f,0x00,0x00,0x3f,0x0a,0x0a,0x0a,0x2a,0x3f,0x00,0x00,0x00 - -, -/* @1331 (15x15,V)@ [suki software]*/ -0x10,0x21,0xc2,0x06,0x60,0x20,0xbe,0xaa,0xaa,0xba,0xa2,0xbf,0x62,0x00,0x00 - -, -0x02,0x3e,0x01,0x00,0x00,0x00,0x3f,0x0a,0x0a,0x0a,0x2a,0x3f,0x00,0x00,0x00 - -, -/* @1332 (15x15,V)@ [suki software]*/ -0x02,0xf2,0x02,0x02,0xfa,0x4a,0x4a,0xfa,0x4a,0x4a,0xfa,0x02,0xf3,0x02,0x00 - -, -0x00,0x1f,0x10,0x10,0x17,0x14,0x14,0x17,0x14,0x14,0x17,0x10,0x3f,0x00,0x00 - -, -/* @1333 (15x15,V)@ [suki software]*/ -0x20,0x20,0x20,0xff,0x10,0x12,0x14,0x90,0x00,0xfc,0x00,0x00,0xff,0x00,0x00 - -, -0x10,0x10,0x08,0x0b,0x04,0x0a,0x11,0x20,0x38,0x03,0x10,0x20,0x1f,0x00,0x00 - -, -/* @1334 (15x15,V)@ [suki software]*/ -0x80,0x40,0x20,0xf8,0x07,0x00,0x00,0x00,0xff,0x40,0x20,0x10,0x08,0x00,0x00 - -, -0x00,0x00,0x00,0x3f,0x00,0x02,0x02,0x01,0x1f,0x20,0x20,0x20,0x20,0x3c,0x00 - -, -/* @1335 (15x15,V)@ [suki software]*/ -0x20,0x21,0x22,0xe4,0x00,0x20,0x24,0x24,0x24,0xfe,0x22,0x23,0xb2,0x20,0x00 - -, -0x00,0x00,0x00,0x1f,0x08,0x04,0x3f,0x11,0x11,0x11,0x11,0x11,0x3f,0x01,0x00 - -, -/* @1336 (15x15,V)@ [suki software]*/ -0x10,0x90,0xff,0x50,0x90,0x00,0xfc,0x94,0x97,0xfc,0x94,0x94,0xfc,0x00,0x00 - -, -0x06,0x01,0x3f,0x00,0x20,0x10,0x08,0x06,0x01,0x1f,0x24,0x27,0x24,0x38,0x00 - -, -/* @1337 (15x15,V)@ [suki software]*/ -0x10,0x88,0xc4,0x33,0x00,0xfc,0x04,0xf4,0x14,0x14,0xf4,0x04,0xfe,0x04,0x00 - -, -0x01,0x00,0x3f,0x00,0x00,0x3f,0x10,0x13,0x12,0x12,0x13,0x10,0x3f,0x00,0x00 - -, -/* @1338 (15x15,V)@ [suki software]*/ -0x60,0x10,0xff,0x08,0x30,0x04,0x04,0x84,0x64,0xdc,0x04,0x44,0x86,0x04,0x00 - -, -0x00,0x00,0x3f,0x00,0x04,0x02,0x01,0x00,0x00,0x3f,0x00,0x00,0x00,0x03,0x00 - -, -/* @1339 (15x15,V)@ [suki software]*/ -0x10,0x61,0x06,0x80,0x20,0x10,0xfc,0x4b,0x48,0xfa,0x4c,0x48,0x48,0x08,0x00 - -, -0x04,0x3c,0x03,0x00,0x00,0x00,0x3f,0x12,0x12,0x1f,0x12,0x12,0x12,0x10,0x00 - -, -/* @1340 (15x15,V)@ [suki software]*/ -0x10,0x10,0xff,0x10,0x10,0x02,0x02,0x82,0xe2,0x1e,0x82,0x02,0x03,0x02,0x00 - -, -0x04,0x04,0x03,0x02,0x04,0x02,0x01,0x00,0x3f,0x00,0x00,0x01,0x06,0x00,0x00 - -, -/* @1341 (15x15,V)@ [suki software]*/ -0x04,0x14,0x64,0x84,0x64,0x1c,0x40,0x30,0x0f,0xe8,0x08,0x08,0x28,0x18,0x00 - -, -0x10,0x08,0x06,0x01,0x02,0x2c,0x10,0x08,0x06,0x01,0x06,0x08,0x10,0x20,0x00 - -, -/* @1342 (15x15,V)@ [suki software]*/ -0x22,0x22,0xfe,0x22,0x22,0x00,0x02,0xc2,0x32,0xee,0x02,0xc2,0x03,0x02,0x00 - -, -0x04,0x0c,0x03,0x02,0x00,0x02,0x01,0x00,0x00,0x3f,0x00,0x00,0x03,0x00,0x00 - -, -/* @1343 (15x15,V)@ [suki software]*/ -0x08,0xc8,0xff,0x48,0x88,0x02,0xf2,0x92,0x92,0x92,0x92,0xfa,0x13,0x02,0x00 - -, -0x03,0x00,0x3f,0x00,0x10,0x10,0x17,0x14,0x14,0x14,0x14,0x17,0x10,0x10,0x00 - -, -/* @1344 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x02,0x82,0x42,0x22,0xf2,0x0e,0x22,0x42,0x83,0x02,0x00 - -, -0x10,0x08,0x07,0x04,0x09,0x10,0x10,0x10,0x17,0x10,0x10,0x10,0x11,0x10,0x00 - -, -/* @1345 (15x15,V)@ [suki software]*/ -0x20,0x38,0xa7,0x60,0x18,0x82,0xa6,0xaa,0xe6,0xaa,0xa2,0xa9,0xa5,0x80,0x00 - -, -0x09,0x1b,0x09,0x25,0x15,0x08,0x24,0x23,0x16,0x0a,0x0a,0x16,0x20,0x20,0x00 - -, -/* @1346 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x50,0xe8,0x27,0x24,0xf4,0x2c,0x20,0xe0,0x00,0x00 - -, -0x01,0x11,0x20,0x1f,0x20,0x22,0x13,0x0a,0x06,0x03,0x0e,0x12,0x23,0x22,0x00 - -, -/* @1347 (15x15,V)@ [suki software]*/ -0x00,0x00,0xe0,0x2e,0x2a,0x2a,0x2a,0xff,0x2a,0x2a,0x2a,0x2e,0xe0,0x00,0x00 - -, -0x00,0x10,0x0d,0x01,0x1d,0x21,0x25,0x2b,0x21,0x21,0x39,0x05,0x09,0x00,0x00 - -, -/* @1348 (15x15,V)@ [suki software]*/ -0xfc,0x04,0x04,0xfc,0x00,0x10,0xf8,0x17,0xf4,0x1c,0x14,0xf0,0x00,0x00,0x00 - -, -0x07,0x01,0x01,0x23,0x20,0x11,0x09,0x05,0x03,0x05,0x09,0x11,0x31,0x11,0x00 - -, -/* @1349 (15x15,V)@ [suki software]*/ -0x08,0x90,0x40,0xfc,0x44,0xe4,0x54,0x5d,0xd6,0x74,0x54,0xc4,0x06,0x04,0x00 - -, -0x21,0x18,0x06,0x21,0x22,0x13,0x0a,0x06,0x03,0x06,0x0a,0x13,0x22,0x22,0x00 - -, -/* @1350 (15x15,V)@ [suki software]*/ -0x00,0x90,0x94,0x55,0x76,0xdc,0x57,0x54,0x54,0x36,0x55,0x54,0x90,0x80,0x00 - -, -0x00,0x10,0x14,0x15,0x15,0x2a,0x25,0x1e,0x02,0x05,0x05,0x08,0x10,0x00,0x00 - -, -/* @1351 (15x15,V)@ [suki software]*/ -0x60,0x10,0xff,0x10,0x08,0x10,0xf8,0x17,0x14,0xf4,0x1e,0x14,0xf0,0x00,0x00 - -, -0x20,0x18,0x07,0x02,0x2c,0x21,0x11,0x09,0x05,0x03,0x05,0x09,0x11,0x21,0x00 - -, -/* @1352 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x00,0x10,0xf8,0x17,0x14,0xf4,0x1e,0x14,0xf0,0x00,0x00 - -, -0x02,0x3e,0x01,0x00,0x21,0x21,0x11,0x09,0x05,0x03,0x05,0x09,0x31,0x11,0x00 - -, -/* @1353 (15x15,V)@ [suki software]*/ -0x10,0x0c,0x04,0xf4,0x94,0x94,0x95,0xf6,0x94,0x94,0x94,0x84,0x14,0x0c,0x00 - -, -0x00,0x00,0x00,0x3f,0x24,0x24,0x24,0x3c,0x24,0x24,0x24,0x27,0x20,0x00,0x00 - -, -/* @1354 (15x15,V)@ [suki software]*/ -0x40,0x60,0x58,0x47,0xc0,0x20,0x10,0x04,0x04,0x04,0x04,0x04,0xfe,0x04,0x00 - -, -0x08,0x1c,0x0a,0x09,0x08,0x0a,0x0c,0x18,0x00,0x10,0x20,0x10,0x0f,0x00,0x00 - -, -/* @1355 (15x15,V)@ [suki software]*/ -0x14,0x14,0x14,0xf4,0x9f,0x94,0x9c,0x94,0x94,0x9f,0x94,0x94,0x14,0x14,0x00 - -, -0x20,0x20,0x10,0x0e,0x00,0x00,0x3e,0x00,0x00,0x1e,0x20,0x20,0x20,0x38,0x00 - -, -/* @1356 (15x15,V)@ [suki software]*/ -0x38,0x00,0xff,0x08,0x34,0xe4,0xaf,0xa4,0xb4,0xa4,0xaf,0xa4,0xa4,0x24,0x00 - -, -0x00,0x00,0x3f,0x20,0x10,0x0e,0x00,0x00,0x3e,0x00,0x1e,0x20,0x20,0x38,0x00 - -, -/* @1357 (15x15,V)@ [suki software]*/ -0x10,0x14,0x14,0xd4,0x54,0x5f,0x54,0xf4,0x54,0x5f,0x54,0xd6,0x14,0x10,0x00 - -, -0x00,0x20,0x20,0x17,0x15,0x0d,0x05,0x07,0x05,0x0d,0x15,0x27,0x20,0x00,0x00 - -, -/* @1358 (15x15,V)@ [suki software]*/ -0x82,0xe2,0x3e,0x22,0xe2,0x10,0xd4,0x54,0x5f,0xf4,0x54,0x5f,0xd4,0x14,0x00 - -, -0x00,0x1f,0x08,0x08,0x2f,0x20,0x17,0x0d,0x05,0x07,0x05,0x0d,0x17,0x20,0x00 - -, -/* @1359 (15x15,V)@ [suki software]*/ -0x00,0xf8,0x08,0xff,0x08,0xf8,0x00,0x7c,0x54,0x57,0x54,0x54,0x7c,0x00,0x00 - -, -0x10,0x13,0x11,0x0f,0x09,0x2d,0x20,0x25,0x25,0x3f,0x25,0x25,0x25,0x20,0x00 - -, -/* @1360 (15x15,V)@ [suki software]*/ -0x40,0x48,0x54,0xd3,0x56,0x7a,0x52,0xd4,0x53,0x7a,0x56,0xda,0x52,0x42,0x00 - -, -0x00,0x20,0x20,0x2f,0x1a,0x0a,0x0a,0x0f,0x0a,0x0a,0x1a,0x2f,0x20,0x00,0x00 - -, -/* @1361 (15x15,V)@ [suki software]*/ -0x00,0x00,0x7c,0x54,0x54,0x56,0x55,0x54,0x54,0x54,0x7e,0x04,0x00,0x00,0x00 - -, -0x20,0x21,0x25,0x25,0x25,0x25,0x3f,0x25,0x25,0x25,0x25,0x25,0x31,0x20,0x00 - -, -/* @1362 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x02,0xfa,0xaa,0xae,0xaa,0xaa,0xfa,0x02,0xff,0x02,0x00,0x00 - -, -0x20,0x1c,0x03,0x20,0x2a,0x2a,0x3e,0x2a,0x2a,0x2a,0x20,0x0f,0x10,0x3c,0x00 - -, -/* @1363 (15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x08,0x10,0x7c,0x54,0x56,0x55,0x54,0x54,0x7e,0x04,0x00,0x00 - -, -0x00,0x00,0x3f,0x00,0x21,0x25,0x25,0x25,0x3f,0x25,0x25,0x25,0x21,0x20,0x00 - -, -/* @1364 (15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x20,0x18,0x00,0x7c,0x54,0x56,0x55,0x54,0x54,0x7e,0x04,0x00 - -, -0x20,0x18,0x07,0x02,0x04,0x28,0x25,0x25,0x25,0x3f,0x25,0x25,0x25,0x20,0x00 - -, -/* @1365 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0xbe,0x2a,0x2a,0xea,0x2a,0x2a,0x2a,0xbf,0x02,0x00,0x00,0x00 - -, -0x02,0x22,0x22,0x12,0x0b,0x06,0x03,0x02,0x1e,0x23,0x22,0x22,0x3b,0x02,0x00 - -, -/* @1366 (15x15,V)@ [suki software]*/ -0xf8,0x08,0xff,0x08,0xf8,0x00,0x3e,0xaa,0x2a,0xea,0x2a,0xaa,0x3f,0x02,0x00 - -, -0x03,0x00,0x3f,0x02,0x23,0x21,0x11,0x0f,0x01,0x01,0x1f,0x21,0x21,0x39,0x00 - -, -/* @1367 (15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x08,0x50,0x44,0x58,0xc0,0x7f,0xc0,0x50,0x4c,0x40,0x40,0x00 - -, -0x00,0x00,0x3f,0x00,0x20,0x10,0x0c,0x03,0x00,0x1f,0x20,0x20,0x20,0x38,0x00 - -, -/* @1368 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x24,0x24,0xe4,0xaf,0xa4,0xb4,0xaf,0xa4,0xa4,0x24,0x00 - -, -0x00,0x00,0x1f,0x08,0x24,0x10,0x0e,0x00,0x3e,0x00,0x00,0x3e,0x20,0x38,0x00 - -, -/* @1369 (15x15,V)@ [suki software]*/ -0x04,0x04,0x04,0x04,0xc4,0x3f,0xc4,0x04,0xf4,0x04,0x84,0x44,0x66,0x04,0x00 - -, -0x08,0x04,0x22,0x21,0x10,0x09,0x04,0x03,0x00,0x03,0x04,0x08,0x30,0x10,0x00 - -, -/* @1370 (15x15,V)@ [suki software]*/ -0x08,0x08,0xff,0x88,0x48,0x14,0xd6,0xb2,0x9a,0xd2,0x92,0x92,0x96,0x02,0x00 - -, -0x11,0x21,0x1f,0x00,0x00,0x04,0x04,0x04,0x04,0x3f,0x04,0x04,0x06,0x04,0x00 - -, -/* @1371 (15x15,V)@ [suki software]*/ -0x24,0x28,0xe0,0x3f,0xe8,0x24,0x16,0xd2,0xb2,0x9e,0xf2,0x92,0x92,0x06,0x00 - -, -0x10,0x0c,0x03,0x00,0x0f,0x04,0x02,0x04,0x04,0x04,0x3f,0x04,0x04,0x04,0x00 - -, -/* @1372 (15x15,V)@ [suki software]*/ -0x88,0x44,0xf3,0x00,0xae,0xe8,0xaf,0x68,0x4e,0xf8,0x17,0x10,0xf8,0x10,0x00 - -, -0x00,0x00,0x3f,0x10,0x0a,0x13,0x1e,0x2b,0x12,0x0b,0x04,0x0b,0x30,0x10,0x00 - -, -/* @1373 (15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x08,0x34,0x84,0x64,0x9f,0x04,0xf4,0x04,0x04,0x86,0x04,0x00 - -, -0x00,0x00,0x3f,0x04,0x22,0x21,0x10,0x09,0x04,0x03,0x06,0x09,0x30,0x10,0x00 - -, -/* @1374 (15x15,V)@ [suki software]*/ -0xf8,0x08,0xff,0x08,0xf8,0x00,0xfe,0x02,0xf2,0x12,0xf2,0x02,0xff,0x02,0x00 - -, -0x11,0x11,0x0f,0x09,0x0d,0x08,0x3f,0x10,0x13,0x12,0x13,0x10,0x3f,0x00,0x00 - -, -/* @1375 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0x02,0xf2,0x12,0x12,0x12,0x12,0xf2,0x02,0x02,0xff,0x02,0x00 - -, -0x00,0x3f,0x10,0x10,0x13,0x11,0x11,0x11,0x11,0x13,0x10,0x10,0x3f,0x00,0x00 - -, -/* @1376 (15x15,V)@ [suki software]*/ -0x00,0x7c,0x52,0x41,0x52,0x52,0x7e,0x20,0x9e,0x82,0x82,0x9f,0xa2,0x20,0x00 - -, -0x10,0x31,0x11,0x1f,0x09,0x09,0x29,0x20,0x11,0x0a,0x04,0x0a,0x31,0x10,0x00 - -, -/* @1377 (15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x08,0x90,0x88,0xf4,0x97,0xb4,0xd4,0x94,0x94,0xf6,0x84,0x00 - -, -0x00,0x00,0x3f,0x00,0x00,0x0c,0x0b,0x08,0x09,0x2e,0x28,0x1f,0x08,0x08,0x00 - -, -/* @1378 (15x15,V)@ [suki software]*/ -0x00,0x2a,0xaa,0xaa,0xbf,0xaa,0xaa,0xa0,0xaa,0xbf,0xaa,0xea,0x2a,0x00,0x00 - -, -0x00,0x10,0x0a,0x02,0x1e,0x22,0x26,0x2a,0x22,0x22,0x3a,0x03,0x18,0x00,0x00 - -, -/* @1379 (15x15,V)@ [suki software]*/ -0x80,0x84,0x84,0x84,0xe4,0x84,0xbf,0x84,0x84,0xe4,0x84,0x84,0x84,0x80,0x00 - -, -0x20,0x20,0x10,0x08,0x07,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00 - -, -/* @1380 (15x15,V)@ [suki software]*/ -0x00,0x02,0x02,0xfa,0xaa,0xaa,0xaa,0xff,0xaa,0xaa,0xaa,0xfa,0x02,0x02,0x00 - -, -0x00,0x12,0x0a,0x02,0x1e,0x22,0x26,0x2b,0x22,0x22,0x3a,0x03,0x1a,0x00,0x00 - -, -/* @1381 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x44,0x44,0xfc,0x90,0xf8,0x97,0xb4,0xd4,0x94,0x94,0xf6,0x84,0x00 - -, -0x00,0x0f,0x04,0x04,0x07,0x08,0x0f,0x08,0x09,0x2a,0x28,0x18,0x0f,0x08,0x00 - -, -/* @1382 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0xfa,0x02,0xfe,0x44,0x24,0xf4,0xaf,0xa4,0xa4,0xe6,0x04,0x00 - -, -0x20,0x13,0x0c,0x03,0x04,0x0b,0x10,0x00,0x3f,0x02,0x02,0x22,0x3f,0x00,0x00 - -, -/* @1383 (15x15,V)@ [suki software]*/ -0x14,0x14,0x94,0xfe,0x53,0x82,0x1e,0x90,0x70,0x5f,0x50,0x50,0xde,0x00,0x00 - -, -0x04,0x03,0x00,0x3f,0x00,0x22,0x21,0x11,0x16,0x08,0x04,0x02,0x01,0x00,0x00 - -, -/* @1384 (15x15,V)@ [suki software]*/ -0x40,0x40,0x20,0x10,0x28,0x24,0x23,0x22,0x24,0x28,0x10,0x20,0x60,0x20,0x00 - -, -0x00,0x01,0x11,0x39,0x15,0x13,0x11,0x11,0x11,0x15,0x19,0x31,0x01,0x00,0x00 - -, -/* @1385 (15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x10,0x08,0x20,0x10,0x28,0x24,0x23,0x24,0x28,0x10,0x20,0x00 - -, -0x20,0x18,0x07,0x02,0x0c,0x11,0x31,0x19,0x17,0x11,0x15,0x19,0x31,0x01,0x00 - -, -/* @1386 (15x15,V)@ [suki software]*/ -0x10,0x61,0x06,0x80,0x60,0x00,0xfc,0x04,0x04,0x04,0x04,0x04,0x06,0x04,0x00 - -, -0x02,0x02,0x3e,0x01,0x00,0x00,0x1f,0x10,0x10,0x10,0x10,0x10,0x18,0x10,0x00 - -, -/* @1387 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x00,0xa4,0xa4,0xa4,0xff,0xa4,0xa4,0xa4,0xa6,0x04,0x00 - -, -0x00,0x00,0x1f,0x08,0x04,0x00,0x00,0x00,0x3f,0x00,0x08,0x10,0x0f,0x00,0x00 - -, -/* @1388 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x90,0x88,0xf4,0x97,0xb4,0xd4,0x94,0x94,0xf6,0x84,0x00 - -, -0x00,0x00,0x1f,0x08,0x00,0x0c,0x0b,0x08,0x09,0x2a,0x28,0x1f,0x08,0x08,0x00 - -, -/* @1389 (15x15,V)@ [suki software]*/ -0x20,0x30,0xac,0x63,0x10,0x20,0x10,0x48,0x47,0x44,0x48,0x50,0x20,0x20,0x00 - -, -0x09,0x1b,0x09,0x05,0x04,0x01,0x31,0x19,0x17,0x11,0x15,0x19,0x31,0x01,0x00 - -, -/* @1390 (15x15,V)@ [suki software]*/ -0x40,0x34,0x54,0x54,0xd4,0x7f,0x54,0xd4,0x54,0x5f,0x54,0x14,0x54,0x30,0x00 - -, -0x08,0x08,0x0a,0x0b,0x0a,0x0a,0x0a,0x3f,0x0a,0x0a,0x0a,0x0a,0x08,0x08,0x00 - -, -/* @1391 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x8a,0x4a,0x4a,0x0a,0x1e,0x29,0x49,0x49,0x88,0x88,0xe0,0x00 - -, -0x00,0x00,0x00,0x3f,0x25,0x25,0x25,0x25,0x25,0x25,0x3f,0x00,0x00,0x00,0x00 - -, -/* @1392 (15x15,V)@ [suki software]*/ -0x88,0x78,0x0f,0x08,0xf8,0x00,0x7e,0x4a,0x4a,0x1e,0x29,0x49,0x49,0x68,0x00 - -, -0x20,0x11,0x0a,0x04,0x0b,0x00,0x3f,0x15,0x15,0x15,0x15,0x15,0x3f,0x00,0x00 - -, -/* @1393 (15x15,V)@ [suki software]*/ -0x20,0x24,0xe4,0x24,0x24,0x20,0xfc,0x94,0x97,0xfc,0x94,0x94,0xfe,0x04,0x00 - -, -0x02,0x07,0x02,0x22,0x27,0x10,0x08,0x06,0x01,0x1f,0x24,0x27,0x24,0x38,0x00 - -, -/* @1394 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x00,0x96,0xd2,0xb2,0x9a,0xd2,0x92,0x92,0x96,0x02,0x00 - -, -0x02,0x3e,0x01,0x00,0x04,0x04,0x04,0x04,0x04,0x3f,0x04,0x04,0x04,0x04,0x00 - -, -/* @1395 (15x15,V)@ [suki software]*/ -0x08,0x30,0x01,0xc6,0x30,0x80,0x7e,0x4a,0x4a,0xca,0x4a,0x4a,0x7f,0x02,0x00 - -, -0x02,0x02,0x3e,0x01,0x00,0x3f,0x12,0x0a,0x00,0x1f,0x22,0x22,0x21,0x38,0x00 - -, -/* @1396 (15x15,V)@ [suki software]*/ -0x0c,0x54,0x55,0xfe,0x54,0x54,0x0c,0x00,0x88,0x66,0x18,0x62,0x84,0x08,0x00 - -, -0x01,0x3d,0x15,0x17,0x15,0x3d,0x00,0x01,0x3f,0x11,0x11,0x11,0x3f,0x01,0x00 - -, -/* @1397 (15x15,V)@ [suki software]*/ -0x10,0x61,0x02,0xc6,0x20,0x24,0x24,0x24,0xfc,0x22,0x22,0xa3,0x32,0x20,0x00 - -, -0x02,0x02,0x3f,0x00,0x00,0x3f,0x11,0x11,0x11,0x11,0x11,0x3f,0x01,0x00,0x00 - -, -/* @1398 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x00,0xc0,0x30,0x00,0xff,0x80,0x40,0x20,0x10,0x00,0x00 - -, -0x00,0x00,0x3f,0x00,0x20,0x10,0x0c,0x03,0x00,0x01,0x06,0x08,0x30,0x10,0x00 - -, -/* @1399 (15x15,V)@ [suki software]*/ -0x00,0x80,0xc0,0x30,0x00,0x00,0x00,0xff,0x80,0x40,0x20,0x10,0x00,0x00,0x00 - -, -0x20,0x20,0x20,0x10,0x08,0x04,0x03,0x00,0x01,0x02,0x04,0x08,0x30,0x10,0x00 - -, -/* @1400 (15x15,V)@ [suki software]*/ -0x84,0x84,0x54,0x64,0x94,0x0f,0x84,0x84,0x84,0xef,0x84,0xa4,0xc6,0x84,0x00 - -, -0x04,0x14,0x22,0x11,0x0f,0x20,0x10,0x08,0x06,0x01,0x06,0x08,0x10,0x20,0x00 - -, -/* @1401 (15x15,V)@ [suki software]*/ -0x08,0x08,0xe8,0x28,0x28,0xe8,0x08,0x08,0xff,0x08,0x09,0x8a,0x68,0x08,0x00 - -, -0x08,0x18,0x0b,0x09,0x09,0x25,0x24,0x10,0x09,0x06,0x0a,0x11,0x20,0x3c,0x00 - -, -/* @1402 (15x15,V)@ [suki software]*/ -0x04,0x04,0x74,0x54,0x54,0x54,0x74,0x04,0x7f,0x84,0x45,0x36,0x04,0x04,0x00 - -, -0x00,0x12,0x0a,0x01,0x1d,0x21,0x25,0x2a,0x21,0x38,0x01,0x0a,0x12,0x03,0x00 - -, -/* @1403 (15x15,V)@ [suki software]*/ -0x20,0x18,0x2a,0xea,0xaa,0xaa,0x8a,0xfe,0x8a,0xaa,0xaa,0x8b,0xaa,0x18,0x00 - -, -0x04,0x02,0x01,0x3f,0x2a,0x2a,0x2a,0x3f,0x2a,0x2a,0x2a,0x2a,0x20,0x00,0x00 - -, -/* @1404 (15x15,V)@ [suki software]*/ -0x08,0x08,0x04,0xbe,0x81,0x88,0x88,0x9f,0xa4,0xa4,0xa2,0x22,0x38,0x00,0x00 - -, -0x00,0x20,0x20,0x27,0x10,0x08,0x07,0x08,0x08,0x10,0x17,0x30,0x00,0x00,0x00 - -, -/* @1405 (15x15,V)@ [suki software]*/ -0x08,0x88,0xc9,0x6e,0x98,0x00,0x80,0x9e,0x92,0xf2,0x92,0x92,0x9f,0x82,0x00 - -, -0x01,0x00,0x3f,0x00,0x01,0x00,0x3f,0x04,0x02,0x01,0x02,0x14,0x20,0x1f,0x00 - -, -/* @1406 (15x15,V)@ [suki software]*/ -0x40,0x48,0x48,0x48,0x48,0x48,0xff,0x48,0x48,0x48,0x48,0x4c,0x68,0x40,0x00 - -, -0x00,0x00,0x1f,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x10,0x3f,0x00,0x00,0x00 - -, -/* @1407 (15x15,V)@ [suki software]*/ -0x10,0x10,0xff,0x10,0x10,0x02,0xfe,0x82,0x02,0x32,0x2f,0xa2,0x60,0x00,0x00 - -, -0x04,0x0c,0x07,0x22,0x12,0x2c,0x23,0x10,0x0b,0x04,0x0a,0x11,0x20,0x20,0x00 - -, -/* @1408 (15x15,V)@ [suki software]*/ -0x00,0x04,0x04,0x04,0xff,0x54,0x54,0x54,0x54,0xff,0x04,0x04,0x04,0x00,0x00 - -, -0x09,0x29,0x25,0x2b,0x29,0x29,0x3f,0x29,0x29,0x29,0x2b,0x25,0x2d,0x04,0x00 - -, -/* @1409 (15x15,V)@ [suki software]*/ -0x10,0x10,0xd0,0xff,0x50,0x90,0x00,0xfe,0x02,0x02,0xff,0x02,0x00,0x00,0x00 - -, -0x02,0x01,0x00,0x3f,0x20,0x10,0x08,0x07,0x00,0x00,0x1f,0x20,0x20,0x3c,0x00 - -, -/* @1410 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x44,0xfc,0x44,0xfc,0x40,0x64,0x54,0x4f,0x54,0x64,0xc6,0x44,0x00 - -, -0x00,0x0f,0x04,0x07,0x04,0x07,0x00,0x0f,0x05,0x07,0x10,0x20,0x1f,0x00,0x00 - -, -/* @1411 (15x15,V)@ [suki software]*/ -0x14,0xd4,0xfe,0x93,0x12,0x24,0xe4,0x94,0xcf,0xa4,0x9d,0xa6,0xe4,0x34,0x00 - -, -0x03,0x00,0x3f,0x00,0x01,0x00,0x3e,0x2a,0x2a,0x2a,0x2a,0x2a,0x3e,0x00,0x00 - -, -/* @1412 (15x15,V)@ [suki software]*/ -0x14,0x14,0xd4,0xfe,0x53,0x92,0x00,0xfe,0x82,0x82,0x82,0x82,0xfe,0x00,0x00 - -, -0x04,0x03,0x00,0x3f,0x00,0x21,0x10,0x08,0x06,0x00,0x00,0x02,0x0c,0x30,0x00 - -, -/* @1413 (15x15,V)@ [suki software]*/ -0x10,0x08,0x14,0x17,0xfc,0x54,0x54,0x58,0x54,0xf7,0x1c,0x14,0x16,0x04,0x00 - -, -0x04,0x24,0x24,0x14,0x0f,0x05,0x05,0x05,0x05,0x0f,0x14,0x24,0x04,0x04,0x00 - -, -}, -//************************************** -{ -/* @1414 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x92,0x92,0xfe,0x00,0x00,0xfe,0x02,0x02,0x02,0xff,0x02,0x00,0x00 - -, -0x30,0x0f,0x10,0x20,0x1f,0x20,0x10,0x0f,0x00,0x00,0x00,0x1f,0x20,0x3c,0x00 - -, -/* @1415 (15x15,V)@ [suki software]*/ -0x20,0x18,0xef,0x08,0x28,0x18,0x00,0xfe,0x02,0x02,0xff,0x02,0x00,0x00,0x00 - -, -0x00,0x00,0x1f,0x08,0x24,0x10,0x0c,0x03,0x00,0x00,0x1f,0x20,0x20,0x3c,0x00 - -, -/* @1416 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x84,0x64,0x04,0xfd,0x06,0x04,0xfc,0x24,0x44,0x84,0x00 - -, -0x10,0x08,0x07,0x08,0x10,0x14,0x22,0x21,0x24,0x28,0x27,0x20,0x20,0x20,0x00 - -, -/* @1417 (15x15,V)@ [suki software]*/ -0x10,0x21,0xc6,0x00,0x7c,0x54,0xd7,0x54,0x7c,0x20,0xff,0x10,0xf8,0x10,0x00 - -, -0x02,0x3f,0x00,0x20,0x19,0x07,0x25,0x1d,0x21,0x10,0x09,0x06,0x19,0x20,0x00 - -, -/* @1418 (15x15,V)@ [suki software]*/ -0x10,0x11,0xf6,0x00,0x00,0x00,0xfe,0x02,0x02,0x02,0xff,0x02,0x00,0x00,0x00 - -, -0x00,0x00,0x0f,0x24,0x12,0x08,0x07,0x00,0x00,0x00,0x0f,0x10,0x10,0x1c,0x00 - -, -/* @1419 (15x15,V)@ [suki software]*/ -0x04,0x24,0x44,0x84,0x7c,0x00,0xfc,0x04,0x0f,0x54,0x44,0x3c,0x00,0x00,0x00 - -, -0x08,0x04,0x02,0x01,0x0e,0x00,0x05,0x05,0x05,0x15,0x25,0x11,0x0f,0x00,0x00 - -, -/* @1420 (15x15,V)@ [suki software]*/ -0x88,0x78,0x0f,0x08,0xf8,0x00,0xfe,0x02,0xe2,0x22,0x3e,0x22,0xe2,0x02,0x00 - -, -0x20,0x11,0x0a,0x04,0x0b,0x00,0x3f,0x20,0x23,0x22,0x3e,0x22,0x33,0x20,0x00 - -, -/* @1421 (15x15,V)@ [suki software]*/ -0x20,0x30,0xac,0x63,0x10,0x22,0xaa,0xaa,0xaa,0xbf,0xaa,0xaa,0xaa,0x22,0x00 - -, -0x09,0x1b,0x09,0x05,0x05,0x20,0x27,0x10,0x08,0x06,0x08,0x10,0x27,0x20,0x00 - -, -/* @1422 (15x15,V)@ [suki software]*/ -0x20,0x30,0xac,0x63,0x10,0x20,0xee,0xaa,0xaa,0xaa,0xaa,0xef,0x22,0x20,0x00 - -, -0x09,0x1b,0x09,0x05,0x05,0x08,0x0f,0x0a,0x0a,0x0a,0x0a,0x3f,0x04,0x04,0x00 - -, -/* @1423 (15x15,V)@ [suki software]*/ -0x00,0x08,0x48,0x48,0x48,0x48,0x48,0x7f,0x48,0x48,0x48,0x48,0x4c,0x08,0x00 - -, -0x00,0x00,0x00,0x3f,0x11,0x11,0x11,0x11,0x11,0x11,0x3f,0x00,0x00,0x00,0x00 - -, -/* @1424 (15x15,V)@ [suki software]*/ -0x08,0x08,0xc8,0xff,0x48,0x8a,0x02,0xfe,0x02,0x22,0x32,0x2f,0xe2,0x00,0x00 - -, -0x02,0x01,0x00,0x3f,0x00,0x18,0x27,0x20,0x11,0x0a,0x04,0x0b,0x30,0x10,0x00 - -, -/* @1425 (15x15,V)@ [suki software]*/ -0x04,0xf4,0x14,0xff,0x14,0xf4,0x00,0xf4,0x14,0x14,0xff,0x14,0xf6,0x04,0x00 - -, -0x10,0x09,0x04,0x3f,0x02,0x05,0x10,0x09,0x04,0x02,0x3f,0x02,0x0d,0x10,0x00 - -, -/* @1426 (15x15,V)@ [suki software]*/ -0x44,0x74,0x4c,0xf7,0x44,0x44,0x20,0xee,0xaa,0xaa,0xaa,0xef,0x22,0x20,0x00 - -, -0x04,0x04,0x04,0x3f,0x02,0x0a,0x08,0x0f,0x0a,0x0a,0x0a,0x3f,0x04,0x04,0x00 - -, -/* @1427 (15x15,V)@ [suki software]*/ -0x10,0xa8,0xa4,0xf3,0xa6,0x2a,0x92,0xa8,0xf4,0xa3,0xa6,0xfa,0xa2,0x82,0x00 - -, -0x12,0x0a,0x06,0x3f,0x06,0x0a,0x00,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x00,0x00 - -, -/* @1428 (15x15,V)@ [suki software]*/ -0x20,0x10,0x08,0xfe,0x55,0x54,0x54,0xfd,0x56,0x54,0x54,0x54,0x04,0x00,0x00 - -, -0x24,0x24,0x14,0x15,0x0d,0x05,0x05,0x3f,0x05,0x0d,0x15,0x15,0x25,0x24,0x00 - -, -/* @1429 (15x15,V)@ [suki software]*/ -0x00,0x00,0x02,0x02,0xc2,0x3e,0xc2,0x02,0x32,0x2f,0x22,0xf0,0x20,0x00,0x00 - -, -0x20,0x10,0x08,0x26,0x21,0x10,0x10,0x0b,0x04,0x0a,0x09,0x10,0x30,0x10,0x00 - -, -/* @1430 (15x15,V)@ [suki software]*/ -0x00,0x10,0x08,0x54,0x52,0x53,0x52,0x52,0x5a,0x56,0x50,0xf8,0x10,0x00,0x00 - -, -0x00,0x10,0x0d,0x01,0x1d,0x21,0x23,0x2d,0x21,0x21,0x39,0x01,0x04,0x18,0x00 - -, -/* @1431 (15x15,V)@ [suki software]*/ -0x08,0x30,0x80,0xfc,0x04,0x44,0x3c,0x25,0xe6,0x24,0x24,0x24,0x06,0x04,0x00 - -, -0x21,0x11,0x0c,0x23,0x21,0x11,0x09,0x05,0x03,0x05,0x09,0x11,0x31,0x11,0x00 - -, -/* @1432 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x18,0x02,0xfe,0x82,0x02,0x32,0x2a,0xa7,0x62,0x00,0x00 - -, -0x02,0x3e,0x01,0x10,0x08,0x26,0x21,0x10,0x0b,0x04,0x0a,0x11,0x30,0x10,0x00 - -, -/* @1433 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x4a,0x4a,0x4a,0xfe,0x00,0x00,0xfe,0x02,0x02,0x02,0xff,0x02,0x00 - -, -0x00,0x1f,0x08,0x08,0x05,0x06,0x0c,0x00,0x3f,0x00,0x02,0x04,0x03,0x00,0x00 - -, -/* @1434 (15x15,V)@ [suki software]*/ -0x88,0x78,0x0f,0x08,0xf8,0x20,0xfc,0x04,0x44,0x35,0xe6,0x24,0x24,0x04,0x00 - -, -0x20,0x11,0x0a,0x04,0x2b,0x11,0x0f,0x20,0x11,0x0d,0x03,0x0d,0x11,0x21,0x00 - -, -/* @1435 (15x15,V)@ [suki software]*/ -0x20,0x30,0xac,0x63,0x10,0x02,0x02,0xfe,0x82,0x02,0x32,0x2f,0xe2,0x00,0x00 - -, -0x09,0x1b,0x09,0x05,0x25,0x11,0x2c,0x23,0x10,0x0b,0x04,0x0b,0x30,0x10,0x00 - -, -/* @1436 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x84,0x84,0x4c,0x55,0x26,0x54,0x4c,0x84,0x84,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x20,0x10,0x0f,0x00,0x00,0x00,0x3f,0x00,0x00,0x00 - -, -/* @1437 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0xfe,0x02,0x02,0x02,0xff,0x02,0x00,0x00,0x00,0x00,0x00 - -, -0x20,0x20,0x10,0x0c,0x03,0x00,0x00,0x00,0x1f,0x20,0x20,0x20,0x20,0x3c,0x00 - -, -/* @1438 (15x15,V)@ [suki software]*/ -0x80,0x90,0x4a,0x2a,0xd4,0x48,0x47,0x44,0x48,0x54,0xe4,0x2a,0x52,0x40,0x00 - -, -0x00,0x00,0x00,0x00,0x3f,0x05,0x05,0x05,0x15,0x25,0x1f,0x00,0x00,0x00,0x00 - -, -/* @1439 (15x15,V)@ [suki software]*/ -0x00,0x00,0xe2,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x3f,0x02,0x00,0x00 - -, -0x00,0x00,0x0f,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x1c,0x00 - -, -/* @1440 (15x15,V)@ [suki software]*/ -0x82,0x42,0xf2,0x5a,0x52,0xf7,0x52,0xc2,0x02,0xe7,0x02,0x02,0xfa,0x02,0x00 - -, -0x00,0x20,0x27,0x25,0x15,0x17,0x15,0x17,0x00,0x07,0x10,0x20,0x1f,0x00,0x00 - -, -/* @1441 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x00,0x48,0xc8,0x48,0x7f,0x48,0x48,0xcc,0x08,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x20,0x20,0x11,0x0a,0x04,0x0a,0x11,0x20,0x20,0x00 - -, -/* @1442 (15x15,V)@ [suki software]*/ -0x08,0x0a,0x0a,0xfa,0xaa,0xaf,0xa8,0xf8,0xaf,0xaa,0xfa,0x0a,0x0a,0x0c,0x00 - -, -0x08,0x2a,0x2a,0x2a,0x1a,0x0f,0x0a,0x0a,0x0a,0x0f,0x1a,0x2a,0x2a,0x08,0x00 - -, -/* @1443 (15x15,V)@ [suki software]*/ -0x88,0x88,0x4a,0xca,0xaa,0x9a,0x8a,0xfe,0x9a,0xa9,0xa9,0x48,0xc8,0x48,0x00 - -, -0x04,0x04,0x04,0x04,0x04,0x14,0x24,0x1e,0x05,0x04,0x04,0x04,0x06,0x04,0x00 - -, -/* @1444 (15x15,V)@ [suki software]*/ -0x40,0x20,0x10,0xfc,0x03,0x08,0x48,0xc8,0x48,0x7f,0x48,0xc8,0x4c,0x08,0x00 - -, -0x00,0x00,0x00,0x3f,0x20,0x20,0x10,0x11,0x0a,0x04,0x0a,0x11,0x20,0x20,0x00 - -, -/* @1445 (15x15,V)@ [suki software]*/ -0x20,0x10,0x88,0x57,0x2a,0x52,0x4e,0x40,0x4f,0x52,0x2a,0x46,0x82,0x80,0x00 - -, -0x01,0x11,0x12,0x0a,0x06,0x12,0x22,0x1e,0x02,0x02,0x06,0x0a,0x18,0x00,0x00 - -, -/* @1446 (15x15,V)@ [suki software]*/ -0x84,0x84,0x4c,0x55,0x26,0x34,0x4c,0x44,0x04,0xf8,0x00,0x00,0xff,0x00,0x00 - -, -0x00,0x20,0x10,0x0f,0x00,0x00,0x3f,0x00,0x00,0x07,0x10,0x20,0x1f,0x00,0x00 - -, -/* @1447 (15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x10,0xa8,0x4a,0xaa,0x9a,0xfe,0x99,0xa9,0x49,0xc8,0x40,0x00 - -, -0x00,0x00,0x3f,0x00,0x04,0x04,0x14,0x24,0x1e,0x05,0x04,0x04,0x04,0x00,0x00 - -, -/* @1448 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x04,0x84,0x8c,0x55,0x26,0x54,0x4c,0x84,0x86,0x84,0x00 - -, -0x02,0x3e,0x01,0x20,0x21,0x10,0x0f,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00 - -, -/* @1449 (15x15,V)@ [suki software]*/ -0x10,0x8c,0x94,0x94,0xd4,0xb5,0x9e,0x94,0xb4,0xd4,0x94,0x94,0x8c,0x00,0x00 - -, -0x00,0x00,0x00,0x1e,0x0a,0x0a,0x0a,0x0e,0x10,0x20,0x1f,0x00,0x00,0x00,0x00 - -, -/* @1450 (15x15,V)@ [suki software]*/ -0x90,0x8c,0x84,0xfc,0xa4,0xa4,0xa5,0x06,0xe4,0x24,0x24,0xf4,0x2c,0x00,0x00 - -, -0x08,0x16,0x20,0x1f,0x00,0x02,0x2c,0x10,0x0b,0x04,0x0a,0x11,0x30,0x10,0x00 - -, -/* @1451 (15x15,V)@ [suki software]*/ -0x20,0x21,0x22,0xe6,0x00,0x20,0x20,0x20,0x20,0xff,0x20,0x20,0x30,0x20,0x00 - -, -0x00,0x00,0x00,0x1f,0x08,0x04,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00 - -, -/* @1452 (15x15,V)@ [suki software]*/ -0x20,0x20,0x21,0xe6,0x00,0x00,0xc4,0x44,0x44,0x44,0x44,0x44,0x7e,0x04,0x00 - -, -0x00,0x00,0x00,0x1f,0x08,0x04,0x1f,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x00 - -, -/* @1453 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x52,0x52,0x52,0x7e,0x00,0x7a,0x42,0xfe,0x42,0x42,0x63,0x42,0x00 - -, -0x00,0x1f,0x10,0x08,0x06,0x2c,0x10,0x08,0x06,0x01,0x1f,0x20,0x20,0x38,0x00 - -, -/* @1454 (15x15,V)@ [suki software]*/ -0x00,0x00,0x72,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x9f,0x82,0xe0,0x00,0x00 - -, -0x10,0x18,0x04,0x00,0x1e,0x20,0x22,0x24,0x20,0x20,0x38,0x02,0x04,0x18,0x00 - -, -/* @1455 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0x32,0xce,0x20,0x22,0xa2,0x22,0xe2,0xa2,0x23,0x32,0x20,0x00 - -, -0x00,0x3f,0x02,0x04,0x0b,0x04,0x02,0x11,0x20,0x1f,0x00,0x01,0x02,0x0c,0x00 - -, -/* @1456 (15x15,V)@ [suki software]*/ -0x08,0x08,0xf8,0x0f,0x08,0xf8,0x48,0xc8,0x48,0x7f,0x48,0x48,0xcc,0x08,0x00 - -, -0x20,0x11,0x0a,0x04,0x0a,0x11,0x20,0x11,0x0a,0x04,0x0a,0x11,0x20,0x20,0x00 - -, -/* @1457 (15x15,V)@ [suki software]*/ -0x20,0x30,0xac,0x63,0x30,0x00,0xfe,0x48,0x50,0xff,0x50,0x48,0x44,0x40,0x00 - -, -0x12,0x13,0x12,0x09,0x09,0x00,0x3f,0x22,0x21,0x2f,0x21,0x22,0x24,0x20,0x00 - -, -/* @1458 (15x15,V)@ [suki software]*/ -0x20,0x30,0xac,0x63,0x20,0x10,0x02,0xc2,0x42,0x42,0x42,0x42,0x7e,0x00,0x00 - -, -0x10,0x13,0x12,0x09,0x09,0x05,0x00,0x1f,0x20,0x20,0x20,0x20,0x20,0x3c,0x00 - -, -/* @1459 (15x15,V)@ [suki software]*/ -0x00,0x82,0x8a,0xba,0xea,0xaa,0xaa,0xaf,0xaa,0xea,0xba,0x8a,0x82,0x80,0x00 - -, -0x20,0x22,0x12,0x0f,0x12,0x22,0x1e,0x00,0x3e,0x12,0x12,0x3e,0x00,0x00,0x00 - -, -/* @1460 (15x15,V)@ [suki software]*/ -0x10,0xd0,0xff,0x50,0x90,0x08,0xff,0x08,0xf8,0x00,0xfc,0x04,0xfc,0x00,0x00 - -, -0x03,0x00,0x3f,0x00,0x11,0x0c,0x13,0x10,0x0f,0x00,0x1f,0x08,0x1f,0x00,0x00 - -, -/* @1461 (15x15,V)@ [suki software]*/ -0x80,0x84,0x94,0xe4,0x84,0x84,0xff,0x84,0x84,0xc4,0xb4,0x86,0x84,0x00,0x00 - -, -0x20,0x20,0x10,0x10,0x08,0x06,0x01,0x02,0x04,0x08,0x10,0x10,0x20,0x20,0x00 - -, -/* @1462 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x40,0x48,0x48,0x48,0xff,0x48,0x48,0x4c,0x48,0x40,0x00 - -, -0x00,0x00,0x3f,0x00,0x20,0x22,0x22,0x22,0x3f,0x22,0x22,0x22,0x32,0x20,0x00 - -, -/* @1463 (15x15,V)@ [suki software]*/ -0x00,0x8c,0x84,0x54,0x54,0xb4,0x55,0x96,0x14,0x94,0x54,0x24,0x0c,0x00,0x00 - -, -0x00,0x10,0x12,0x12,0x09,0x14,0x22,0x21,0x1f,0x01,0x02,0x04,0x18,0x08,0x00 - -, -/* @1464 (15x15,V)@ [suki software]*/ -0x08,0x08,0x08,0xff,0x08,0x08,0xf8,0x00,0xf8,0x08,0x08,0x08,0xfc,0x08,0x00 - -, -0x20,0x18,0x06,0x09,0x10,0x10,0x0f,0x00,0x1f,0x08,0x08,0x08,0x1f,0x00,0x00 - -, -/* @1465 (15x15,V)@ [suki software]*/ -0x04,0x24,0x24,0x64,0xa4,0x2f,0x24,0xf4,0x24,0x2f,0xe4,0x24,0x26,0x04,0x00 - -, -0x02,0x22,0x22,0x22,0x13,0x0a,0x06,0x03,0x06,0x0b,0x12,0x22,0x22,0x22,0x00 - -, -/* @1466 (15x15,V)@ [suki software]*/ -0x94,0xe4,0x84,0xff,0xc4,0xb4,0x82,0xfa,0x0a,0x0e,0xea,0x0a,0xfb,0x02,0x00 - -, -0x20,0x10,0x0c,0x03,0x04,0x08,0x20,0x27,0x10,0x08,0x07,0x08,0x17,0x20,0x00 - -, -/* @1467 (15x15,V)@ [suki software]*/ -0x00,0x02,0x3a,0xaa,0xaa,0xbe,0xaa,0xaa,0xbe,0xaa,0xaa,0xaa,0x3b,0x02,0x00 - -, -0x00,0x20,0x20,0x2f,0x10,0x08,0x04,0x03,0x08,0x08,0x10,0x17,0x20,0x00,0x00 - -, -/* @1468 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x12,0x12,0x12,0x12,0xfe,0x12,0x12,0x12,0x12,0xff,0x02,0x00 - -, -0x00,0x00,0x03,0x01,0x01,0x01,0x01,0x3f,0x01,0x01,0x01,0x01,0x03,0x00,0x00 - -, -/* @1469 (15x15,V)@ [suki software]*/ -0x60,0x38,0xe7,0x24,0x24,0x04,0xfe,0x22,0x22,0xfe,0x22,0x22,0xff,0x02,0x00 - -, -0x01,0x01,0x1f,0x09,0x05,0x00,0x03,0x01,0x01,0x3f,0x01,0x01,0x03,0x00,0x00 - -, -/* @1470 (15x15,V)@ [suki software]*/ -0x20,0x10,0xfc,0x03,0x00,0xfe,0x92,0x92,0x3e,0x80,0x92,0x92,0xbe,0x00,0x00 - -, -0x00,0x00,0x3f,0x00,0x00,0x3f,0x02,0x22,0x20,0x17,0x08,0x14,0x23,0x20,0x00 - -, -/* @1471 (15x15,V)@ [suki software]*/ -0x14,0x14,0xd4,0xfe,0x53,0x8a,0x54,0x54,0xb5,0x16,0x94,0x54,0x14,0x0c,0x00 - -, -0x04,0x03,0x00,0x3f,0x00,0x14,0x12,0x09,0x24,0x23,0x1c,0x03,0x04,0x08,0x00 - -, -/* @1472 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x20,0x10,0xe8,0x04,0x03,0x04,0xe8,0x10,0x20,0x20,0x00 - -, -0x00,0x00,0x3f,0x00,0x20,0x10,0x0f,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00 - -, -/* @1473 (15x15,V)@ [suki software]*/ -0x00,0x84,0x64,0x1f,0x44,0x44,0x3c,0x80,0x7c,0x24,0x24,0x24,0x7e,0x04,0x00 - -, -0x20,0x22,0x12,0x12,0x0a,0x06,0x02,0x3f,0x02,0x06,0x0a,0x12,0x33,0x12,0x00 - -, -/* @1474 (15x15,V)@ [suki software]*/ -0x40,0x22,0x52,0x4f,0xc2,0x52,0x5e,0x40,0x40,0x7e,0xd2,0x12,0x3e,0x00,0x00 - -, -0x00,0x08,0x08,0x0a,0x0b,0x0a,0x0a,0x0a,0x0a,0x2a,0x2b,0x22,0x1e,0x00,0x00 - -, -/* @1475 (15x15,V)@ [suki software]*/ -0x88,0x78,0x0f,0x08,0xf8,0x00,0x8c,0x54,0xb4,0x15,0x96,0x54,0x54,0x0c,0x00 - -, -0x20,0x11,0x0a,0x04,0x0b,0x00,0x12,0x09,0x24,0x23,0x1c,0x03,0x04,0x08,0x00 - -, -/* @1476 (15x15,V)@ [suki software]*/ -0x02,0xc2,0x3e,0x22,0xa2,0x62,0x44,0x44,0x44,0xfc,0x42,0x43,0x62,0x40,0x00 - -, -0x21,0x10,0x09,0x06,0x01,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00 - -, -/* @1477 (15x15,V)@ [suki software]*/ -0x00,0x00,0x7e,0x00,0x00,0x7f,0x20,0x10,0x0f,0x14,0x24,0x64,0x06,0x04,0x00 - -, -0x20,0x20,0x3f,0x21,0x21,0x3f,0x21,0x21,0x3f,0x21,0x21,0x3f,0x20,0x20,0x00 - -, -/* @1478 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x00,0x00,0xff,0x00,0x82,0x8e,0x52,0x22,0x52,0x8f,0x82,0x80,0x00 - -, -0x20,0x24,0x24,0x24,0x25,0x24,0x24,0x3f,0x24,0x24,0x24,0x24,0x24,0x20,0x00 - -, -/* @1479 (15x15,V)@ [suki software]*/ -0x40,0x20,0x10,0x0c,0x00,0x00,0x00,0xbf,0x00,0x04,0x08,0x10,0xb0,0x00,0x00 - -, -0x21,0x21,0x21,0x11,0x09,0x05,0x03,0x01,0x03,0x05,0x09,0x11,0x31,0x11,0x00 - -, -/* @1480 (15x15,V)@ [suki software]*/ -0x30,0x88,0x84,0x87,0x9c,0xe4,0x54,0x48,0x54,0x67,0x4c,0x54,0x44,0x04,0x00 - -, -0x00,0x22,0x22,0x22,0x12,0x13,0x0d,0x09,0x15,0x15,0x23,0x21,0x21,0x38,0x00 - -, -/* @1481 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x01,0x06,0x00,0xf2,0x92,0x92,0x92,0xf2,0x02,0x02,0xff,0x02,0x00 - -, -0x00,0x3f,0x00,0x00,0x00,0x07,0x04,0x04,0x04,0x07,0x10,0x20,0x1f,0x00,0x00 - -, -/* @1482 (15x15,V)@ [suki software]*/ -0x04,0x04,0xf4,0x54,0x55,0x56,0xf4,0x04,0xf6,0x05,0x04,0xf4,0x06,0x04,0x00 - -, -0x00,0x20,0x17,0x01,0x09,0x35,0x07,0x00,0x09,0x30,0x02,0x0b,0x30,0x00,0x00 - -, -/* @1483 (15x15,V)@ [suki software]*/ -0x00,0x44,0x54,0x54,0x55,0xfe,0x54,0x54,0xfe,0x55,0x54,0xf4,0x44,0x40,0x00 - -, -0x20,0x21,0x11,0x09,0x05,0x3f,0x01,0x01,0x3f,0x05,0x09,0x13,0x30,0x10,0x00 - -, -/* @1484 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfc,0x14,0xd4,0x54,0x55,0x56,0x54,0x54,0x54,0xde,0x04,0x00,0x00 - -, -0x20,0x18,0x07,0x00,0x3f,0x05,0x05,0x05,0x05,0x15,0x25,0x1f,0x00,0x00,0x00 - -, -/* @1485 (15x15,V)@ [suki software]*/ -0x14,0x64,0x84,0x64,0x1c,0x00,0xfe,0x4a,0xca,0x4a,0x4a,0x7f,0x02,0x00,0x00 - -, -0x18,0x06,0x01,0x02,0x0c,0x00,0x3f,0x10,0x09,0x02,0x04,0x0a,0x31,0x10,0x00 - -, -/* @1486 (15x15,V)@ [suki software]*/ -0x08,0x08,0xf8,0x0f,0x08,0xf8,0x42,0x42,0x42,0xfe,0x42,0x43,0x62,0x40,0x00 - -, -0x20,0x11,0x0a,0x04,0x0a,0x11,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00 - -, -/* @1487 (15x15,V)@ [suki software]*/ -0x30,0xac,0x63,0x30,0x00,0xf8,0x28,0xa8,0xa8,0xa8,0xff,0x08,0xce,0x08,0x00 - -, -0x09,0x1b,0x09,0x25,0x10,0x0f,0x00,0x27,0x24,0x17,0x09,0x0e,0x11,0x3c,0x00 - -, -/* @1488 (15x15,V)@ [suki software]*/ -0x04,0x04,0xc4,0x44,0x4f,0x44,0xf4,0x44,0x44,0x4f,0x44,0xe4,0x46,0x04,0x00 - -, -0x10,0x30,0x13,0x12,0x12,0x12,0x1f,0x12,0x12,0x12,0x16,0x1b,0x10,0x20,0x00 - -, -/* @1489 (15x15,V)@ [suki software]*/ -0x08,0xc8,0xff,0x48,0x88,0x20,0x50,0x4c,0x43,0x44,0x48,0x50,0x20,0x20,0x00 - -, -0x03,0x00,0x3f,0x00,0x20,0x20,0x23,0x2c,0x21,0x26,0x38,0x27,0x20,0x20,0x00 - -, -/* @1490 (15x15,V)@ [suki software]*/ -0x04,0x04,0xf4,0x14,0x34,0x54,0xff,0x14,0x54,0x34,0x14,0xf4,0x06,0x04,0x00 - -, -0x20,0x20,0x11,0x09,0x05,0x03,0x3f,0x01,0x03,0x05,0x09,0x11,0x30,0x10,0x00 - -, -/* @1491 (15x15,V)@ [suki software]*/ -0x82,0xe2,0x3e,0xe2,0x02,0xf8,0x08,0xa8,0xa8,0xa8,0xff,0x08,0x8e,0x68,0x00 - -, -0x00,0x1f,0x04,0x27,0x10,0x0f,0x00,0x27,0x24,0x17,0x09,0x0e,0x11,0x3c,0x00 - -, -/* @1492 (15x15,V)@ [suki software]*/ -0x84,0xe4,0x3c,0x24,0xe4,0x24,0x90,0x28,0xa4,0x23,0x24,0x28,0x90,0x20,0x00 - -, -0x00,0x1f,0x08,0x08,0x0f,0x20,0x21,0x2e,0x20,0x27,0x38,0x26,0x21,0x20,0x00 - -, -/* @1493 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x48,0xa4,0xf4,0xaf,0xa4,0xe4,0x84,0x86,0x84,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x10,0x08,0x06,0x10,0x20,0x1f,0x02,0x04,0x18,0x00 - -, -/* @1494 (15x15,V)@ [suki software]*/ -0x08,0x88,0xff,0x48,0x48,0x20,0x10,0xac,0x23,0x24,0x28,0x90,0x20,0x20,0x00 - -, -0x11,0x20,0x1f,0x00,0x20,0x21,0x2e,0x20,0x27,0x20,0x38,0x27,0x20,0x20,0x00 - -, -/* @1495 (15x15,V)@ [suki software]*/ -0x10,0x08,0xe4,0x13,0x26,0xca,0x52,0x54,0x52,0xd3,0x16,0x1a,0xf2,0x02,0x00 - -, -0x00,0x00,0x3f,0x00,0x00,0x0f,0x0a,0x0a,0x0a,0x0f,0x10,0x20,0x1f,0x00,0x00 - -, -/* @1496 (15x15,V)@ [suki software]*/ -0x40,0x20,0x10,0xfc,0x43,0xa0,0x10,0x2c,0xa3,0x24,0x28,0x10,0xa0,0x20,0x00 - -, -0x00,0x00,0x00,0x3f,0x00,0x20,0x27,0x20,0x20,0x33,0x28,0x26,0x21,0x20,0x00 - -, -/* @1497 (15x15,V)@ [suki software]*/ -0x04,0x04,0xfc,0x54,0x55,0x56,0xfc,0x04,0xf6,0x05,0x04,0xfc,0x04,0x04,0x00 - -, -0x00,0x24,0x25,0x24,0x14,0x0d,0x05,0x04,0x24,0x24,0x25,0x1d,0x00,0x00,0x00 - -, -/* @1498 (15x15,V)@ [suki software]*/ -0x02,0x84,0x68,0x00,0xf8,0x08,0xa8,0xa8,0xa8,0xff,0x08,0x09,0xea,0x08,0x00 - -, -0x01,0x1f,0x20,0x18,0x07,0x00,0x27,0x24,0x17,0x09,0x06,0x09,0x10,0x3c,0x00 - -, -/* @1499 (15x15,V)@ [suki software]*/ -0x10,0x14,0x14,0x94,0x5f,0x34,0x5c,0x54,0x54,0x5f,0xd4,0x54,0x16,0x14,0x00 - -, -0x04,0x02,0x01,0x3f,0x00,0x02,0x02,0x12,0x22,0x1f,0x02,0x02,0x02,0x02,0x00 - -, -/* @1500 (15x15,V)@ [suki software]*/ -0x08,0xc8,0xff,0x28,0x48,0x3e,0x00,0x7f,0x20,0x10,0x0f,0x28,0x48,0x08,0x00 - -, -0x03,0x00,0x3f,0x00,0x20,0x3f,0x21,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x20,0x00 - -, -/* @1501 (15x15,V)@ [suki software]*/ -0x00,0x00,0x3e,0x00,0xbf,0x40,0x20,0x28,0x47,0x8c,0x94,0x24,0x06,0x04,0x00 - -, -0x02,0x22,0x21,0x2d,0x34,0x25,0x3f,0x25,0x25,0x34,0x2c,0x25,0x23,0x01,0x00 - -, -/* @1502 (15x15,V)@ [suki software]*/ -0x00,0xbe,0x22,0xe2,0x22,0x3e,0x90,0x90,0xff,0x48,0x4a,0x4c,0x48,0x00,0x00 - -, -0x10,0x3f,0x10,0x0f,0x09,0x29,0x20,0x10,0x0b,0x04,0x0a,0x11,0x20,0x38,0x00 - -, -/* @1503 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0xfa,0x02,0xfe,0xa0,0xa0,0xff,0x50,0x52,0x54,0x50,0x40,0x00 - -, -0x20,0x13,0x0c,0x03,0x04,0x2b,0x20,0x10,0x0b,0x04,0x0a,0x11,0x20,0x38,0x00 - -, -/* @1504 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0xfe,0x02,0x02,0xfa,0x82,0x02,0x02,0xff,0x02,0x00,0x00,0x00 - -, -0x20,0x20,0x10,0x11,0x08,0x06,0x01,0x1f,0x20,0x20,0x21,0x20,0x20,0x3c,0x00 - -, -/* @1505 (15x15,V)@ [suki software]*/ -0x20,0x38,0xe7,0x24,0x00,0x64,0x5c,0xd0,0x54,0x54,0xff,0x54,0x7c,0x10,0x00 - -, -0x01,0x01,0x1f,0x09,0x25,0x13,0x0c,0x13,0x15,0x25,0x2f,0x25,0x25,0x24,0x00 - -, -/* @1506 (15x15,V)@ [suki software]*/ -0x10,0x28,0xa4,0xa7,0xb4,0xac,0xa4,0x28,0x37,0xa4,0x2c,0xe4,0x26,0x24,0x00 - -, -0x00,0x00,0x3f,0x0a,0x0a,0x2a,0x3f,0x00,0x00,0x0f,0x20,0x3f,0x00,0x00,0x00 - -, -/* @1507 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf0,0x0c,0x43,0x20,0x1c,0x10,0x10,0xff,0x10,0x10,0x10,0x00,0x00 - -, -0x00,0x00,0x3f,0x00,0x01,0x01,0x01,0x01,0x01,0x3f,0x01,0x01,0x01,0x01,0x00 - -, -}, -//************************************** -{ -/* @1508 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x64,0x54,0xcc,0x08,0xaa,0xaa,0xff,0xaa,0xbe,0x08,0x00 - -, -0x00,0x00,0x3f,0x20,0x17,0x08,0x17,0x12,0x22,0x22,0x2f,0x22,0x22,0x22,0x00 - -, -/* @1509 (15x15,V)@ [suki software]*/ -0x40,0xfc,0x46,0x75,0x44,0xfc,0x00,0xfe,0x02,0xfa,0x02,0x02,0xff,0x02,0x00 - -, -0x30,0x0f,0x00,0x13,0x20,0x1f,0x20,0x11,0x0c,0x03,0x1e,0x20,0x21,0x38,0x00 - -, -/* @1510 (15x15,V)@ [suki software]*/ -0x20,0x90,0x28,0xa4,0x23,0x22,0x24,0xa8,0x10,0x00,0xfc,0x00,0x00,0xff,0x00 - -, -0x10,0x30,0x17,0x10,0x13,0x08,0x0e,0x09,0x08,0x00,0x03,0x10,0x20,0x1f,0x00 - -, -/* @1511 (15x15,V)@ [suki software]*/ -0x20,0x10,0xef,0x08,0x28,0x98,0x90,0x90,0xff,0x48,0x4a,0x4c,0x48,0x00,0x00 - -, -0x00,0x00,0x3f,0x10,0x08,0x04,0x20,0x10,0x0b,0x04,0x0a,0x11,0x20,0x3c,0x00 - -, -/* @1512 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x40,0x74,0x4f,0xf4,0x44,0x00,0xfc,0x24,0xe2,0x23,0x22,0x00 - -, -0x04,0x3e,0x01,0x04,0x04,0x02,0x3f,0x22,0x18,0x07,0x00,0x3f,0x00,0x00,0x00 - -, -/* @1513 (15x15,V)@ [suki software]*/ -0x10,0x62,0x84,0xfe,0x02,0xf2,0x02,0xfe,0x90,0xff,0x48,0x48,0x4e,0x48,0x00 - -, -0x02,0x3f,0x20,0x13,0x08,0x07,0x04,0x0b,0x10,0x0b,0x0c,0x12,0x21,0x38,0x00 - -, -/* @1514 (15x15,V)@ [suki software]*/ -0x10,0x21,0x02,0xc6,0x20,0xfc,0x01,0xe6,0xa0,0xa4,0xe4,0x04,0xfe,0x04,0x00 - -, -0x02,0x02,0x3f,0x00,0x00,0x3f,0x00,0x07,0x04,0x04,0x17,0x20,0x1f,0x00,0x00 - -, -/* @1515 (15x15,V)@ [suki software]*/ -0x04,0x64,0x54,0x4c,0xc0,0x10,0x54,0x54,0xff,0x54,0x54,0x7c,0x10,0x10,0x00 - -, -0x20,0x22,0x14,0x08,0x17,0x24,0x25,0x25,0x3f,0x25,0x25,0x25,0x24,0x20,0x00 - -, -/* @1516 (15x15,V)@ [suki software]*/ -0x20,0x10,0xfc,0x03,0x82,0xfa,0xaa,0xaa,0xfa,0xaa,0xaa,0xfa,0x83,0x82,0x00 - -, -0x00,0x00,0x3f,0x20,0x20,0x3e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x20,0x20,0x00 - -, -/* @1517 (15x15,V)@ [suki software]*/ -0x40,0x44,0x54,0x54,0x55,0x56,0xfc,0x54,0x56,0x55,0x54,0x54,0x44,0x40,0x00 - -, -0x02,0x22,0x22,0x22,0x2e,0x2b,0x12,0x12,0x1a,0x16,0x22,0x22,0x02,0x02,0x00 - -, -/* @1518 (15x15,V)@ [suki software]*/ -0x08,0x30,0x00,0xff,0x00,0x10,0x08,0xb7,0x44,0x24,0x14,0xce,0x04,0x00,0x00 - -, -0x04,0x02,0x01,0x3f,0x00,0x01,0x03,0x05,0x01,0x11,0x21,0x1f,0x01,0x01,0x00 - -, -/* @1519 (15x15,V)@ [suki software]*/ -0x40,0x42,0x2c,0x10,0xff,0x00,0x48,0xc4,0x57,0x24,0x14,0x0c,0x84,0x00,0x00 - -, -0x20,0x22,0x12,0x0a,0x06,0x12,0x20,0x1f,0x02,0x04,0x0a,0x11,0x30,0x10,0x00 - -, -/* @1520 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x00,0x04,0x04,0x04,0xfc,0x04,0x04,0x06,0x04,0x00,0x00 - -, -0x02,0x3e,0x01,0x00,0x10,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x10,0x10,0x00 - -, -/* @1521 (15x15,V)@ [suki software]*/ -0x02,0x72,0xd2,0x52,0xde,0x80,0xfa,0xaa,0xaa,0xfa,0xaa,0xaa,0xfb,0x82,0x00 - -, -0x08,0x09,0x27,0x25,0x1f,0x20,0x3e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x20,0x00 - -, -/* @1522 (15x15,V)@ [suki software]*/ -0x24,0x44,0x84,0xf4,0x04,0x4f,0x24,0x5c,0x94,0x9f,0x54,0x34,0x04,0x04,0x00 - -, -0x08,0x04,0x02,0x3f,0x00,0x02,0x06,0x0b,0x02,0x22,0x3f,0x02,0x02,0x02,0x00 - -, -/* @1523 (15x15,V)@ [suki software]*/ -0x40,0x42,0x2c,0x20,0xff,0x10,0x88,0x84,0x57,0x24,0x14,0x0c,0x04,0x00,0x00 - -, -0x00,0x22,0x22,0x12,0x0a,0x06,0x02,0x3f,0x02,0x06,0x0a,0x12,0x23,0x22,0x00 - -, -/* @1524 (15x15,V)@ [suki software]*/ -0x00,0x42,0x4c,0x20,0xff,0x00,0x90,0x88,0x54,0x47,0x24,0x14,0x0c,0x00,0x00 - -, -0x20,0x22,0x22,0x12,0x12,0x0a,0x06,0x03,0x06,0x0a,0x12,0x22,0x22,0x22,0x00 - -, -/* @1525 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x00,0x08,0x08,0xff,0x08,0x08,0xff,0x08,0x08,0x00,0x00 - -, -0x00,0x00,0x1f,0x08,0x24,0x11,0x09,0x07,0x01,0x01,0x3f,0x01,0x01,0x01,0x00 - -, -/* @1526 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0x02,0xfa,0x4a,0x4a,0x4a,0xca,0x46,0x46,0x43,0x02,0x00,0x00 - -, -0x00,0x3f,0x28,0x24,0x23,0x20,0x20,0x20,0x2f,0x20,0x20,0x20,0x30,0x20,0x00 - -, -/* @1527 (15x15,V)@ [suki software]*/ -0x40,0x52,0x54,0x48,0x7f,0xc0,0x48,0x44,0xeb,0x52,0x4a,0x46,0x62,0x40,0x00 - -, -0x00,0x00,0x3f,0x29,0x2d,0x2b,0x29,0x29,0x2b,0x2d,0x29,0x3f,0x00,0x00,0x00 - -, -/* @1528 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0x32,0xce,0x10,0x48,0xc4,0xab,0xd2,0xaa,0xa6,0xc2,0x40,0x00 - -, -0x00,0x3f,0x02,0x04,0x03,0x04,0x07,0x04,0x04,0x3f,0x04,0x04,0x04,0x04,0x00 - -, -/* @1529 (15x15,V)@ [suki software]*/ -0x84,0x44,0x24,0xfc,0x54,0x5f,0x54,0xfc,0x54,0x5f,0x54,0x54,0x16,0x04,0x00 - -, -0x00,0x20,0x18,0x07,0x05,0x0d,0x35,0x07,0x0d,0x35,0x05,0x0d,0x34,0x00,0x00 - -, -/* @1530 (15x15,V)@ [suki software]*/ -0x08,0x88,0xff,0x48,0x88,0x40,0xff,0x48,0x48,0x3c,0xc4,0x04,0xfe,0x04,0x00 - -, -0x06,0x01,0x3f,0x08,0x06,0x20,0x3f,0x02,0x24,0x10,0x08,0x07,0x18,0x20,0x00 - -, -/* @1531 (15x15,V)@ [suki software]*/ -0x84,0xe4,0x5c,0x44,0xc4,0x14,0x08,0xfc,0xa7,0xa4,0xfe,0xa4,0xa4,0x04,0x00 - -, -0x00,0x1f,0x08,0x08,0x0f,0x20,0x18,0x07,0x1a,0x02,0x1b,0x02,0x0a,0x32,0x00 - -, -/* @1532 (15x15,V)@ [suki software]*/ -0x40,0x20,0x10,0xfc,0xab,0xa8,0xa8,0xf9,0xae,0xa8,0xa8,0xa8,0xac,0x08,0x00 - -, -0x00,0x20,0x18,0x07,0x02,0x0a,0x32,0x03,0x0a,0x32,0x02,0x0a,0x32,0x02,0x00 - -, -/* @1533 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x92,0x92,0xfe,0x40,0x24,0xd4,0x05,0x06,0x04,0xd4,0x24,0x44,0x00 - -, -0x30,0x0f,0x10,0x20,0x1f,0x20,0x20,0x10,0x0b,0x04,0x0b,0x10,0x30,0x10,0x00 - -, -/* @1534 (15x15,V)@ [suki software]*/ -0x04,0x84,0x44,0x24,0xd4,0x04,0x05,0x06,0x04,0xc4,0x14,0x24,0x46,0x04,0x00 - -, -0x00,0x20,0x20,0x20,0x10,0x11,0x0a,0x04,0x0b,0x10,0x10,0x20,0x20,0x20,0x00 - -, -/* @1535 (15x15,V)@ [suki software]*/ -0x84,0x44,0xa4,0x15,0x06,0x04,0xd4,0x24,0x00,0xfe,0x02,0x62,0x9a,0x06,0x00 - -, -0x20,0x10,0x08,0x05,0x02,0x05,0x08,0x10,0x00,0x3f,0x04,0x08,0x08,0x07,0x00 - -, -/* @1536 (15x15,V)@ [suki software]*/ -0x10,0x21,0x82,0x66,0x00,0x48,0x48,0x4f,0x34,0x24,0x54,0x46,0x64,0x00,0x00 - -, -0x02,0x1e,0x21,0x20,0x21,0x11,0x0f,0x01,0x01,0x1f,0x21,0x21,0x21,0x38,0x00 - -, -/* @1537 (15x15,V)@ [suki software]*/ -0x02,0xfa,0x82,0x82,0xfe,0x90,0x92,0x52,0xb2,0x1e,0x31,0x51,0x99,0x90,0x00 - -, -0x04,0x04,0x12,0x22,0x10,0x0f,0x20,0x10,0x0f,0x00,0x00,0x3f,0x00,0x00,0x00 - -, -/* @1538 (15x15,V)@ [suki software]*/ -0x88,0x78,0x0f,0x08,0xf8,0x10,0x92,0xd2,0x32,0x1e,0xb1,0x51,0x90,0x90,0x00 - -, -0x20,0x11,0x0a,0x04,0x0b,0x20,0x10,0x0f,0x00,0x00,0x3f,0x00,0x00,0x00,0x00 - -, -/* @1539 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0xfc,0x00,0xf2,0x56,0x7a,0xd6,0x5a,0x72,0x59,0xf5,0x00,0x00 - -, -0x00,0x07,0x01,0x03,0x00,0x3f,0x25,0x1d,0x37,0x00,0x0d,0x21,0x3f,0x01,0x00 - -, -/* @1540 (15x15,V)@ [suki software]*/ -0x08,0x08,0xff,0x88,0x40,0x19,0xea,0x2c,0xa9,0x2e,0x28,0xec,0x0b,0x18,0x00 - -, -0x11,0x21,0x1f,0x00,0x20,0x20,0x13,0x08,0x07,0x1e,0x20,0x23,0x20,0x38,0x00 - -, -/* @1541 (15x15,V)@ [suki software]*/ -0x20,0x38,0xe7,0x24,0x24,0x80,0x44,0xa4,0x15,0x06,0x04,0x94,0x26,0x44,0x00 - -, -0x01,0x01,0x1f,0x11,0x09,0x20,0x20,0x11,0x0a,0x04,0x0a,0x11,0x20,0x20,0x00 - -, -/* @1542 (15x15,V)@ [suki software]*/ -0x50,0x4c,0xfb,0x48,0x48,0x10,0x94,0x74,0x1c,0x12,0xb2,0x53,0x9a,0x90,0x00 - -, -0x10,0x0c,0x03,0x04,0x28,0x21,0x10,0x0f,0x00,0x00,0x3f,0x00,0x00,0x00,0x00 - -, -/* @1543 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x08,0x08,0x88,0x4f,0x58,0x24,0x54,0x4c,0x84,0xe4,0x00 - -, -0x00,0x00,0x3f,0x00,0x21,0x11,0x0f,0x01,0x01,0x1f,0x21,0x21,0x20,0x38,0x00 - -, -/* @1544 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x92,0x92,0xfe,0x48,0x48,0xff,0x48,0x48,0xfe,0x02,0x02,0xfe,0x00 - -, -0x30,0x0f,0x10,0x20,0x1f,0x06,0x05,0x04,0x06,0x04,0x3f,0x04,0x08,0x07,0x00 - -, -/* @1545 (15x15,V)@ [suki software]*/ -0x00,0x22,0x14,0x88,0xf4,0x42,0x24,0xd4,0x05,0x06,0x04,0xd4,0x24,0x44,0x00 - -, -0x04,0x12,0x21,0x10,0x0f,0x20,0x20,0x10,0x0b,0x04,0x0b,0x10,0x20,0x20,0x00 - -, -/* @1546 (15x15,V)@ [suki software]*/ -0x00,0x20,0x10,0xf8,0x54,0x57,0x54,0xf4,0x5e,0x54,0x50,0xf8,0x10,0x00,0x00 - -, -0x00,0x20,0x10,0x0f,0x02,0x02,0x02,0x3f,0x02,0x12,0x22,0x1f,0x00,0x00,0x00 - -, -/* @1547 (15x15,V)@ [suki software]*/ -0x20,0x10,0xef,0x08,0x28,0x98,0x44,0xa4,0x15,0x06,0x04,0xd4,0x24,0x44,0x00 - -, -0x00,0x00,0x3f,0x10,0x08,0x24,0x20,0x10,0x0b,0x04,0x0b,0x10,0x20,0x20,0x00 - -, -/* @1548 (15x15,V)@ [suki software]*/ -0x30,0xac,0x63,0x30,0x00,0x7c,0xd7,0x54,0x7c,0x20,0xdf,0x10,0xf8,0x10,0x00 - -, -0x09,0x1b,0x09,0x25,0x11,0x0f,0x15,0x25,0x1d,0x10,0x09,0x06,0x19,0x20,0x00 - -, -/* @1549 (15x15,V)@ [suki software]*/ -0x20,0x30,0xac,0x63,0x10,0x48,0x24,0xd4,0x05,0x06,0x04,0xd4,0x24,0x44,0x00 - -, -0x09,0x1b,0x09,0x05,0x05,0x20,0x20,0x10,0x0b,0x04,0x0b,0x10,0x30,0x10,0x00 - -, -/* @1550 (15x15,V)@ [suki software]*/ -0x00,0xf6,0x59,0x50,0xf6,0x59,0x56,0xf9,0x00,0x00,0xfc,0x00,0xff,0x00,0x00 - -, -0x24,0x15,0x0d,0x05,0x3f,0x05,0x0d,0x15,0x24,0x00,0x13,0x20,0x1f,0x00,0x00 - -, -/* @1551 (15x15,V)@ [suki software]*/ -0x10,0x54,0xd4,0x5f,0x74,0xd4,0x58,0x04,0x30,0xec,0x0b,0x08,0xf8,0x08,0x00 - -, -0x01,0x05,0x14,0x24,0x1f,0x02,0x22,0x22,0x10,0x0b,0x04,0x0b,0x10,0x20,0x00 - -, -/* @1552 (15x15,V)@ [suki software]*/ -0x02,0xfa,0x8e,0x7a,0x8e,0xfa,0x02,0x54,0xd4,0x5f,0x74,0xdc,0x56,0x10,0x00 - -, -0x00,0x3f,0x12,0x12,0x12,0x3f,0x00,0x03,0x02,0x22,0x3f,0x02,0x02,0x02,0x00 - -, -/* @1553 (15x15,V)@ [suki software]*/ -0x44,0x74,0x4f,0xf4,0x44,0x40,0x94,0x54,0x34,0x1e,0x32,0x53,0x92,0x90,0x00 - -, -0x04,0x0c,0x04,0x3f,0x02,0x22,0x10,0x08,0x07,0x00,0x00,0x3f,0x00,0x00,0x00 - -, -/* @1554 (15x15,V)@ [suki software]*/ -0x48,0x78,0x4f,0xe8,0x48,0x08,0x44,0xe4,0x15,0x06,0x04,0xd4,0x24,0x40,0x00 - -, -0x04,0x0c,0x04,0x3f,0x02,0x22,0x20,0x10,0x0b,0x04,0x0a,0x11,0x20,0x20,0x00 - -, -/* @1555 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0x04,0x04,0xfc,0x00,0x00,0xfc,0x00,0x00,0x80,0xff,0x00,0x00 - -, -0x00,0x07,0x02,0x02,0x02,0x07,0x00,0x00,0x03,0x01,0x01,0x00,0x3f,0x00,0x00 - -, -/* @1556 (15x15,V)@ [suki software]*/ -0x10,0x2c,0x24,0x54,0x34,0x2c,0x25,0xf6,0x24,0x24,0x2c,0x14,0x24,0x0c,0x00 - -, -0x01,0x01,0x01,0x3d,0x25,0x25,0x25,0x25,0x25,0x25,0x3d,0x01,0x01,0x01,0x00 - -, -/* @1557 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x00,0xbe,0xea,0xaa,0xaa,0xaa,0xbf,0x82,0x00,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x01,0x0f,0x08,0x0a,0x09,0x2a,0x20,0x1f,0x00,0x00 - -, -/* @1558 (15x15,V)@ [suki software]*/ -0x08,0x08,0xff,0x88,0x48,0x20,0x24,0x2c,0xf5,0x26,0x34,0x2c,0x24,0x20,0x00 - -, -0x11,0x21,0x1f,0x00,0x21,0x21,0x25,0x17,0x09,0x09,0x15,0x13,0x31,0x01,0x00 - -, -/* @1559 (15x15,V)@ [suki software]*/ -0x00,0x00,0x7f,0x24,0x24,0x94,0x54,0x00,0x3f,0x48,0x44,0x46,0x40,0x70,0x00 - -, -0x00,0x00,0x00,0x3f,0x25,0x25,0x25,0x25,0x25,0x25,0x3f,0x00,0x00,0x00,0x00 - -, -/* @1560 (15x15,V)@ [suki software]*/ -0x10,0x14,0x94,0xfe,0x53,0x92,0x48,0x48,0x48,0x7f,0x48,0x48,0x4c,0x48,0x00 - -, -0x04,0x03,0x00,0x3f,0x00,0x01,0x00,0x3f,0x11,0x11,0x11,0x11,0x3f,0x00,0x00 - -, -/* @1561 (15x15,V)@ [suki software]*/ -0x90,0x48,0xe4,0x13,0x28,0x28,0xff,0x28,0x28,0x00,0x24,0xe4,0x26,0x24,0x00 - -, -0x00,0x00,0x3f,0x00,0x11,0x11,0x0f,0x09,0x09,0x10,0x20,0x1f,0x00,0x00,0x00 - -, -/* @1562 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x22,0x5a,0x86,0x20,0x10,0xcc,0x03,0x04,0xc8,0x10,0x20,0x20,0x00 - -, -0x00,0x3f,0x02,0x04,0x23,0x10,0x08,0x07,0x00,0x00,0x3f,0x00,0x00,0x00,0x00 - -, -/* @1563 (15x15,V)@ [suki software]*/ -0x10,0x14,0xd4,0x74,0x5f,0xf4,0x54,0x54,0x10,0xff,0x10,0x12,0xd4,0x10,0x00 - -, -0x02,0x01,0x3f,0x15,0x15,0x1f,0x15,0x15,0x20,0x13,0x0c,0x16,0x21,0x38,0x00 - -, -/* @1564 (15x15,V)@ [suki software]*/ -0x40,0x48,0x48,0xff,0x48,0x48,0x48,0x50,0x10,0xff,0x10,0x10,0xf8,0x10,0x00 - -, -0x00,0x0c,0x0a,0x09,0x08,0x0a,0x2c,0x10,0x0c,0x03,0x10,0x20,0x1f,0x00,0x00 - -, -/* @1565 (15x15,V)@ [suki software]*/ -0x04,0x24,0x24,0x24,0x24,0x3f,0xe4,0x24,0x24,0x3f,0x24,0xe4,0x06,0x04,0x00 - -, -0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x04,0x08,0x07,0x00,0x00,0x00 - -, -/* @1566 (15x15,V)@ [suki software]*/ -0x08,0xc8,0xff,0x48,0x88,0x00,0x48,0x48,0x48,0x7f,0x48,0x48,0x4c,0x08,0x00 - -, -0x03,0x00,0x3f,0x00,0x00,0x00,0x3f,0x11,0x11,0x11,0x11,0x11,0x3f,0x00,0x00 - -, -/* @1567 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0x48,0x28,0x18,0xff,0x08,0x18,0x28,0x48,0x8c,0x88,0x80,0x00 - -, -0x01,0x21,0x18,0x00,0x08,0x30,0x03,0x08,0x30,0x00,0x00,0x08,0x31,0x00,0x00 - -, -/* @1568 (15x15,V)@ [suki software]*/ -0x08,0x88,0xff,0x48,0x08,0x44,0x54,0x54,0xff,0x54,0x54,0xf6,0x44,0x40,0x00 - -, -0x11,0x20,0x1f,0x20,0x10,0x0e,0x09,0x11,0x1f,0x25,0x25,0x25,0x24,0x20,0x00 - -, -/* @1569 (15x15,V)@ [suki software]*/ -0xfc,0x24,0x24,0xfc,0x40,0x54,0x54,0x54,0xff,0x54,0x54,0xf6,0x44,0x40,0x00 - -, -0x0f,0x09,0x09,0x2f,0x10,0x0d,0x09,0x11,0x1f,0x25,0x25,0x25,0x24,0x20,0x00 - -, -/* @1570 (15x15,V)@ [suki software]*/ -0x08,0x68,0x89,0x0e,0xe8,0x00,0xbe,0xea,0xaa,0xaa,0xaa,0xbf,0x82,0x00,0x00 - -, -0x08,0x08,0x05,0x06,0x05,0x01,0x0f,0x08,0x0a,0x09,0x2a,0x20,0x1f,0x00,0x00 - -, -/* @1571 (15x15,V)@ [suki software]*/ -0x10,0x61,0x06,0xc0,0x08,0x48,0x48,0x48,0x7f,0x48,0x48,0x48,0x4c,0x08,0x00 - -, -0x02,0x02,0x3f,0x00,0x00,0x00,0x3f,0x11,0x11,0x11,0x11,0x3f,0x00,0x00,0x00 - -, -/* @1572 (15x15,V)@ [suki software]*/ -0x20,0x30,0xac,0x63,0x10,0x08,0x48,0x48,0x48,0x7f,0x48,0x48,0x4c,0x08,0x00 - -, -0x09,0x1b,0x09,0x09,0x05,0x04,0x00,0x3f,0x11,0x11,0x11,0x11,0x3f,0x00,0x00 - -, -/* @1573 (15x15,V)@ [suki software]*/ -0x10,0xf8,0x57,0xf4,0x5c,0x54,0xf0,0x22,0xd2,0x8e,0xd2,0xa2,0x9f,0x02,0x00 - -, -0x30,0x0f,0x02,0x1f,0x02,0x22,0x3f,0x03,0x02,0x02,0x3f,0x02,0x02,0x02,0x00 - -, -/* @1574 (15x15,V)@ [suki software]*/ -0x08,0x08,0xf8,0x0f,0x08,0xf8,0x00,0xfe,0x22,0x22,0x22,0xff,0x02,0x00,0x00 - -, -0x20,0x11,0x0a,0x04,0x0a,0x31,0x20,0x3f,0x21,0x21,0x21,0x3f,0x20,0x20,0x00 - -, -/* @1575 (15x15,V)@ [suki software]*/ -0x00,0x88,0xe8,0x88,0x88,0xe8,0x88,0x08,0xff,0x08,0x09,0xee,0x08,0x08,0x00 - -, -0x20,0x10,0x0f,0x00,0x00,0x0f,0x20,0x10,0x09,0x06,0x09,0x10,0x20,0x38,0x00 - -, -/* @1576 (15x15,V)@ [suki software]*/ -0x02,0x52,0x52,0xfa,0x52,0x57,0x82,0x92,0xfa,0x97,0x92,0xfa,0x93,0x82,0x00 - -, -0x11,0x09,0x05,0x3f,0x05,0x09,0x00,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x00,0x00 - -, -/* @1577 (15x15,V)@ [suki software]*/ -0x04,0x04,0x84,0x84,0x4f,0xa4,0x14,0x14,0x24,0xcf,0x44,0x84,0x86,0x84,0x00 - -, -0x01,0x21,0x20,0x10,0x08,0x07,0x00,0x00,0x00,0x3f,0x00,0x00,0x01,0x00,0x00 - -, -/* @1578 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x3e,0xaa,0x6a,0x2a,0x3e,0x2a,0x6a,0xaa,0x3f,0x02,0x00,0x00 - -, -0x00,0x22,0x22,0x11,0x08,0x07,0x00,0x00,0x00,0x3f,0x00,0x01,0x03,0x01,0x00 - -, -/* @1579 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x40,0x48,0x48,0x7f,0x48,0x48,0x7f,0x48,0x48,0x40,0x00 - -, -0x00,0x00,0x3f,0x00,0x00,0x3f,0x15,0x15,0x15,0x15,0x15,0x3f,0x00,0x00,0x00 - -, -/* @1580 (15x15,V)@ [suki software]*/ -0x80,0x80,0x40,0x20,0xd0,0x0c,0x03,0x04,0x08,0xd0,0x20,0x40,0x40,0x40,0x00 - -, -0x00,0x20,0x20,0x10,0x0f,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00 - -, -/* @1581 (15x15,V)@ [suki software]*/ -0x88,0x90,0x40,0xfc,0x84,0x44,0xa4,0x15,0x0e,0x14,0xa4,0x44,0xc6,0x44,0x00 - -, -0x20,0x10,0x0c,0x03,0x20,0x10,0x0f,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00 - -, -/* @1582 (15x15,V)@ [suki software]*/ -0x20,0x22,0xec,0x00,0x88,0xe8,0x88,0xe8,0x88,0xff,0x08,0x0a,0xec,0x08,0x00 - -, -0x00,0x00,0x1f,0x28,0x10,0x0f,0x00,0x0f,0x20,0x10,0x0b,0x0c,0x13,0x38,0x00 - -, -/* @1583 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x12,0x92,0x92,0x92,0x92,0xf2,0x92,0x92,0x92,0x9f,0x02,0x00 - -, -0x20,0x18,0x07,0x00,0x3f,0x12,0x12,0x12,0x1f,0x12,0x12,0x12,0x3f,0x00,0x00 - -, -/* @1584 (15x15,V)@ [suki software]*/ -0x00,0x00,0xf8,0x08,0x08,0x08,0x08,0xff,0x08,0x08,0x08,0xfc,0x08,0x00,0x00 - -, -0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x3f,0x00,0x02,0x04,0x03,0x00,0x00,0x00 - -, -/* @1585 (15x15,V)@ [suki software]*/ -0x10,0x08,0xe4,0xa7,0xac,0xe4,0x04,0x48,0x44,0xf7,0x44,0x4c,0xe4,0x44,0x00 - -, -0x20,0x10,0x0f,0x04,0x24,0x1f,0x20,0x10,0x08,0x07,0x10,0x20,0x1f,0x00,0x00 - -, -/* @1586 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0xfe,0x22,0x22,0x22,0x22,0x22,0xe2,0x21,0x21,0x30,0x20,0x00 - -, -0x20,0x10,0x0c,0x03,0x00,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00 - -, -/* @1587 (15x15,V)@ [suki software]*/ -0x40,0x40,0x20,0x10,0x48,0x44,0xc3,0x44,0x48,0x50,0x10,0x20,0x60,0x20,0x00 - -, -0x20,0x20,0x22,0x26,0x3a,0x22,0x3f,0x22,0x32,0x2a,0x26,0x22,0x20,0x20,0x00 - -, -/* @1588 (15x15,V)@ [suki software]*/ -0x40,0x40,0x20,0x10,0x08,0x04,0x23,0xc4,0x08,0x10,0x20,0x20,0x40,0x40,0x00 - -, -0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x21,0x19,0x07,0x01,0x00,0x00,0x00,0x00 - -, -/* @1589 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x10,0x54,0x54,0x54,0xff,0x54,0x54,0x7e,0x14,0x10,0x00 - -, -0x02,0x3e,0x01,0x04,0x05,0x05,0x05,0x05,0x3f,0x05,0x05,0x05,0x05,0x04,0x00 - -, -/* @1590 (15x15,V)@ [suki software]*/ -0x08,0x89,0xce,0x38,0x80,0x24,0x94,0xff,0x94,0xa0,0x94,0xff,0x94,0x24,0x00 - -, -0x01,0x00,0x3f,0x01,0x02,0x10,0x0a,0x16,0x22,0x1e,0x02,0x06,0x0a,0x12,0x00 - -, -/* @1591 (15x15,V)@ [suki software]*/ -0x00,0x3e,0x00,0x80,0xbf,0xc0,0xa2,0x96,0x4a,0x4a,0x16,0x23,0x22,0x20,0x00 - -, -0x00,0x20,0x10,0x0a,0x02,0x12,0x23,0x1e,0x02,0x02,0x0b,0x12,0x24,0x00,0x00 - -, -/* @1592 (15x15,V)@ [suki software]*/ -0x60,0x38,0xe7,0x24,0x24,0x00,0x7c,0x54,0x56,0xd5,0x54,0x54,0x7c,0x00,0x00 - -, -0x01,0x01,0x1f,0x09,0x05,0x00,0x1f,0x01,0x01,0x3f,0x09,0x11,0x0f,0x00,0x00 - -, -/* @1593 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x00,0x04,0x7c,0x84,0x04,0x04,0xc4,0x3e,0x04,0x00,0x00 - -, -0x00,0x00,0x3f,0x00,0x20,0x10,0x08,0x05,0x02,0x05,0x08,0x10,0x30,0x10,0x00 - -, -/* @1594 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x02,0xe2,0xaf,0xaa,0xfa,0xaa,0xaf,0xa2,0xe2,0x02,0x00 - -, -0x00,0x00,0x1f,0x08,0x24,0x2a,0x2a,0x2a,0x3f,0x2a,0x2a,0x2a,0x2a,0x22,0x00 - -, -/* @1595 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x80,0x88,0x88,0xff,0x88,0x88,0xff,0x88,0x88,0x88,0x00 - -, -0x10,0x08,0x07,0x08,0x10,0x28,0x24,0x23,0x20,0x20,0x2f,0x20,0x20,0x20,0x00 - -, -/* @1596 (15x15,V)@ [suki software]*/ -0x04,0xc4,0x5f,0xf4,0x54,0x5f,0xc4,0x00,0xfc,0x24,0x22,0xe3,0x22,0x20,0x00 - -, -0x04,0x05,0x05,0x3f,0x05,0x25,0x15,0x08,0x07,0x00,0x00,0x3f,0x00,0x00,0x00 - -, -/* @1597 (15x15,V)@ [suki software]*/ -0x40,0x42,0x4a,0x52,0x42,0x7e,0x42,0x42,0x7e,0x42,0x52,0x4b,0x42,0x40,0x00 - -, -0x00,0x00,0x00,0x3f,0x25,0x25,0x25,0x25,0x25,0x25,0x3f,0x00,0x00,0x00,0x00 - -, -/* @1598 (15x15,V)@ [suki software]*/ -0x44,0x24,0x94,0xff,0x8c,0x94,0x80,0xa4,0x94,0xff,0x8c,0x14,0x26,0x24,0x00 - -, -0x02,0x12,0x12,0x0a,0x06,0x12,0x22,0x1e,0x02,0x06,0x0a,0x1a,0x02,0x02,0x00 - -, -/* @1599 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x00,0x00,0xfc,0x24,0x24,0x22,0xe2,0x23,0x32,0x20,0x00 - -, -0x10,0x08,0x07,0x08,0x14,0x12,0x21,0x20,0x20,0x20,0x2f,0x20,0x20,0x20,0x00 - -, -/* @1600 (15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x20,0x18,0x00,0xfe,0x12,0x12,0x12,0x72,0x92,0x1f,0x02,0x00 - -, -0x20,0x18,0x07,0x04,0x0a,0x11,0x00,0x00,0x09,0x09,0x12,0x20,0x01,0x01,0x00 - -, -/* @1601 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x80,0xa2,0xaa,0xaa,0xaa,0xaa,0xaa,0xbf,0x82,0x80,0x00 - -, -0x02,0x3e,0x01,0x20,0x21,0x20,0x12,0x16,0x0a,0x0a,0x16,0x22,0x20,0x21,0x00 - -, -}, -//************************************** -{ -/* @1602 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0xfe,0x12,0x92,0x12,0x32,0x52,0x92,0x12,0x1f,0x02,0x00,0x00 - -, -0x08,0x04,0x03,0x00,0x08,0x08,0x09,0x11,0x12,0x20,0x01,0x02,0x06,0x02,0x00 - -, -/* @1603 (15x15,V)@ [suki software]*/ -0x40,0xc2,0xa2,0x92,0x8a,0x96,0xa0,0x50,0x10,0xff,0x10,0x10,0xf8,0x10,0x00 - -, -0x10,0x10,0x10,0x0f,0x08,0x28,0x10,0x08,0x06,0x01,0x10,0x20,0x1f,0x00,0x00 - -, -/* @1604 (15x15,V)@ [suki software]*/ -0x84,0x94,0x94,0xff,0x94,0x94,0xff,0x94,0x94,0x00,0xfc,0x00,0xff,0x00,0x00 - -, -0x20,0x10,0x08,0x07,0x00,0x00,0x3f,0x00,0x00,0x00,0x17,0x20,0x1f,0x00,0x00 - -, -/* @1605 (15x15,V)@ [suki software]*/ -0x04,0xf4,0x94,0x9f,0x94,0xf4,0x00,0xf4,0x94,0x9f,0x94,0x94,0xf4,0x04,0x00 - -, -0x20,0x10,0x0f,0x00,0x1f,0x08,0x24,0x10,0x0f,0x00,0x1f,0x20,0x20,0x38,0x00 - -, -/* @1606 (15x15,V)@ [suki software]*/ -0x04,0x04,0x14,0x14,0x14,0x9f,0x94,0x54,0x54,0xbf,0x94,0x04,0x06,0x04,0x00 - -, -0x02,0x22,0x21,0x25,0x25,0x24,0x24,0x3c,0x24,0x24,0x24,0x25,0x33,0x21,0x00 - -, -/* @1607 (15x15,V)@ [suki software]*/ -0xfc,0x24,0x24,0xfc,0x00,0x22,0xaa,0xaa,0xaa,0xbf,0xaa,0xaa,0x2a,0x20,0x00 - -, -0x1f,0x09,0x09,0x1f,0x00,0x00,0x3f,0x0a,0x0a,0x0a,0x2a,0x3f,0x00,0x00,0x00 - -, -/* @1608 (15x15,V)@ [suki software]*/ -0x00,0x80,0x80,0x80,0xbe,0xaa,0x2a,0x2a,0xaa,0xaa,0xbf,0x82,0x80,0x00,0x00 - -, -0x00,0x3f,0x14,0x14,0x14,0x3f,0x00,0x00,0x3f,0x14,0x14,0x14,0x3f,0x00,0x00 - -, -/* @1609 (15x15,V)@ [suki software]*/ -0x10,0xf8,0x57,0xfa,0x56,0xf0,0x04,0xf4,0x94,0x95,0x96,0x94,0xf4,0x04,0x00 - -, -0x10,0x33,0x12,0x0b,0x0a,0x13,0x08,0x05,0x10,0x20,0x1f,0x00,0x05,0x18,0x00 - -, -/* @1610 (15x15,V)@ [suki software]*/ -0x04,0x04,0x04,0xf4,0x14,0x14,0x15,0x16,0x14,0x14,0xf4,0x04,0x06,0x04,0x00 - -, -0x00,0x10,0x10,0x09,0x05,0x11,0x21,0x1f,0x01,0x03,0x05,0x08,0x10,0x00,0x00 - -, -/* @1611 (15x15,V)@ [suki software]*/ -0x38,0x00,0xff,0x08,0x10,0x04,0xf4,0x94,0x95,0x96,0x94,0xf4,0x04,0x04,0x00 - -, -0x00,0x00,0x3f,0x00,0x10,0x08,0x06,0x10,0x20,0x1f,0x02,0x04,0x18,0x00,0x00 - -, -/* @1612 (15x15,V)@ [suki software]*/ -0x24,0x28,0xa0,0xff,0xa8,0x24,0x40,0xd4,0x54,0x7f,0x54,0x54,0xd6,0x44,0x00 - -, -0x04,0x03,0x00,0x3f,0x00,0x01,0x00,0x3f,0x05,0x05,0x15,0x25,0x1f,0x00,0x00 - -, -/* @1613 (15x15,V)@ [suki software]*/ -0x24,0x28,0xa0,0xff,0x28,0x24,0x02,0xfa,0x4a,0xfe,0x4a,0x4a,0xfb,0x02,0x00 - -, -0x04,0x03,0x00,0x3f,0x01,0x22,0x20,0x15,0x09,0x0f,0x11,0x11,0x31,0x10,0x00 - -, -/* @1614 (15x15,V)@ [suki software]*/ -0x20,0x30,0xac,0x63,0x20,0x58,0x42,0x22,0x12,0x0a,0x17,0x22,0x20,0x40,0x00 - -, -0x10,0x13,0x12,0x09,0x09,0x20,0x21,0x21,0x21,0x3f,0x21,0x21,0x31,0x20,0x00 - -, -/* @1615 (15x15,V)@ [suki software]*/ -0x80,0x88,0x88,0x88,0xff,0x88,0x88,0x88,0x88,0xff,0x88,0x88,0x88,0x80,0x00 - -, -0x00,0x20,0x10,0x08,0x07,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00 - -, -/* @1616 (15x15,V)@ [suki software]*/ -0x12,0x8a,0xbe,0xab,0xba,0xcf,0xfa,0x92,0xc8,0xaf,0x94,0xac,0xc6,0x44,0x00 - -, -0x00,0x00,0x00,0x3a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x3a,0x00,0x00,0x00,0x00 - -, -/* @1617 (15x15,V)@ [suki software]*/ -0x40,0x40,0x40,0x5f,0x55,0x55,0x55,0x75,0x55,0x55,0x5f,0x40,0x60,0x40,0x00 - -, -0x20,0x20,0x10,0x0f,0x05,0x15,0x25,0x1d,0x05,0x05,0x0f,0x10,0x30,0x00,0x00 - -, -/* @1618 (15x15,V)@ [suki software]*/ -0x42,0xa2,0x92,0x8a,0x96,0xa0,0x42,0xfa,0x0a,0xee,0x0a,0x0a,0xfb,0x02,0x00 - -, -0x10,0x10,0x10,0x0f,0x08,0x28,0x20,0x17,0x08,0x07,0x00,0x08,0x17,0x30,0x00 - -, -/* @1619 (15x15,V)@ [suki software]*/ -0x22,0xaa,0xaa,0xbf,0xaa,0xaa,0x50,0x5c,0x57,0xf4,0x5c,0x56,0xf4,0x40,0x00 - -, -0x00,0x3f,0x0a,0x0a,0x2a,0x3f,0x00,0x02,0x22,0x3f,0x02,0x02,0x07,0x00,0x00 - -, -/* @1620 (15x15,V)@ [suki software]*/ -0x10,0x10,0xff,0x10,0x00,0x14,0xd4,0x5c,0x55,0x56,0x5c,0xd4,0x14,0x10,0x00 - -, -0x04,0x04,0x03,0x22,0x22,0x20,0x17,0x0d,0x05,0x1d,0x25,0x27,0x20,0x38,0x00 - -, -/* @1621 (15x15,V)@ [suki software]*/ -0x84,0x44,0xaf,0xb4,0xa4,0xaf,0x24,0xe4,0x44,0xf8,0x0f,0x88,0x7c,0x08,0x00 - -, -0x00,0x00,0x0f,0x04,0x14,0x27,0x10,0x2f,0x10,0x09,0x06,0x09,0x10,0x20,0x00 - -, -/* @1622 (15x15,V)@ [suki software]*/ -0x20,0x38,0xef,0x28,0x28,0x10,0xd4,0x5c,0x55,0x56,0x5c,0xd4,0x14,0x10,0x00 - -, -0x01,0x01,0x1f,0x11,0x29,0x20,0x17,0x0d,0x05,0x1d,0x25,0x27,0x20,0x38,0x00 - -, -/* @1623 (15x15,V)@ [suki software]*/ -0x10,0x88,0x44,0xe3,0x18,0x42,0xa2,0xa2,0x92,0x8a,0x97,0x92,0xa0,0x40,0x00 - -, -0x01,0x00,0x00,0x3f,0x00,0x10,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x10,0x00 - -, -/* @1624 (15x15,V)@ [suki software]*/ -0x10,0xa0,0xfc,0x04,0x04,0x94,0x94,0x55,0x56,0x34,0x54,0x54,0x86,0x04,0x00 - -, -0x21,0x18,0x07,0x10,0x10,0x12,0x12,0x12,0x1e,0x12,0x13,0x12,0x10,0x10,0x00 - -, -/* @1625 (15x15,V)@ [suki software]*/ -0x28,0xc9,0x0e,0x88,0x68,0x44,0xd4,0x54,0x54,0x7f,0x54,0xd4,0x56,0x44,0x00 - -, -0x08,0x0b,0x04,0x07,0x04,0x00,0x3f,0x05,0x05,0x05,0x25,0x3f,0x00,0x00,0x00 - -, -/* @1626 (15x15,V)@ [suki software]*/ -0x00,0x10,0x14,0xd4,0x54,0x5c,0x55,0x56,0x54,0x5c,0xd4,0x16,0x14,0x10,0x00 - -, -0x20,0x20,0x20,0x27,0x15,0x0d,0x05,0x05,0x1d,0x25,0x27,0x20,0x20,0x38,0x00 - -, -/* @1627 (15x15,V)@ [suki software]*/ -0x20,0x20,0x24,0xa4,0xac,0xb4,0xa5,0xa6,0xb4,0xac,0xa4,0x24,0x30,0x20,0x00 - -, -0x00,0x20,0x20,0x27,0x14,0x0c,0x04,0x04,0x1c,0x24,0x27,0x20,0x20,0x38,0x00 - -, -/* @1628 (15x15,V)@ [suki software]*/ -0x00,0x02,0x8c,0x60,0x80,0x98,0x94,0x97,0xf4,0x9c,0x96,0x94,0xf0,0x80,0x00 - -, -0x01,0x01,0x1f,0x00,0x00,0x02,0x12,0x22,0x1f,0x02,0x02,0x02,0x03,0x00,0x00 - -, -/* @1629 (15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x20,0x18,0x00,0xfe,0x02,0xf2,0x12,0x12,0xf2,0x02,0xfe,0x00 - -, -0x20,0x18,0x07,0x02,0x04,0x08,0x3f,0x00,0x07,0x02,0x02,0x17,0x20,0x1f,0x00 - -, -/* @1630 (15x15,V)@ [suki software]*/ -0x48,0x46,0x52,0x52,0x5a,0xf6,0x52,0x53,0x52,0x52,0xf6,0x4a,0x56,0x42,0x00 - -, -0x10,0x10,0x09,0x05,0x3f,0x15,0x15,0x15,0x15,0x15,0x15,0x3c,0x00,0x00,0x00 - -, -/* @1631 (15x15,V)@ [suki software]*/ -0x08,0x88,0xff,0x48,0x14,0x94,0xfe,0x92,0x62,0x00,0xff,0x40,0x20,0x10,0x00 - -, -0x11,0x20,0x1f,0x02,0x01,0x00,0x3f,0x20,0x11,0x0e,0x01,0x0e,0x10,0x20,0x00 - -, -/* @1632 (15x15,V)@ [suki software]*/ -0x10,0x4c,0xa4,0x94,0x8c,0xe4,0x85,0x86,0x84,0x8c,0x14,0x24,0x0c,0x00,0x00 - -, -0x00,0x20,0x20,0x10,0x08,0x07,0x00,0x00,0x00,0x1f,0x20,0x20,0x20,0x38,0x00 - -, -/* @1633 (15x15,V)@ [suki software]*/ -0x20,0x30,0xac,0x63,0x20,0x18,0x00,0x00,0xfc,0x00,0x00,0x80,0xff,0x00,0x00 - -, -0x09,0x1b,0x09,0x05,0x05,0x05,0x00,0x00,0x03,0x01,0x01,0x00,0x3f,0x00,0x00 - -, -/* @1634 (15x15,V)@ [suki software]*/ -0x04,0x44,0x44,0xfc,0x44,0x84,0x60,0x18,0x0f,0x08,0xc8,0x3c,0x08,0x00,0x00 - -, -0x08,0x18,0x08,0x07,0x24,0x24,0x10,0x08,0x04,0x03,0x00,0x07,0x18,0x20,0x00 - -, -/* @1635 (15x15,V)@ [suki software]*/ -0x00,0x48,0x48,0x48,0x48,0xff,0x00,0x00,0xff,0x48,0x48,0x48,0x48,0x00,0x00 - -, -0x20,0x22,0x22,0x22,0x22,0x3f,0x20,0x20,0x3f,0x22,0x22,0x22,0x22,0x20,0x00 - -, -/* @1636 (15x15,V)@ [suki software]*/ -0x00,0x80,0x40,0x20,0x18,0x0f,0x88,0x68,0x9c,0x08,0x00,0x00,0x00,0x00,0x00 - -, -0x20,0x20,0x10,0x08,0x04,0x02,0x01,0x00,0x01,0x06,0x08,0x10,0x30,0x10,0x00 - -, -/* @1637 (15x15,V)@ [suki software]*/ -0x80,0x80,0x90,0x48,0x44,0x27,0xd4,0x14,0x0e,0x14,0x20,0x40,0x40,0x00,0x00 - -, -0x20,0x20,0x24,0x13,0x08,0x04,0x03,0x02,0x04,0x0a,0x11,0x20,0x20,0x20,0x00 - -, -/* @1638 (15x15,V)@ [suki software]*/ -0x00,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0xf8,0x10,0x00,0x00,0x00,0x00 - -, -0x20,0x20,0x10,0x08,0x06,0x01,0x00,0x00,0x00,0x1f,0x20,0x20,0x20,0x3c,0x00 - -, -/* @1639 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x02,0xfa,0x8a,0x7e,0x0a,0xfe,0x8a,0x8a,0xfb,0x02,0x00 - -, -0x02,0x02,0x3f,0x00,0x00,0x3f,0x12,0x12,0x12,0x12,0x12,0x12,0x3f,0x00,0x00 - -, -/* @1640 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x02,0xfa,0xaa,0xfa,0x02,0xea,0x8a,0xfa,0x8a,0x8b,0x82,0x00 - -, -0x20,0x18,0x07,0x00,0x1f,0x08,0x26,0x14,0x08,0x06,0x1f,0x20,0x20,0x38,0x00 - -, -/* @1641 (15x15,V)@ [suki software]*/ -0x28,0x48,0x08,0xff,0x88,0x4a,0x2c,0x48,0x30,0xdf,0x10,0x10,0xf8,0x10,0x00 - -, -0x02,0x12,0x21,0x1f,0x00,0x01,0x22,0x22,0x10,0x0b,0x04,0x0b,0x10,0x20,0x00 - -, -/* @1642 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x00,0x00,0xfe,0x42,0x42,0x42,0x42,0x42,0xff,0x02,0x00,0x00 - -, -0x00,0x00,0x1f,0x00,0x00,0x1f,0x08,0x08,0x08,0x08,0x08,0x1f,0x00,0x00,0x00 - -, -/* @1643 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x44,0x44,0x42,0x43,0x02,0x04,0x44,0x44,0x44,0xfe,0x04,0x00,0x00 - -, -0x00,0x1f,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x1f,0x00,0x00,0x00 - -, -/* @1644 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0xaa,0xaa,0xa9,0xa9,0xe0,0xaa,0xaa,0xaa,0xff,0x02,0x00,0x00 - -, -0x00,0x22,0x23,0x22,0x12,0x0a,0x06,0x03,0x12,0x22,0x22,0x13,0x0e,0x00,0x00 - -, -/* @1645 (15x15,V)@ [suki software]*/ -0x40,0x20,0x18,0xa7,0x44,0x64,0x9c,0x80,0x80,0x7f,0x08,0x08,0x10,0x00,0x00 - -, -0x02,0x02,0x01,0x3e,0x12,0x12,0x12,0x12,0x12,0x13,0x3f,0x01,0x01,0x01,0x00 - -, -/* @1646 (15x15,V)@ [suki software]*/ -0x04,0x04,0xf4,0x95,0x96,0x94,0xf4,0x14,0xf0,0x1f,0xf0,0x12,0x1c,0x10,0x00 - -, -0x08,0x04,0x12,0x20,0x1f,0x02,0x24,0x10,0x0f,0x00,0x1f,0x20,0x20,0x3c,0x00 - -, -/* @1647 (15x15,V)@ [suki software]*/ -0x08,0xb0,0x40,0xfc,0x04,0x84,0x64,0x3d,0x26,0xa4,0x64,0x04,0x06,0x04,0x00 - -, -0x21,0x10,0x0c,0x23,0x20,0x10,0x08,0x04,0x02,0x01,0x06,0x08,0x10,0x20,0x00 - -, -/* @1648 (15x15,V)@ [suki software]*/ -0x04,0xc4,0x5f,0xf4,0x5f,0xc4,0x14,0xa8,0x87,0xf4,0xc4,0xa4,0x04,0xfc,0x00 - -, -0x04,0x05,0x05,0x3f,0x05,0x15,0x08,0x04,0x02,0x3f,0x02,0x14,0x20,0x1f,0x00 - -, -/* @1649 (15x15,V)@ [suki software]*/ -0x08,0x08,0xff,0x88,0x88,0x20,0xf0,0x2c,0x2b,0xe8,0x08,0x08,0xfc,0x08,0x00 - -, -0x11,0x21,0x1f,0x00,0x00,0x00,0x07,0x02,0x02,0x07,0x10,0x20,0x1f,0x00,0x00 - -, -/* @1650 (15x15,V)@ [suki software]*/ -0x20,0x22,0x14,0x88,0xf4,0x02,0xfc,0x24,0x24,0x24,0x24,0xfe,0x04,0x00,0x00 - -, -0x04,0x12,0x21,0x10,0x0f,0x20,0x3f,0x22,0x22,0x22,0x22,0x3f,0x20,0x20,0x00 - -, -/* @1651 (15x15,V)@ [suki software]*/ -0x08,0x30,0x80,0xfc,0x04,0x04,0xf4,0x95,0x96,0x94,0x94,0xf4,0x06,0x04,0x00 - -, -0x21,0x11,0x0c,0x23,0x20,0x20,0x3f,0x24,0x24,0x24,0x24,0x3f,0x20,0x20,0x00 - -, -/* @1652 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x0a,0x4a,0x4a,0x4a,0x4a,0xfa,0x4a,0x4a,0x4f,0x42,0x40,0x00 - -, -0x20,0x18,0x07,0x00,0x00,0x3e,0x12,0x12,0x13,0x12,0x12,0x3e,0x00,0x00,0x00 - -, -/* @1653 (15x15,V)@ [suki software]*/ -0x02,0xfa,0x82,0x82,0xff,0xa2,0x10,0xec,0x2b,0x28,0xe8,0x08,0xfc,0x08,0x00 - -, -0x04,0x04,0x14,0x22,0x12,0x0f,0x00,0x07,0x02,0x12,0x27,0x20,0x1f,0x00,0x00 - -, -/* @1654 (15x15,V)@ [suki software]*/ -0x84,0x44,0x24,0x5c,0x94,0x1f,0xf4,0x14,0x94,0x5f,0x14,0x14,0xf6,0x04,0x00 - -, -0x00,0x10,0x11,0x09,0x05,0x03,0x3f,0x03,0x05,0x09,0x21,0x20,0x1f,0x00,0x00 - -, -/* @1655 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x52,0x52,0x52,0x52,0x52,0x52,0x52,0x52,0x5f,0xc2,0x00,0x00 - -, -0x20,0x18,0x07,0x00,0x00,0x0f,0x05,0x05,0x05,0x07,0x10,0x20,0x1f,0x00,0x00 - -, -/* @1656 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0x04,0xfc,0x00,0xfe,0x22,0x22,0x22,0x22,0xff,0x02,0x00,0x00 - -, -0x00,0x07,0x01,0x01,0x23,0x20,0x3f,0x21,0x21,0x21,0x21,0x3f,0x20,0x20,0x00 - -, -/* @1657 (15x15,V)@ [suki software]*/ -0x90,0x8c,0x8b,0xf8,0x88,0x88,0x00,0xfe,0x22,0x22,0x22,0x22,0xe2,0x02,0x00 - -, -0x20,0x10,0x0c,0x03,0x02,0x0c,0x00,0x3f,0x11,0x11,0x11,0x11,0x13,0x10,0x00 - -, -/* @1658 (15x15,V)@ [suki software]*/ -0x08,0x08,0x89,0x4e,0xb8,0x88,0xc9,0x8e,0x88,0xb8,0x4c,0x8b,0x88,0x88,0x00 - -, -0x01,0x05,0x04,0x04,0x04,0x04,0x3f,0x04,0x04,0x04,0x04,0x04,0x05,0x00,0x00 - -, -/* @1659 (15x15,V)@ [suki software]*/ -0x10,0x61,0x02,0xc6,0x30,0x00,0xfe,0x22,0x22,0x22,0x22,0xff,0x02,0x00,0x00 - -, -0x02,0x02,0x3f,0x00,0x20,0x20,0x3f,0x22,0x22,0x22,0x22,0x3f,0x20,0x20,0x00 - -, -/* @1660 (15x15,V)@ [suki software]*/ -0x00,0x41,0x7f,0x55,0x55,0x55,0xff,0x21,0xc6,0xaa,0x92,0x2a,0x46,0x00,0x00 - -, -0x04,0x14,0x12,0x0a,0x09,0x05,0x01,0x3f,0x02,0x04,0x0a,0x09,0x10,0x10,0x00 - -, -/* @1661 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x00,0xfe,0x22,0x22,0x22,0x22,0x22,0xe2,0x00,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x00,0x3f,0x22,0x22,0x22,0x22,0x22,0x33,0x20,0x00 - -, -/* @1662 (15x15,V)@ [suki software]*/ -0x08,0x88,0xff,0x48,0x48,0x00,0xfe,0x4a,0x4a,0xea,0x4a,0x4a,0x4f,0x42,0x00 - -, -0x11,0x20,0x1f,0x20,0x10,0x0e,0x01,0x3e,0x12,0x13,0x12,0x12,0x3e,0x00,0x00 - -, -/* @1663 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0xf3,0x22,0x00,0x00 - -, -0x00,0x00,0x3f,0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x23,0x30,0x20,0x00 - -, -/* @1664 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0xfe,0xaa,0xaa,0xaa,0xaa,0xaa,0xff,0x02,0x00,0x00,0x00 - -, -0x04,0x24,0x24,0x14,0x0f,0x04,0x04,0x04,0x04,0x04,0x0f,0x14,0x34,0x04,0x00 - -, -/* @1665 (15x15,V)@ [suki software]*/ -0x00,0xbe,0x22,0xe2,0xa2,0xbe,0x00,0xfe,0x12,0x12,0x12,0x12,0xf3,0x02,0x00 - -, -0x10,0x3f,0x10,0x0f,0x08,0x08,0x00,0x1f,0x11,0x11,0x11,0x11,0x13,0x10,0x00 - -, -/* @1666 (15x15,V)@ [suki software]*/ -0x00,0xbe,0x12,0xf2,0x9e,0x80,0xfe,0x4a,0x4a,0x4a,0xfa,0x4a,0x4f,0x42,0x00 - -, -0x08,0x1f,0x08,0x07,0x24,0x18,0x07,0x00,0x3e,0x12,0x13,0x12,0x3e,0x00,0x00 - -, -/* @1667 (15x15,V)@ [suki software]*/ -0x60,0x38,0xe7,0x24,0x24,0x00,0xfe,0x4a,0x4a,0x4a,0xfa,0x4a,0x4f,0x42,0x00 - -, -0x01,0x01,0x1f,0x09,0x25,0x18,0x07,0x00,0x3e,0x12,0x13,0x12,0x3e,0x00,0x00 - -, -/* @1668 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x00,0x00,0xfe,0xaa,0xaa,0xaa,0xaa,0xff,0x02,0x00,0x00 - -, -0x00,0x00,0x3f,0x00,0x22,0x12,0x0b,0x02,0x02,0x02,0x0a,0x13,0x32,0x02,0x00 - -, -/* @1669 (15x15,V)@ [suki software]*/ -0x00,0x20,0x10,0xe8,0x27,0x24,0x24,0x24,0xe4,0x04,0x04,0x04,0xfe,0x04,0x00 - -, -0x00,0x00,0x00,0x0f,0x02,0x02,0x02,0x02,0x07,0x10,0x20,0x10,0x0f,0x00,0x00 - -, -/* @1670 (15x15,V)@ [suki software]*/ -0x60,0x10,0xff,0x08,0x30,0x00,0xfe,0xaa,0xaa,0xaa,0xaa,0xff,0x02,0x00,0x00 - -, -0x00,0x00,0x3f,0x00,0x22,0x12,0x0b,0x02,0x02,0x02,0x02,0x0b,0x32,0x02,0x00 - -, -/* @1671 (15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x20,0x18,0x00,0xfe,0x12,0x12,0x12,0x12,0x12,0xf3,0x02,0x00 - -, -0x20,0x18,0x07,0x02,0x0c,0x00,0x3f,0x11,0x11,0x11,0x11,0x11,0x19,0x10,0x00 - -, -/* @1672 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x4a,0x4a,0x4a,0xfa,0x4a,0x5f,0x42,0x00,0xfc,0x00,0xff,0x00,0x00 - -, -0x30,0x0f,0x00,0x3e,0x12,0x13,0x12,0x3e,0x00,0x00,0x13,0x20,0x1f,0x00,0x00 - -, -/* @1673 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x08,0xc0,0x5e,0x52,0x52,0x52,0x52,0xde,0x00,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x00,0x3f,0x05,0x05,0x05,0x15,0x25,0x1f,0x00,0x00 - -, -/* @1674 (15x15,V)@ [suki software]*/ -0x00,0xee,0xaa,0xaa,0xaa,0xee,0x00,0xfc,0x04,0x57,0x44,0x3c,0x80,0x00,0x00 - -, -0x00,0x3f,0x04,0x14,0x24,0x1f,0x00,0x05,0x05,0x15,0x25,0x21,0x1f,0x01,0x00 - -, -/* @1675 (15x15,V)@ [suki software]*/ -0x08,0x08,0xf8,0x0f,0x08,0xf8,0x00,0xee,0x2a,0x2a,0x2a,0x2a,0xee,0x00,0x00 - -, -0x20,0x11,0x0a,0x04,0x0a,0x11,0x00,0x3f,0x05,0x05,0x15,0x25,0x1f,0x00,0x00 - -, -/* @1676 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x40,0x52,0xd4,0x70,0x5f,0x50,0xd4,0x52,0x50,0x40,0x00 - -, -0x00,0x00,0x3f,0x04,0x02,0x01,0x1f,0x21,0x25,0x29,0x27,0x21,0x3a,0x02,0x00 - -, -/* @1677 (15x15,V)@ [suki software]*/ -0x20,0x28,0xa8,0xea,0xac,0xb8,0xaf,0xa8,0xac,0xea,0xa8,0x28,0x20,0x20,0x00 - -, -0x01,0x01,0x00,0x3f,0x2a,0x2a,0x2a,0x2a,0x2a,0x3f,0x00,0x01,0x01,0x01,0x00 - -, -/* @1678 (15x15,V)@ [suki software]*/ -0x00,0x20,0x28,0xaa,0x6c,0x38,0x2f,0x28,0x28,0x6c,0xaa,0x28,0x28,0x20,0x00 - -, -0x02,0x02,0x01,0x00,0x1f,0x21,0x21,0x29,0x29,0x27,0x20,0x39,0x03,0x01,0x00 - -, -/* @1679 (15x15,V)@ [suki software]*/ -0x20,0x30,0xac,0x63,0x10,0x00,0xe0,0xae,0xaa,0xaa,0xaa,0xaa,0xee,0x00,0x00 - -, -0x09,0x1b,0x09,0x05,0x05,0x00,0x3f,0x04,0x04,0x04,0x14,0x24,0x1f,0x00,0x00 - -, -/* @1680 (15x15,V)@ [suki software]*/ -0x08,0x08,0xff,0x88,0x00,0xfe,0x1a,0xf2,0x1a,0xd6,0x22,0xde,0x13,0x32,0x00 - -, -0x11,0x21,0x1f,0x20,0x18,0x07,0x11,0x2f,0x11,0x09,0x04,0x03,0x0c,0x30,0x00 - -, -/* @1681 (15x15,V)@ [suki software]*/ -0x08,0x08,0xff,0x48,0x80,0x5f,0xf5,0x55,0x5f,0xe0,0x5f,0x55,0x5f,0x00,0x00 - -, -0x11,0x21,0x1f,0x00,0x20,0x24,0x27,0x2d,0x15,0x17,0x15,0x2d,0x25,0x24,0x00 - -, -/* @1682 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x80,0x88,0x88,0xff,0x88,0x88,0xfc,0x88,0x80,0x00 - -, -0x01,0x11,0x20,0x1f,0x20,0x10,0x08,0x06,0x01,0x06,0x08,0x10,0x20,0x20,0x00 - -, -/* @1683 (15x15,V)@ [suki software]*/ -0x08,0x08,0xff,0x88,0x40,0xfe,0x0a,0xea,0x0a,0xfa,0x0a,0x0a,0xef,0x02,0x00 - -, -0x11,0x21,0x1f,0x00,0x30,0x0f,0x00,0x1d,0x11,0x1f,0x11,0x11,0x3d,0x00,0x00 - -, -/* @1684 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x00,0xfe,0x0a,0xea,0x0a,0xfa,0x0a,0x0a,0xef,0x02,0x00 - -, -0x00,0x00,0x3f,0x20,0x18,0x07,0x3c,0x21,0x21,0x3f,0x21,0x21,0x3d,0x00,0x00 - -, -/* @1685 (15x15,V)@ [suki software]*/ -0x00,0x82,0xba,0xae,0xaa,0xba,0xae,0x2a,0x3a,0x29,0xad,0x3b,0x00,0x00,0x00 - -, -0x00,0x3f,0x24,0x25,0x16,0x1c,0x37,0x01,0x0d,0x21,0x3f,0x01,0x01,0x01,0x00 - -, -/* @1686 (15x15,V)@ [suki software]*/ -0x20,0x18,0x09,0xea,0x2c,0x29,0xae,0x28,0x28,0xec,0x0b,0x28,0x18,0x00,0x00 - -, -0x00,0x20,0x20,0x27,0x10,0x08,0x07,0x1e,0x20,0x27,0x20,0x20,0x3c,0x00,0x00 - -, -/* @1687 (15x15,V)@ [suki software]*/ -0x00,0x02,0x8c,0x60,0x80,0x88,0x88,0x88,0xff,0x88,0x88,0xfc,0x88,0x80,0x00 - -, -0x01,0x01,0x1f,0x20,0x20,0x10,0x08,0x06,0x01,0x06,0x08,0x10,0x20,0x20,0x00 - -, -/* @1688 (15x15,V)@ [suki software]*/ -0x20,0x20,0x21,0xe6,0x00,0x80,0x88,0x88,0xff,0x88,0x88,0xfc,0x88,0x80,0x00 - -, -0x00,0x00,0x00,0x1f,0x28,0x10,0x08,0x06,0x01,0x06,0x08,0x10,0x20,0x20,0x00 - -, -/* @1689 (15x15,V)@ [suki software]*/ -0x20,0x30,0xac,0x63,0x10,0x08,0x10,0xe8,0x27,0xe4,0x34,0x2e,0xe4,0x00,0x00 - -, -0x10,0x13,0x12,0x0a,0x09,0x09,0x00,0x1f,0x21,0x21,0x21,0x21,0x23,0x38,0x00 - -, -/* @1690 (15x15,V)@ [suki software]*/ -0x10,0x10,0x10,0xff,0x10,0x20,0x10,0x2c,0x4b,0x88,0x08,0x08,0xfc,0x08,0x00 - -, -0x04,0x0c,0x04,0x03,0x02,0x02,0x08,0x04,0x04,0x12,0x22,0x10,0x0f,0x00,0x00 - -, -/* @1691 (15x15,V)@ [suki software]*/ -0x04,0x04,0xf4,0x14,0x54,0x5f,0x54,0xd4,0x54,0x5f,0x14,0x14,0xf6,0x04,0x00 - -, -0x00,0x00,0x3f,0x10,0x15,0x13,0x11,0x1f,0x13,0x15,0x11,0x10,0x3f,0x00,0x00 - -, -/* @1692 (15x15,V)@ [suki software]*/ -0x40,0x30,0x2f,0xe4,0x24,0x04,0x20,0x10,0x2c,0x4b,0x88,0x08,0xfc,0x08,0x00 - -, -0x01,0x01,0x01,0x1f,0x09,0x05,0x00,0x04,0x04,0x12,0x22,0x10,0x0f,0x00,0x00 - -, -/* @1693 (15x15,V)@ [suki software]*/ -0x08,0x06,0x12,0xd2,0xb2,0x9a,0x96,0xf2,0x92,0x92,0x92,0x8a,0x06,0x00,0x00 - -, -0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x3f,0x04,0x04,0x04,0x04,0x06,0x04,0x00 - -, -/* @1694 (15x15,V)@ [suki software]*/ -0x00,0x48,0x4a,0x4a,0xca,0x7e,0x4a,0x4a,0x4a,0x4a,0x7f,0x0a,0x08,0x08,0x00 - -, -0x08,0x08,0x04,0x02,0x3f,0x11,0x11,0x11,0x11,0x11,0x11,0x3f,0x00,0x00,0x00 - -, -/* @1695 (15x15,V)@ [suki software]*/ -0xf8,0x00,0xff,0x00,0xf8,0x00,0x48,0x2c,0xdb,0x88,0x9a,0xac,0x58,0x00,0x00 - -, -0x07,0x04,0x07,0x02,0x27,0x24,0x22,0x11,0x0a,0x04,0x0a,0x11,0x30,0x10,0x00 - -, -}, -//************************************** -{ -/* @1696 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x80,0x48,0x2c,0xda,0x89,0x88,0x98,0xac,0x58,0x00,0x00 - -, -0x00,0x00,0x3f,0x00,0x24,0x22,0x21,0x16,0x08,0x14,0x12,0x21,0x20,0x20,0x00 - -, -/* @1697 (15x15,V)@ [suki software]*/ -0x28,0xc9,0x0e,0x88,0x68,0x80,0x48,0x2c,0xca,0x89,0x98,0xac,0x58,0x00,0x00 - -, -0x08,0x09,0x08,0x07,0x04,0x20,0x22,0x11,0x16,0x08,0x16,0x11,0x20,0x20,0x00 - -, -/* @1698 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x00,0x48,0x2c,0xda,0x89,0x88,0x9a,0xac,0x48,0x00,0x00 - -, -0x02,0x3e,0x01,0x00,0x24,0x22,0x21,0x12,0x14,0x08,0x16,0x11,0x20,0x20,0x00 - -, -/* @1699 (15x15,V)@ [suki software]*/ -0x08,0x4a,0xca,0x7e,0x4a,0x4a,0x7f,0x0a,0x08,0xfe,0x02,0x72,0x8f,0x02,0x00 - -, -0x04,0x02,0x3f,0x11,0x11,0x11,0x3f,0x00,0x00,0x3f,0x04,0x08,0x08,0x07,0x00 - -, -/* @1700 (15x15,V)@ [suki software]*/ -0x02,0xfa,0x82,0x82,0xbe,0x00,0x48,0xac,0xda,0x89,0x88,0x9a,0x2c,0x48,0x00 - -, -0x04,0x04,0x12,0x22,0x1f,0x24,0x22,0x11,0x16,0x08,0x14,0x13,0x20,0x20,0x00 - -, -/* @1701 (15x15,V)@ [suki software]*/ -0xfc,0x04,0x04,0xfc,0x00,0x4c,0x24,0xbc,0x55,0x56,0xb4,0x14,0x0c,0x00,0x00 - -, -0x03,0x01,0x01,0x01,0x02,0x02,0x3f,0x12,0x12,0x12,0x12,0x3f,0x01,0x01,0x00 - -, -/* @1702 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0xfc,0x08,0x08,0xff,0x08,0xf8,0x00,0xfc,0x04,0x04,0xfc,0x00 - -, -0x00,0x07,0x22,0x17,0x08,0x06,0x09,0x10,0x0f,0x00,0x1f,0x08,0x08,0x1f,0x00 - -, -/* @1703 (15x15,V)@ [suki software]*/ -0x40,0x40,0x40,0x40,0x40,0x40,0xff,0x44,0x44,0x44,0x46,0x44,0x60,0x40,0x00 - -, -0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x01,0x01,0x02,0x02,0x06,0x00,0x00,0x00 - -, -/* @1704 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0x04,0xfc,0x10,0x08,0x8f,0x54,0x24,0x54,0x8e,0x04,0x00,0x00 - -, -0x00,0x03,0x01,0x01,0x03,0x01,0x3f,0x11,0x11,0x11,0x11,0x3f,0x01,0x01,0x00 - -, -/* @1705 (15x15,V)@ [suki software]*/ -0x40,0x42,0x42,0x42,0xfe,0x42,0x42,0x42,0x42,0xfe,0x42,0x43,0x62,0x40,0x00 - -, -0x20,0x20,0x10,0x08,0x07,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00 - -, -/* @1706 (15x15,V)@ [suki software]*/ -0x08,0x08,0xff,0x88,0x48,0x00,0x7f,0x44,0xa4,0x00,0x3f,0x48,0x44,0x76,0x00 - -, -0x11,0x21,0x1f,0x00,0x00,0x00,0x3f,0x15,0x15,0x15,0x15,0x3f,0x00,0x00,0x00 - -, -/* @1707 (15x15,V)@ [suki software]*/ -0x08,0xc8,0xff,0x28,0xc8,0x00,0x7f,0x24,0xa4,0x00,0x7f,0x48,0x44,0x70,0x00 - -, -0x03,0x00,0x3f,0x00,0x00,0x00,0x3f,0x15,0x15,0x15,0x15,0x3f,0x00,0x00,0x00 - -, -/* @1708 (15x15,V)@ [suki software]*/ -0x40,0x5e,0x50,0x5f,0x50,0xd0,0x1e,0x00,0xfe,0x02,0x02,0xfe,0x00,0x00,0x00 - -, -0x00,0x1f,0x11,0x09,0x29,0x15,0x08,0x04,0x03,0x00,0x00,0x3f,0x20,0x38,0x00 - -, -/* @1709 (15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x08,0xfe,0x52,0x52,0xfe,0x40,0x7a,0xc2,0x7e,0x43,0x42,0x00 - -, -0x00,0x00,0x3f,0x00,0x1f,0x08,0x24,0x16,0x08,0x06,0x01,0x1f,0x20,0x3c,0x00 - -, -/* @1710 (15x15,V)@ [suki software]*/ -0x40,0x42,0x42,0x42,0xfe,0x42,0x42,0x40,0x00,0xfc,0x00,0x00,0xff,0x00,0x00 - -, -0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x03,0x10,0x20,0x1f,0x00,0x00 - -, -/* @1711 (15x15,V)@ [suki software]*/ -0x20,0x20,0xff,0x20,0x24,0x04,0x04,0xff,0x54,0x54,0x54,0xff,0x04,0x04,0x00 - -, -0x08,0x08,0x07,0x04,0x05,0x01,0x3f,0x29,0x25,0x21,0x21,0x25,0x29,0x21,0x00 - -, -/* @1712 (15x15,V)@ [suki software]*/ -0x04,0x04,0xff,0x54,0x54,0xff,0x04,0x14,0x10,0xff,0x10,0x10,0xf8,0x10,0x00 - -, -0x01,0x1f,0x15,0x13,0x11,0x13,0x15,0x21,0x18,0x07,0x10,0x20,0x1f,0x00,0x00 - -, -/* @1713 (15x15,V)@ [suki software]*/ -0x10,0x10,0x10,0xff,0x10,0x10,0x20,0x18,0xef,0x08,0x08,0x28,0x18,0x00,0x00 - -, -0x04,0x0c,0x04,0x23,0x22,0x12,0x08,0x06,0x01,0x02,0x04,0x18,0x30,0x10,0x00 - -, -/* @1714 (15x15,V)@ [suki software]*/ -0x04,0x84,0xfc,0x24,0x24,0xe4,0x04,0x30,0x0f,0xe8,0x08,0x28,0x1c,0x08,0x00 - -, -0x01,0x00,0x1f,0x08,0x08,0x2f,0x10,0x08,0x06,0x01,0x06,0x08,0x30,0x10,0x00 - -, -/* @1715 (15x15,V)@ [suki software]*/ -0x20,0x22,0x2a,0xaa,0xea,0xba,0xae,0xaa,0xaa,0xa9,0xa9,0x29,0x20,0x20,0x00 - -, -0x04,0x02,0x01,0x00,0x3f,0x2a,0x2a,0x2a,0x2a,0x2a,0x3f,0x00,0x00,0x00,0x00 - -, -/* @1716 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfc,0x54,0x54,0x54,0x55,0xfe,0x54,0x54,0x54,0xf4,0x46,0x44,0x00 - -, -0x20,0x18,0x07,0x11,0x0b,0x15,0x25,0x1f,0x03,0x05,0x09,0x15,0x32,0x10,0x00 - -, -/* @1717 (15x15,V)@ [suki software]*/ -0x38,0x00,0xff,0x08,0x10,0xfc,0x44,0x54,0x55,0xfe,0x54,0xf4,0x46,0x44,0x00 - -, -0x00,0x00,0x3f,0x00,0x30,0x0f,0x10,0x0b,0x25,0x3f,0x03,0x05,0x0a,0x10,0x00 - -, -/* @1718 (15x15,V)@ [suki software]*/ -0x24,0xa8,0xff,0xa8,0x24,0x00,0xfe,0xaa,0xaa,0xff,0xaa,0xaa,0xfa,0x22,0x00 - -, -0x06,0x01,0x3f,0x20,0x11,0x0c,0x13,0x0a,0x24,0x3f,0x04,0x0a,0x12,0x11,0x00 - -, -/* @1719 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x40,0x04,0x04,0x04,0xfc,0x04,0x06,0x04,0x00,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x10,0x10,0x10,0x10,0x1f,0x10,0x10,0x18,0x10,0x00 - -, -/* @1720 (15x15,V)@ [suki software]*/ -0x08,0x08,0xff,0x88,0x48,0x00,0x08,0xe8,0x29,0x2e,0xe8,0x08,0x0c,0x08,0x00 - -, -0x11,0x21,0x1f,0x00,0x20,0x10,0x08,0x07,0x00,0x00,0x1f,0x20,0x20,0x38,0x00 - -, -/* @1721 (15x15,V)@ [suki software]*/ -0x08,0x08,0x08,0x08,0xc8,0x48,0x49,0x4e,0x48,0xe8,0x48,0x08,0x0c,0x08,0x00 - -, -0x20,0x20,0x10,0x08,0x07,0x00,0x00,0x00,0x00,0x1f,0x20,0x20,0x20,0x3c,0x00 - -, -/* @1722 (15x15,V)@ [suki software]*/ -0x40,0x30,0x00,0xff,0x10,0x08,0x08,0xc9,0x4e,0x48,0xe8,0x48,0x0c,0x08,0x00 - -, -0x20,0x10,0x0c,0x03,0x24,0x18,0x08,0x07,0x00,0x00,0x1f,0x20,0x20,0x38,0x00 - -, -/* @1723 (15x15,V)@ [suki software]*/ -0x20,0x20,0x24,0x24,0x24,0xa4,0xff,0xa4,0xb4,0xa8,0xa6,0xa0,0xb0,0x20,0x00 - -, -0x02,0x02,0x02,0x01,0x01,0x00,0x02,0x13,0x22,0x22,0x12,0x0e,0x00,0x00,0x00 - -, -/* @1724 (15x15,V)@ [suki software]*/ -0x08,0x08,0xff,0x88,0x48,0x20,0xa4,0xa4,0xff,0xb4,0xa8,0xa6,0xa0,0x20,0x00 - -, -0x11,0x21,0x1f,0x00,0x02,0x01,0x00,0x02,0x13,0x22,0x22,0x12,0x0e,0x00,0x00 - -, -/* @1725 (15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x20,0x10,0x24,0xa4,0xff,0xa4,0xb4,0xa8,0xa6,0xb0,0x20,0x00 - -, -0x20,0x18,0x07,0x02,0x04,0x09,0x00,0x02,0x13,0x22,0x22,0x12,0x0e,0x00,0x00 - -, -/* @1726 (15x15,V)@ [suki software]*/ -0x08,0x08,0x0c,0xeb,0xaa,0xaa,0xaa,0xaf,0xaa,0xaa,0xea,0x0a,0x08,0x08,0x00 - -, -0x08,0x0a,0x0a,0x0a,0x0a,0x3f,0x00,0x00,0x3f,0x0a,0x0a,0x0a,0x0a,0x08,0x00 - -, -/* @1727 (15x15,V)@ [suki software]*/ -0x10,0x10,0xff,0x10,0x10,0x02,0xf2,0x12,0x12,0xf2,0x02,0xfe,0x03,0x02,0x00 - -, -0x04,0x0c,0x07,0x02,0x02,0x00,0x07,0x02,0x02,0x17,0x20,0x1f,0x00,0x00,0x00 - -, -/* @1728 (15x15,V)@ [suki software]*/ -0x24,0x24,0x24,0xa4,0xaf,0xa4,0xa4,0xa4,0x24,0x2f,0x24,0xe4,0x36,0x24,0x00 - -, -0x00,0x00,0x00,0x0f,0x04,0x04,0x04,0x0f,0x00,0x10,0x20,0x1f,0x00,0x00,0x00 - -, -/* @1729 (15x15,V)@ [suki software]*/ -0x10,0x90,0xff,0x50,0x90,0x02,0xf2,0x12,0x12,0xf2,0x02,0xfe,0x03,0x02,0x00 - -, -0x06,0x01,0x3f,0x00,0x01,0x00,0x07,0x02,0x02,0x13,0x20,0x1f,0x00,0x00,0x00 - -, -/* @1730 (15x15,V)@ [suki software]*/ -0x08,0x88,0xff,0x48,0x88,0x00,0x7e,0x4a,0x4a,0xfe,0x4a,0x4a,0x7f,0x02,0x00 - -, -0x06,0x01,0x3f,0x00,0x10,0x11,0x09,0x05,0x03,0x3f,0x03,0x05,0x09,0x11,0x00 - -, -/* @1731 (15x15,V)@ [suki software]*/ -0x84,0xe4,0x5c,0x46,0xc4,0x10,0x94,0xd4,0xb4,0x9f,0xb4,0xd4,0x94,0x10,0x00 - -, -0x00,0x1f,0x08,0x08,0x2f,0x20,0x3e,0x22,0x3e,0x22,0x3e,0x22,0x3e,0x20,0x00 - -, -/* @1732 (15x15,V)@ [suki software]*/ -0x80,0xbe,0xaa,0xfe,0xaa,0xbe,0x80,0xfa,0x0a,0x0e,0xea,0x0a,0xfb,0x02,0x00 - -, -0x08,0x04,0x02,0x3f,0x02,0x04,0x28,0x27,0x10,0x08,0x07,0x08,0x17,0x30,0x00 - -, -/* @1733 (15x15,V)@ [suki software]*/ -0x14,0x14,0x94,0xfe,0x93,0x12,0x00,0x20,0xc4,0x18,0x00,0xff,0x00,0x00,0x00 - -, -0x04,0x03,0x00,0x3f,0x00,0x01,0x02,0x02,0x02,0x02,0x02,0x3f,0x01,0x01,0x00 - -, -/* @1734 (15x15,V)@ [suki software]*/ -0x00,0xc4,0x54,0x54,0x54,0x54,0x5f,0x54,0x54,0x54,0x54,0x56,0xc4,0x00,0x00 - -, -0x01,0x20,0x20,0x10,0x0f,0x01,0x01,0x01,0x1f,0x20,0x20,0x21,0x20,0x38,0x00 - -, -/* @1735 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0x04,0xfc,0x04,0x44,0x64,0x5d,0xc6,0x44,0x24,0x86,0x04,0x00 - -, -0x00,0x07,0x01,0x01,0x23,0x24,0x24,0x12,0x09,0x04,0x06,0x09,0x30,0x00,0x00 - -, -/* @1736 (15x15,V)@ [suki software]*/ -0x02,0x02,0xf2,0x12,0x12,0x12,0xf2,0x02,0x02,0x02,0xfe,0x02,0x03,0x02,0x00 - -, -0x00,0x00,0x07,0x02,0x02,0x02,0x07,0x00,0x10,0x20,0x1f,0x00,0x00,0x00,0x00 - -, -/* @1737 (15x15,V)@ [suki software]*/ -0x10,0x61,0x82,0x66,0x00,0x80,0x5f,0x75,0xd5,0x55,0x55,0x5f,0xc0,0x00,0x00 - -, -0x02,0x3e,0x01,0x00,0x01,0x0f,0x08,0x0a,0x09,0x0a,0x28,0x20,0x1f,0x00,0x00 - -, -/* @1738 (15x15,V)@ [suki software]*/ -0x04,0x04,0x04,0xf4,0x14,0x14,0x1f,0x14,0x14,0x14,0xf4,0x04,0x06,0x04,0x00 - -, -0x00,0x20,0x20,0x23,0x11,0x0f,0x01,0x01,0x1f,0x21,0x23,0x20,0x20,0x3c,0x00 - -, -/* @1739 (15x15,V)@ [suki software]*/ -0x04,0x44,0x64,0x55,0xce,0x44,0x34,0x84,0x04,0x00,0xfc,0x00,0xff,0x00,0x00 - -, -0x00,0x14,0x12,0x09,0x04,0x02,0x05,0x18,0x00,0x00,0x13,0x20,0x1f,0x00,0x00 - -, -/* @1740 (15x15,V)@ [suki software]*/ -0x10,0x0c,0x44,0x24,0x14,0x3c,0xd5,0x96,0xd4,0x34,0x04,0x14,0x0c,0x00,0x00 - -, -0x04,0x04,0x04,0x02,0x3e,0x23,0x22,0x22,0x22,0x23,0x3e,0x02,0x02,0x02,0x00 - -, -/* @1741 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x00,0x7e,0x4a,0x4a,0xfe,0x4a,0x4a,0x7f,0x02,0x00,0x00 - -, -0x00,0x00,0x1f,0x08,0x15,0x09,0x05,0x03,0x3f,0x03,0x05,0x09,0x11,0x11,0x00 - -, -/* @1742 (15x15,V)@ [suki software]*/ -0x10,0x10,0x10,0xde,0x50,0x50,0x50,0x5f,0x54,0x54,0xd4,0x14,0x10,0x10,0x00 - -, -0x00,0x00,0x00,0x3f,0x05,0x05,0x05,0x05,0x15,0x25,0x1f,0x00,0x00,0x00,0x00 - -, -/* @1743 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0x04,0xfc,0x10,0xde,0x50,0x50,0x5f,0x54,0xd4,0x14,0x10,0x00 - -, -0x00,0x07,0x01,0x01,0x03,0x00,0x3f,0x05,0x05,0x15,0x25,0x1f,0x00,0x00,0x00 - -, -/* @1744 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x2a,0x2a,0x2a,0x6a,0xaa,0x2a,0x2a,0xbf,0x42,0x00,0x00,0x00 - -, -0x20,0x28,0x2b,0x2a,0x29,0x29,0x3e,0x28,0x29,0x29,0x2a,0x2a,0x2a,0x22,0x00 - -, -/* @1745 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0xff,0x15,0x95,0xb5,0x55,0x95,0x55,0x5f,0x20,0x00,0x00,0x00 - -, -0x00,0x10,0x0c,0x01,0x1d,0x20,0x22,0x2c,0x20,0x21,0x39,0x02,0x1a,0x02,0x00 - -, -/* @1746 (15x15,V)@ [suki software]*/ -0x10,0x10,0xff,0x10,0x10,0x08,0xe8,0x29,0x2e,0x28,0xe8,0x0c,0x08,0x00,0x00 - -, -0x04,0x0c,0x07,0x22,0x12,0x08,0x07,0x00,0x00,0x00,0x1f,0x20,0x20,0x3c,0x00 - -, -/* @1747 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0x04,0xfc,0x08,0xe8,0x29,0x2e,0x28,0xe8,0x08,0x0c,0x08,0x00 - -, -0x00,0x07,0x01,0x21,0x13,0x08,0x07,0x00,0x00,0x00,0x1f,0x20,0x20,0x3c,0x00 - -, -/* @1748 (15x15,V)@ [suki software]*/ -0x00,0x90,0x8c,0x44,0xa4,0x94,0x85,0x86,0x84,0x94,0xa4,0x44,0xd4,0x0c,0x00 - -, -0x00,0x20,0x20,0x20,0x20,0x20,0x20,0x3f,0x20,0x20,0x20,0x20,0x20,0x20,0x00 - -, -/* @1749 (15x15,V)@ [suki software]*/ -0x44,0x44,0x44,0x3c,0xa4,0x40,0x3e,0x12,0x62,0x02,0x7f,0x82,0x80,0xe0,0x00 - -, -0x10,0x0c,0x00,0x01,0x1e,0x20,0x21,0x26,0x20,0x20,0x3a,0x04,0x08,0x00,0x00 - -, -/* @1750 (15x15,V)@ [suki software]*/ -0x02,0x02,0x82,0x82,0xfa,0x46,0x22,0x00,0xff,0x00,0x00,0x00,0x00,0x00,0x00 - -, -0x01,0x01,0x10,0x20,0x1f,0x00,0x00,0x00,0x1f,0x20,0x20,0x20,0x20,0x3c,0x00 - -, -/* @1751 (15x15,V)@ [suki software]*/ -0x08,0x08,0xff,0x88,0x48,0x90,0x4c,0x34,0x05,0x06,0x14,0x24,0x54,0x0c,0x00 - -, -0x11,0x21,0x1f,0x00,0x00,0x20,0x21,0x21,0x21,0x3f,0x21,0x21,0x31,0x20,0x00 - -, -/* @1752 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x48,0xfe,0x02,0x12,0x22,0xc2,0x22,0x1b,0x02,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x00,0x3f,0x14,0x12,0x11,0x10,0x11,0x16,0x10,0x00 - -, -/* @1753 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfc,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0xfe,0x04,0x00,0x00 - -, -0x00,0x00,0x1f,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x1f,0x00,0x00,0x00 - -, -/* @1754 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x48,0x00,0xf8,0x08,0x08,0x08,0x08,0xfc,0x08,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x08,0x1f,0x00,0x00 - -, -/* @1755 (15x15,V)@ [suki software]*/ -0x90,0x8c,0x94,0x94,0x94,0x94,0x95,0x86,0x84,0xf4,0xa4,0xa4,0xac,0x00,0x00 - -, -0x20,0x10,0x0f,0x00,0x00,0x1f,0x20,0x28,0x25,0x22,0x22,0x25,0x20,0x38,0x00 - -, -/* @1756 (15x15,V)@ [suki software]*/ -0x10,0x90,0x50,0xff,0x50,0x90,0x08,0x88,0x88,0xff,0x88,0x88,0x8c,0x08,0x00 - -, -0x02,0x01,0x00,0x3f,0x00,0x00,0x00,0x3f,0x10,0x10,0x10,0x10,0x3f,0x00,0x00 - -, -/* @1757 (15x15,V)@ [suki software]*/ -0x00,0x00,0x3e,0x12,0x12,0x3e,0xc0,0x00,0x3e,0x52,0x92,0x3f,0x02,0x00,0x00 - -, -0x20,0x21,0x21,0x11,0x09,0x07,0x01,0x03,0x05,0x09,0x09,0x11,0x31,0x11,0x00 - -, -/* @1758 (15x15,V)@ [suki software]*/ -0x00,0x0c,0xe4,0xb4,0xac,0xa4,0xa5,0xa6,0xa4,0xac,0xb4,0xe4,0x0c,0x00,0x00 - -, -0x20,0x18,0x07,0x38,0x27,0x24,0x24,0x3f,0x24,0x24,0x24,0x27,0x38,0x00,0x00 - -, -/* @1759 (15x15,V)@ [suki software]*/ -0x44,0x44,0x44,0x44,0x4f,0x44,0xf4,0x44,0x4f,0x44,0x44,0x66,0x44,0x00,0x00 - -, -0x00,0x00,0x3f,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x3f,0x00,0x00,0x00,0x00 - -, -/* @1760 (15x15,V)@ [suki software]*/ -0x02,0xf2,0xfe,0x12,0xfe,0x12,0xf2,0x50,0x4e,0x48,0x7f,0x48,0x48,0x48,0x00 - -, -0x00,0x3f,0x14,0x14,0x14,0x15,0x3f,0x00,0x3f,0x11,0x11,0x11,0x3f,0x00,0x00 - -, -/* @1761 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0x14,0x94,0xd4,0xbd,0x96,0xd4,0x94,0x94,0x94,0x96,0x04,0x00 - -, -0x30,0x0f,0x00,0x04,0x04,0x04,0x04,0x04,0x3f,0x04,0x04,0x04,0x04,0x04,0x00 - -, -/* @1762 (15x15,V)@ [suki software]*/ -0x08,0x89,0xee,0x98,0x40,0x00,0xfc,0x14,0xd5,0xbe,0xd4,0x94,0x94,0x94,0x00 - -, -0x01,0x00,0x3f,0x00,0x23,0x18,0x07,0x04,0x04,0x04,0x3f,0x04,0x04,0x04,0x00 - -, -/* @1763 (15x15,V)@ [suki software]*/ -0x40,0x44,0xa4,0xa4,0x94,0xac,0xa7,0xa4,0xac,0x94,0xa4,0xa6,0x44,0x40,0x00 - -, -0x00,0x00,0x00,0x00,0x02,0x03,0x12,0x22,0x22,0x12,0x0e,0x00,0x00,0x00,0x00 - -, -/* @1764 (15x15,V)@ [suki software]*/ -0x10,0x10,0xff,0x10,0x50,0xa4,0x94,0xac,0xa7,0xac,0x94,0xa4,0x46,0x44,0x00 - -, -0x04,0x0c,0x07,0x02,0x02,0x00,0x02,0x03,0x12,0x22,0x12,0x0e,0x00,0x00,0x00 - -, -/* @1765 (15x15,V)@ [suki software]*/ -0x08,0x08,0xff,0x88,0x48,0xa4,0x94,0xac,0xa7,0xac,0x94,0xa4,0x44,0x40,0x00 - -, -0x11,0x21,0x1f,0x00,0x00,0x00,0x02,0x03,0x12,0x22,0x12,0x0e,0x00,0x00,0x00 - -, -/* @1766 (15x15,V)@ [suki software]*/ -0x00,0xbe,0x22,0xe2,0x3e,0x44,0xa4,0x94,0xac,0xa7,0xac,0x94,0xa6,0x44,0x00 - -, -0x10,0x1f,0x10,0x0f,0x09,0x09,0x00,0x02,0x13,0x22,0x12,0x0e,0x00,0x00,0x00 - -, -/* @1767 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x12,0x12,0xfe,0x44,0xa4,0x94,0xac,0xa7,0xac,0x94,0xa6,0x44,0x00 - -, -0x30,0x0f,0x11,0x21,0x1f,0x00,0x00,0x03,0x12,0x22,0x12,0x0e,0x00,0x00,0x00 - -, -/* @1768 (15x15,V)@ [suki software]*/ -0x10,0x10,0xff,0x10,0x10,0x10,0x08,0x08,0xff,0x08,0x08,0xfc,0x08,0x00,0x00 - -, -0x04,0x0c,0x07,0x22,0x22,0x11,0x09,0x07,0x01,0x03,0x05,0x09,0x31,0x11,0x00 - -, -/* @1769 (15x15,V)@ [suki software]*/ -0xd0,0x08,0xf7,0x44,0x8c,0x24,0x28,0x24,0xf7,0x24,0x2c,0xf4,0x06,0x04,0x00 - -, -0x01,0x00,0x3f,0x00,0x22,0x22,0x12,0x0e,0x03,0x06,0x0a,0x13,0x32,0x12,0x00 - -, -/* @1770 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x20,0x10,0x28,0x24,0x23,0x24,0x28,0x10,0x20,0x20,0x00 - -, -0x00,0x00,0x3f,0x00,0x01,0x31,0x19,0x15,0x13,0x11,0x15,0x19,0x31,0x01,0x00 - -, -/* @1771 (15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x08,0xb0,0x88,0x88,0x88,0xff,0x88,0x88,0xfc,0x88,0x80,0x00 - -, -0x00,0x00,0x3f,0x00,0x20,0x10,0x08,0x06,0x01,0x06,0x08,0x10,0x30,0x10,0x00 - -, -/* @1772 (15x15,V)@ [suki software]*/ -0x10,0x0c,0x14,0xd4,0x54,0x7c,0x55,0x56,0x54,0x7c,0xd4,0x14,0x0c,0x00,0x00 - -, -0x00,0x20,0x20,0x27,0x10,0x08,0x07,0x1c,0x20,0x20,0x27,0x20,0x3c,0x00,0x00 - -, -/* @1773 (15x15,V)@ [suki software]*/ -0x04,0x54,0x54,0x5f,0x54,0x54,0x04,0x30,0x0f,0xe8,0x08,0x28,0x18,0x00,0x00 - -, -0x11,0x0d,0x21,0x3f,0x01,0x05,0x29,0x10,0x0c,0x03,0x04,0x08,0x30,0x10,0x00 - -, -/* @1774 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0x0a,0x8a,0x8a,0x8a,0xfa,0x8a,0x8a,0x8a,0x0b,0x02,0x00,0x00 - -, -0x00,0x3f,0x20,0x24,0x24,0x24,0x24,0x27,0x24,0x24,0x24,0x24,0x34,0x20,0x00 - -, -/* @1775 (15x15,V)@ [suki software]*/ -0x10,0x08,0xe4,0x27,0xac,0xa4,0xb4,0xa8,0xa4,0xa7,0xac,0xb4,0x26,0x04,0x00 - -, -0x00,0x00,0x3f,0x20,0x28,0x2a,0x2a,0x2f,0x2a,0x2a,0x2a,0x28,0x28,0x00,0x00 - -, -/* @1776 (15x15,V)@ [suki software]*/ -0x00,0x22,0x14,0x88,0xf4,0x03,0x84,0x84,0x84,0xfc,0x84,0x84,0x86,0x04,0x00 - -, -0x04,0x12,0x21,0x10,0x0f,0x10,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x10,0x00 - -, -/* @1777 (15x15,V)@ [suki software]*/ -0x08,0xc8,0xff,0x48,0x88,0x00,0xfe,0x02,0x4a,0x4a,0xfa,0x4a,0x4b,0x02,0x00 - -, -0x03,0x00,0x3f,0x00,0x00,0x00,0x3f,0x14,0x14,0x14,0x17,0x14,0x16,0x14,0x00 - -, -/* @1778 (15x15,V)@ [suki software]*/ -0x84,0x44,0xf4,0x4c,0x44,0xc4,0x00,0xfc,0x04,0x05,0x06,0x04,0x04,0x04,0x00 - -, -0x00,0x00,0x1f,0x08,0x08,0x2f,0x10,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00 - -, -/* @1779 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x22,0x22,0xfe,0x00,0xfe,0x12,0x92,0xf2,0x92,0x9a,0x13,0x02,0x00 - -, -0x00,0x1f,0x09,0x09,0x1f,0x00,0x3f,0x14,0x14,0x17,0x14,0x14,0x14,0x10,0x00 - -, -/* @1780 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x44,0x44,0xfc,0x00,0xf8,0x08,0x08,0x09,0x0e,0x08,0x08,0x08,0x00 - -, -0x00,0x0f,0x04,0x04,0x27,0x18,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 - -, -/* @1781 (15x15,V)@ [suki software]*/ -0x02,0x04,0x8c,0x60,0x00,0x7e,0x42,0xc2,0x42,0xc2,0x42,0x7f,0x02,0x00,0x00 - -, -0x01,0x1f,0x20,0x20,0x10,0x08,0x04,0x03,0x00,0x1f,0x20,0x20,0x20,0x3c,0x00 - -, -/* @1782 (15x15,V)@ [suki software]*/ -0x10,0x10,0x12,0x12,0xd2,0xb2,0x92,0x92,0x92,0x92,0x93,0x12,0x18,0x10,0x00 - -, -0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x20,0x20,0x10,0x0f,0x00,0x00,0x00,0x00 - -, -/* @1783 (15x15,V)@ [suki software]*/ -0x80,0x84,0x44,0x24,0x1c,0xa7,0x54,0x24,0x1c,0x24,0x54,0x86,0x84,0x80,0x00 - -, -0x20,0x20,0x20,0x3e,0x23,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3e,0x21,0x20,0x00 - -, -/* @1784 (15x15,V)@ [suki software]*/ -0x00,0x00,0xce,0x08,0xe8,0x08,0x48,0x4f,0x48,0x48,0x48,0x4e,0xc0,0x00,0x00 - -, -0x00,0x20,0x27,0x10,0x0f,0x00,0x10,0x12,0x12,0x12,0x12,0x12,0x3f,0x00,0x00 - -, -/* @1785 (15x15,V)@ [suki software]*/ -0x00,0x56,0x52,0xea,0x46,0x42,0x03,0xe2,0x26,0xaa,0x2a,0xf2,0x06,0x00,0x00 - -, -0x21,0x11,0x09,0x07,0x09,0x11,0x20,0x17,0x08,0x07,0x18,0x27,0x20,0x38,0x00 - -, -/* @1786 (15x15,V)@ [suki software]*/ -0x04,0x14,0x54,0x94,0x54,0xbf,0x94,0x84,0xb4,0x4f,0xa4,0x54,0x26,0x04,0x00 - -, -0x02,0x22,0x25,0x24,0x14,0x14,0x0c,0x07,0x0c,0x14,0x14,0x25,0x03,0x01,0x00 - -, -/* @1787 (15x15,V)@ [suki software]*/ -0x44,0x44,0x24,0x24,0x54,0x4c,0x47,0xf4,0x4c,0x54,0x14,0x24,0x66,0x24,0x00 - -, -0x00,0x21,0x21,0x25,0x25,0x25,0x25,0x3f,0x25,0x25,0x25,0x25,0x31,0x20,0x00 - -, -/* @1788 (15x15,V)@ [suki software]*/ -0x00,0x7c,0x54,0xfe,0x55,0x54,0x7c,0x00,0x24,0x48,0x00,0xff,0x80,0x80,0x00 - -, -0x20,0x18,0x06,0x01,0x1f,0x24,0x27,0x25,0x21,0x21,0x21,0x2f,0x20,0x38,0x00 - -, -/* @1789 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x00,0xfc,0xa4,0xa6,0xfd,0xa4,0xa4,0xfe,0x04,0x00,0x00 - -, -0x00,0x00,0x3f,0x00,0x20,0x10,0x08,0x04,0x03,0x1e,0x28,0x2e,0x28,0x38,0x00 - -, -}, -//************************************** -{ -/* @1790 (15x15,V)@ [suki software]*/ -0x20,0x18,0xef,0x08,0x18,0x20,0xae,0xaa,0xaa,0xbf,0xaa,0xaa,0xae,0x20,0x00 - -, -0x00,0x00,0x1f,0x08,0x24,0x20,0x2f,0x10,0x08,0x07,0x08,0x10,0x2f,0x20,0x00 - -, -/* @1791 (15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x08,0x10,0xfc,0xa4,0xa6,0xfd,0xa4,0xa4,0xfe,0x04,0x00,0x00 - -, -0x00,0x00,0x3f,0x00,0x20,0x10,0x08,0x06,0x01,0x1e,0x2c,0x2a,0x24,0x38,0x00 - -, -/* @1792 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x20,0xae,0xaa,0xaa,0xbf,0xaa,0xaa,0xae,0x20,0x20,0x00 - -, -0x02,0x3e,0x01,0x00,0x20,0x27,0x10,0x08,0x07,0x08,0x08,0x17,0x30,0x00,0x00 - -, -/* @1793 (15x15,V)@ [suki software]*/ -0x10,0x10,0xff,0x10,0x10,0x00,0xf8,0x48,0x48,0xff,0x48,0x48,0xfc,0x08,0x00 - -, -0x04,0x0c,0x07,0x02,0x02,0x00,0x03,0x02,0x02,0x3f,0x02,0x02,0x03,0x00,0x00 - -, -/* @1794 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x4a,0x4a,0x4a,0x4a,0xca,0x4a,0x4a,0x7f,0x02,0x00,0x00,0x00 - -, -0x00,0x00,0x3f,0x22,0x12,0x12,0x00,0x1f,0x24,0x22,0x22,0x21,0x21,0x3c,0x00 - -, -/* @1795 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x48,0xfe,0x12,0x92,0xfe,0x92,0x12,0xff,0x02,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x00,0x3f,0x11,0x10,0x17,0x10,0x11,0x3f,0x00,0x00 - -, -/* @1796 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0x12,0x12,0x92,0x52,0xfe,0x52,0x92,0x12,0x02,0xff,0x02,0x00 - -, -0x00,0x3f,0x10,0x12,0x11,0x10,0x10,0x1f,0x10,0x10,0x11,0x12,0x3f,0x00,0x00 - -, -/* @1797 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x28,0x24,0x24,0x24,0xfc,0x22,0x23,0xb2,0x20,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x00,0x3f,0x11,0x11,0x11,0x11,0x11,0x3f,0x01,0x00 - -, -/* @1798 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x00,0xf8,0x08,0x08,0x09,0x0e,0x08,0x08,0x08,0x00 - -, -0x01,0x11,0x20,0x1f,0x20,0x10,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 - -, -/* @1799 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0x14,0x74,0x5c,0x55,0x76,0x14,0xf4,0x14,0xd4,0x36,0x04,0x00 - -, -0x30,0x0f,0x00,0x09,0x29,0x3d,0x07,0x05,0x00,0x3f,0x04,0x08,0x07,0x00,0x00 - -, -/* @1800 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x21,0x4a,0x90,0x02,0x52,0x52,0xf2,0x4a,0x4a,0x02,0xff,0x02,0x00 - -, -0x00,0x3f,0x02,0x1e,0x01,0x00,0x0f,0x09,0x09,0x09,0x0f,0x20,0x3f,0x00,0x00 - -, -/* @1801 (15x15,V)@ [suki software]*/ -0x10,0x10,0xff,0x10,0x10,0x08,0x68,0x88,0x09,0x0e,0x08,0xe8,0x0c,0x08,0x00 - -, -0x04,0x0c,0x07,0x04,0x02,0x12,0x10,0x17,0x10,0x18,0x17,0x10,0x10,0x10,0x00 - -, -/* @1802 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x40,0x08,0xe8,0x09,0x0e,0x08,0xe8,0x08,0x08,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x10,0x10,0x10,0x17,0x10,0x1e,0x11,0x10,0x10,0x00 - -, -/* @1803 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0xfc,0x00,0xf4,0x94,0xff,0x94,0xf4,0x00,0xf8,0x00,0xff,0x00 - -, -0x00,0x07,0x01,0x13,0x08,0x04,0x02,0x3f,0x04,0x08,0x00,0x13,0x20,0x1f,0x00 - -, -/* @1804 (15x15,V)@ [suki software]*/ -0xf8,0x08,0xff,0x08,0xf8,0x00,0x24,0xa4,0xbf,0xa4,0xa4,0xbf,0xa4,0x24,0x00 - -, -0x13,0x11,0x0f,0x09,0x0d,0x18,0x00,0x3f,0x14,0x14,0x14,0x14,0x3f,0x00,0x00 - -, -/* @1805 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x92,0x92,0xfe,0x20,0xa4,0xbf,0xa4,0xa4,0xbf,0xa4,0x24,0x20,0x00 - -, -0x30,0x0f,0x10,0x20,0x1f,0x00,0x3f,0x14,0x14,0x14,0x14,0x3f,0x00,0x00,0x00 - -, -/* @1806 (15x15,V)@ [suki software]*/ -0x44,0x54,0x65,0xc6,0x64,0x54,0x00,0xf4,0x94,0xff,0x94,0x94,0xf6,0x04,0x00 - -, -0x20,0x12,0x0a,0x07,0x02,0x12,0x08,0x05,0x02,0x3f,0x02,0x04,0x09,0x10,0x00 - -, -/* @1807 (15x15,V)@ [suki software]*/ -0xf8,0x08,0x08,0xf8,0x08,0x08,0xff,0x88,0x48,0x89,0x0e,0x08,0xe8,0x08,0x00 - -, -0x07,0x02,0x02,0x07,0x11,0x21,0x1f,0x10,0x10,0x13,0x1c,0x13,0x10,0x10,0x00 - -, -/* @1808 (15x15,V)@ [suki software]*/ -0x00,0x14,0x14,0x34,0xd4,0x1f,0x14,0xfc,0x14,0x9f,0x74,0x14,0x96,0x04,0x00 - -, -0x11,0x11,0x09,0x09,0x05,0x03,0x01,0x3f,0x03,0x05,0x09,0x09,0x11,0x11,0x00 - -, -/* @1809 (15x15,V)@ [suki software]*/ -0x40,0x44,0x44,0x54,0x64,0x44,0xff,0xc4,0x44,0x64,0x54,0x46,0x44,0x40,0x00 - -, -0x10,0x10,0x08,0x04,0x02,0x01,0x3f,0x00,0x01,0x02,0x04,0x08,0x18,0x08,0x00 - -, -/* @1810 (15x15,V)@ [suki software]*/ -0x04,0xf4,0x94,0xff,0x94,0xf4,0x04,0x10,0xfc,0x17,0xd4,0x1c,0xf4,0x00,0x00 - -, -0x10,0x0c,0x02,0x3f,0x02,0x04,0x28,0x20,0x17,0x08,0x07,0x08,0x17,0x30,0x00 - -, -/* @1811 (15x15,V)@ [suki software]*/ -0x00,0x04,0xf4,0x04,0xff,0x04,0x84,0x74,0x24,0x6f,0xa4,0x34,0x26,0x04,0x00 - -, -0x20,0x20,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3e,0x22,0x3e,0x21,0x20,0x20,0x00 - -, -/* @1812 (15x15,V)@ [suki software]*/ -0x04,0x44,0x24,0x14,0x7f,0x94,0x40,0x24,0x14,0x7f,0x0c,0x14,0x24,0x44,0x00 - -, -0x01,0x21,0x21,0x21,0x2d,0x2b,0x19,0x09,0x0d,0x13,0x11,0x21,0x21,0x01,0x00 - -, -/* @1813 (15x15,V)@ [suki software]*/ -0x08,0x88,0x48,0xff,0x48,0x90,0x10,0x12,0x1c,0x10,0x1c,0x13,0x10,0x10,0x00 - -, -0x02,0x01,0x00,0x3f,0x00,0x10,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x10,0x00 - -, -/* @1814 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x48,0x11,0x12,0x1c,0x10,0x1c,0x13,0x10,0x10,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x20,0x21,0x21,0x21,0x21,0x21,0x21,0x31,0x20,0x00 - -, -/* @1815 (15x15,V)@ [suki software]*/ -0x10,0x08,0xe7,0x04,0x0c,0xe4,0x94,0x48,0x37,0x64,0xac,0x34,0x26,0x24,0x00 - -, -0x20,0x20,0x3e,0x22,0x22,0x3f,0x22,0x22,0x3e,0x22,0x22,0x3f,0x20,0x20,0x00 - -, -/* @1816 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x01,0x0a,0xe8,0x2a,0xaa,0xfe,0xaa,0x2a,0xea,0x02,0xff,0x02,0x00 - -, -0x00,0x3f,0x00,0x10,0x09,0x05,0x03,0x1f,0x03,0x05,0x09,0x20,0x3f,0x00,0x00 - -, -/* @1817 (15x15,V)@ [suki software]*/ -0x00,0x10,0x10,0x11,0x12,0x1c,0x10,0x10,0x18,0x14,0x93,0x10,0x10,0x00,0x00 - -, -0x10,0x10,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x18,0x10,0x00 - -, -/* @1818 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x40,0xfc,0x01,0xd6,0x50,0xfa,0x52,0xd2,0x02,0xff,0x02,0x00 - -, -0x02,0x3e,0x01,0x00,0x3f,0x00,0x09,0x05,0x1f,0x05,0x09,0x20,0x3f,0x00,0x00 - -, -/* @1819 (15x15,V)@ [suki software]*/ -0x20,0x22,0xe4,0x00,0xfc,0x11,0xd2,0x50,0xfa,0x52,0xd2,0x12,0xff,0x02,0x00 - -, -0x00,0x00,0x0f,0x04,0x3f,0x10,0x09,0x05,0x1f,0x05,0x05,0x28,0x3f,0x00,0x00 - -, -/* @1820 (15x15,V)@ [suki software]*/ -0x08,0x08,0xff,0x88,0x48,0xfe,0x40,0x7f,0x50,0x48,0x47,0xd4,0x24,0x04,0x00 - -, -0x11,0x21,0x1f,0x00,0x20,0x27,0x10,0x08,0x07,0x1c,0x20,0x27,0x20,0x38,0x00 - -, -/* @1821 (15x15,V)@ [suki software]*/ -0x00,0x00,0x1e,0xc0,0x40,0x7f,0x50,0x48,0x47,0x44,0xcc,0x34,0x06,0x04,0x00 - -, -0x00,0x20,0x20,0x27,0x10,0x08,0x07,0x1c,0x20,0x20,0x23,0x20,0x20,0x38,0x00 - -, -/* @1822 (15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x08,0xf4,0x94,0xff,0x94,0xf4,0xf8,0x17,0xd4,0x1c,0xf4,0x00 - -, -0x00,0x00,0x3f,0x08,0x04,0x02,0x3f,0x04,0x28,0x17,0x08,0x07,0x08,0x37,0x00 - -, -/* @1823 (15x15,V)@ [suki software]*/ -0x20,0x38,0xa7,0x60,0x18,0x00,0xde,0x40,0x7f,0x48,0x47,0x4c,0xd4,0x04,0x00 - -, -0x09,0x1b,0x09,0x05,0x25,0x20,0x17,0x08,0x04,0x1b,0x20,0x20,0x27,0x38,0x00 - -, -/* @1824 (15x15,V)@ [suki software]*/ -0x40,0x30,0x00,0xff,0x10,0x08,0x11,0x16,0x18,0x10,0x1c,0x13,0x10,0x00,0x00 - -, -0x20,0x10,0x0c,0x03,0x04,0x28,0x21,0x21,0x21,0x21,0x21,0x21,0x31,0x20,0x00 - -, -/* @1825 (15x15,V)@ [suki software]*/ -0x10,0x22,0x84,0x60,0x00,0x7e,0x00,0x7f,0x20,0x18,0x0f,0x28,0x48,0x08,0x00 - -, -0x02,0x3e,0x01,0x20,0x20,0x3f,0x21,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x20,0x00 - -, -/* @1826 (15x15,V)@ [suki software]*/ -0x44,0x44,0xfc,0x44,0x44,0x00,0xfc,0x94,0x95,0x96,0x94,0xfe,0x04,0x00,0x00 - -, -0x10,0x10,0x0f,0x08,0x04,0x00,0x3f,0x20,0x13,0x04,0x0a,0x12,0x31,0x10,0x00 - -, -/* @1827 (15x15,V)@ [suki software]*/ -0x08,0x88,0xff,0x28,0x48,0xfc,0x95,0x96,0xfc,0x00,0xfe,0x22,0x5a,0x86,0x00 - -, -0x06,0x01,0x3f,0x00,0x00,0x0f,0x08,0x06,0x0c,0x00,0x3f,0x04,0x08,0x07,0x00 - -, -/* @1828 (15x15,V)@ [suki software]*/ -0x00,0x22,0x14,0x88,0xf4,0x02,0xfc,0xa4,0xa5,0xa6,0xa4,0xfe,0x04,0x00,0x00 - -, -0x04,0x12,0x21,0x10,0x0f,0x00,0x3f,0x10,0x0b,0x04,0x0a,0x12,0x31,0x10,0x00 - -, -/* @1829 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfc,0x04,0xf4,0x54,0x5d,0xf6,0x04,0xf4,0x14,0xd4,0x36,0x14,0x00 - -, -0x20,0x18,0x07,0x00,0x1f,0x11,0x0d,0x19,0x00,0x3f,0x04,0x08,0x09,0x06,0x00 - -, -/* @1830 (15x15,V)@ [suki software]*/ -0x00,0xfc,0xa4,0xa5,0xa6,0xa4,0xfc,0x00,0xfc,0x04,0x44,0xb4,0x0e,0x04,0x00 - -, -0x00,0x1f,0x10,0x08,0x08,0x06,0x18,0x00,0x3f,0x00,0x08,0x08,0x07,0x00,0x00 - -, -/* @1831 (15x15,V)@ [suki software]*/ -0x00,0xfc,0xa4,0xa5,0xa6,0xa4,0xfc,0x00,0xfe,0x22,0x22,0x22,0xfe,0x00,0x00 - -, -0x00,0x1f,0x10,0x08,0x06,0x2c,0x10,0x08,0x07,0x01,0x11,0x21,0x1f,0x00,0x00 - -, -/* @1832 (15x15,V)@ [suki software]*/ -0x10,0x61,0x02,0x86,0x60,0x00,0xfc,0x94,0x95,0x96,0x94,0xfe,0x04,0x00,0x00 - -, -0x02,0x02,0x3e,0x01,0x00,0x00,0x3f,0x20,0x13,0x04,0x0a,0x12,0x31,0x10,0x00 - -, -/* @1833 (15x15,V)@ [suki software]*/ -0x08,0x08,0xff,0x88,0x48,0x64,0x24,0x2f,0xe4,0x24,0x2f,0x24,0x24,0x64,0x00 - -, -0x11,0x21,0x1f,0x00,0x20,0x21,0x11,0x09,0x07,0x11,0x21,0x11,0x0f,0x00,0x00 - -, -/* @1834 (15x15,V)@ [suki software]*/ -0x04,0x64,0x24,0x24,0x24,0x2f,0xe4,0x24,0x24,0x2f,0x24,0x24,0x66,0x04,0x00 - -, -0x00,0x20,0x21,0x11,0x09,0x05,0x03,0x01,0x11,0x21,0x11,0x0f,0x00,0x00,0x00 - -, -/* @1835 (15x15,V)@ [suki software]*/ -0x10,0x0c,0x84,0x74,0x44,0x44,0x45,0xf6,0x44,0x44,0x44,0x54,0x0c,0x00,0x00 - -, -0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x3f,0x02,0x02,0x02,0x02,0x03,0x02,0x00 - -, -/* @1836 (15x15,V)@ [suki software]*/ -0x20,0x20,0x24,0x24,0x24,0x24,0x3f,0xa4,0x64,0x24,0x38,0x26,0x20,0x20,0x00 - -, -0x08,0x08,0x04,0x04,0x02,0x1f,0x25,0x24,0x22,0x22,0x21,0x20,0x3c,0x00,0x00 - -, -/* @1837 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x20,0x24,0x24,0x24,0xbf,0x64,0x34,0x28,0x26,0x20,0x00 - -, -0x00,0x00,0x3f,0x00,0x04,0x04,0x02,0x1f,0x24,0x22,0x22,0x21,0x20,0x3c,0x00 - -, -/* @1838 (15x15,V)@ [suki software]*/ -0x08,0x08,0xf8,0x0f,0x08,0xf8,0x40,0x48,0xff,0x48,0x68,0x58,0x46,0x40,0x00 - -, -0x20,0x11,0x0a,0x04,0x0a,0x11,0x02,0x01,0x1f,0x24,0x24,0x22,0x21,0x38,0x00 - -, -/* @1839 (15x15,V)@ [suki software]*/ -0x02,0xfa,0x8e,0x7a,0x8e,0x8a,0xfa,0x10,0x8c,0x57,0x24,0x54,0x8c,0x80,0x00 - -, -0x00,0x3f,0x12,0x12,0x12,0x12,0x3f,0x01,0x3f,0x11,0x11,0x11,0x3f,0x00,0x00 - -, -/* @1840 (15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x10,0x08,0x10,0x08,0x8f,0x54,0x24,0x54,0x8e,0x04,0x00,0x00 - -, -0x20,0x18,0x07,0x02,0x0c,0x01,0x3f,0x11,0x11,0x11,0x11,0x3f,0x01,0x01,0x00 - -, -/* @1841 (15x15,V)@ [suki software]*/ -0x10,0x62,0x04,0x8c,0x60,0x24,0x24,0x2f,0xe4,0x24,0x2f,0x24,0xa4,0x60,0x00 - -, -0x02,0x02,0x3f,0x00,0x20,0x11,0x09,0x07,0x11,0x21,0x11,0x0f,0x00,0x00,0x00 - -, -/* @1842 (15x15,V)@ [suki software]*/ -0x04,0xc4,0x5f,0x54,0xf4,0x5f,0xc4,0x14,0x10,0xff,0x10,0x10,0x10,0xf0,0x00 - -, -0x04,0x05,0x05,0x05,0x3f,0x05,0x25,0x14,0x08,0x07,0x10,0x20,0x10,0x0f,0x00 - -, -/* @1843 (15x15,V)@ [suki software]*/ -0x00,0x00,0x70,0x4e,0x42,0x42,0x42,0xfa,0x42,0x41,0x41,0x41,0x40,0x00,0x00 - -, -0x00,0x10,0x08,0x04,0x03,0x10,0x20,0x1f,0x00,0x01,0x02,0x04,0x18,0x00,0x00 - -, -/* @1844 (15x15,V)@ [suki software]*/ -0x20,0x18,0x4a,0x5a,0x2a,0x0a,0x7e,0x0a,0x2a,0x5a,0x4b,0x2a,0x18,0x00,0x00 - -, -0x00,0x00,0x3f,0x15,0x15,0x15,0x1f,0x15,0x15,0x15,0x15,0x3f,0x00,0x00,0x00 - -, -/* @1845 (15x15,V)@ [suki software]*/ -0x60,0x38,0xef,0x28,0x20,0x18,0xaa,0xaa,0x8a,0xbe,0x8a,0xab,0xaa,0x18,0x00 - -, -0x01,0x01,0x3f,0x11,0x09,0x00,0x3f,0x12,0x12,0x1f,0x12,0x12,0x3f,0x00,0x00 - -, -/* @1846 (15x15,V)@ [suki software]*/ -0x82,0x6a,0x2a,0xaa,0xaf,0x2a,0xfa,0x2a,0xaf,0xaa,0x2a,0xaa,0x62,0x00,0x00 - -, -0x00,0x00,0x3e,0x2a,0x2a,0x2a,0x3e,0x2a,0x2a,0x2a,0x3e,0x00,0x00,0x00,0x00 - -, -/* @1847 (15x15,V)@ [suki software]*/ -0x80,0xa2,0x92,0x8a,0xbe,0xaa,0xaa,0x2a,0xaa,0xaa,0xba,0x83,0x82,0x80,0x00 - -, -0x08,0x04,0x3e,0x13,0x12,0x3e,0x00,0x04,0x3e,0x13,0x12,0x12,0x3e,0x00,0x00 - -, -/* @1848 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0xbe,0xaa,0xea,0xaa,0xbe,0xaa,0xaa,0x6a,0x3f,0x02,0x00,0x00 - -, -0x00,0x10,0x12,0x0a,0x06,0x12,0x23,0x1e,0x02,0x06,0x0a,0x13,0x16,0x00,0x00 - -, -/* @1849 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x80,0xbe,0xaa,0xaa,0xbe,0xaa,0xaa,0xbf,0x82,0x00,0x00 - -, -0x00,0x00,0x3f,0x00,0x3f,0x12,0x1f,0x12,0x3f,0x12,0x1f,0x12,0x3f,0x00,0x00 - -, -/* @1850 (15x15,V)@ [suki software]*/ -0x00,0x80,0xc0,0xa8,0x8c,0xca,0x09,0x88,0xc8,0xaa,0x8c,0xc8,0x80,0x00,0x00 - -, -0x20,0x20,0x24,0x24,0x24,0x24,0x24,0x3f,0x24,0x24,0x24,0x24,0x30,0x20,0x00 - -, -/* @1851 (15x15,V)@ [suki software]*/ -0x08,0x88,0xff,0x48,0x40,0x1a,0xaa,0x4a,0x0a,0x7e,0x0a,0x4b,0xaa,0x18,0x00 - -, -0x11,0x20,0x1f,0x00,0x00,0x3f,0x15,0x15,0x15,0x1f,0x15,0x15,0x3f,0x00,0x00 - -, -/* @1852 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x92,0x92,0xfe,0x00,0x10,0x10,0xff,0x10,0x10,0x10,0xf8,0x10,0x00 - -, -0x30,0x0f,0x10,0x20,0x1f,0x20,0x10,0x08,0x07,0x10,0x20,0x10,0x0f,0x00,0x00 - -, -/* @1853 (15x15,V)@ [suki software]*/ -0x00,0x88,0x89,0x4a,0x2c,0x18,0x08,0x7f,0x08,0x1c,0x2a,0x49,0xc8,0x08,0x00 - -, -0x02,0x22,0x22,0x12,0x12,0x0a,0x06,0x03,0x06,0x0a,0x12,0x12,0x22,0x22,0x00 - -, -/* @1854 (15x15,V)@ [suki software]*/ -0x10,0x61,0x06,0xc0,0x30,0x00,0xfe,0x22,0x22,0x22,0x22,0x22,0xff,0x02,0x00 - -, -0x02,0x02,0x3f,0x00,0x00,0x00,0x3f,0x11,0x11,0x11,0x11,0x11,0x3f,0x00,0x00 - -, -/* @1855 (15x15,V)@ [suki software]*/ -0x08,0xc8,0xff,0x28,0xc8,0x00,0x94,0x54,0xb4,0x1f,0x34,0x54,0x94,0x10,0x00 - -, -0x03,0x00,0x3f,0x00,0x00,0x24,0x22,0x13,0x15,0x09,0x15,0x13,0x20,0x20,0x00 - -, -/* @1856 (15x15,V)@ [suki software]*/ -0x08,0x88,0xff,0x28,0xc8,0x00,0x9e,0x92,0xbe,0xd2,0x9e,0x92,0xdf,0x82,0x00 - -, -0x02,0x01,0x3f,0x00,0x20,0x10,0x08,0x04,0x13,0x22,0x22,0x1e,0x00,0x00,0x00 - -, -/* @1857 (15x15,V)@ [suki software]*/ -0x02,0x0c,0xc0,0x30,0x4c,0xa0,0x90,0x8c,0xa3,0xc4,0x88,0x90,0x20,0x20,0x00 - -, -0x01,0x1f,0x00,0x00,0x00,0x00,0x02,0x04,0x08,0x34,0x02,0x01,0x00,0x00,0x00 - -, -/* @1858 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x02,0xfa,0xaa,0xaa,0xaa,0xfa,0xaa,0xaa,0xfa,0x03,0x02,0x00 - -, -0x20,0x18,0x07,0x20,0x25,0x24,0x24,0x24,0x3f,0x24,0x24,0x25,0x34,0x20,0x00 - -, -/* @1859 (15x15,V)@ [suki software]*/ -0x00,0x4a,0x2a,0x1a,0xfe,0x29,0x49,0x88,0x00,0x3e,0x00,0x40,0x7f,0x00,0x00 - -, -0x22,0x22,0x12,0x12,0x0a,0x06,0x02,0x3f,0x02,0x06,0x0a,0x12,0x33,0x12,0x00 - -, -/* @1860 (15x15,V)@ [suki software]*/ -0x40,0x48,0x2a,0x9a,0x7e,0x19,0x29,0xc8,0x00,0x1e,0x00,0x40,0x7f,0x00,0x00 - -, -0x08,0x08,0x0a,0x09,0x09,0x09,0x09,0x3f,0x09,0x09,0x09,0x09,0x0c,0x08,0x00 - -, -/* @1861 (15x15,V)@ [suki software]*/ -0x40,0x2a,0x1a,0x7e,0x89,0x59,0x20,0x48,0xa7,0x12,0x4e,0x42,0x3e,0x00,0x00 - -, -0x04,0x02,0x12,0x11,0x0a,0x24,0x3f,0x04,0x0a,0x09,0x11,0x12,0x02,0x02,0x00 - -, -/* @1862 (15x15,V)@ [suki software]*/ -0x00,0x18,0x14,0xd3,0x16,0xb2,0x5a,0x54,0xb2,0x13,0x16,0xda,0x12,0x12,0x00 - -, -0x00,0x00,0x3c,0x05,0x15,0x1d,0x17,0x15,0x15,0x1d,0x15,0x25,0x3c,0x00,0x00 - -, -/* @1863 (15x15,V)@ [suki software]*/ -0x00,0x22,0x14,0x88,0xf7,0x00,0xfe,0x92,0x92,0xfe,0x92,0x92,0xff,0x02,0x00 - -, -0x04,0x12,0x21,0x10,0x0f,0x20,0x24,0x24,0x24,0x3f,0x24,0x24,0x24,0x20,0x00 - -, -/* @1864 (15x15,V)@ [suki software]*/ -0x04,0x04,0x04,0x7c,0x44,0x6c,0xd5,0x56,0x6c,0x44,0x44,0x7c,0x06,0x04,0x00 - -, -0x00,0x00,0x3f,0x01,0x0d,0x0b,0x09,0x09,0x0b,0x0d,0x09,0x21,0x3f,0x00,0x00 - -, -/* @1865 (15x15,V)@ [suki software]*/ -0x10,0x62,0x8c,0x60,0x04,0x74,0x44,0x6d,0xd6,0x6c,0x44,0x74,0x06,0x04,0x00 - -, -0x02,0x3e,0x01,0x00,0x3f,0x01,0x0d,0x0b,0x09,0x0d,0x09,0x21,0x3f,0x00,0x00 - -, -/* @1866 (15x15,V)@ [suki software]*/ -0x44,0x44,0xfc,0x44,0x44,0x00,0xfe,0x92,0x92,0xfe,0x92,0x92,0xff,0x02,0x00 - -, -0x08,0x18,0x0f,0x04,0x24,0x20,0x25,0x24,0x24,0x3f,0x24,0x24,0x35,0x20,0x00 - -, -/* @1867 (15x15,V)@ [suki software]*/ -0x80,0x84,0x44,0x24,0x54,0x4c,0x44,0x7f,0xcc,0x54,0x24,0x24,0x46,0x44,0x00 - -, -0x00,0x02,0x02,0x02,0x02,0x12,0x22,0x1f,0x02,0x02,0x02,0x02,0x02,0x02,0x00 - -, -/* @1868 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x92,0x92,0x92,0xfe,0x92,0x92,0x92,0xff,0x02,0x00,0x00,0x00 - -, -0x20,0x24,0x24,0x24,0x24,0x24,0x3f,0x24,0x24,0x24,0x24,0x26,0x34,0x20,0x00 - -, -/* @1869 (15x15,V)@ [suki software]*/ -0x20,0xf8,0x97,0xf4,0x9c,0xf4,0x00,0xfe,0x92,0x92,0xfe,0x92,0xff,0x02,0x00 - -, -0x10,0x13,0x12,0x0b,0x0a,0x0b,0x20,0x24,0x24,0x24,0x3f,0x24,0x24,0x20,0x00 - -, -/* @1870 (15x15,V)@ [suki software]*/ -0x08,0x08,0x89,0xce,0x68,0x98,0x00,0x00,0xff,0x00,0x00,0x00,0x00,0x00,0x00 - -, -0x02,0x01,0x00,0x3f,0x00,0x00,0x01,0x00,0x1f,0x20,0x20,0x20,0x20,0x3c,0x00 - -, -/* @1871 (15x15,V)@ [suki software]*/ -0x84,0xa4,0xa4,0xa4,0xef,0x94,0x94,0x84,0x0f,0xe4,0x04,0x04,0xf6,0x04,0x00 - -, -0x10,0x08,0x04,0x02,0x3f,0x02,0x02,0x04,0x00,0x07,0x10,0x20,0x1f,0x00,0x00 - -, -/* @1872 (15x15,V)@ [suki software]*/ -0x02,0x82,0x92,0x92,0x57,0x32,0x1a,0x52,0x97,0x92,0x72,0x02,0x02,0x02,0x00 - -, -0x20,0x12,0x0a,0x07,0x22,0x22,0x1e,0x20,0x12,0x0f,0x22,0x22,0x1e,0x00,0x00 - -, -/* @1873 (15x15,V)@ [suki software]*/ -0x04,0x04,0xf4,0x94,0x94,0x94,0x94,0xff,0x94,0x94,0x94,0xf4,0x06,0x04,0x00 - -, -0x20,0x20,0x21,0x10,0x11,0x0a,0x04,0x0b,0x10,0x10,0x20,0x21,0x20,0x20,0x00 - -, -/* @1874 (15x15,V)@ [suki software]*/ -0x02,0x02,0x7a,0x4a,0x4a,0x7e,0xca,0x4a,0x7e,0x4a,0x4a,0x7a,0x03,0x02,0x00 - -, -0x11,0x11,0x09,0x09,0x05,0x03,0x3f,0x01,0x03,0x05,0x09,0x09,0x11,0x11,0x00 - -, -/* @1875 (15x15,V)@ [suki software]*/ -0x02,0xfa,0x4a,0x8a,0x0a,0xfa,0x02,0x02,0xfa,0x4a,0x8a,0x0a,0xfb,0x02,0x00 - -, -0x00,0x3f,0x00,0x11,0x20,0x1f,0x00,0x00,0x3f,0x00,0x11,0x20,0x1f,0x00,0x00 - -, -/* @1876 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x02,0x0a,0x0a,0xfa,0x4a,0x4a,0x4a,0x4a,0xea,0x4b,0x0a,0x00 - -, -0x20,0x18,0x27,0x10,0x08,0x06,0x01,0x00,0x10,0x20,0x10,0x0f,0x00,0x00,0x00 - -, -/* @1877 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x12,0x12,0xf2,0x52,0x52,0xd2,0x02,0x10,0xff,0x10,0x10,0xf0,0x00 - -, -0x30,0x2f,0x10,0x0c,0x03,0x10,0x10,0x2f,0x10,0x0c,0x13,0x20,0x10,0x0f,0x00 - -, -/* @1878 (15x15,V)@ [suki software]*/ -0x82,0xe2,0x3e,0x22,0xe2,0x02,0x70,0x4e,0x42,0xfa,0x42,0x41,0x41,0x40,0x00 - -, -0x00,0x0f,0x04,0x04,0x07,0x08,0x04,0x13,0x20,0x1f,0x00,0x01,0x02,0x0c,0x00 - -, -/* @1879 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x02,0x22,0x22,0x22,0xfe,0x22,0x22,0x22,0x22,0xe3,0x02,0x00 - -, -0x30,0x0c,0x03,0x20,0x10,0x08,0x06,0x01,0x00,0x10,0x20,0x10,0x0f,0x00,0x00 - -, -/* @1880 (15x15,V)@ [suki software]*/ -0x10,0x12,0x92,0x52,0xfe,0x51,0x91,0x10,0x00,0xfc,0x00,0x00,0xff,0x00,0x00 - -, -0x04,0x02,0x01,0x00,0x3f,0x00,0x00,0x01,0x00,0x03,0x10,0x20,0x1f,0x00,0x00 - -, -/* @1881 (15x15,V)@ [suki software]*/ -0x20,0x10,0xfc,0x03,0x7a,0x4a,0x4a,0x7e,0xca,0x7e,0x4a,0x4a,0x7b,0x02,0x00 - -, -0x00,0x00,0x3f,0x10,0x11,0x09,0x05,0x03,0x3f,0x03,0x05,0x09,0x11,0x11,0x00 - -, -/* @1882 (15x15,V)@ [suki software]*/ -0x20,0x10,0xfc,0x83,0x44,0xbc,0x24,0x24,0xe6,0x04,0xf8,0x00,0xff,0x00,0x00 - -, -0x00,0x00,0x3f,0x20,0x10,0x09,0x06,0x01,0x00,0x00,0x17,0x20,0x1f,0x00,0x00 - -, -/* @1883 (15x15,V)@ [suki software]*/ -0x40,0x20,0xfc,0x03,0x24,0xa4,0xfc,0xa2,0x22,0x00,0xfc,0x00,0xff,0x00,0x00 - -, -0x00,0x00,0x3f,0x04,0x03,0x00,0x3f,0x00,0x01,0x00,0x13,0x20,0x1f,0x00,0x00 - -, -}, -//************************************** -{ -/* @1884 (15x15,V)@ [suki software]*/ -0x08,0x90,0xfc,0x44,0x54,0x54,0xf4,0x4d,0x46,0x04,0xf4,0x04,0xfc,0x04,0x00 - -, -0x21,0x18,0x07,0x08,0x04,0x03,0x3f,0x01,0x06,0x00,0x17,0x20,0x1f,0x00,0x00 - -, -/* @1885 (15x15,V)@ [suki software]*/ -0x00,0x08,0x08,0x28,0xc8,0x08,0x09,0x0e,0x08,0xe8,0x08,0x0c,0x08,0x00,0x00 - -, -0x10,0x10,0x10,0x10,0x10,0x17,0x10,0x18,0x17,0x10,0x10,0x10,0x18,0x10,0x00 - -, -/* @1886 (15x15,V)@ [suki software]*/ -0x24,0x28,0x20,0xff,0xa8,0x24,0x08,0x68,0x89,0x0e,0x08,0xe8,0x08,0x08,0x00 - -, -0x08,0x06,0x01,0x3f,0x00,0x13,0x10,0x10,0x17,0x10,0x1e,0x11,0x10,0x10,0x00 - -, -/* @1887 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x00,0xfe,0x02,0x22,0x22,0xfa,0x22,0x22,0xe2,0x02,0x00 - -, -0x02,0x1e,0x21,0x10,0x0c,0x23,0x10,0x08,0x06,0x01,0x10,0x10,0x0f,0x00,0x00 - -, -/* @1888 (15x15,V)@ [suki software]*/ -0x10,0x10,0x54,0x54,0x54,0x54,0xff,0x54,0x54,0x54,0x7e,0x14,0x90,0x10,0x00 - -, -0x10,0x10,0x09,0x0a,0x14,0x22,0x1f,0x01,0x02,0x04,0x0a,0x09,0x10,0x10,0x00 - -, -/* @1889 (15x15,V)@ [suki software]*/ -0x00,0x00,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0xf8,0x10,0x00,0x00 - -, -0x00,0x20,0x20,0x10,0x08,0x06,0x01,0x00,0x10,0x20,0x10,0x0f,0x00,0x00,0x00 - -, -/* @1890 (15x15,V)@ [suki software]*/ -0x44,0x44,0xfc,0x44,0x40,0x04,0x74,0x44,0x6d,0xd6,0x6c,0x44,0x76,0x04,0x00 - -, -0x08,0x18,0x0f,0x04,0x04,0x3f,0x01,0x0d,0x07,0x05,0x07,0x2d,0x3f,0x00,0x00 - -, -/* @1891 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0x04,0xfc,0x00,0xfe,0x92,0x92,0xfe,0x92,0x92,0xff,0x02,0x00 - -, -0x00,0x03,0x01,0x01,0x21,0x24,0x24,0x24,0x24,0x3f,0x24,0x24,0x34,0x20,0x00 - -, -/* @1892 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x02,0xe2,0x22,0xfe,0x22,0x22,0xfe,0x22,0xe3,0x02,0x00 - -, -0x00,0x00,0x3f,0x00,0x00,0x3f,0x03,0x00,0x05,0x03,0x10,0x23,0x1f,0x00,0x00 - -, -/* @1893 (15x15,V)@ [suki software]*/ -0x02,0xfe,0x92,0x92,0xfe,0x02,0x92,0x91,0x96,0xf0,0x94,0x93,0x90,0x90,0x00 - -, -0x08,0x0f,0x04,0x04,0x3f,0x02,0x22,0x10,0x0c,0x03,0x04,0x08,0x30,0x10,0x00 - -, -/* @1894 (15x15,V)@ [suki software]*/ -0x84,0x94,0xa4,0x04,0x0f,0x94,0xd4,0xbc,0x94,0xdf,0x94,0x94,0x94,0x04,0x00 - -, -0x20,0x10,0x0f,0x10,0x14,0x24,0x24,0x24,0x24,0x3f,0x24,0x24,0x24,0x24,0x00 - -, -/* @1895 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x04,0x44,0x64,0x5c,0x47,0xf4,0x44,0x44,0x46,0x04,0x00 - -, -0x10,0x08,0x07,0x08,0x12,0x12,0x22,0x22,0x22,0x2f,0x22,0x22,0x22,0x22,0x00 - -, -/* @1896 (15x15,V)@ [suki software]*/ -0x60,0x38,0xe7,0x24,0x24,0xfe,0x8a,0xaa,0xfe,0xab,0xfe,0xaa,0xea,0x8a,0x00 - -, -0x01,0x01,0x1f,0x29,0x19,0x27,0x10,0x0a,0x3f,0x02,0x3f,0x0a,0x13,0x20,0x00 - -, -/* @1897 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x82,0xaa,0xaa,0xae,0xfa,0xab,0xfa,0xae,0xaa,0xea,0x8a,0x82,0x00 - -, -0x30,0x0f,0x20,0x12,0x0a,0x06,0x3f,0x02,0x3f,0x06,0x0a,0x13,0x30,0x10,0x00 - -, -/* @1898 (15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x08,0x50,0x20,0x10,0x0c,0x23,0x44,0x08,0x10,0x60,0x20,0x00 - -, -0x00,0x00,0x3f,0x00,0x00,0x01,0x05,0x05,0x09,0x15,0x33,0x01,0x00,0x00,0x00 - -, -/* @1899 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x42,0xcc,0x00,0x64,0x5c,0x47,0xf4,0x44,0x44,0x44,0x00 - -, -0x02,0x02,0x3f,0x20,0x10,0x0f,0x10,0x22,0x22,0x22,0x2f,0x22,0x22,0x22,0x00 - -, -/* @1900 (15x15,V)@ [suki software]*/ -0x10,0x4c,0xc4,0xa4,0x94,0x8c,0x85,0xe6,0x84,0x8c,0x94,0xa4,0x2c,0x00,0x00 - -, -0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x3f,0x00,0x08,0x10,0x0f,0x00,0x00,0x00 - -, -/* @1901 (15x15,V)@ [suki software]*/ -0x40,0x20,0x10,0xac,0x23,0x24,0xa8,0x40,0x30,0xcf,0x08,0x88,0x7c,0x08,0x00 - -, -0x10,0x11,0x16,0x10,0x0b,0x2c,0x2b,0x10,0x10,0x09,0x06,0x09,0x10,0x20,0x00 - -, -/* @1902 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x92,0x92,0xfe,0x20,0x10,0x28,0xa4,0x23,0x24,0x28,0x90,0x20,0x00 - -, -0x30,0x0f,0x10,0x20,0x1f,0x00,0x23,0x2c,0x21,0x26,0x38,0x26,0x21,0x20,0x00 - -, -/* @1903 (15x15,V)@ [suki software]*/ -0x60,0x38,0xe7,0x24,0x24,0x42,0xcc,0x00,0x74,0x4f,0xf4,0x44,0x46,0x44,0x00 - -, -0x01,0x01,0x1f,0x09,0x21,0x10,0x0f,0x12,0x22,0x22,0x2f,0x22,0x22,0x22,0x00 - -, -/* @1904 (15x15,V)@ [suki software]*/ -0x84,0x44,0x24,0x14,0x04,0xfc,0x05,0x06,0xfc,0x04,0x14,0x24,0x46,0x04,0x00 - -, -0x10,0x18,0x06,0x00,0x1e,0x20,0x21,0x26,0x20,0x20,0x38,0x02,0x0c,0x00,0x00 - -, -/* @1905 (15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x10,0x08,0x20,0xe4,0xbc,0xa7,0xa4,0xe4,0x84,0x86,0x84,0x00 - -, -0x20,0x18,0x07,0x02,0x04,0x10,0x08,0x06,0x10,0x20,0x1f,0x02,0x04,0x18,0x00 - -, -/* @1906 (15x15,V)@ [suki software]*/ -0x20,0xb8,0x67,0x20,0x18,0x04,0xa4,0xe4,0xbc,0xa7,0xe4,0x84,0x86,0x84,0x00 - -, -0x09,0x1b,0x09,0x05,0x05,0x10,0x08,0x06,0x10,0x20,0x1f,0x02,0x04,0x18,0x00 - -, -/* @1907 (15x15,V)@ [suki software]*/ -0x24,0x28,0xa0,0xff,0xa8,0x24,0x00,0xfc,0x95,0x96,0x94,0x94,0xfe,0x04,0x00 - -, -0x04,0x03,0x00,0x3f,0x00,0x01,0x00,0x3f,0x11,0x0a,0x04,0x0a,0x31,0x10,0x00 - -, -/* @1908 (15x15,V)@ [suki software]*/ -0x02,0x0c,0xc0,0x34,0x04,0xf4,0x94,0x95,0x96,0x94,0x94,0xf4,0x06,0x04,0x00 - -, -0x01,0x1f,0x00,0x10,0x08,0x06,0x10,0x20,0x1f,0x00,0x02,0x05,0x18,0x00,0x00 - -, -/* @1909 (15x15,V)@ [suki software]*/ -0x04,0x28,0xe1,0x12,0x80,0x52,0x2a,0x92,0x4e,0x42,0x62,0x1f,0x12,0x20,0x00 - -, -0x22,0x22,0x12,0x12,0x0a,0x06,0x02,0x3f,0x02,0x06,0x0a,0x12,0x33,0x12,0x00 - -, -/* @1910 (15x15,V)@ [suki software]*/ -0x02,0x24,0x61,0x9a,0x40,0x5a,0x22,0x9e,0x02,0x22,0xb2,0x0f,0x12,0x20,0x00 - -, -0x22,0x22,0x12,0x12,0x0b,0x06,0x02,0x3f,0x02,0x07,0x0a,0x12,0x32,0x12,0x00 - -, -/* @1911 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0xfc,0x94,0x95,0x96,0x94,0x94,0x94,0xfe,0x04,0x00,0x00,0x00 - -, -0x00,0x00,0x00,0x3f,0x10,0x09,0x02,0x04,0x0a,0x0a,0x11,0x11,0x30,0x10,0x00 - -, -/* @1912 (15x15,V)@ [suki software]*/ -0x02,0x02,0xf2,0x12,0x92,0x7e,0x92,0x12,0xfe,0x12,0x12,0x12,0xf3,0x02,0x00 - -, -0x00,0x00,0x3f,0x02,0x01,0x04,0x02,0x01,0x00,0x01,0x12,0x20,0x1f,0x00,0x00 - -, -/* @1913 (15x15,V)@ [suki software]*/ -0x44,0x7c,0x47,0xf4,0x44,0x42,0xf2,0x12,0xfe,0x12,0xfe,0x12,0x13,0xf2,0x00 - -, -0x04,0x0c,0x04,0x3f,0x02,0x02,0x3f,0x01,0x04,0x03,0x00,0x11,0x22,0x1f,0x00 - -, -/* @1914 (15x15,V)@ [suki software]*/ -0x00,0x20,0x20,0xbe,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xbf,0x22,0x20,0x00 - -, -0x00,0x20,0x28,0x2f,0x2a,0x2a,0x2a,0x3f,0x2a,0x2a,0x2a,0x2f,0x28,0x20,0x00 - -, -/* @1915 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x22,0x22,0xfe,0x04,0xf4,0x94,0x95,0x96,0x94,0x94,0xf6,0x04,0x00 - -, -0x00,0x0f,0x04,0x04,0x17,0x08,0x04,0x12,0x20,0x1f,0x00,0x02,0x04,0x18,0x00 - -, -/* @1916 (15x15,V)@ [suki software]*/ -0x00,0x82,0x82,0xba,0xaa,0xaa,0xab,0xaa,0xaa,0xaa,0xba,0x82,0x82,0x00,0x00 - -, -0x22,0x21,0x20,0x10,0x0e,0x02,0x02,0x02,0x1e,0x20,0x20,0x22,0x21,0x38,0x00 - -, -/* @1917 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x04,0x04,0xf4,0x94,0x95,0x96,0x94,0xf4,0x04,0x04,0x00 - -, -0x00,0x00,0x1f,0x08,0x04,0x10,0x0d,0x10,0x20,0x1f,0x00,0x05,0x18,0x00,0x00 - -, -/* @1918 (15x15,V)@ [suki software]*/ -0x10,0x10,0xff,0x90,0x44,0x2c,0xf4,0xac,0xa7,0xa4,0xac,0xf4,0x2c,0x44,0x00 - -, -0x12,0x21,0x1f,0x00,0x10,0x08,0x07,0x12,0x22,0x1e,0x06,0x0b,0x18,0x00,0x00 - -, -/* @1919 (15x15,V)@ [suki software]*/ -0x02,0xfe,0x92,0x92,0xff,0x02,0xfc,0x02,0xfb,0x00,0xfe,0x02,0xfe,0x00,0x00 - -, -0x08,0x0f,0x04,0x04,0x3f,0x22,0x11,0x09,0x07,0x00,0x3f,0x04,0x07,0x00,0x00 - -, -/* @1920 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x87,0x4c,0xf4,0xac,0xa7,0xa4,0xac,0xf4,0x2c,0x44,0x40,0x00 - -, -0x00,0x00,0x3f,0x00,0x10,0x0b,0x16,0x22,0x1e,0x02,0x07,0x08,0x10,0x00,0x00 - -, -/* @1921 (15x15,V)@ [suki software]*/ -0x08,0xb0,0x40,0xfc,0x04,0x24,0x24,0x25,0xa6,0xa4,0x64,0x34,0x26,0x04,0x00 - -, -0x21,0x11,0x0c,0x03,0x00,0x00,0x10,0x20,0x1f,0x00,0x00,0x00,0x00,0x00,0x00 - -, -/* @1922 (15x15,V)@ [suki software]*/ -0x60,0x10,0xff,0x20,0x44,0x2c,0xf4,0xac,0xa7,0xa4,0xac,0xf4,0x2c,0x44,0x00 - -, -0x20,0x18,0x07,0x02,0x2c,0x10,0x0b,0x02,0x22,0x3e,0x02,0x0b,0x30,0x00,0x00 - -, -/* @1923 (15x15,V)@ [suki software]*/ -0x08,0x46,0x4a,0x5a,0x2a,0xfa,0x83,0xca,0x5a,0x2a,0x7a,0x02,0x06,0x00,0x00 - -, -0x02,0x22,0x22,0x25,0x35,0x2a,0x2a,0x24,0x15,0x11,0x12,0x02,0x02,0x02,0x00 - -, -/* @1924 (15x15,V)@ [suki software]*/ -0x20,0x22,0x24,0xec,0x00,0x02,0x02,0x02,0x02,0xf2,0x0a,0x07,0x02,0x00,0x00 - -, -0x10,0x10,0x08,0x07,0x08,0x10,0x10,0x24,0x28,0x27,0x20,0x20,0x20,0x20,0x00 - -, -/* @1925 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x44,0xec,0xb4,0xac,0xa7,0xac,0xf4,0x2c,0x44,0x40,0x00 - -, -0x02,0x3e,0x01,0x00,0x10,0x0b,0x16,0x22,0x1e,0x02,0x07,0x08,0x10,0x00,0x00 - -, -/* @1926 (15x15,V)@ [suki software]*/ -0x00,0x00,0x02,0x02,0x02,0x02,0x02,0xf2,0x12,0x0a,0x06,0x03,0x02,0x00,0x00 - -, -0x00,0x00,0x00,0x00,0x00,0x10,0x20,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00 - -, -/* @1927 (15x15,V)@ [suki software]*/ -0x08,0x08,0xff,0x88,0x48,0x9f,0x55,0xf5,0x55,0x5f,0xd5,0x55,0x1f,0x00,0x00 - -, -0x11,0x21,0x1f,0x00,0x04,0x04,0x3e,0x16,0x15,0x15,0x16,0x3e,0x02,0x02,0x00 - -, -/* @1928 (15x15,V)@ [suki software]*/ -0x60,0x38,0xe7,0x24,0x00,0x2c,0xf4,0xac,0xa7,0xa4,0xac,0xf4,0x2c,0x44,0x00 - -, -0x01,0x01,0x1f,0x09,0x05,0x10,0x0b,0x12,0x22,0x1e,0x02,0x0b,0x10,0x00,0x00 - -, -/* @1929 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x4a,0x5a,0x2a,0xba,0x43,0x8a,0x5a,0x2a,0x0a,0x7a,0x02,0x00 - -, -0x20,0x1c,0x03,0x22,0x22,0x25,0x2a,0x2a,0x14,0x15,0x09,0x0a,0x02,0x02,0x00 - -, -/* @1930 (15x15,V)@ [suki software]*/ -0x24,0x28,0xa0,0xff,0xa8,0x24,0x20,0x00,0x44,0x88,0x00,0xff,0x00,0x00,0x00 - -, -0x04,0x03,0x00,0x3f,0x00,0x01,0x04,0x04,0x04,0x02,0x02,0x3f,0x02,0x02,0x00 - -, -/* @1931 (15x15,V)@ [suki software]*/ -0x00,0x82,0x42,0xb2,0x1e,0x12,0xf2,0x02,0x02,0xf8,0x00,0x00,0xff,0x00,0x00 - -, -0x21,0x20,0x10,0x08,0x05,0x03,0x00,0x00,0x00,0x07,0x10,0x20,0x1f,0x00,0x00 - -, -/* @1932 (15x15,V)@ [suki software]*/ -0x00,0x12,0x8a,0x5e,0x2a,0x1a,0x4a,0x82,0x00,0x3e,0x00,0x40,0x7f,0x00,0x00 - -, -0x11,0x11,0x09,0x05,0x3f,0x21,0x11,0x13,0x05,0x09,0x15,0x13,0x31,0x11,0x00 - -, -/* @1933 (15x15,V)@ [suki software]*/ -0x00,0x42,0x22,0x32,0x4e,0x8a,0x6a,0x1a,0x00,0x7c,0x00,0x00,0xff,0x00,0x00 - -, -0x04,0x24,0x1a,0x02,0x09,0x30,0x00,0x08,0x30,0x00,0x01,0x0a,0x31,0x00,0x00 - -, -/* @1934 (15x15,V)@ [suki software]*/ -0x10,0x10,0x08,0x84,0x82,0x40,0x40,0xaf,0x20,0x12,0x12,0x04,0x84,0x08,0x00 - -, -0x01,0x21,0x21,0x20,0x11,0x11,0x09,0x07,0x11,0x21,0x21,0x11,0x0f,0x01,0x00 - -, -/* @1935 (15x15,V)@ [suki software]*/ -0x20,0x22,0x14,0x88,0xf4,0x22,0x24,0x3f,0x24,0x24,0x3f,0x24,0x24,0x20,0x00 - -, -0x04,0x12,0x21,0x10,0x0f,0x00,0x3f,0x15,0x15,0x15,0x15,0x15,0x3f,0x00,0x00 - -, -/* @1936 (15x15,V)@ [suki software]*/ -0x42,0x42,0xfe,0x42,0x92,0x50,0xff,0x50,0x80,0x10,0xff,0x50,0x98,0x10,0x00 - -, -0x08,0x18,0x0f,0x04,0x05,0x00,0x3f,0x00,0x02,0x01,0x3f,0x00,0x01,0x02,0x00 - -, -/* @1937 (15x15,V)@ [suki software]*/ -0x08,0x08,0xc8,0xff,0x48,0x88,0x00,0x88,0x48,0xff,0x48,0x88,0x0c,0x08,0x00 - -, -0x04,0x03,0x00,0x3f,0x00,0x04,0x02,0x01,0x00,0x3f,0x00,0x01,0x02,0x04,0x00 - -, -/* @1938 (15x15,V)@ [suki software]*/ -0x82,0xe2,0x3e,0x22,0xe2,0x48,0xaa,0x1c,0x08,0x7f,0x08,0xdc,0x2a,0x28,0x00 - -, -0x00,0x1f,0x04,0x04,0x2f,0x12,0x0b,0x05,0x03,0x0e,0x09,0x3f,0x09,0x09,0x00 - -, -/* @1939 (15x15,V)@ [suki software]*/ -0x20,0x18,0x2a,0x2a,0xaa,0x0a,0x7e,0x0a,0x2a,0xaa,0x0b,0x2a,0x18,0x00,0x00 - -, -0x10,0x09,0x05,0x03,0x3f,0x05,0x10,0x09,0x05,0x3f,0x03,0x05,0x09,0x10,0x00 - -, -/* @1940 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x00,0x00,0xff,0x20,0x90,0x8c,0x9b,0xa8,0xc8,0x88,0x8c,0x08,0x00 - -, -0x00,0x0f,0x00,0x00,0x3f,0x00,0x3f,0x10,0x10,0x1f,0x10,0x10,0x3f,0x00,0x00 - -, -/* @1941 (15x15,V)@ [suki software]*/ -0x40,0xa0,0x90,0x8c,0xe3,0x84,0x88,0x90,0x00,0xfe,0x02,0x62,0x9a,0x06,0x00 - -, -0x00,0x00,0x02,0x04,0x08,0x34,0x02,0x01,0x00,0x3f,0x04,0x08,0x08,0x07,0x00 - -, -/* @1942 (15x15,V)@ [suki software]*/ -0x20,0xf8,0x97,0xf4,0x9c,0xf0,0x4a,0xac,0x18,0x7f,0x08,0xdc,0x2a,0x28,0x00 - -, -0x10,0x17,0x12,0x0b,0x0a,0x2b,0x12,0x09,0x07,0x02,0x05,0x3f,0x05,0x05,0x00 - -, -/* @1943 (15x15,V)@ [suki software]*/ -0x10,0x21,0x86,0x60,0x88,0x48,0xff,0x48,0x80,0x48,0xff,0x48,0x8c,0x08,0x00 - -, -0x02,0x02,0x3f,0x00,0x01,0x00,0x3f,0x00,0x01,0x00,0x3f,0x00,0x01,0x02,0x00 - -, -/* @1944 (15x15,V)@ [suki software]*/ -0x02,0x0c,0xe0,0x1a,0x02,0x7a,0x4a,0x7a,0x5b,0x7a,0x4a,0x7a,0x02,0x02,0x00 - -, -0x01,0x1f,0x00,0x24,0x14,0x0d,0x05,0x25,0x3d,0x05,0x05,0x0d,0x14,0x24,0x00 - -, -/* @1945 (15x15,V)@ [suki software]*/ -0x10,0x08,0x7c,0x83,0x88,0xaa,0xaa,0xaa,0xbe,0xaa,0xa9,0x29,0x28,0x00,0x00 - -, -0x00,0x20,0x20,0x2f,0x10,0x10,0x08,0x06,0x08,0x10,0x1f,0x20,0x20,0x00,0x00 - -, -/* @1946 (15x15,V)@ [suki software]*/ -0x00,0x04,0x84,0x84,0x4c,0x54,0x25,0x26,0x54,0x4c,0x84,0x84,0x86,0x84,0x00 - -, -0x01,0x01,0x00,0x3f,0x11,0x11,0x11,0x11,0x11,0x11,0x3f,0x00,0x01,0x00,0x00 - -, -/* @1947 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x28,0x90,0x8c,0xa3,0xc4,0x88,0x90,0x20,0x20,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x00,0x04,0x08,0x18,0x24,0x02,0x01,0x00,0x00,0x00 - -, -/* @1948 (15x15,V)@ [suki software]*/ -0x22,0x22,0xfe,0x22,0x22,0x40,0xa0,0x90,0x8c,0xa3,0xcc,0x90,0xa0,0x20,0x00 - -, -0x08,0x18,0x07,0x04,0x04,0x00,0x00,0x04,0x08,0x14,0x32,0x01,0x00,0x00,0x00 - -, -/* @1949 (15x15,V)@ [suki software]*/ -0x02,0x42,0x52,0xd2,0x52,0x57,0x52,0x7a,0x52,0x57,0xd2,0x52,0x62,0x42,0x00 - -, -0x00,0x22,0x29,0x24,0x22,0x17,0x0a,0x0a,0x16,0x12,0x22,0x21,0x22,0x20,0x00 - -, -/* @1950 (15x15,V)@ [suki software]*/ -0x20,0x18,0x4a,0x4a,0x5a,0xaa,0x7e,0x4a,0xaa,0xda,0x4b,0x4a,0x18,0x08,0x00 - -, -0x02,0x02,0x02,0x01,0x0b,0x0a,0x13,0x2a,0x26,0x02,0x01,0x01,0x03,0x01,0x00 - -, -/* @1951 (15x15,V)@ [suki software]*/ -0x20,0xbc,0x20,0xff,0x24,0xa4,0x60,0xb0,0x8c,0xa3,0xcc,0x90,0xa0,0x20,0x00 - -, -0x00,0x3f,0x12,0x11,0x12,0x3f,0x00,0x00,0x04,0x08,0x34,0x02,0x01,0x00,0x00 - -, -/* @1952 (15x15,V)@ [suki software]*/ -0x60,0x38,0xe7,0x24,0x24,0x44,0x20,0x90,0x8c,0xa3,0xcc,0x90,0xa0,0x20,0x00 - -, -0x01,0x01,0x1f,0x11,0x09,0x01,0x00,0x00,0x04,0x08,0x34,0x02,0x01,0x00,0x00 - -, -/* @1953 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x40,0xa0,0x90,0x8c,0xa3,0xc4,0x88,0x90,0x20,0x20,0x00 - -, -0x00,0x00,0x3f,0x00,0x00,0x00,0x04,0x08,0x18,0x24,0x02,0x01,0x00,0x00,0x00 - -, -/* @1954 (15x15,V)@ [suki software]*/ -0x08,0x49,0x4e,0xf8,0x4c,0x0b,0x40,0xb0,0x8c,0xe3,0x8c,0x90,0x20,0x40,0x00 - -, -0x01,0x21,0x11,0x0f,0x01,0x01,0x00,0x04,0x08,0x14,0x32,0x01,0x00,0x00,0x00 - -, -/* @1955 (15x15,V)@ [suki software]*/ -0x02,0x0c,0xc0,0x30,0x90,0x54,0x34,0x94,0x1f,0x14,0x34,0x56,0xd4,0x10,0x00 - -, -0x01,0x1f,0x00,0x20,0x24,0x22,0x11,0x17,0x09,0x15,0x13,0x21,0x20,0x20,0x00 - -, -/* @1956 (15x15,V)@ [suki software]*/ -0x00,0x00,0x22,0xaa,0x2a,0x2a,0xea,0x2a,0x2a,0x2a,0x2a,0xbf,0x02,0x00,0x00 - -, -0x20,0x20,0x12,0x11,0x08,0x06,0x01,0x02,0x04,0x0a,0x09,0x10,0x30,0x10,0x00 - -, -/* @1957 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x12,0x2a,0xc6,0x90,0x54,0x34,0x94,0x1f,0x14,0x34,0x54,0x10,0x00 - -, -0x00,0x3f,0x02,0x04,0x23,0x24,0x22,0x13,0x15,0x09,0x15,0x23,0x20,0x20,0x00 - -, -/* @1958 (15x15,V)@ [suki software]*/ -0xf8,0x00,0xff,0x00,0xf8,0x40,0xa0,0x90,0x8c,0xa3,0xcc,0x90,0xa0,0x20,0x00 - -, -0x07,0x04,0x03,0x02,0x07,0x00,0x00,0x04,0x08,0x0c,0x12,0x21,0x00,0x00,0x00 - -, -/* @1959 (15x15,V)@ [suki software]*/ -0x20,0x90,0x8c,0xa3,0xc4,0x88,0x12,0xfa,0x0a,0x0e,0xea,0x0a,0xfb,0x02,0x00 - -, -0x00,0x00,0x04,0x08,0x16,0x01,0x20,0x27,0x10,0x08,0x07,0x08,0x17,0x20,0x00 - -, -/* @1960 (15x15,V)@ [suki software]*/ -0x00,0x80,0x80,0xbe,0xa2,0xa2,0xe2,0xa2,0xa2,0xa2,0xbf,0x82,0x00,0x00,0x00 - -, -0x00,0x20,0x20,0x10,0x08,0x04,0x03,0x00,0x10,0x20,0x10,0x0f,0x00,0x00,0x00 - -, -/* @1961 (15x15,V)@ [suki software]*/ -0x40,0x40,0x20,0x90,0x88,0x84,0x93,0xe4,0x88,0x90,0xa0,0x20,0x40,0x40,0x00 - -, -0x00,0x00,0x00,0x00,0x04,0x04,0x08,0x18,0x24,0x02,0x01,0x00,0x00,0x00,0x00 - -, -/* @1962 (15x15,V)@ [suki software]*/ -0x10,0x21,0x82,0x64,0x00,0x3e,0x22,0x99,0x51,0x22,0x1e,0x42,0x3e,0x00,0x00 - -, -0x02,0x02,0x3f,0x00,0x00,0x3f,0x15,0x15,0x1f,0x15,0x15,0x15,0x3f,0x00,0x00 - -, -/* @1963 (15x15,V)@ [suki software]*/ -0x42,0x42,0xfe,0x42,0x42,0x00,0xa4,0x34,0xad,0x26,0x24,0xb4,0x66,0x04,0x00 - -, -0x08,0x08,0x07,0x24,0x24,0x10,0x0f,0x00,0x1f,0x00,0x00,0x1f,0x20,0x3c,0x00 - -, -/* @1964 (15x15,V)@ [suki software]*/ -0x08,0xc8,0xff,0x48,0x88,0x08,0x3e,0x22,0x51,0x22,0x1e,0x42,0x42,0x3e,0x00 - -, -0x03,0x00,0x3f,0x00,0x00,0x00,0x3f,0x15,0x15,0x1f,0x15,0x15,0x3f,0x00,0x00 - -, -/* @1965 (15x15,V)@ [suki software]*/ -0x82,0xe2,0x3e,0x22,0xe2,0x04,0xa4,0x34,0xad,0x26,0x24,0xb4,0x66,0x04,0x00 - -, -0x00,0x1f,0x04,0x24,0x17,0x08,0x07,0x00,0x1f,0x00,0x00,0x1f,0x20,0x38,0x00 - -, -/* @1966 (15x15,V)@ [suki software]*/ -0x20,0x18,0xef,0x08,0x18,0x00,0x7e,0x22,0x5a,0x21,0x1e,0x22,0x42,0x3e,0x00 - -, -0x00,0x00,0x1f,0x08,0x04,0x00,0x3f,0x15,0x15,0x1f,0x15,0x15,0x3f,0x00,0x00 - -, -/* @1967 (15x15,V)@ [suki software]*/ -0x00,0x7e,0xa2,0xa2,0x91,0xb9,0xc0,0xa2,0x9e,0xa2,0xa2,0xa2,0x1e,0x00,0x00 - -, -0x00,0x00,0x3f,0x14,0x14,0x14,0x1f,0x14,0x14,0x14,0x14,0x3f,0x00,0x00,0x00 - -, -/* @1968 (15x15,V)@ [suki software]*/ -0x08,0x28,0x48,0x89,0x0e,0xc8,0x38,0x08,0x00,0xfc,0x00,0x00,0xff,0x00,0x00 - -, -0x10,0x08,0x04,0x02,0x01,0x02,0x04,0x08,0x00,0x07,0x10,0x20,0x1f,0x00,0x00 - -, -/* @1969 (15x15,V)@ [suki software]*/ -0x10,0xa0,0xfc,0x04,0xf4,0x94,0x54,0x6d,0x86,0x54,0xb4,0x94,0x76,0x04,0x00 - -, -0x21,0x10,0x0f,0x00,0x00,0x3e,0x2a,0x2a,0x3e,0x2a,0x2a,0x2a,0x3e,0x00,0x00 - -, -/* @1970 (15x15,V)@ [suki software]*/ -0x10,0x61,0x02,0xc6,0x00,0xa4,0x34,0x2d,0xa6,0x24,0xa4,0x34,0x66,0x04,0x00 - -, -0x04,0x3c,0x03,0x20,0x10,0x0f,0x00,0x00,0x3f,0x00,0x1f,0x20,0x20,0x38,0x00 - -, -/* @1971 (15x15,V)@ [suki software]*/ -0x08,0xc8,0xff,0x48,0x88,0xfc,0x04,0x02,0xf9,0x00,0xfc,0x04,0x04,0xfc,0x00 - -, -0x03,0x00,0x3f,0x00,0x20,0x23,0x12,0x09,0x07,0x00,0x3f,0x04,0x08,0x07,0x00 - -, -/* @1972 (15x15,V)@ [suki software]*/ -0x00,0x10,0x10,0x10,0x90,0x10,0x11,0x16,0x10,0x90,0x10,0x10,0x18,0x10,0x00 - -, -0x00,0x10,0x08,0x06,0x01,0x00,0x00,0x00,0x00,0x00,0x01,0x06,0x18,0x00,0x00 - -, -/* @1973 (15x15,V)@ [suki software]*/ -0x10,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0xf1,0x12,0x96,0x50,0x18,0x10,0x00 - -, -0x20,0x10,0x08,0x04,0x03,0x08,0x08,0x04,0x1f,0x21,0x20,0x20,0x20,0x3c,0x00 - -, -/* @1974 (15x15,V)@ [suki software]*/ -0x40,0xc4,0xa4,0xa4,0x94,0x8f,0x94,0x9c,0xb5,0xae,0xa4,0xa4,0xb6,0x04,0x00 - -, -0x10,0x10,0x10,0x1f,0x12,0x12,0x16,0x14,0x14,0x3f,0x08,0x08,0x08,0x08,0x00 - -, -/* @1975 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0x04,0xfc,0x10,0x10,0xff,0x10,0xf0,0x12,0x94,0x58,0x10,0x00 - -, -0x00,0x07,0x01,0x21,0x13,0x08,0x06,0x09,0x04,0x1f,0x21,0x20,0x20,0x3c,0x00 - -, -/* @1976 (15x15,V)@ [suki software]*/ -0x10,0x48,0x47,0x4c,0x54,0xe4,0x54,0x48,0xd7,0x64,0x4c,0x54,0x46,0x44,0x00 - -, -0x20,0x20,0x10,0x08,0x14,0x13,0x08,0x08,0x1f,0x24,0x22,0x21,0x20,0x38,0x00 - -, -/* @1977 (15x15,V)@ [suki software]*/ -0x08,0xf6,0x12,0xda,0x36,0x42,0xa3,0xba,0x52,0x56,0xba,0x92,0x8a,0x86,0x00 - -, -0x00,0x3f,0x04,0x04,0x23,0x24,0x2b,0x2a,0x3f,0x2a,0x2a,0x2a,0x20,0x20,0x00 - -, -}, -//************************************** -{ -/* @1978 ¡(15x15,V)@ [suki software]*/ -0x00,0xfe,0x22,0x5a,0x86,0x48,0x44,0xa7,0x9a,0x92,0xaa,0xa6,0x60,0x20,0x00 - -, -0x00,0x3f,0x02,0x04,0x23,0x24,0x2b,0x2a,0x2a,0x3f,0x2a,0x2a,0x22,0x20,0x00 - -, -/* @1979 ¢(15x15,V)@ [suki software]*/ -0x04,0x04,0x84,0x44,0x24,0x1f,0x44,0x7c,0xc5,0xa6,0xa4,0x94,0x84,0xe4,0x00 - -, -0x21,0x25,0x24,0x24,0x24,0x24,0x3f,0x24,0x24,0x24,0x24,0x26,0x34,0x20,0x00 - -, -/* @1980 £(15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x10,0x10,0xff,0x10,0xf0,0x12,0x94,0x58,0x10,0x00 - -, -0x01,0x11,0x20,0x1f,0x20,0x18,0x06,0x09,0x04,0x1f,0x21,0x20,0x20,0x3c,0x00 - -, -/* @1981 ¤(15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0x72,0x8e,0x10,0x10,0xff,0x10,0xf0,0x12,0x94,0x50,0x10,0x00 - -, -0x00,0x3f,0x02,0x24,0x13,0x08,0x16,0x09,0x04,0x1f,0x21,0x20,0x20,0x3c,0x00 - -, -/* @1982 ¥(15x15,V)@ [suki software]*/ -0x08,0xc8,0xff,0x28,0x48,0x80,0x4a,0x2c,0x98,0x7f,0x18,0x2c,0x4a,0x48,0x00 - -, -0x03,0x00,0x3f,0x00,0x20,0x21,0x21,0x17,0x09,0x09,0x15,0x13,0x21,0x01,0x00 - -, -/* @1983 ¦(15x15,V)@ [suki software]*/ -0x40,0x48,0x49,0x2a,0x2c,0x18,0x88,0x7f,0x08,0x1c,0x2a,0x49,0x48,0x40,0x00 - -, -0x00,0x21,0x21,0x21,0x25,0x17,0x15,0x09,0x0d,0x0b,0x11,0x11,0x21,0x01,0x00 - -, -/* @1984 §(15x15,V)@ [suki software]*/ -0x08,0x08,0xff,0x88,0x48,0x00,0x4a,0x2c,0x98,0x7f,0x18,0x2c,0x4a,0x48,0x00 - -, -0x11,0x21,0x1f,0x00,0x21,0x21,0x21,0x17,0x09,0x09,0x0d,0x13,0x31,0x01,0x00 - -, -/* @1985 ¨(15x15,V)@ [suki software]*/ -0x08,0x24,0x22,0xab,0xb6,0x62,0x2a,0xf4,0x23,0x76,0xaa,0xa2,0x22,0x22,0x00 - -, -0x00,0x21,0x23,0x22,0x2a,0x2e,0x13,0x12,0x1a,0x16,0x22,0x22,0x23,0x01,0x00 - -, -/* @1986 ©(15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x40,0xfe,0x2a,0xaa,0xaa,0xaa,0xea,0xaa,0xaa,0xaf,0x22,0x00 - -, -0x02,0x3e,0x21,0x18,0x07,0x00,0x3f,0x0a,0x00,0x3f,0x0a,0x20,0x3f,0x00,0x00 - -, -/* @1987 ª(15x15,V)@ [suki software]*/ -0xfe,0x22,0x52,0x8e,0x00,0xf8,0x02,0xf2,0x12,0xfe,0x92,0x12,0xf3,0x02,0x00 - -, -0x3f,0x02,0x04,0x03,0x00,0x1f,0x10,0x17,0x11,0x10,0x10,0x15,0x17,0x10,0x00 - -, -/* @1988 «(15x15,V)@ [suki software]*/ -0x04,0x04,0xe4,0x24,0x2f,0x24,0x2c,0x34,0x24,0x2f,0x24,0xe4,0x06,0x04,0x00 - -, -0x20,0x10,0x0f,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x03,0x00,0x00,0x00 - -, -/* @1989 ¬(15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0xf0,0x90,0x90,0x9f,0x94,0x94,0x94,0x94,0xf4,0x06,0x04,0x00 - -, -0x20,0x10,0x0c,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00 - -, -/* @1990 ­(15x15,V)@ [suki software]*/ -0x00,0xf0,0x10,0x1f,0x14,0xf4,0x02,0xfa,0x0a,0xce,0x0a,0x0a,0xfb,0x02,0x00 - -, -0x30,0x0f,0x01,0x01,0x01,0x21,0x20,0x17,0x08,0x07,0x08,0x08,0x17,0x20,0x00 - -, -/* @1991 ®(15x15,V)@ [suki software]*/ -0x00,0x00,0xfc,0x04,0x04,0xe4,0x25,0x2e,0x34,0x24,0x24,0x24,0xe6,0x04,0x00 - -, -0x20,0x18,0x07,0x20,0x18,0x07,0x01,0x01,0x01,0x01,0x01,0x01,0x03,0x00,0x00 - -, -/* @1992 ¯(15x15,V)@ [suki software]*/ -0x40,0x30,0x00,0xff,0x10,0x08,0x00,0xf8,0x88,0x89,0x8e,0x88,0xfc,0x08,0x00 - -, -0x20,0x10,0x0c,0x03,0x0c,0x20,0x18,0x07,0x00,0x00,0x00,0x00,0x01,0x00,0x00 - -, -/* @1993 °(15x15,V)@ [suki software]*/ -0x08,0x88,0xff,0x48,0x00,0xf8,0x08,0x48,0x48,0xff,0xaa,0xaa,0xda,0x08,0x00 - -, -0x11,0x20,0x1f,0x20,0x18,0x07,0x22,0x12,0x0a,0x07,0x22,0x22,0x1e,0x00,0x00 - -, -/* @1994 ±(15x15,V)@ [suki software]*/ -0x00,0x00,0xf0,0x10,0x10,0x50,0x90,0x1f,0x94,0x54,0x14,0x14,0xf6,0x04,0x00 - -, -0x00,0x00,0x3f,0x10,0x14,0x14,0x12,0x11,0x12,0x14,0x10,0x10,0x3f,0x00,0x00 - -, -/* @1995 ²(15x15,V)@ [suki software]*/ -0x00,0x00,0xf8,0x08,0x28,0x28,0x7f,0xaa,0xaa,0xaa,0xaa,0x8a,0xd8,0x00,0x00 - -, -0x20,0x18,0x07,0x20,0x22,0x12,0x0a,0x07,0x02,0x22,0x22,0x12,0x0e,0x00,0x00 - -, -/* @1996 ³(15x15,V)@ [suki software]*/ -0x90,0x90,0xf8,0xac,0xaa,0xab,0xaa,0xfa,0xae,0xaa,0xa8,0xf8,0x80,0x80,0x00 - -, -0x00,0x00,0x00,0x3e,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x3e,0x00,0x00,0x00,0x00 - -, -/* @1997 ´(15x15,V)@ [suki software]*/ -0x10,0x12,0xea,0xa6,0xbf,0xea,0xb0,0xaa,0xe6,0xbf,0xa2,0xa6,0x2a,0x12,0x00 - -, -0x20,0x10,0x0f,0x02,0x3e,0x2b,0x1a,0x02,0x1f,0x2a,0x2a,0x2b,0x20,0x38,0x00 - -, -/* @1998 µ(15x15,V)@ [suki software]*/ -0x42,0xf2,0x2e,0x22,0xe2,0x20,0xaa,0x2a,0x2a,0xea,0x2a,0x3f,0xa2,0x20,0x00 - -, -0x00,0x1f,0x04,0x04,0x0f,0x08,0x04,0x15,0x22,0x1f,0x02,0x05,0x08,0x08,0x00 - -, -/* @1999 ¶(15x15,V)@ [suki software]*/ -0x10,0xcc,0x55,0x55,0x55,0xc5,0x3f,0x85,0xf5,0x55,0x45,0xd5,0x0c,0x00,0x00 - -, -0x20,0x3d,0x21,0x1f,0x15,0x11,0x05,0x3c,0x26,0x25,0x25,0x3e,0x02,0x02,0x00 - -, -/* @2000 ·(15x15,V)@ [suki software]*/ -0x00,0xbe,0x22,0xe2,0xa2,0xbe,0x10,0x88,0x57,0x24,0x54,0x4e,0x84,0x80,0x00 - -, -0x10,0x3f,0x10,0x0f,0x08,0x08,0x01,0x3f,0x11,0x11,0x11,0x3f,0x00,0x00,0x00 - -, -/* @2001 ¸(15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0xfa,0x02,0xfe,0x10,0x88,0x5f,0x24,0x54,0x8c,0x04,0x00,0x00 - -, -0x20,0x11,0x0c,0x03,0x04,0x19,0x01,0x3e,0x12,0x12,0x12,0x3e,0x01,0x01,0x00 - -, -/* @2002 ¹(15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x4a,0x4a,0x7e,0x4a,0x4b,0x7e,0x4a,0x4a,0x4a,0x7a,0x02,0x00 - -, -0x20,0x18,0x07,0x00,0x3f,0x12,0x0a,0x00,0x1f,0x24,0x24,0x22,0x23,0x38,0x00 - -, -/* @2003 º(15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0xbe,0x22,0xe2,0x3e,0x90,0x5c,0x27,0x54,0x8c,0x80,0x00 - -, -0x02,0x3e,0x01,0x10,0x3f,0x10,0x0f,0x09,0x00,0x3f,0x11,0x11,0x3f,0x00,0x00 - -, -/* @2004 »(15x15,V)@ [suki software]*/ -0x08,0x88,0xc9,0xae,0x18,0x20,0xaa,0x2a,0x2a,0xea,0x2a,0x3f,0xa2,0x20,0x00 - -, -0x01,0x00,0x3f,0x00,0x01,0x08,0x08,0x15,0x22,0x1f,0x02,0x05,0x18,0x08,0x00 - -, -/* @2005 ¼(15x15,V)@ [suki software]*/ -0x20,0x20,0xa2,0xaa,0x2a,0x2a,0x2a,0xea,0x2a,0x2a,0x3f,0xa2,0x20,0x20,0x00 - -, -0x10,0x10,0x08,0x08,0x05,0x12,0x22,0x1f,0x01,0x02,0x05,0x08,0x18,0x08,0x00 - -, -/* @2006 ½(15x15,V)@ [suki software]*/ -0x00,0xfe,0x22,0x5a,0x86,0x48,0x48,0x48,0x48,0xff,0x48,0x4c,0x68,0x40,0x00 - -, -0x00,0x3f,0x02,0x04,0x03,0x00,0x1f,0x10,0x10,0x1f,0x10,0x10,0x3f,0x00,0x00 - -, -/* @2007 ¾(15x15,V)@ [suki software]*/ -0x22,0x2a,0x92,0x7e,0x20,0x56,0xaa,0x3e,0x20,0xff,0x10,0x12,0xd4,0x10,0x00 - -, -0x01,0x29,0x2a,0x15,0x15,0x0a,0x28,0x25,0x10,0x0b,0x04,0x0b,0x10,0x3c,0x00 - -, -/* @2008 ¿(15x15,V)@ [suki software]*/ -0x02,0xfa,0x82,0x82,0xff,0x82,0x00,0xfc,0x44,0x45,0x46,0x44,0xfe,0x04,0x00 - -, -0x04,0x04,0x14,0x22,0x12,0x0f,0x30,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00 - -, -/* @2009 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x7e,0x22,0x22,0x22,0x22,0x22,0x22,0x7f,0x82,0x00,0x00,0x00 - -, -0x00,0x00,0x3f,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x3f,0x01,0x00,0x00 - -, -/* @2010 (15x15,V)@ [suki software]*/ -0x40,0x30,0xef,0x24,0x24,0x24,0x00,0x3e,0x22,0x22,0x22,0x22,0xbf,0x02,0x00 - -, -0x01,0x01,0x1f,0x11,0x09,0x00,0x3f,0x11,0x11,0x11,0x11,0x11,0x3f,0x01,0x00 - -, -/* @2011 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x00,0x00,0x3e,0x22,0x22,0x22,0x22,0x3f,0x82,0x00,0x00 - -, -0x00,0x00,0x3f,0x00,0x00,0x3f,0x11,0x11,0x11,0x11,0x11,0x11,0x3f,0x01,0x00 - -, -/* @2012 (15x15,V)@ [suki software]*/ -0x08,0x08,0xf9,0x4e,0x48,0xc8,0x20,0xd8,0x4f,0xc8,0x28,0x28,0xac,0x08,0x00 - -, -0x20,0x18,0x07,0x10,0x10,0x0f,0x00,0x3f,0x10,0x09,0x06,0x09,0x10,0x20,0x00 - -, -/* @2013 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x4a,0xaa,0x5a,0x2a,0xfa,0xaa,0xaa,0xaa,0xaa,0xef,0x02,0x00 - -, -0x20,0x18,0x07,0x01,0x3f,0x00,0x28,0x27,0x16,0x0a,0x0a,0x16,0x23,0x20,0x00 - -, -/* @2014 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x4a,0x4a,0xda,0x6a,0x4a,0xfa,0x4a,0xea,0x5f,0x42,0x00,0x00 - -, -0x20,0x18,0x07,0x22,0x23,0x22,0x2e,0x1b,0x0a,0x0e,0x12,0x13,0x22,0x00,0x00 - -, -/* @2015 (15x15,V)@ [suki software]*/ -0x30,0xac,0x63,0x30,0x40,0x48,0x2a,0x1c,0xbf,0x08,0x1c,0x2a,0x48,0x48,0x00 - -, -0x09,0x1b,0x09,0x05,0x24,0x21,0x25,0x17,0x09,0x09,0x15,0x13,0x31,0x01,0x00 - -, -/* @2016 (15x15,V)@ [suki software]*/ -0x00,0x00,0xf8,0x08,0x28,0x28,0x7f,0xaa,0xaa,0xaa,0xaa,0x8a,0xd8,0x00,0x00 - -, -0x20,0x18,0x07,0x18,0x00,0x1e,0x20,0x21,0x26,0x20,0x20,0x3a,0x04,0x08,0x00 - -, -/* @2017 (15x15,V)@ [suki software]*/ -0x10,0x08,0xa4,0xab,0xaa,0xaa,0xaa,0xea,0x2a,0x2a,0xea,0x0b,0x02,0x00,0x00 - -, -0x00,0x12,0x16,0x0a,0x2a,0x3e,0x0a,0x0b,0x16,0x12,0x07,0x08,0x10,0x3c,0x00 - -, -/* @2018 (15x15,V)@ [suki software]*/ -0x88,0x44,0xe2,0x19,0x10,0x54,0x54,0x54,0xff,0x54,0x54,0x7e,0x14,0x10,0x00 - -, -0x00,0x00,0x3f,0x00,0x04,0x05,0x05,0x05,0x3f,0x05,0x05,0x05,0x05,0x04,0x00 - -, -/* @2019 (15x15,V)@ [suki software]*/ -0x00,0x14,0xa4,0x44,0x24,0xb4,0x6d,0x26,0x94,0x04,0x64,0x96,0x04,0x00,0x00 - -, -0x04,0x05,0x04,0x04,0x05,0x05,0x3f,0x05,0x05,0x05,0x04,0x04,0x05,0x04,0x00 - -, -/* @2020 (15x15,V)@ [suki software]*/ -0x10,0x61,0x02,0xe6,0x00,0xf8,0x48,0x48,0xff,0xaa,0xaa,0xaa,0xda,0x08,0x00 - -, -0x02,0x02,0x3f,0x10,0x0c,0x13,0x0c,0x00,0x1e,0x21,0x22,0x38,0x04,0x18,0x00 - -, -/* @2021 (15x15,V)@ [suki software]*/ -0x00,0x30,0xac,0x63,0x10,0x20,0xaa,0x2a,0x2a,0xea,0x2a,0x3f,0xa2,0x20,0x00 - -, -0x08,0x1b,0x09,0x05,0x05,0x08,0x04,0x13,0x20,0x1f,0x02,0x05,0x08,0x08,0x00 - -, -/* @2022 (15x15,V)@ [suki software]*/ -0x84,0x44,0x24,0x14,0x04,0x7c,0x05,0x06,0x7c,0x04,0x14,0x24,0x66,0x04,0x00 - -, -0x00,0x00,0x1e,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x10,0x3e,0x00,0x00,0x00 - -, -/* @2023 (15x15,V)@ [suki software]*/ -0x04,0x24,0x94,0x8c,0x84,0xbc,0x85,0x86,0xbc,0x44,0x4c,0x14,0x26,0x04,0x00 - -, -0x08,0x08,0x0a,0x0a,0x0a,0x0a,0x2a,0x3f,0x0a,0x0a,0x0a,0x0a,0x08,0x08,0x00 - -, -/* @2024 (15x15,V)@ [suki software]*/ -0x04,0x24,0x54,0x4c,0x44,0x7c,0x45,0x46,0x7c,0xc4,0x4c,0x14,0x26,0x04,0x00 - -, -0x02,0x02,0x02,0x02,0x02,0x12,0x22,0x1f,0x03,0x02,0x02,0x02,0x02,0x02,0x00 - -, -/* @2025 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x00,0x24,0x14,0x04,0x7d,0x86,0x7c,0x04,0x14,0x26,0x04,0x00 - -, -0x02,0x3f,0x00,0x11,0x11,0x09,0x05,0x03,0x3f,0x03,0x05,0x09,0x11,0x11,0x00 - -, -/* @2026 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfc,0x14,0x22,0xfb,0x02,0x00,0xfc,0x14,0x64,0x04,0xfe,0x04,0x00 - -, -0x00,0x20,0x23,0x12,0x09,0x07,0x00,0x00,0x3f,0x00,0x02,0x04,0x03,0x00,0x00 - -, -/* @2027 (15x15,V)@ [suki software]*/ -0x20,0x24,0x24,0x22,0xfe,0x23,0x22,0x20,0x00,0xff,0x00,0x00,0x00,0x00,0x00 - -, -0x00,0x3f,0x11,0x11,0x11,0x11,0x3f,0x00,0x00,0x1f,0x20,0x20,0x20,0x3c,0x00 - -, -/* @2028 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x04,0xf4,0x94,0x95,0x96,0x94,0xf4,0x04,0x04,0x00 - -, -0x01,0x11,0x20,0x1f,0x10,0x08,0x05,0x10,0x20,0x1f,0x00,0x05,0x08,0x10,0x00 - -, -/* @2029 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x44,0xfc,0x44,0xfc,0x90,0x88,0x57,0x24,0x54,0x4c,0x84,0x80,0x00 - -, -0x00,0x0f,0x04,0x07,0x04,0x07,0x00,0x3f,0x11,0x11,0x11,0x11,0x3f,0x00,0x00 - -, -/* @2030 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x48,0x20,0xd0,0x0c,0x03,0x0c,0x90,0x20,0x40,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x00,0x00,0x1f,0x22,0x21,0x21,0x20,0x3c,0x00,0x00 - -, -/* @2031 (15x15,V)@ [suki software]*/ -0x08,0x68,0x5c,0xeb,0x48,0x48,0x20,0xd0,0x0c,0x03,0x0c,0x90,0x20,0x20,0x00 - -, -0x04,0x04,0x02,0x3f,0x02,0x02,0x00,0x1f,0x22,0x22,0x21,0x20,0x3c,0x00,0x00 - -, -/* @2032 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x40,0x20,0xd0,0x0c,0x03,0x04,0x88,0x10,0x60,0x20,0x00 - -, -0x00,0x00,0x3f,0x00,0x00,0x00,0x1f,0x22,0x22,0x21,0x20,0x20,0x3c,0x00,0x00 - -, -/* @2033 (15x15,V)@ [suki software]*/ -0x80,0x80,0x40,0x20,0xd0,0x0c,0x03,0x04,0x08,0x90,0x20,0x40,0xc0,0x40,0x00 - -, -0x00,0x00,0x00,0x00,0x1f,0x22,0x22,0x21,0x21,0x20,0x20,0x38,0x00,0x00,0x00 - -, -/* @2034 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x40,0x20,0xd0,0x0c,0x03,0x04,0x88,0x10,0x60,0x20,0x00 - -, -0x02,0x3e,0x01,0x00,0x00,0x00,0x1f,0x22,0x22,0x21,0x21,0x20,0x3c,0x00,0x00 - -, -/* @2035 (15x15,V)@ [suki software]*/ -0x20,0x30,0xac,0x63,0x10,0x20,0x10,0xcc,0x03,0x04,0x88,0x10,0x20,0x20,0x00 - -, -0x09,0x1b,0x09,0x05,0x05,0x00,0x00,0x1f,0x22,0x21,0x20,0x20,0x3c,0x00,0x00 - -, -/* @2036 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe2,0x06,0x40,0x20,0x10,0xcc,0x03,0x04,0x08,0x90,0x20,0x20,0x00 - -, -0x00,0x00,0x3f,0x10,0x08,0x04,0x00,0x1f,0x22,0x21,0x21,0x20,0x3c,0x00,0x00 - -, -/* @2037 (15x15,V)@ [suki software]*/ -0x04,0x04,0xf4,0x54,0x5f,0x74,0xd4,0x54,0x7f,0x54,0x54,0x74,0x06,0x04,0x00 - -, -0x00,0x28,0x28,0x24,0x22,0x15,0x15,0x09,0x09,0x05,0x03,0x01,0x00,0x00,0x00 - -, -/* @2038 (15x15,V)@ [suki software]*/ -0xf8,0x08,0xff,0x08,0xf8,0x00,0x3e,0xea,0xaa,0xbe,0xaa,0x6a,0x3f,0x02,0x00 - -, -0x11,0x11,0x0f,0x09,0x0d,0x10,0x0a,0x16,0x23,0x1e,0x02,0x06,0x0b,0x12,0x00 - -, -/* @2039 (15x15,V)@ [suki software]*/ -0x00,0x00,0x3e,0x12,0x92,0xde,0xb2,0x92,0x92,0x9e,0xd2,0x92,0x3f,0x02,0x00 - -, -0x00,0x24,0x22,0x21,0x10,0x11,0x0a,0x08,0x04,0x02,0x01,0x00,0x00,0x00,0x00 - -, -/* @2040 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x00,0x9e,0x52,0xfe,0x52,0x52,0x5e,0xd2,0x5f,0x02,0x00 - -, -0x10,0x08,0x07,0x08,0x11,0x10,0x28,0x28,0x25,0x22,0x21,0x20,0x20,0x20,0x00 - -, -/* @2041 (15x15,V)@ [suki software]*/ -0x60,0x38,0xe7,0x24,0x24,0x00,0x3e,0x92,0xfe,0x92,0x9e,0x92,0xbf,0x02,0x00 - -, -0x01,0x01,0x1f,0x11,0x09,0x22,0x21,0x11,0x12,0x0c,0x04,0x02,0x01,0x00,0x00 - -, -/* @2042 (15x15,V)@ [suki software]*/ -0x10,0x08,0xf4,0x53,0x5e,0xf2,0x5a,0x54,0x73,0x52,0x5e,0x72,0x02,0x00,0x00 - -, -0x00,0x28,0x28,0x24,0x22,0x25,0x19,0x11,0x09,0x09,0x05,0x03,0x00,0x00,0x00 - -, -/* @2043 (15x15,V)@ [suki software]*/ -0x02,0xfa,0x82,0x82,0xfe,0x80,0x3e,0xaa,0xea,0xbe,0xaa,0x6a,0x3f,0x02,0x00 - -, -0x04,0x04,0x12,0x22,0x10,0x2f,0x12,0x0a,0x23,0x3e,0x02,0x0b,0x12,0x20,0x00 - -, -/* @2044 (15x15,V)@ [suki software]*/ -0x08,0x88,0xc9,0x2e,0x98,0x00,0x7e,0x4a,0x4a,0xfe,0x4a,0x4a,0x7f,0x02,0x00 - -, -0x01,0x00,0x3f,0x01,0x12,0x11,0x09,0x05,0x03,0x3f,0x03,0x05,0x09,0x11,0x00 - -, -/* @2045 (15x15,V)@ [suki software]*/ -0x44,0x94,0x24,0x84,0x0f,0x44,0x24,0x3c,0x57,0x94,0x54,0x34,0x06,0x04,0x00 - -, -0x04,0x04,0x3e,0x01,0x00,0x02,0x3e,0x25,0x25,0x24,0x25,0x3e,0x02,0x02,0x00 - -, -/* @2046 (15x15,V)@ [suki software]*/ -0x10,0x22,0x84,0x60,0x00,0x10,0x88,0x57,0x24,0x54,0x4c,0x86,0x84,0x80,0x00 - -, -0x02,0x3e,0x01,0x00,0x01,0x01,0x3f,0x11,0x11,0x11,0x11,0x3f,0x00,0x00,0x00 - -, -/* @2047 (15x15,V)@ [suki software]*/ -0x02,0xfa,0x82,0x82,0xfe,0x80,0x10,0x88,0x8f,0x54,0x24,0x54,0x8e,0x84,0x00 - -, -0x04,0x04,0x12,0x22,0x10,0x0f,0x01,0x00,0x3f,0x11,0x11,0x11,0x3f,0x00,0x00 - -, -/* @2048 (15x15,V)@ [suki software]*/ -0x30,0xa8,0x67,0x20,0x18,0x20,0x18,0x8f,0x54,0x24,0x54,0x8e,0x04,0x00,0x00 - -, -0x09,0x1b,0x09,0x05,0x04,0x01,0x3f,0x11,0x11,0x11,0x11,0x3f,0x01,0x01,0x00 - -, -/* @2049 (15x15,V)@ [suki software]*/ -0x08,0x08,0xf8,0x0f,0x08,0xf8,0x02,0xfa,0x82,0x82,0x82,0xff,0x82,0x80,0x00 - -, -0x20,0x11,0x0a,0x04,0x0a,0x11,0x02,0x02,0x02,0x02,0x12,0x22,0x10,0x0f,0x00 - -, -/* @2050 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0x24,0xa4,0xfc,0x25,0x26,0x24,0xfc,0xa4,0x24,0x24,0x04,0x00 - -, -0x30,0x0f,0x04,0x02,0x01,0x3f,0x09,0x06,0x01,0x3f,0x00,0x03,0x04,0x08,0x00 - -, -/* @2051 (15x15,V)@ [suki software]*/ -0x02,0x22,0x22,0xfe,0x22,0x00,0x02,0xfa,0x82,0x82,0x82,0xff,0x82,0x80,0x00 - -, -0x04,0x0c,0x04,0x03,0x02,0x00,0x02,0x02,0x02,0x02,0x12,0x22,0x10,0x0f,0x00 - -, -/* @2052 (15x15,V)@ [suki software]*/ -0x82,0xe2,0x3e,0x22,0xe2,0x02,0x00,0xfa,0x82,0x82,0x82,0xff,0x82,0x80,0x00 - -, -0x00,0x1f,0x04,0x04,0x0f,0x00,0x02,0x02,0x02,0x02,0x12,0x22,0x10,0x0f,0x00 - -, -/* @2053 (15x15,V)@ [suki software]*/ -0x00,0xf8,0x08,0xff,0x08,0xf8,0x02,0xfa,0x82,0x82,0x82,0xff,0x82,0x80,0x00 - -, -0x10,0x11,0x11,0x0f,0x09,0x1d,0x02,0x02,0x02,0x02,0x12,0x22,0x10,0x0f,0x00 - -, -/* @2054 (15x15,V)@ [suki software]*/ -0x00,0x02,0x02,0x62,0x5e,0x42,0x42,0x42,0x42,0x7f,0x42,0x40,0xc0,0x00,0x00 - -, -0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x12,0x22,0x22,0x10,0x0f,0x00,0x00 - -, -/* @2055 (15x15,V)@ [suki software]*/ -0x00,0x00,0x0e,0x2a,0xea,0x2e,0x20,0x20,0x2e,0xaa,0x6a,0x0f,0x02,0x00,0x00 - -, -0x00,0x08,0x08,0x08,0x0b,0x0a,0x0a,0x0a,0x0a,0x2b,0x22,0x12,0x0e,0x00,0x00 - -, -/* @2056 (15x15,V)@ [suki software]*/ -0xfc,0x04,0xfc,0x00,0xfc,0x24,0x24,0xfc,0x25,0x26,0xfc,0x24,0x26,0x24,0x00 - -, -0x03,0x01,0x23,0x10,0x0f,0x04,0x03,0x3f,0x01,0x02,0x3f,0x01,0x02,0x04,0x00 - -, -/* @2057 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0x04,0xfc,0x00,0x02,0xfa,0x82,0x82,0x82,0xff,0x82,0x00,0x00 - -, -0x00,0x07,0x01,0x01,0x03,0x00,0x02,0x02,0x02,0x12,0x22,0x10,0x0f,0x00,0x00 - -, -/* @2058 (15x15,V)@ [suki software]*/ -0x10,0x10,0xff,0x10,0x10,0x00,0xfe,0x92,0x92,0xfe,0x92,0x92,0xff,0x02,0x00 - -, -0x04,0x0c,0x07,0x02,0x02,0x20,0x25,0x24,0x24,0x3f,0x24,0x24,0x25,0x20,0x00 - -, -/* @2059 (15x15,V)@ [suki software]*/ -0x00,0x00,0x22,0x42,0x0a,0x12,0x02,0xfa,0x02,0x02,0x02,0x0a,0x86,0x00,0x00 - -, -0x00,0x21,0x21,0x21,0x11,0x09,0x05,0x03,0x05,0x05,0x09,0x11,0x31,0x01,0x00 - -, -/* @2060 (15x15,V)@ [suki software]*/ -0x40,0x44,0x54,0x54,0x54,0xd4,0x7f,0x54,0x54,0x54,0x54,0x56,0x44,0x40,0x00 - -, -0x20,0x28,0x24,0x22,0x11,0x13,0x0d,0x09,0x15,0x13,0x21,0x20,0x20,0x20,0x00 - -, -/* @2061 (15x15,V)@ [suki software]*/ -0x00,0x10,0x94,0x14,0x34,0x54,0x1f,0x14,0xf4,0x14,0x16,0x54,0x30,0x00,0x00 - -, -0x22,0x22,0x22,0x23,0x12,0x12,0x0a,0x06,0x0b,0x0a,0x12,0x12,0x32,0x02,0x00 - -, -/* @2062 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x02,0x02,0x82,0x7e,0x12,0x12,0x12,0xf2,0x03,0x02,0x00 - -, -0x10,0x08,0x07,0x08,0x14,0x12,0x21,0x20,0x22,0x24,0x24,0x23,0x20,0x20,0x00 - -, -/* @2063 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x92,0x92,0xfe,0x40,0x48,0xc8,0x09,0xf9,0xc2,0x20,0x10,0x00,0x00 - -, -0x30,0x0f,0x10,0x20,0x1f,0x10,0x0c,0x13,0x20,0x1f,0x01,0x06,0x08,0x08,0x00 - -, -/* @2064 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x22,0xfe,0x00,0xa4,0xa4,0xef,0xa4,0xa4,0xef,0xa4,0xa6,0x24,0x00 - -, -0x00,0x1f,0x09,0x1f,0x00,0x3f,0x04,0x03,0x0a,0x04,0x13,0x24,0x1f,0x00,0x00 - -, -/* @2065 (15x15,V)@ [suki software]*/ -0x20,0x18,0xef,0x08,0x18,0x08,0xe0,0xbe,0xea,0xaa,0xea,0xbf,0xa2,0xe0,0x00 - -, -0x00,0x00,0x1f,0x08,0x04,0x20,0x22,0x12,0x16,0x0a,0x0a,0x16,0x22,0x20,0x00 - -, -/* @2066 (15x15,V)@ [suki software]*/ -0x04,0x24,0x94,0x8c,0x84,0xbc,0x85,0xc6,0xbc,0x84,0x8c,0x94,0x26,0x04,0x00 - -, -0x00,0x10,0x37,0x14,0x14,0x14,0x14,0x1f,0x14,0x14,0x1c,0x17,0x30,0x00,0x00 - -, -/* @2067 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0xa4,0xa4,0xa4,0xef,0xa4,0xe4,0xaf,0xa4,0xb6,0x24,0x00 - -, -0x02,0x3e,0x01,0x00,0x3f,0x08,0x04,0x03,0x0a,0x07,0x12,0x24,0x1f,0x00,0x00 - -, -/* @2068 (15x15,V)@ [suki software]*/ -0x00,0x02,0x82,0xfa,0xaa,0xaf,0xaa,0xaa,0xaa,0xaf,0xfa,0x82,0x83,0x02,0x00 - -, -0x00,0x20,0x23,0x22,0x26,0x2b,0x12,0x12,0x1b,0x26,0x22,0x22,0x23,0x20,0x00 - -, -/* @2069 (15x15,V)@ [suki software]*/ -0x00,0x00,0xe0,0xbe,0xaa,0xea,0xaa,0xaa,0xea,0xaa,0xbf,0xa2,0xe0,0x00,0x00 - -, -0x00,0x20,0x20,0x22,0x12,0x16,0x0a,0x0a,0x0a,0x16,0x12,0x20,0x20,0x20,0x00 - -, -/* @2070 (15x15,V)@ [suki software]*/ -0x38,0x00,0xff,0x04,0xe8,0xa0,0xbe,0xea,0xaa,0xaa,0xea,0xbf,0xa2,0xe0,0x00 - -, -0x00,0x00,0x3f,0x00,0x20,0x20,0x12,0x16,0x0a,0x0a,0x16,0x12,0x20,0x20,0x00 - -, -/* @2071 (15x15,V)@ [suki software]*/ -0x10,0x61,0x82,0x66,0x00,0xe0,0xbe,0xea,0xaa,0xaa,0xea,0xbf,0xe2,0x00,0x00 - -, -0x02,0x3e,0x01,0x00,0x20,0x22,0x22,0x16,0x0a,0x0a,0x16,0x12,0x20,0x20,0x00 - -, -}, -//************************************** -{ -/* @2072 á(15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0xe0,0xa0,0xbe,0xea,0xaa,0xaa,0xea,0xbf,0xe2,0x00,0x00 - -, -0x00,0x00,0x1f,0x08,0x24,0x22,0x12,0x16,0x0a,0x0a,0x16,0x12,0x20,0x20,0x00 - -, -/* @2073 â(15x15,V)@ [suki software]*/ -0x44,0x44,0x44,0xc4,0x44,0x5f,0x44,0x64,0x44,0x5f,0x44,0x44,0x46,0x44,0x00 - -, -0x00,0x00,0x00,0x3f,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x00 - -, -/* @2074 ã(15x15,V)@ [suki software]*/ -0x44,0x94,0x24,0x84,0x04,0x4f,0xc4,0x44,0x54,0x6f,0x44,0x44,0x46,0x44,0x00 - -, -0x08,0x08,0x3e,0x01,0x00,0x00,0x3f,0x20,0x20,0x20,0x20,0x20,0x20,0x00,0x00 - -, -/* @2075 ä(15x15,V)@ [suki software]*/ -0x04,0x04,0x04,0xdc,0x54,0x54,0x55,0x56,0x54,0x54,0x54,0xd4,0x06,0x04,0x00 - -, -0x00,0x00,0x00,0x3f,0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x3f,0x00,0x00,0x00 - -, -/* @2076 å(15x15,V)@ [suki software]*/ -0x10,0xf0,0x12,0x14,0x10,0x10,0xfe,0x92,0x92,0xf2,0x92,0x92,0x9f,0x82,0x00 - -, -0x00,0x0f,0x08,0x08,0x08,0x00,0x3f,0x10,0x08,0x03,0x0c,0x10,0x20,0x3c,0x00 - -, -/* @2077 æ(15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x10,0x20,0x10,0xf0,0x10,0x11,0x16,0x10,0x10,0x18,0x10,0x00 - -, -0x00,0x00,0x3f,0x00,0x00,0x00,0x3f,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00 - -, -/* @2078 ç(15x15,V)@ [suki software]*/ -0x24,0x24,0xa4,0x64,0xaf,0x34,0x2c,0x24,0xaf,0x74,0xa4,0x24,0x26,0x24,0x00 - -, -0x01,0x25,0x24,0x14,0x0f,0x04,0x04,0x04,0x3f,0x04,0x04,0x05,0x05,0x01,0x00 - -, -/* @2079 è(15x15,V)@ [suki software]*/ -0x20,0x22,0x14,0x88,0xf7,0x08,0xc8,0x5f,0x48,0xc8,0x5f,0x48,0xc8,0x08,0x00 - -, -0x04,0x12,0x21,0x10,0x0f,0x00,0x3f,0x12,0x12,0x1f,0x12,0x12,0x3f,0x00,0x00 - -, -/* @2080 é(15x15,V)@ [suki software]*/ -0x84,0x84,0x94,0x94,0x94,0xbf,0xd4,0x94,0xd4,0xbf,0x94,0x94,0x86,0x04,0x00 - -, -0x10,0x10,0x08,0x08,0x04,0x12,0x21,0x1f,0x00,0x00,0x00,0x02,0x01,0x00,0x00 - -, -/* @2081 ê(15x15,V)@ [suki software]*/ -0x60,0x38,0xe7,0x24,0x24,0x00,0xc8,0x5f,0x48,0xc8,0x5f,0x48,0xcc,0x08,0x00 - -, -0x01,0x01,0x3f,0x11,0x09,0x00,0x3f,0x12,0x12,0x1f,0x12,0x12,0x3f,0x00,0x00 - -, -/* @2082 ë(15x15,V)@ [suki software]*/ -0x00,0x44,0x44,0x44,0x44,0x44,0xfc,0x22,0x22,0x23,0x22,0x20,0x00,0x00,0x00 - -, -0x02,0x02,0x02,0x02,0x02,0x02,0x1f,0x21,0x21,0x21,0x21,0x21,0x21,0x3c,0x00 - -, -/* @2083 ì(15x15,V)@ [suki software]*/ -0x20,0x20,0x22,0x22,0x22,0xa6,0x6a,0xf2,0x2a,0x26,0x23,0xa2,0x60,0x20,0x00 - -, -0x00,0x08,0x08,0x04,0x02,0x11,0x20,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00 - -, -/* @2084 í(15x15,V)@ [suki software]*/ -0x60,0x38,0xe7,0x24,0x24,0x00,0xfc,0x02,0xfd,0x00,0xfc,0x04,0xfe,0x04,0x00 - -, -0x01,0x01,0x1f,0x09,0x05,0x20,0x13,0x09,0x07,0x00,0x3f,0x02,0x07,0x00,0x00 - -, -/* @2085 î(15x15,V)@ [suki software]*/ -0x00,0x00,0xfc,0x04,0x82,0xfb,0x02,0x00,0xfc,0x04,0x04,0x04,0xfe,0x04,0x00 - -, -0x00,0x20,0x23,0x11,0x08,0x07,0x00,0x00,0x3f,0x00,0x02,0x04,0x03,0x00,0x00 - -, -/* @2086 ï(15x15,V)@ [suki software]*/ -0x04,0x04,0xc4,0x44,0x44,0x4f,0x44,0x44,0xf4,0x4f,0x54,0x64,0x46,0x44,0x00 - -, -0x20,0x10,0x0f,0x00,0x20,0x20,0x10,0x10,0x0b,0x04,0x0a,0x11,0x20,0x38,0x00 - -, -/* @2087 ð(15x15,V)@ [suki software]*/ -0x00,0x00,0x3e,0x02,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0x02,0x3f,0x02,0x00 - -, -0x00,0x00,0x00,0x00,0x3f,0x2a,0x2a,0x2a,0x2a,0x2a,0x3f,0x00,0x00,0x00,0x00 - -, -/* @2088 ñ(15x15,V)@ [suki software]*/ -0xf8,0x08,0xff,0x08,0xf8,0x00,0x3e,0x82,0xaa,0xaa,0xaa,0x82,0xbf,0x02,0x00 - -, -0x07,0x00,0x3f,0x04,0x07,0x00,0x00,0x3f,0x2a,0x2a,0x2a,0x2a,0x3f,0x00,0x00 - -, -/* @2089 ò(15x15,V)@ [suki software]*/ -0x48,0x48,0x34,0xa2,0x55,0x88,0x00,0xfc,0x94,0x97,0x94,0x94,0xfe,0x04,0x00 - -, -0x0a,0x0a,0x15,0x22,0x11,0x0f,0x20,0x10,0x0f,0x00,0x00,0x3f,0x20,0x38,0x00 - -, -/* @2090 ó(15x15,V)@ [suki software]*/ -0x00,0x3e,0x22,0xa2,0x91,0x99,0xa0,0x92,0x8e,0x82,0xa2,0x22,0x1e,0x00,0x00 - -, -0x00,0x20,0x20,0x27,0x10,0x08,0x06,0x08,0x08,0x10,0x17,0x20,0x00,0x00,0x00 - -, -/* @2091 ô(15x15,V)@ [suki software]*/ -0x00,0x80,0x40,0x20,0x10,0x08,0x04,0x83,0x40,0x30,0x00,0x00,0x00,0x00,0x00 - -, -0x00,0x00,0x08,0x18,0x0c,0x0a,0x09,0x08,0x08,0x09,0x0a,0x0c,0x18,0x00,0x00 - -, -/* @2092 õ(15x15,V)@ [suki software]*/ -0x44,0x44,0x44,0xfc,0x46,0x44,0x20,0xf8,0x0f,0x08,0x08,0xf8,0x0c,0x08,0x00 - -, -0x08,0x18,0x08,0x07,0x24,0x24,0x10,0x10,0x0b,0x04,0x0b,0x10,0x30,0x10,0x00 - -, -/* @2093 ö(15x15,V)@ [suki software]*/ -0x10,0x10,0xd0,0xff,0x50,0x98,0x40,0x30,0xcf,0x08,0x08,0xf8,0x0c,0x08,0x00 - -, -0x04,0x03,0x00,0x3f,0x00,0x20,0x20,0x10,0x0b,0x04,0x0a,0x11,0x20,0x20,0x00 - -, -/* @2094 ÷(15x15,V)@ [suki software]*/ -0x08,0xc8,0xff,0x28,0xc8,0x88,0xf4,0x97,0xb4,0xd4,0x94,0xf4,0x86,0x84,0x00 - -, -0x03,0x00,0x3f,0x00,0x00,0x00,0x0f,0x08,0x0a,0x2c,0x28,0x1f,0x08,0x08,0x00 - -, -/* @2095 ø(15x15,V)@ [suki software]*/ -0x02,0xfa,0x8e,0x7a,0x8e,0xfa,0x92,0x8c,0xf7,0x94,0xd4,0x94,0xf6,0x84,0x00 - -, -0x00,0x3f,0x12,0x12,0x12,0x3f,0x00,0x0f,0x08,0x0a,0x2c,0x18,0x0f,0x08,0x00 - -, -/* @2096 ù(15x15,V)@ [suki software]*/ -0x10,0x18,0xaa,0xea,0xaa,0x8a,0xbe,0x8a,0xaa,0xaa,0xab,0x0a,0x18,0x08,0x00 - -, -0x02,0x03,0x0a,0x0f,0x0a,0x0a,0x0e,0x0b,0x2a,0x2a,0x1f,0x0a,0x0a,0x02,0x00 - -, -/* @2097 ú(15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x20,0x10,0x04,0x04,0x7f,0x54,0xd4,0x54,0x7f,0x04,0x04,0x00 - -, -0x20,0x18,0x07,0x02,0x0c,0x11,0x09,0x05,0x03,0x3f,0x05,0x09,0x11,0x11,0x00 - -, -/* @2098 û(15x15,V)@ [suki software]*/ -0x10,0x21,0x02,0xc6,0x00,0x20,0xde,0x42,0x42,0x42,0x5f,0xe2,0x20,0x20,0x00 - -, -0x02,0x02,0x3f,0x00,0x20,0x20,0x11,0x0a,0x04,0x0a,0x11,0x10,0x30,0x10,0x00 - -, -/* @2099 ü(15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x12,0xd2,0x52,0x52,0x5e,0x52,0x52,0x52,0xdf,0x02,0x00,0x00 - -, -0x20,0x18,0x07,0x00,0x3f,0x15,0x15,0x15,0x15,0x15,0x15,0x3f,0x00,0x00,0x00 - -, -/* @2100 ý(15x15,V)@ [suki software]*/ -0x88,0x78,0x0f,0x08,0xf8,0x04,0x04,0x7f,0x54,0xd4,0x54,0x7f,0x04,0x04,0x00 - -, -0x20,0x11,0x0a,0x04,0x2b,0x11,0x09,0x05,0x03,0x3f,0x05,0x09,0x31,0x11,0x00 - -, -/* @2101 þ(15x15,V)@ [suki software]*/ -0x60,0x38,0xe7,0x24,0x24,0x80,0x94,0x95,0x96,0xfc,0x96,0x95,0x94,0x80,0x00 - -, -0x01,0x01,0x1f,0x09,0x25,0x20,0x12,0x0a,0x06,0x03,0x0e,0x12,0x22,0x20,0x00 - -, -/* @2102 ÿ(15x15,V)@ [suki software]*/ -0xa0,0x90,0x88,0xf7,0x94,0x94,0xb4,0xd4,0x94,0x94,0xf4,0x86,0x84,0x80,0x00 - -, -0x00,0x00,0x0c,0x0b,0x08,0x08,0x09,0x0e,0x28,0x28,0x1f,0x08,0x08,0x00,0x00 - -, -/* @2103 (15x15,V)@ [suki software]*/ -0x80,0x84,0x94,0x94,0x95,0x96,0xfc,0x94,0x96,0x95,0x94,0xc4,0x80,0x00,0x00 - -, -0x20,0x22,0x12,0x12,0x0a,0x06,0x03,0x06,0x0a,0x12,0x12,0x22,0x20,0x00,0x00 - -, -/* @2104 (15x15,V)@ [suki software]*/ -0xfc,0x44,0x44,0xfc,0x00,0x48,0x48,0x48,0xff,0x48,0x48,0x4c,0x48,0x40,0x00 - -, -0x0f,0x04,0x04,0x17,0x10,0x08,0x06,0x01,0x3f,0x01,0x02,0x04,0x18,0x08,0x00 - -, -/* @2105 (15x15,V)@ [suki software]*/ -0x10,0x0c,0x74,0x44,0xfc,0x04,0x25,0x26,0x24,0xfc,0x24,0x24,0x2c,0x04,0x00 - -, -0x20,0x11,0x0f,0x01,0x3f,0x00,0x11,0x09,0x05,0x3f,0x03,0x05,0x09,0x11,0x00 - -, -/* @2106 (15x15,V)@ [suki software]*/ -0x88,0x78,0x0f,0x08,0xf8,0x40,0x48,0x48,0x48,0xff,0x48,0x4c,0x48,0x40,0x00 - -, -0x20,0x11,0x0a,0x04,0x0b,0x10,0x08,0x06,0x01,0x3f,0x01,0x06,0x08,0x10,0x00 - -, -/* @2107 (15x15,V)@ [suki software]*/ -0x88,0x78,0x0f,0x08,0xf8,0x00,0xfe,0x12,0xd2,0x5e,0x52,0x52,0xdf,0x02,0x00 - -, -0x20,0x11,0x0a,0x04,0x2b,0x18,0x07,0x00,0x3f,0x15,0x15,0x15,0x3f,0x00,0x00 - -, -/* @2108 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfc,0x01,0x06,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0xfe,0x04,0x00 - -, -0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x20,0x1f,0x00,0x00 - -, -/* @2109 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x01,0x86,0x00,0xe2,0x0a,0x32,0x02,0x42,0x82,0x02,0xff,0x02,0x00 - -, -0x00,0x3f,0x00,0x01,0x00,0x03,0x04,0x04,0x04,0x06,0x11,0x20,0x1f,0x00,0x00 - -, -/* @2110 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x00,0xf8,0x02,0x04,0x00,0x04,0x04,0x04,0xfe,0x04,0x00 - -, -0x00,0x00,0x3f,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x10,0x20,0x1f,0x00,0x00 - -, -/* @2111 (15x15,V)@ [suki software]*/ -0x04,0xf4,0x94,0x94,0x9f,0xf4,0x04,0xf4,0x94,0x9f,0x94,0xf4,0x06,0x04,0x00 - -, -0x00,0x1f,0x04,0x04,0x04,0x2f,0x10,0x0f,0x02,0x12,0x22,0x1f,0x00,0x00,0x00 - -, -/* @2112 (15x15,V)@ [suki software]*/ -0x20,0x1a,0x8a,0xaa,0xaa,0xaf,0xaa,0xaa,0xaa,0xaf,0xaa,0x8a,0x1a,0x00,0x00 - -, -0x00,0x20,0x2a,0x2a,0x15,0x2a,0x25,0x1e,0x02,0x06,0x09,0x10,0x30,0x10,0x00 - -, -/* @2113 (15x15,V)@ [suki software]*/ -0x08,0xc8,0xff,0x88,0x00,0x9a,0xaa,0xaf,0xaa,0xaa,0xaf,0x8a,0x9a,0x00,0x00 - -, -0x03,0x00,0x3f,0x00,0x29,0x2a,0x15,0x0a,0x25,0x3e,0x02,0x05,0x08,0x10,0x00 - -, -/* @2114 (15x15,V)@ [suki software]*/ -0x00,0x00,0x7e,0x4a,0x4a,0x7e,0x80,0x7e,0x2a,0x2a,0x2a,0xaa,0xff,0x02,0x00 - -, -0x20,0x20,0x3e,0x22,0x22,0x3f,0x22,0x22,0x3e,0x22,0x22,0x3e,0x20,0x20,0x00 - -, -/* @2115 (15x15,V)@ [suki software]*/ -0x60,0x38,0xe7,0x24,0x24,0x10,0x12,0x12,0x52,0x7a,0x16,0x13,0x12,0x10,0x00 - -, -0x01,0x01,0x3f,0x11,0x09,0x20,0x3f,0x21,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x00 - -, -/* @2116 (15x15,V)@ [suki software]*/ -0x00,0x22,0x14,0x88,0xf6,0x00,0x12,0x12,0x52,0x7a,0x16,0x13,0x12,0x10,0x00 - -, -0x04,0x12,0x21,0x10,0x0f,0x20,0x3f,0x21,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x00 - -, -/* @2117 (15x15,V)@ [suki software]*/ -0x00,0x44,0x24,0x14,0x7f,0x94,0x04,0x20,0x14,0x7f,0x0c,0x14,0x24,0x40,0x00 - -, -0x00,0x20,0x24,0x24,0x22,0x2d,0x11,0x11,0x09,0x05,0x03,0x01,0x00,0x00,0x00 - -, -/* @2118 (15x15,V)@ [suki software]*/ -0x10,0x10,0x12,0x12,0x12,0x52,0x52,0x7a,0x16,0x12,0x13,0x12,0x18,0x10,0x00 - -, -0x20,0x20,0x3f,0x21,0x21,0x3f,0x21,0x21,0x3f,0x21,0x21,0x3f,0x20,0x20,0x00 - -, -/* @2119 (15x15,V)@ [suki software]*/ -0xfe,0x92,0x92,0xfe,0x20,0x24,0x38,0xa0,0xff,0xa0,0x30,0x2c,0x20,0x20,0x00 - -, -0x0f,0x04,0x04,0x17,0x08,0x04,0x03,0x00,0x3f,0x00,0x03,0x04,0x08,0x08,0x00 - -, -/* @2120 (15x15,V)@ [suki software]*/ -0x02,0xfa,0x8e,0x7a,0x8e,0xfa,0x42,0xd8,0x24,0x28,0xff,0xa8,0x24,0x20,0x00 - -, -0x00,0x3f,0x12,0x12,0x12,0x3f,0x20,0x1f,0x22,0x21,0x2f,0x20,0x21,0x22,0x00 - -, -/* @2121 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0x4a,0x2a,0x7e,0xaa,0x43,0xaa,0x7e,0x1a,0x2a,0x4a,0x42,0x00 - -, -0x30,0x0f,0x10,0x15,0x15,0x15,0x3f,0x00,0x3f,0x15,0x15,0x15,0x15,0x10,0x00 - -, -/* @2122 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0x4a,0x2a,0x7e,0x2a,0x43,0x2a,0x1a,0x7e,0x2a,0x4a,0x02,0x00 - -, -0x30,0x0f,0x20,0x24,0x15,0x0e,0x04,0x3f,0x04,0x0e,0x15,0x14,0x24,0x20,0x00 - -, -/* @2123 (15x15,V)@ [suki software]*/ -0x20,0x22,0xec,0x00,0x20,0x24,0x38,0xa0,0xff,0x60,0xb0,0x2c,0x20,0x20,0x00 - -, -0x10,0x08,0x07,0x08,0x14,0x22,0x21,0x20,0x2f,0x20,0x20,0x21,0x26,0x20,0x00 - -, -/* @2124 (15x15,V)@ [suki software]*/ -0x20,0x22,0xec,0x00,0x44,0xd8,0x00,0x24,0x28,0xa0,0xff,0xa8,0x24,0x20,0x00 - -, -0x00,0x00,0x1f,0x08,0x10,0x0f,0x10,0x12,0x21,0x20,0x2f,0x20,0x21,0x26,0x00 - -, -/* @2125 (15x15,V)@ [suki software]*/ -0x02,0xf2,0x92,0x92,0x9e,0x20,0x10,0x8f,0x08,0xe8,0x08,0xa8,0x18,0x08,0x00 - -, -0x00,0x10,0x20,0x10,0x0f,0x08,0x06,0x11,0x20,0x1f,0x00,0x00,0x03,0x0c,0x00 - -, -/* @2126 (15x15,V)@ [suki software]*/ -0x20,0x20,0x22,0x24,0x38,0xa0,0xff,0x60,0xb0,0x28,0x26,0x20,0x20,0x20,0x00 - -, -0x10,0x08,0x04,0x02,0x01,0x00,0x3f,0x00,0x00,0x01,0x02,0x04,0x08,0x08,0x00 - -, -/* @2127 (15x15,V)@ [suki software]*/ -0x14,0x14,0xd4,0xfe,0x53,0x92,0xc0,0x00,0xf1,0x06,0xc0,0x3e,0x40,0x80,0x00 - -, -0x04,0x03,0x00,0x3f,0x00,0x12,0x11,0x08,0x0f,0x12,0x11,0x10,0x1c,0x01,0x00 - -, -/* @2128 (15x15,V)@ [suki software]*/ -0x00,0x02,0xe2,0x26,0x2a,0x22,0xa6,0x2a,0x22,0x29,0xe5,0x01,0x00,0x00,0x00 - -, -0x20,0x20,0x27,0x10,0x10,0x08,0x07,0x1c,0x20,0x20,0x27,0x20,0x38,0x00,0x00 - -, -/* @2129 (15x15,V)@ [suki software]*/ -0x10,0x61,0x82,0x66,0x00,0xc0,0x00,0xfd,0x02,0xc4,0x30,0x0e,0x40,0x80,0x00 - -, -0x02,0x3e,0x01,0x00,0x11,0x08,0x04,0x0f,0x11,0x10,0x10,0x1e,0x00,0x01,0x00 - -, -/* @2130 (15x15,V)@ [suki software]*/ -0x10,0x8c,0xa4,0x94,0x7c,0xc4,0xad,0xa6,0x94,0x8c,0xc4,0x14,0x6c,0x04,0x00 - -, -0x00,0x20,0x20,0x2e,0x2a,0x2a,0x2a,0x3f,0x2a,0x2a,0x2a,0x3e,0x20,0x00,0x00 - -, -/* @2131 (15x15,V)@ [suki software]*/ -0x10,0x0c,0x64,0x04,0xf4,0x8c,0x55,0x26,0x14,0x0c,0xc4,0x34,0xcc,0x00,0x00 - -, -0x00,0x01,0x3d,0x21,0x20,0x21,0x3f,0x21,0x21,0x21,0x21,0x3c,0x00,0x00,0x00 - -, -/* @2132 (15x15,V)@ [suki software]*/ -0x88,0x86,0x82,0xbe,0xaa,0xea,0xaa,0xaa,0xaa,0xaa,0xbe,0x82,0x8a,0x86,0x00 - -, -0x04,0x04,0x02,0x1e,0x03,0x02,0x3f,0x02,0x02,0x13,0x1e,0x02,0x04,0x04,0x00 - -, -/* @2133 (15x15,V)@ [suki software]*/ -0x08,0xc8,0xff,0x48,0x88,0x00,0x7c,0x54,0x56,0xd5,0x54,0x54,0x7e,0x04,0x00 - -, -0x03,0x00,0x3f,0x00,0x00,0x00,0x1f,0x01,0x01,0x3f,0x01,0x09,0x11,0x0f,0x00 - -, -/* @2134 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x22,0x22,0xfe,0x00,0xfe,0x92,0x92,0xf2,0x92,0x92,0xdf,0x82,0x00 - -, -0x00,0x0f,0x09,0x09,0x0f,0x00,0x3f,0x10,0x08,0x03,0x04,0x08,0x10,0x3c,0x00 - -, -/* @2135 (15x15,V)@ [suki software]*/ -0x20,0x30,0xac,0x63,0x10,0x00,0x7c,0x54,0x56,0xd5,0x54,0x54,0x7e,0x04,0x00 - -, -0x09,0x1b,0x09,0x05,0x05,0x00,0x1f,0x01,0x01,0x3f,0x01,0x01,0x11,0x1f,0x00 - -, -/* @2136 (15x15,V)@ [suki software]*/ -0x00,0x00,0x9e,0x82,0xca,0xba,0xaa,0xaa,0xea,0xaa,0x82,0x9f,0x02,0x00,0x00 - -, -0x00,0x21,0x20,0x23,0x12,0x0a,0x06,0x03,0x1e,0x22,0x22,0x23,0x20,0x38,0x00 - -, -/* @2137 (15x15,V)@ [suki software]*/ -0x40,0x20,0x10,0xfc,0x17,0x14,0xf4,0x14,0x1e,0x14,0x10,0xf0,0x00,0x00,0x00 - -, -0x20,0x20,0x10,0x11,0x09,0x05,0x03,0x01,0x1f,0x21,0x21,0x21,0x20,0x38,0x00 - -, -/* @2138 (15x15,V)@ [suki software]*/ -0x10,0xf8,0x97,0x94,0xfc,0x94,0xf0,0x00,0x10,0xff,0x10,0x10,0xf8,0x10,0x00 - -, -0x20,0x11,0x08,0x06,0x01,0x1e,0x28,0x24,0x23,0x20,0x24,0x24,0x23,0x38,0x00 - -, -/* @2139 (15x15,V)@ [suki software]*/ -0x88,0x78,0x0f,0x08,0xf8,0x10,0xf8,0x94,0x97,0xf4,0x9c,0x94,0xf0,0x00,0x00 - -, -0x20,0x11,0x0a,0x04,0x0b,0x20,0x11,0x08,0x07,0x00,0x1f,0x20,0x21,0x38,0x00 - -, -/* @2140 (15x15,V)@ [suki software]*/ -0x20,0xb8,0x67,0x20,0x18,0x02,0xf2,0x12,0xfa,0x56,0xf2,0x12,0xfb,0x12,0x00 - -, -0x09,0x19,0x09,0x05,0x05,0x00,0x3f,0x10,0x1f,0x12,0x1f,0x10,0x3f,0x00,0x00 - -, -/* @2141 (15x15,V)@ [suki software]*/ -0x02,0x02,0xf2,0x12,0x12,0xfa,0x56,0x52,0xf2,0x12,0x12,0x12,0xf3,0x02,0x00 - -, -0x00,0x00,0x3f,0x10,0x10,0x1f,0x12,0x12,0x1f,0x10,0x10,0x10,0x3f,0x00,0x00 - -, -/* @2142 (15x15,V)@ [suki software]*/ -0x04,0x04,0xe4,0x24,0x24,0x2f,0x24,0xe4,0x24,0x2f,0x24,0xe4,0x06,0x04,0x00 - -, -0x00,0x00,0x3f,0x11,0x11,0x11,0x11,0x1f,0x11,0x11,0x11,0x3f,0x00,0x00,0x00 - -, -/* @2143 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x04,0xc4,0x5f,0x44,0xc4,0x5f,0x44,0xc4,0x04,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x00,0x3f,0x12,0x12,0x1f,0x12,0x12,0x3f,0x00,0x00 - -, -/* @2144 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x22,0x22,0xfe,0x04,0xc4,0x5f,0x44,0xc4,0x5f,0x44,0xc6,0x04,0x00 - -, -0x00,0x1f,0x09,0x09,0x1f,0x00,0x3f,0x12,0x12,0x1f,0x12,0x12,0x3f,0x00,0x00 - -, -/* @2145 (15x15,V)@ [suki software]*/ -0x22,0x22,0xd2,0x52,0xaf,0x22,0x02,0xf2,0x57,0x5a,0x52,0x52,0xf3,0x02,0x00 - -, -0x11,0x15,0x0a,0x25,0x23,0x1e,0x20,0x13,0x0e,0x02,0x1e,0x22,0x23,0x38,0x00 - -, -/* @2146 (15x15,V)@ [suki software]*/ -0x14,0x14,0xd4,0xfe,0x93,0x12,0xc0,0x38,0x00,0xff,0x00,0x08,0x10,0x60,0x00 - -, -0x04,0x03,0x00,0x3f,0x00,0x20,0x21,0x10,0x10,0x09,0x04,0x02,0x01,0x00,0x00 - -, -/* @2147 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0xfe,0x92,0x92,0xfe,0x40,0x30,0xff,0x00,0x10,0x60,0x00 - -, -0x02,0x3e,0x01,0x00,0x1f,0x04,0x24,0x2f,0x10,0x10,0x09,0x04,0x02,0x01,0x00 - -, -/* @2148 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfc,0x04,0xc4,0x44,0x45,0x46,0xfc,0x44,0x44,0x44,0xe6,0x44,0x00 - -, -0x20,0x18,0x07,0x00,0x3f,0x12,0x12,0x12,0x1f,0x12,0x12,0x12,0x3f,0x00,0x00 - -, -/* @2149 (15x15,V)@ [suki software]*/ -0x08,0x08,0xf8,0x0f,0x08,0xf8,0x80,0x78,0x00,0xff,0x00,0x08,0x10,0x60,0x00 - -, -0x20,0x11,0x0a,0x04,0x0a,0x11,0x20,0x10,0x10,0x09,0x04,0x02,0x01,0x00,0x00 - -, -/* @2150 (15x15,V)@ [suki software]*/ -0x02,0x02,0x7a,0x4a,0x4f,0x7a,0x4a,0xca,0x7f,0x4a,0xca,0x7a,0x02,0x02,0x00 - -, -0x20,0x10,0x0f,0x05,0x05,0x29,0x21,0x11,0x17,0x09,0x15,0x23,0x21,0x31,0x00 - -, -/* @2151 (15x15,V)@ [suki software]*/ -0x00,0x02,0x02,0xe2,0x02,0x02,0xfe,0x82,0x02,0x82,0x42,0x23,0x02,0x00,0x00 - -, -0x20,0x20,0x11,0x10,0x08,0x06,0x01,0x00,0x03,0x04,0x08,0x10,0x30,0x10,0x00 - -, -/* @2152 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x92,0x92,0x92,0xf2,0x92,0x92,0x92,0xbf,0x82,0x80,0x00,0x00 - -, -0x00,0x00,0x3f,0x10,0x10,0x08,0x00,0x03,0x04,0x08,0x10,0x20,0x38,0x00,0x00 - -, -/* @2153 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x00,0xfe,0x92,0x92,0xf2,0x92,0x92,0xdf,0x82,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x00,0x3f,0x10,0x08,0x03,0x04,0x08,0x10,0x3c,0x00 - -, -/* @2154 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfc,0x04,0x04,0xfc,0x04,0x04,0xfc,0x04,0x04,0xfe,0x04,0x00,0x00 - -, -0x08,0x08,0x0f,0x08,0x08,0x0f,0x08,0x08,0x0f,0x08,0x08,0x0f,0x08,0x08,0x00 - -, -/* @2155 (15x15,V)@ [suki software]*/ -0x90,0x88,0xf7,0x94,0xd4,0x94,0xf4,0x84,0x10,0xff,0x08,0x88,0x7c,0x08,0x00 - -, -0x00,0x0c,0x0b,0x08,0x2e,0x28,0x1f,0x28,0x10,0x09,0x06,0x09,0x10,0x20,0x00 - -, -/* @2156 (15x15,V)@ [suki software]*/ -0x60,0x10,0xff,0x08,0x10,0xfc,0x21,0xa6,0x28,0xb4,0x64,0x24,0xfe,0x04,0x00 - -, -0x00,0x00,0x3f,0x00,0x00,0x3f,0x04,0x02,0x01,0x02,0x14,0x20,0x1f,0x00,0x00 - -, -/* @2157 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x01,0x02,0xe6,0x20,0xfa,0x22,0x22,0xe2,0x02,0x02,0xff,0x02,0x00 - -, -0x00,0x3f,0x00,0x08,0x09,0x09,0x07,0x05,0x05,0x07,0x0c,0x20,0x3f,0x00,0x00 - -, -/* @2158 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x24,0x24,0x24,0xfc,0x00,0xfe,0x12,0x12,0x12,0x12,0xff,0x02,0x00 - -, -0x00,0x07,0x01,0x01,0x21,0x13,0x08,0x07,0x01,0x01,0x11,0x21,0x1f,0x00,0x00 - -, -/* @2159 (15x15,V)@ [suki software]*/ -0xf8,0x08,0xff,0x08,0xf8,0x00,0x06,0xfa,0xaa,0xaa,0xaa,0xaa,0xfa,0x06,0x00 - -, -0x09,0x19,0x0f,0x05,0x07,0x2c,0x12,0x0a,0x02,0x03,0x02,0x0a,0x12,0x22,0x00 - -, -/* @2160 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0x04,0xfc,0x00,0xfc,0x04,0x0f,0x54,0x44,0x3e,0x84,0x00,0x00 - -, -0x00,0x07,0x01,0x01,0x05,0x04,0x05,0x05,0x05,0x15,0x25,0x21,0x1f,0x01,0x00 - -, -/* @2161 (15x15,V)@ [suki software]*/ -0x40,0x30,0xef,0x24,0x24,0x04,0x20,0x18,0xa7,0x44,0x24,0x14,0x8c,0x00,0x00 - -, -0x01,0x01,0x1f,0x11,0x09,0x01,0x02,0x3f,0x11,0x11,0x11,0x11,0x3f,0x01,0x00 - -, -/* @2162 (15x15,V)@ [suki software]*/ -0x00,0x00,0x20,0x10,0x08,0x17,0xa4,0x44,0x24,0x14,0x0c,0x84,0x00,0x00,0x00 - -, -0x04,0x04,0x04,0x02,0x3f,0x11,0x11,0x11,0x11,0x11,0x11,0x3f,0x01,0x00,0x00 - -, -/* @2163 (15x15,V)@ [suki software]*/ -0x40,0x40,0xa0,0x90,0xa8,0xa4,0x23,0x24,0xa8,0x90,0x90,0xa0,0x20,0x20,0x00 - -, -0x00,0x00,0x1f,0x08,0x08,0x1f,0x00,0x00,0x3f,0x08,0x10,0x0f,0x00,0x00,0x00 - -, -/* @2164 (15x15,V)@ [suki software]*/ -0x20,0x22,0xec,0x00,0x12,0x16,0x8a,0x42,0x3e,0x42,0x96,0x8a,0x3f,0x02,0x00 - -, -0x00,0x00,0x1f,0x08,0x05,0x21,0x24,0x2a,0x29,0x14,0x12,0x08,0x09,0x01,0x00 - -, -/* @2165 (15x15,V)@ [suki software]*/ -0x08,0x88,0xff,0x48,0x48,0x04,0xf4,0x5f,0x54,0x54,0x5f,0x54,0xf6,0x04,0x00 -, - -0x11,0x20,0x1f,0x00,0x24,0x24,0x15,0x0d,0x07,0x05,0x0d,0x15,0x25,0x24,0x00 - -, -}, -//************************************** -{ -/* @2166 ġ(15x15,V)@ [suki software]*/ -0x80,0x82,0x82,0xfa,0xaa,0xaf,0xaa,0xaa,0xaf,0xaa,0xfa,0x82,0x83,0x82,0x00 - -, -0x04,0x0a,0x0a,0x09,0x0a,0x0a,0x2a,0x3f,0x0a,0x0a,0x09,0x0a,0x0a,0x02,0x00 - -, -/* @2167 Ģ(15x15,V)@ [suki software]*/ -0x02,0xfa,0x2a,0xaa,0x6f,0xfa,0xae,0x2a,0xaf,0xfa,0x6a,0xaa,0x2a,0x02,0x00 - -, -0x30,0x0f,0x10,0x12,0x0a,0x3f,0x2a,0x2b,0x2a,0x2b,0x2a,0x3a,0x03,0x00,0x00 - -, -/* @2168 ģ(15x15,V)@ [suki software]*/ -0x08,0xc8,0xff,0x28,0xc8,0x04,0xf4,0x5f,0x54,0x54,0x5f,0x54,0xf6,0x04,0x00 - -, -0x03,0x00,0x3f,0x00,0x24,0x24,0x15,0x0d,0x07,0x05,0x0d,0x15,0x25,0x24,0x00 - -, -/* @2169 Ĥ(15x15,V)@ [suki software]*/ -0x00,0xfe,0x92,0x92,0xfe,0x04,0xf4,0x5f,0x54,0x54,0x5f,0x54,0xf4,0x04,0x00 - -, -0x30,0x0f,0x10,0x20,0x1f,0x24,0x25,0x15,0x0d,0x07,0x0d,0x15,0x25,0x24,0x00 - -, -/* @2170 ĥ(15x15,V)@ [suki software]*/ -0x00,0x00,0xfc,0x54,0x34,0xfc,0x55,0x86,0x54,0x34,0xfc,0x54,0x96,0x04,0x00 - -, -0x20,0x18,0x17,0x09,0x09,0x3d,0x27,0x25,0x25,0x25,0x25,0x3d,0x01,0x00,0x00 - -, -/* @2171 Ħ(15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x4a,0xaa,0xfe,0xaa,0xc3,0xaa,0xfe,0x9a,0xaa,0x4a,0x42,0x00 - -, -0x20,0x18,0x07,0x08,0x0a,0x0a,0x0a,0x2a,0x3f,0x0a,0x0a,0x0a,0x08,0x08,0x00 - -, -/* @2172 ħ(15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x2a,0xda,0x7e,0x4a,0xf3,0x4a,0x7e,0x4a,0xda,0x2b,0x22,0x00 - -, -0x20,0x18,0x07,0x20,0x27,0x15,0x0d,0x07,0x1d,0x25,0x2d,0x37,0x20,0x30,0x00 - -, -/* @2173 Ĩ(15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x00,0x48,0x48,0x48,0xff,0x48,0x48,0x4c,0x08,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x08,0x04,0x02,0x01,0x3f,0x01,0x02,0x04,0x08,0x00 - -, -/* @2174 ĩ(15x15,V)@ [suki software]*/ -0x00,0x08,0x48,0x48,0x48,0x48,0xc8,0xff,0xc8,0x48,0x48,0x68,0x4c,0x08,0x00 - -, -0x00,0x08,0x08,0x04,0x02,0x01,0x00,0x3f,0x00,0x01,0x02,0x04,0x08,0x08,0x00 - -, -/* @2175 Ī(15x15,V)@ [suki software]*/ -0x04,0x04,0x04,0xf4,0x54,0x5f,0x54,0x54,0x5f,0x54,0xf4,0x04,0x06,0x04,0x00 - -, -0x24,0x24,0x24,0x15,0x15,0x0d,0x07,0x05,0x0d,0x15,0x15,0x24,0x26,0x24,0x00 - -, -/* @2176 ī(15x15,V)@ [suki software]*/ -0x00,0x00,0x5e,0x52,0x56,0x5a,0x52,0xfe,0x5a,0x56,0x52,0x5f,0x02,0x00,0x00 - -, -0x00,0x25,0x2b,0x29,0x29,0x2b,0x29,0x3d,0x29,0x2b,0x29,0x2b,0x35,0x21,0x00 - -, -/* @2177 Ĭ(15x15,V)@ [suki software]*/ -0x00,0xbe,0xaa,0xfe,0xaa,0xa2,0xbe,0x10,0x10,0xff,0x10,0x12,0x14,0x10,0x00 - -, -0x34,0x04,0x1a,0x03,0x1a,0x02,0x2a,0x10,0x0e,0x01,0x02,0x0c,0x10,0x20,0x00 - -, -/* @2178 ĭ(15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x08,0x48,0x48,0x48,0xff,0x48,0x48,0x48,0x4c,0x08,0x00 - -, -0x02,0x3e,0x01,0x08,0x08,0x04,0x02,0x01,0x3f,0x01,0x02,0x04,0x08,0x08,0x00 - -, -/* @2179 Į(15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x04,0xf4,0x54,0x5f,0x54,0x54,0x5f,0xf4,0x06,0x04,0x00 - -, -0x02,0x3e,0x01,0x24,0x24,0x15,0x15,0x0d,0x07,0x0d,0x15,0x15,0x24,0x24,0x00 - -, -/* @2180 į(15x15,V)@ [suki software]*/ -0x08,0x06,0x0a,0xea,0x2a,0x3e,0x6b,0xaa,0x3e,0x2a,0xea,0x0a,0x06,0x00,0x00 - -, -0x00,0x24,0x24,0x15,0x15,0x0d,0x07,0x05,0x0d,0x15,0x15,0x24,0x24,0x00,0x00 - -, -/* @2181 İ(15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0x32,0xce,0x00,0xf2,0x12,0x1a,0x16,0x12,0x12,0xfb,0x12,0x00 - -, -0x00,0x3f,0x02,0x04,0x03,0x00,0x3f,0x11,0x11,0x11,0x11,0x11,0x3f,0x00,0x00 - -, -/* @2182 ı(15x15,V)@ [suki software]*/ -0x20,0x22,0xec,0x00,0x04,0x04,0x7f,0x54,0xd4,0x54,0x54,0x7f,0x04,0x04,0x00 - -, -0x00,0x00,0x1f,0x08,0x15,0x11,0x09,0x05,0x3f,0x03,0x05,0x09,0x11,0x11,0x00 - -, -/* @2183 IJ(15x15,V)@ [suki software]*/ -0x00,0x00,0x90,0xf8,0x94,0x93,0xe8,0x88,0x88,0x8a,0xcc,0x98,0x00,0x00,0x00 - -, -0x04,0x06,0x05,0x04,0x04,0x04,0x3f,0x04,0x04,0x04,0x04,0x04,0x06,0x04,0x00 - -, -/* @2184 ij(15x15,V)@ [suki software]*/ -0x00,0x04,0x04,0x04,0x7f,0x54,0x54,0xd4,0x54,0x7f,0x04,0x04,0x06,0x04,0x00 - -, -0x21,0x21,0x11,0x09,0x05,0x03,0x01,0x3f,0x03,0x05,0x09,0x11,0x31,0x11,0x00 - -, -/* @2185 Ĵ(15x15,V)@ [suki software]*/ -0x08,0x08,0xff,0x88,0x48,0x40,0xfe,0x42,0xca,0x52,0x42,0xff,0x42,0x40,0x00 - -, -0x11,0x21,0x1f,0x00,0x00,0x06,0x05,0x04,0x04,0x15,0x24,0x1f,0x04,0x04,0x00 - -, -/* @2186 ĵ(15x15,V)@ [suki software]*/ -0xc0,0x3c,0x10,0xff,0x90,0x90,0x20,0x20,0x20,0xff,0x20,0x30,0x20,0x00,0x00 - -, -0x02,0x02,0x01,0x3f,0x00,0x10,0x10,0x10,0x10,0x1f,0x10,0x10,0x18,0x10,0x00 - -, -/* @2187 Ķ(15x15,V)@ [suki software]*/ -0x08,0x08,0xe8,0x28,0x28,0x29,0x2a,0xec,0x28,0x28,0x28,0xe8,0x0c,0x08,0x00 - -, -0x00,0x00,0x3f,0x11,0x11,0x11,0x11,0x1f,0x11,0x11,0x11,0x3f,0x00,0x00,0x00 - -, -/* @2188 ķ(15x15,V)@ [suki software]*/ -0x08,0x08,0xf8,0x0f,0x08,0xf8,0x40,0xfe,0x42,0xca,0x52,0x42,0xff,0x42,0x00 - -, -0x20,0x11,0x0a,0x04,0x0a,0x11,0x06,0x05,0x04,0x14,0x25,0x1c,0x07,0x04,0x00 - -, -/* @2189 ĸ(15x15,V)@ [suki software]*/ -0x40,0x40,0xc0,0x7e,0x42,0x42,0xca,0x52,0x42,0x42,0xc2,0x7f,0x42,0x40,0x00 - -, -0x00,0x00,0x07,0x04,0x04,0x04,0x04,0x05,0x14,0x24,0x1f,0x04,0x04,0x04,0x00 - -, -/* @2190 Ĺ(15x15,V)@ [suki software]*/ -0x02,0x02,0x02,0xfa,0xaa,0xaf,0xaa,0xaa,0xaa,0xaf,0xfa,0x02,0x03,0x02,0x00 - -, -0x08,0x2a,0x2a,0x26,0x2a,0x2b,0x3e,0x2a,0x2a,0x2a,0x26,0x2a,0x2a,0x0a,0x00 - -, -/* @2191 ĺ(15x15,V)@ [suki software]*/ -0x80,0x82,0x82,0xfa,0xaa,0xaf,0xaa,0xaa,0xaa,0xaf,0xfa,0x82,0x82,0x80,0x00 - -, -0x04,0x04,0x04,0x02,0x3f,0x2a,0x2a,0x2a,0x2a,0x2b,0x3e,0x02,0x04,0x04,0x00 - -, -/* @2192 Ļ(15x15,V)@ [suki software]*/ -0x82,0x82,0x82,0xfa,0xaa,0xaf,0xaa,0xaa,0xaf,0xaa,0xfa,0x82,0x83,0x82,0x00 - -, -0x04,0x04,0x02,0x1e,0x05,0x04,0x3f,0x04,0x14,0x15,0x1e,0x02,0x04,0x04,0x00 - -, -/* @2193 ļ(15x15,V)@ [suki software]*/ -0x82,0x82,0x82,0xfa,0xaa,0xaf,0xaa,0xaa,0xaa,0xaf,0xfa,0x82,0x82,0x82,0x00 - -, -0x04,0x24,0x22,0x26,0x15,0x0c,0x06,0x14,0x24,0x25,0x1e,0x02,0x04,0x04,0x00 - -, -/* @2194 Ľ(15x15,V)@ [suki software]*/ -0x80,0x82,0x82,0xfa,0xaa,0xaf,0xaa,0xaa,0xaf,0xaa,0xfa,0x82,0x82,0x80,0x00 - -, -0x08,0x08,0x04,0x12,0x09,0x20,0x3e,0x00,0x08,0x11,0x0a,0x12,0x04,0x04,0x00 - -, -/* @2195 ľ(15x15,V)@ [suki software]*/ -0x10,0x10,0x10,0x10,0x90,0x50,0xff,0x50,0x90,0x10,0x10,0x10,0x18,0x10,0x00 - -, -0x08,0x04,0x02,0x01,0x00,0x00,0x3f,0x00,0x00,0x01,0x02,0x04,0x0c,0x04,0x00 - -, -/* @2196 Ŀ(15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0xfe,0x22,0x22,0x22,0x22,0x22,0x22,0xff,0x02,0x00,0x00,0x00 - -, -0x00,0x00,0x00,0x3f,0x11,0x11,0x11,0x11,0x11,0x11,0x3f,0x00,0x00,0x00,0x00 - -, -/* @2197 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x22,0x22,0xfe,0x20,0xa4,0x64,0x24,0xbf,0x24,0x64,0xa4,0x20,0x00 - -, -0x00,0x1f,0x09,0x09,0x0f,0x21,0x24,0x24,0x24,0x3f,0x24,0x24,0x34,0x21,0x00 - -, -/* @2198 (15x15,V)@ [suki software]*/ -0xc0,0x3c,0x10,0xff,0x90,0x90,0x40,0x38,0xcf,0x08,0x08,0xf8,0x0c,0x08,0x00 - -, -0x02,0x02,0x01,0x3f,0x00,0x20,0x20,0x10,0x09,0x06,0x09,0x10,0x30,0x10,0x00 - -, -/* @2199 (15x15,V)@ [suki software]*/ -0x14,0x14,0xd4,0xfe,0x53,0x92,0x00,0xbe,0x2a,0xeb,0x2a,0xaa,0x7e,0x80,0x00 - -, -0x04,0x03,0x00,0x3f,0x00,0x20,0x25,0x24,0x2a,0x2a,0x15,0x14,0x0a,0x08,0x00 - -, -/* @2200 (15x15,V)@ [suki software]*/ -0x10,0x10,0x88,0x88,0xe4,0xaa,0xa9,0xa9,0xaa,0xac,0xe4,0x88,0x18,0x08,0x00 - -, -0x00,0x08,0x08,0x0a,0x0a,0x0a,0x2a,0x3f,0x0a,0x0a,0x0a,0x0a,0x08,0x00,0x00 - -, -/* @2201 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0xfc,0x22,0x22,0xfe,0x22,0xfe,0x00,0xfe,0x22,0xda,0x06,0x00 - -, -0x00,0x03,0x21,0x13,0x09,0x07,0x11,0x11,0x0f,0x00,0x3f,0x04,0x08,0x07,0x00 - -, -/* @2202 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0x04,0xfc,0x00,0xf8,0x08,0x88,0x7f,0x88,0x08,0xfc,0x08,0x00 - -, -0x00,0x07,0x01,0x01,0x07,0x00,0x3f,0x01,0x00,0x00,0x10,0x21,0x1f,0x00,0x00 - -, -/* @2203 (15x15,V)@ [suki software]*/ -0x40,0x30,0xef,0x24,0x24,0x04,0xf8,0x08,0x88,0x7f,0x88,0x08,0xfc,0x08,0x00 - -, -0x01,0x01,0x1f,0x11,0x09,0x01,0x3f,0x02,0x01,0x00,0x10,0x21,0x1f,0x00,0x00 - -, -/* @2204 (15x15,V)@ [suki software]*/ -0x00,0x92,0x92,0xfe,0x92,0x92,0xfe,0x00,0xfe,0x02,0x22,0x52,0x8f,0x02,0x00 - -, -0x20,0x10,0x0c,0x03,0x08,0x10,0x0f,0x00,0x3f,0x00,0x04,0x08,0x07,0x00,0x00 - -, -/* @2205 (15x15,V)@ [suki software]*/ -0x88,0x78,0x0f,0x08,0xf8,0x22,0xfe,0x22,0xfe,0x00,0xfe,0x22,0x5a,0x86,0x00 - -, -0x20,0x11,0x0a,0x04,0x2b,0x11,0x0f,0x11,0x1f,0x00,0x3f,0x04,0x08,0x07,0x00 - -, -/* @2206 (15x15,V)@ [suki software]*/ -0x20,0x30,0xac,0x63,0x10,0x00,0xf8,0x08,0x88,0x7f,0x88,0x08,0xfc,0x08,0x00 - -, -0x09,0x1b,0x09,0x05,0x05,0x00,0x3f,0x02,0x01,0x00,0x10,0x21,0x1f,0x00,0x00 - -, -/* @2207 (15x15,V)@ [suki software]*/ -0x20,0x10,0xa8,0xa7,0xaa,0xaa,0xaa,0xaa,0x2a,0x2a,0xea,0x0a,0x02,0x00,0x00 - -, -0x20,0x10,0x08,0x07,0x00,0x10,0x23,0x12,0x0e,0x00,0x07,0x08,0x10,0x3c,0x00 - -, -/* @2208 (15x15,V)@ [suki software]*/ -0x00,0x02,0x02,0x02,0x02,0xfe,0x02,0x02,0x02,0x32,0x2f,0x22,0xe0,0x00,0x00 - -, -0x20,0x10,0x08,0x04,0x03,0x00,0x00,0x00,0x10,0x20,0x20,0x10,0x0f,0x00,0x00 - -, -/* @2209 (15x15,V)@ [suki software]*/ -0x08,0x08,0xf8,0x0f,0x08,0xf8,0x02,0x02,0xfe,0x02,0x62,0x5f,0x42,0xc0,0x00 - -, -0x20,0x11,0x0a,0x04,0x2a,0x11,0x08,0x06,0x01,0x00,0x10,0x20,0x10,0x0f,0x00 - -, -/* @2210 (15x15,V)@ [suki software]*/ -0x02,0xf2,0x12,0xfa,0x16,0xf2,0x12,0xf2,0x48,0x88,0x08,0xff,0x08,0x08,0x00 - -, -0x00,0x3f,0x00,0x0f,0x00,0x0f,0x20,0x3f,0x00,0x11,0x20,0x1f,0x00,0x00,0x00 - -, -/* @2211 (15x15,V)@ [suki software]*/ -0x80,0x84,0x44,0x24,0x54,0x4c,0x47,0x44,0x4c,0x54,0x24,0x24,0x46,0x44,0x00 - -, -0x00,0x10,0x11,0x09,0x05,0x11,0x21,0x1f,0x01,0x05,0x05,0x09,0x19,0x00,0x00 - -, -/* @2212 (15x15,V)@ [suki software]*/ -0x04,0x04,0xf4,0x14,0x14,0x54,0x94,0x1f,0x94,0x54,0x14,0x14,0xf6,0x04,0x00 - -, -0x00,0x00,0x3f,0x00,0x05,0x05,0x05,0x1f,0x05,0x05,0x15,0x20,0x1f,0x00,0x00 - -, -/* @2213 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x7e,0x4a,0x4a,0x4a,0xfe,0x4a,0x4a,0x4a,0x7f,0x02,0x00,0x00 - -, -0x00,0x20,0x21,0x11,0x11,0x09,0x05,0x03,0x01,0x11,0x21,0x11,0x0f,0x00,0x00 - -, -/* @2214 (15x15,V)@ [suki software]*/ -0x08,0x28,0x48,0x88,0x78,0x20,0x10,0xfe,0x48,0x49,0xfe,0x48,0x48,0x08,0x00 - -, -0x10,0x08,0x06,0x01,0x02,0x0c,0x00,0x3f,0x12,0x12,0x1f,0x12,0x12,0x10,0x00 - -, -/* @2215 (15x15,V)@ [suki software]*/ -0x40,0x32,0x12,0x7e,0x56,0xf6,0x16,0x7f,0xd6,0x56,0x7e,0x12,0x52,0x30,0x00 - -, -0x24,0x25,0x15,0x15,0x3d,0x27,0x15,0x0d,0x17,0x15,0x2d,0x25,0x25,0x24,0x00 - -, -/* @2216 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x00,0x88,0x4f,0x58,0x24,0x54,0x4c,0x84,0xe0,0x00 - -, -0x01,0x11,0x20,0x1f,0x20,0x11,0x09,0x07,0x01,0x1f,0x21,0x21,0x21,0x38,0x00 - -, -/* @2217 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x12,0x12,0xfe,0x04,0xe4,0x04,0x65,0x86,0x74,0x04,0xe4,0x04,0x00 - -, -0x30,0x0f,0x11,0x21,0x1f,0x00,0x1f,0x14,0x12,0x11,0x16,0x10,0x3f,0x00,0x00 - -, -/* @2218 (15x15,V)@ [suki software]*/ -0x38,0x00,0xff,0x08,0x10,0xc4,0x04,0x24,0x45,0x86,0x74,0x04,0xc4,0x04,0x00 - -, -0x00,0x00,0x3f,0x00,0x00,0x1f,0x10,0x14,0x12,0x11,0x16,0x10,0x3f,0x00,0x00 - -, -/* @2219 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x01,0x12,0xd4,0x52,0xfa,0x52,0x52,0xd2,0x12,0x02,0xff,0x02,0x00 - -, -0x00,0x3f,0x00,0x00,0x07,0x00,0x1f,0x00,0x04,0x07,0x10,0x20,0x1f,0x00,0x00 - -, -/* @2220 (15x15,V)@ [suki software]*/ -0x10,0x61,0x06,0xe0,0x00,0xf8,0x48,0x48,0x4f,0x4a,0x4a,0xfa,0x02,0x02,0x00 - -, -0x02,0x02,0x3f,0x00,0x04,0x05,0x05,0x05,0x3f,0x05,0x05,0x05,0x04,0x04,0x00 - -, -/* @2221 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0x04,0xfc,0x00,0xfe,0x12,0xd2,0x12,0x12,0x92,0xbf,0x02,0x00 - -, -0x00,0x07,0x01,0x21,0x13,0x0c,0x03,0x00,0x0f,0x12,0x11,0x10,0x10,0x1c,0x00 - -, -/* @2222 (15x15,V)@ [suki software]*/ -0x20,0x18,0xef,0x08,0x18,0x00,0x0c,0x34,0xc4,0x1a,0x22,0x13,0x8a,0x00,0x00 - -, -0x00,0x00,0x1f,0x08,0x04,0x21,0x21,0x27,0x15,0x09,0x0d,0x13,0x11,0x21,0x00 - -, -/* @2223 (15x15,V)@ [suki software]*/ -0x00,0x00,0xf8,0x08,0x08,0x88,0x7f,0x88,0x08,0x08,0x08,0xfc,0x08,0x00,0x00 - -, -0x00,0x00,0x3f,0x02,0x01,0x00,0x00,0x00,0x01,0x13,0x20,0x1f,0x00,0x00,0x00 - -, -/* @2224 (15x15,V)@ [suki software]*/ -0x10,0xf0,0x1f,0xf0,0xf4,0x94,0xff,0x94,0xf4,0x24,0xff,0x10,0xf8,0x10,0x00 - -, -0x11,0x0a,0x04,0x0b,0x08,0x04,0x3f,0x02,0x04,0x20,0x13,0x0c,0x13,0x20,0x00 - -, -/* @2225 (15x15,V)@ [suki software]*/ -0x00,0x08,0xec,0xab,0xa8,0xa8,0xec,0x00,0xbf,0x48,0x48,0x44,0x44,0x70,0x00 - -, -0x00,0x00,0x3f,0x02,0x12,0x22,0x1f,0x00,0x1f,0x24,0x22,0x22,0x21,0x38,0x00 - -, -/* @2226 (15x15,V)@ [suki software]*/ -0x08,0x08,0xf8,0x0f,0x08,0xf8,0x00,0xfe,0x12,0xd2,0x12,0x12,0x9f,0x02,0x00 - -, -0x20,0x11,0x0a,0x04,0x2a,0x11,0x08,0x07,0x00,0x1f,0x22,0x21,0x20,0x38,0x00 - -, -/* @2227 (15x15,V)@ [suki software]*/ -0x10,0x0c,0xc4,0x55,0x55,0x35,0x05,0x3f,0x45,0x55,0x55,0xc5,0x14,0x0c,0x00 - -, -0x00,0x20,0x27,0x25,0x15,0x0d,0x05,0x04,0x1d,0x25,0x25,0x27,0x20,0x38,0x00 - -, -/* @2228 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x00,0xfe,0x92,0x92,0x91,0x80,0x92,0x92,0xfe,0x00,0x00 - -, -0x00,0x00,0x3f,0x00,0x20,0x11,0x08,0x07,0x00,0x00,0x1f,0x20,0x21,0x3c,0x00 - -, -/* @2229 (15x15,V)@ [suki software]*/ -0x10,0x61,0x06,0xc0,0x30,0x00,0xfe,0x12,0xd2,0x12,0x12,0x12,0x9f,0x02,0x00 - -, -0x02,0x02,0x3f,0x20,0x10,0x0c,0x03,0x00,0x1f,0x22,0x21,0x21,0x20,0x1c,0x00 - -, -/* @2230 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0xfe,0x12,0x12,0xd2,0x12,0x12,0x92,0x92,0x5f,0x02,0x00,0x00 - -, -0x20,0x10,0x0c,0x03,0x00,0x00,0x1f,0x21,0x21,0x20,0x20,0x20,0x3c,0x00,0x00 - -, -/* @2231 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x08,0xfc,0x00,0x02,0x0c,0x00,0xff,0x00,0x00,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x00,0x2f,0x24,0x12,0x09,0x04,0x03,0x04,0x18,0x00 - -, -/* @2232 (15x15,V)@ [suki software]*/ -0x40,0x20,0x10,0xfc,0x43,0x20,0x98,0x0f,0x08,0xe8,0x08,0xa8,0x1c,0x08,0x00 - -, -0x00,0x00,0x00,0x3f,0x08,0x04,0x03,0x10,0x20,0x1f,0x00,0x00,0x03,0x0c,0x00 - -, -/* @2233 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0x4a,0x4a,0xde,0x6a,0x4a,0x4a,0x5e,0x4a,0x4b,0x42,0x00,0x00 - -, -0x00,0x3f,0x22,0x22,0x21,0x2f,0x29,0x29,0x29,0x29,0x2f,0x20,0x30,0x20,0x00 - -, -/* @2234 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x92,0x92,0xfe,0x04,0xd4,0x54,0x54,0xd4,0x04,0xff,0x04,0x06,0x00 - -, -0x30,0x0f,0x10,0x20,0x1f,0x20,0x17,0x0f,0x10,0x27,0x00,0x0f,0x10,0x3c,0x00 - -, -/* @2235 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x08,0xe8,0x09,0x0e,0xf8,0x0c,0x0b,0xe8,0x0c,0x08,0x00 - -, -0x10,0x08,0x07,0x08,0x10,0x29,0x29,0x25,0x23,0x21,0x21,0x21,0x20,0x20,0x00 - -, -/* @2236 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x02,0x72,0x52,0xde,0x00,0x72,0x52,0x52,0xdf,0x02,0x00 - -, -0x02,0x3e,0x01,0x08,0x09,0x15,0x22,0x1f,0x00,0x08,0x15,0x22,0x1f,0x00,0x00 - -, -/* @2237 (15x15,V)@ [suki software]*/ -0x82,0x82,0x8a,0x8a,0xea,0x8f,0x8a,0xfa,0xaa,0xaf,0xaa,0xaa,0x8a,0x82,0x00 - -, -0x00,0x20,0x18,0x03,0x0a,0x12,0x0a,0x12,0x02,0x2a,0x32,0x22,0x1e,0x00,0x00 - -, -/* @2238 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x08,0x80,0x80,0x80,0xff,0x88,0x88,0xcc,0x88,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x00,0x3f,0x10,0x10,0x10,0x10,0x10,0x3f,0x00,0x00 - -, -/* @2239 (15x15,V)@ [suki software]*/ -0x20,0x10,0x08,0xe7,0x24,0x24,0x24,0xfc,0x24,0x24,0x24,0x26,0x04,0x00,0x00 - -, -0x02,0x02,0x02,0x03,0x02,0x02,0x02,0x3f,0x02,0x02,0x02,0x02,0x03,0x02,0x00 - -, -/* @2240 (15x15,V)@ [suki software]*/ -0x82,0xe2,0x3e,0x22,0xe2,0x00,0xfe,0x4a,0xfa,0x4a,0xfa,0x4a,0x4f,0x02,0x00 - -, -0x00,0x0f,0x04,0x04,0x27,0x18,0x07,0x01,0x3f,0x11,0x07,0x09,0x15,0x21,0x00 - -, -/* @2241 (15x15,V)@ [suki software]*/ -0x08,0x08,0xff,0x88,0x40,0xaa,0x9f,0xaa,0xc0,0xaa,0x9f,0xaa,0x4a,0x48,0x00 - -, -0x11,0x21,0x1f,0x00,0x08,0x0a,0x0b,0x0a,0x0a,0x3f,0x0a,0x0a,0x0a,0x08,0x00 - -, -/* @2242 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x20,0x50,0x48,0x57,0x64,0x48,0xd0,0x20,0x20,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x1c,0x00,0x1e,0x21,0x26,0x21,0x38,0x02,0x0c,0x00 - -, -/* @2243 (15x15,V)@ [suki software]*/ -0x40,0x40,0x20,0x50,0x48,0x44,0x4b,0x72,0x44,0xc8,0x10,0x10,0x20,0x20,0x00 - -, -0x00,0x10,0x0e,0x00,0x1e,0x20,0x21,0x26,0x21,0x20,0x38,0x02,0x0c,0x00,0x00 - -, -/* @2244 (15x15,V)@ [suki software]*/ -0x08,0x08,0xf8,0x0f,0x08,0xf8,0x00,0xfc,0x94,0x95,0x96,0x94,0xfc,0x00,0x00 - -, -0x20,0x11,0x0a,0x04,0x0a,0x11,0x00,0x3f,0x10,0x0b,0x04,0x0a,0x31,0x10,0x00 - -, -/* @2245 (15x15,V)@ [suki software]*/ -0x02,0xf2,0x9e,0x72,0x9e,0xf2,0x02,0xfc,0xa4,0xa5,0xa6,0xa4,0xfc,0x00,0x00 - -, -0x00,0x3f,0x12,0x12,0x12,0x3f,0x00,0x3f,0x20,0x13,0x04,0x0a,0x31,0x10,0x00 - -, -/* @2246 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0xfc,0x04,0x0e,0x35,0x04,0x44,0x44,0x3e,0x04,0x80,0x00,0x00 - -, -0x00,0x04,0x04,0x05,0x05,0x05,0x05,0x05,0x05,0x15,0x25,0x11,0x0f,0x01,0x00 - -, -/* @2247 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x0a,0x4a,0x4a,0xca,0x0a,0xea,0x0a,0x8a,0x4a,0x5f,0x02,0x00 - -, -0x10,0x0c,0x13,0x08,0x04,0x02,0x11,0x20,0x1f,0x01,0x02,0x04,0x18,0x08,0x00 - -, -/* @2248 (15x15,V)@ [suki software]*/ -0x08,0x88,0xff,0x48,0x48,0x00,0xfe,0x52,0x52,0xd2,0x52,0x52,0xff,0x02,0x00 - -, -0x11,0x20,0x1f,0x00,0x20,0x22,0x22,0x22,0x22,0x3f,0x22,0x22,0x22,0x20,0x00 - -, -/* @2249 (15x15,V)@ [suki software]*/ -0x40,0x41,0x41,0x41,0x7f,0x55,0x55,0x55,0x55,0xff,0x21,0x21,0x21,0x00,0x00 - -, -0x20,0x23,0x15,0x09,0x0d,0x13,0x20,0x23,0x15,0x09,0x15,0x13,0x21,0x20,0x00 - -, -/* @2250 (15x15,V)@ [suki software]*/ -0x02,0xfa,0xaa,0xae,0xaa,0xff,0x02,0xaa,0xbb,0xee,0xaa,0xba,0xaa,0x02,0x00 - -, -0x08,0x09,0x08,0x0a,0x0a,0x0a,0x2a,0x3a,0x0e,0x0b,0x0a,0x08,0x08,0x08,0x00 - -, -/* @2251 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0x04,0xfc,0x20,0xbc,0x20,0x20,0xff,0x24,0x24,0xb4,0x20,0x00 - -, -0x00,0x07,0x01,0x01,0x03,0x00,0x1f,0x14,0x12,0x11,0x12,0x14,0x3f,0x00,0x00 - -, -/* @2252 (15x15,V)@ [suki software]*/ -0x60,0x38,0xe7,0x24,0x04,0x42,0x42,0x7e,0x4a,0x5a,0x52,0xfe,0x23,0x22,0x00 - -, -0x01,0x01,0x1f,0x09,0x21,0x17,0x09,0x17,0x20,0x17,0x09,0x15,0x23,0x20,0x00 - -, -/* @2253 (15x15,V)@ [suki software]*/ -0x60,0x38,0xe7,0x24,0x24,0x00,0xfe,0xaa,0xab,0xaa,0xaa,0xfe,0x00,0x00,0x00 - -, -0x01,0x01,0x1f,0x11,0x29,0x12,0x0a,0x06,0x02,0x3f,0x06,0x0a,0x12,0x22,0x00 - -, -/* @2254 (15x15,V)@ [suki software]*/ -0x10,0x21,0x86,0x60,0x00,0xfe,0x52,0x52,0x52,0x52,0x52,0xff,0x02,0x00,0x00 - -, -0x02,0x3e,0x01,0x20,0x22,0x22,0x22,0x22,0x3f,0x22,0x22,0x22,0x32,0x20,0x00 - -, -/* @2255 (15x15,V)@ [suki software]*/ -0x20,0x10,0xfc,0x03,0x90,0x48,0x27,0x84,0xfc,0x04,0x24,0x4c,0xc4,0x00,0x00 - -, -0x00,0x10,0x0d,0x00,0x1e,0x20,0x22,0x24,0x20,0x20,0x38,0x02,0x0c,0x00,0x00 - -, -/* @2256 (15x15,V)@ [suki software]*/ -0x08,0x88,0xff,0x48,0x88,0x10,0x4c,0x44,0x45,0xc6,0x44,0x44,0x54,0x0c,0x00 - -, -0x06,0x01,0x3f,0x00,0x00,0x00,0x00,0x10,0x20,0x1f,0x00,0x00,0x00,0x00,0x00 - -, -/* @2257 (15x15,V)@ [suki software]*/ -0x20,0x22,0x14,0x88,0xf4,0x02,0x4c,0x44,0x45,0xc6,0x44,0x44,0x44,0x4c,0x00 - -, -0x04,0x12,0x21,0x10,0x0f,0x00,0x00,0x10,0x20,0x1f,0x00,0x00,0x00,0x00,0x00 - -, -/* @2258 (15x15,V)@ [suki software]*/ -0x02,0x8c,0x60,0x80,0x6f,0xd4,0x52,0x58,0xa2,0x2a,0xf2,0x2e,0x62,0x20,0x00 - -, -0x01,0x1f,0x00,0x22,0x1a,0x07,0x0a,0x22,0x1f,0x08,0x0f,0x11,0x21,0x21,0x00 - -, -/* @2259 (15x15,V)@ [suki software]*/ -0x00,0x50,0x4c,0x44,0x44,0x44,0x45,0xc6,0x44,0x44,0x44,0x54,0x4c,0x00,0x00 - -, -0x00,0x00,0x00,0x00,0x00,0x10,0x20,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00 - -, -}, -//************************************** -{ -/* @2260 š(15x15,V)@ [suki software]*/ -0x08,0x08,0xff,0x88,0x48,0x10,0x4c,0x44,0x45,0xc6,0x44,0x44,0x54,0x4c,0x00 - -, -0x11,0x21,0x1f,0x00,0x00,0x00,0x00,0x10,0x20,0x1f,0x00,0x00,0x00,0x00,0x00 - -, -/* @2261 Ţ(15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x40,0x10,0x4c,0x44,0x44,0x45,0xc6,0x44,0x44,0x54,0x0c,0x00 - -, -0x02,0x3e,0x01,0x00,0x00,0x00,0x00,0x10,0x20,0x1f,0x00,0x00,0x00,0x00,0x00 - -, -/* @2262 ţ(15x15,V)@ [suki software]*/ -0x00,0x20,0x10,0x0e,0x08,0x08,0x08,0xff,0x08,0x08,0x08,0x0c,0x88,0x00,0x00 - -, -0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x3f,0x01,0x01,0x01,0x01,0x01,0x01,0x00 - -, -/* @2263 Ť(15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x08,0x82,0x82,0xfe,0x82,0x82,0xff,0x02,0x00,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x10,0x10,0x1f,0x10,0x10,0x10,0x1f,0x10,0x10,0x00 - -, -/* @2264 ť(15x15,V)@ [suki software]*/ -0x40,0x30,0xef,0x24,0x24,0x24,0x42,0xc2,0x7e,0x42,0x42,0xff,0x02,0x00,0x00 - -, -0x01,0x01,0x1f,0x11,0x09,0x21,0x20,0x3f,0x20,0x20,0x20,0x3f,0x20,0x20,0x00 - -, -/* @2265 Ŧ(15x15,V)@ [suki software]*/ -0x20,0x30,0xac,0x63,0x10,0x00,0x42,0xc2,0x7e,0x42,0x42,0xff,0x02,0x00,0x00 - -, -0x09,0x1b,0x09,0x05,0x05,0x10,0x10,0x1f,0x10,0x10,0x10,0x1f,0x10,0x10,0x00 - -, -/* @2266 ŧ(15x15,V)@ [suki software]*/ -0x00,0xfe,0x92,0x92,0xfe,0x10,0x0c,0xc4,0x34,0xcf,0x04,0x84,0x54,0x0c,0x00 - -, -0x30,0x0f,0x10,0x20,0x1f,0x02,0x01,0x3f,0x10,0x08,0x03,0x04,0x18,0x10,0x00 - -, -/* @2267 Ũ(15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x40,0x1c,0x04,0xc4,0x34,0xcf,0x04,0x84,0x44,0x1c,0x00,0x00 - -, -0x02,0x3e,0x01,0x04,0x02,0x01,0x3f,0x10,0x08,0x01,0x02,0x04,0x08,0x10,0x00 - -, -/* @2268 ũ(15x15,V)@ [suki software]*/ -0x00,0x10,0x0c,0x04,0x84,0x64,0x1f,0xe4,0x04,0x84,0x84,0x54,0x0c,0x00,0x00 - -, -0x04,0x04,0x02,0x01,0x3f,0x20,0x10,0x08,0x09,0x02,0x04,0x08,0x18,0x08,0x00 - -, -/* @2269 Ū(15x15,V)@ [suki software]*/ -0x00,0x42,0x4a,0x4a,0xca,0x4a,0x4a,0x7e,0x4a,0xca,0x4a,0x4b,0x42,0x00,0x00 - -, -0x00,0x22,0x22,0x12,0x0f,0x02,0x02,0x02,0x02,0x3f,0x02,0x02,0x03,0x02,0x00 - -, -/* @2270 ū(15x15,V)@ [suki software]*/ -0x08,0x08,0xf8,0x0f,0x08,0xf8,0x04,0x3c,0xc4,0x04,0x84,0x7e,0x04,0x00,0x00 - -, -0x20,0x11,0x0a,0x04,0x0a,0x21,0x10,0x08,0x05,0x02,0x05,0x08,0x30,0x10,0x00 - -, -/* @2271 Ŭ(15x15,V)@ [suki software]*/ -0x84,0x84,0x5c,0x27,0x24,0x5c,0x84,0x42,0x2e,0x12,0x2a,0x46,0xc2,0x40,0x00 - -, -0x00,0x20,0x22,0x22,0x12,0x0a,0x07,0x12,0x22,0x22,0x12,0x0e,0x00,0x00,0x00 - -, -/* @2272 ŭ(15x15,V)@ [suki software]*/ -0x84,0x84,0x5c,0x27,0x24,0x5c,0x80,0x86,0x5a,0x22,0x52,0x4a,0x86,0x80,0x00 - -, -0x00,0x10,0x0c,0x00,0x1e,0x20,0x20,0x22,0x24,0x20,0x38,0x02,0x0c,0x00,0x00 - -, -/* @2273 Ů(15x15,V)@ [suki software]*/ -0x10,0x10,0x10,0x10,0x90,0x70,0x1f,0x10,0x10,0x90,0x70,0x10,0x18,0x10,0x00 - -, -0x00,0x20,0x20,0x20,0x11,0x12,0x0a,0x04,0x06,0x09,0x08,0x10,0x30,0x00,0x00 - -, -/* @2274 ů(15x15,V)@ [suki software]*/ -0x00,0xfc,0x44,0x44,0xfc,0x06,0xaa,0xa2,0xe6,0xaa,0xa1,0xa9,0xa5,0x80,0x00 - -, -0x00,0x0f,0x04,0x24,0x17,0x08,0x24,0x23,0x16,0x0a,0x0a,0x16,0x20,0x20,0x00 - -, -/* @2275 Ű(15x15,V)@ [suki software]*/ -0x00,0x00,0xf8,0x08,0x28,0x28,0x28,0xff,0xaa,0xaa,0xaa,0x8a,0xd8,0x00,0x00 - -, -0x20,0x18,0x07,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x08,0x00 - -, -/* @2276 ű(15x15,V)@ [suki software]*/ -0x08,0x30,0x80,0xfc,0x04,0x04,0xe4,0x25,0x26,0x24,0x24,0x34,0x26,0x04,0x00 - -, -0x21,0x11,0x0c,0x03,0x01,0x01,0x1f,0x11,0x11,0x11,0x11,0x11,0x11,0x01,0x00 - -, -/* @2277 Ų(15x15,V)@ [suki software]*/ -0x08,0x88,0xff,0x48,0x2a,0x22,0xfe,0x22,0xfe,0x00,0xfe,0x22,0x5a,0x86,0x00 - -, -0x11,0x20,0x1f,0x20,0x11,0x09,0x17,0x21,0x1f,0x00,0x3f,0x04,0x08,0x07,0x00 - -, -/* @2278 ų(15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x10,0x98,0xaa,0xaa,0x8a,0xbe,0x8a,0xaa,0xab,0x8a,0x98,0x00 - -, -0x00,0x00,0x3f,0x00,0x00,0x3e,0x02,0x1e,0x03,0x02,0x1e,0x22,0x3e,0x00,0x00 - -, -/* @2279 Ŵ(15x15,V)@ [suki software]*/ -0x24,0x28,0xff,0xa8,0x24,0x98,0xaa,0xaa,0x8a,0xfe,0x8a,0xab,0xaa,0x98,0x00 - -, -0x06,0x01,0x3f,0x00,0x01,0x00,0x3e,0x02,0x1f,0x02,0x1e,0x22,0x3e,0x00,0x00 - -, -/* @2280 ŵ(15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x44,0x44,0x44,0xcf,0x74,0x44,0x4f,0x44,0x64,0x44,0x00 - -, -0x00,0x00,0x1f,0x08,0x00,0x04,0x02,0x3f,0x11,0x11,0x11,0x3f,0x00,0x00,0x00 - -, -/* @2281 Ŷ(15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0xfc,0x10,0x14,0xfe,0x92,0x10,0x7f,0x90,0x12,0xd4,0x10,0x00 - -, -0x00,0x07,0x01,0x03,0x12,0x21,0x1f,0x00,0x08,0x04,0x03,0x0d,0x10,0x3c,0x00 - -, -/* @2282 ŷ(15x15,V)@ [suki software]*/ -0x00,0xfe,0x12,0x22,0xc2,0x3a,0x02,0x30,0x0f,0xe8,0x08,0x28,0x18,0x00,0x00 - -, -0x00,0x1f,0x12,0x11,0x10,0x13,0x20,0x18,0x06,0x01,0x06,0x08,0x30,0x10,0x00 - -, -/* @2283 Ÿ(15x15,V)@ [suki software]*/ -0x00,0xfe,0x12,0x22,0xc2,0x3a,0x00,0xfc,0x06,0x15,0x44,0x44,0x3c,0x00,0x00 - -, -0x00,0x1f,0x12,0x11,0x10,0x13,0x14,0x05,0x05,0x05,0x15,0x25,0x11,0x0f,0x00 - -, -/* @2284 Ź(15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0x32,0xc2,0x3a,0x40,0x20,0x9e,0x82,0x82,0x9f,0xa2,0x20,0x00 - -, -0x00,0x0f,0x0a,0x09,0x08,0x0b,0x28,0x20,0x11,0x0a,0x04,0x0a,0x11,0x20,0x00 - -, -/* @2285 ź(15x15,V)@ [suki software]*/ -0x12,0x52,0x52,0xfa,0x52,0x57,0x02,0xfa,0xaa,0xff,0xaa,0xfa,0x03,0x02,0x00 - -, -0x11,0x09,0x05,0x3f,0x05,0x09,0x3e,0x02,0x0a,0x0f,0x0a,0x22,0x3e,0x00,0x00 - -, -/* @2286 Ż(15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0x04,0xfc,0x00,0xfe,0x02,0x12,0x22,0xc2,0x3a,0x03,0x02,0x00 - -, -0x00,0x07,0x01,0x01,0x03,0x00,0x3f,0x14,0x12,0x11,0x10,0x11,0x16,0x10,0x00 - -, -/* @2287 ż(15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x80,0xbe,0xaa,0xaa,0xfe,0xaa,0xaa,0xbf,0x82,0x00,0x00 - -, -0x00,0x00,0x3f,0x00,0x3f,0x00,0x08,0x08,0x07,0x04,0x16,0x24,0x1f,0x00,0x00 - -, -/* @2288 Ž(15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x00,0xfe,0x02,0x12,0x22,0xc2,0x22,0x1b,0x02,0x00,0x00 - -, -0x02,0x02,0x3f,0x00,0x00,0x1f,0x10,0x14,0x13,0x10,0x11,0x16,0x10,0x10,0x00 - -, -/* @2289 ž(15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0xfc,0x08,0x88,0xff,0x48,0x00,0xf8,0x8c,0x8b,0xf8,0x00,0x00 - -, -0x00,0x07,0x01,0x03,0x11,0x20,0x1f,0x00,0x00,0x3f,0x10,0x10,0x3f,0x00,0x00 - -, -/* @2290 ſ(15x15,V)@ [suki software]*/ -0x00,0xbe,0x22,0xe2,0xa2,0xbe,0x00,0xfe,0x00,0x00,0xff,0x00,0x00,0x00,0x00 - -, -0x10,0x1f,0x10,0x0f,0x28,0x10,0x0c,0x03,0x00,0x00,0x01,0x06,0x38,0x10,0x00 - -, -/* @2291 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0xfc,0x02,0xff,0x02,0xfe,0x22,0x22,0x3e,0x22,0x3e,0x80,0x00 - -, -0x30,0x0f,0x00,0x3f,0x00,0x01,0x02,0x05,0x0a,0x12,0x12,0x22,0x22,0x23,0x00 - -, -/* @2292 (15x15,V)@ [suki software]*/ -0x00,0xf8,0x08,0xff,0x08,0xf8,0x00,0xf8,0x88,0x8c,0x8b,0x88,0xfc,0x08,0x00 - -, -0x00,0x07,0x00,0x3f,0x04,0x07,0x00,0x3f,0x10,0x10,0x10,0x10,0x3f,0x00,0x00 - -, -/* @2293 (15x15,V)@ [suki software]*/ -0x40,0x30,0x00,0xff,0x10,0x20,0xf8,0x88,0x8c,0x8b,0x88,0x88,0xfc,0x08,0x00 - -, -0x00,0x00,0x00,0x3f,0x00,0x00,0x3f,0x10,0x10,0x10,0x10,0x10,0x3f,0x00,0x00 - -, -/* @2294 (15x15,V)@ [suki software]*/ -0x00,0x2a,0xaa,0xaa,0xbe,0xaa,0xaa,0x80,0xaa,0xaa,0xbe,0xab,0x2a,0x00,0x00 - -, -0x00,0x00,0x1f,0x24,0x24,0x24,0x24,0x27,0x24,0x24,0x24,0x27,0x20,0x38,0x00 - -, -/* @2295 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x00,0xf8,0x88,0x8c,0x8b,0x88,0x88,0xfc,0x08,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x00,0x3f,0x10,0x10,0x10,0x10,0x10,0x3f,0x00,0x00 - -, -/* @2296 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x00,0x48,0x48,0xff,0x00,0xff,0x48,0x48,0x48,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x02,0x02,0x02,0x3f,0x00,0x3f,0x02,0x02,0x02,0x00 - -, -/* @2297 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x90,0x9f,0x90,0x00,0xfc,0x94,0x96,0xfd,0x94,0x94,0xfe,0x04,0x00 - -, -0x30,0x0f,0x00,0x00,0x3f,0x00,0x04,0x06,0x05,0x04,0x3f,0x04,0x04,0x04,0x00 - -, -/* @2298 (15x15,V)@ [suki software]*/ -0x10,0x88,0xc4,0x33,0x08,0x48,0x48,0xff,0x00,0x00,0xff,0x48,0x48,0x08,0x00 - -, -0x01,0x00,0x3f,0x00,0x02,0x02,0x02,0x3f,0x00,0x00,0x3f,0x02,0x02,0x02,0x00 - -, -/* @2299 (15x15,V)@ [suki software]*/ -0x10,0x21,0x86,0x60,0x12,0x12,0xfe,0x11,0x02,0x52,0xfe,0x52,0x53,0x02,0x00 - -, -0x02,0x3e,0x01,0x20,0x11,0x09,0x07,0x01,0x02,0x02,0x3f,0x02,0x02,0x02,0x00 - -, -/* @2300 (15x15,V)@ [suki software]*/ -0x10,0x21,0x82,0x66,0x00,0xfc,0x04,0xf4,0x14,0xf2,0x8a,0x4b,0x2a,0x00,0x00 - -, -0x02,0x1e,0x01,0x20,0x18,0x07,0x00,0x3f,0x10,0x09,0x06,0x08,0x30,0x10,0x00 - -, -/* @2301 (15x15,V)@ [suki software]*/ -0x80,0xa4,0x94,0xbf,0x94,0xc0,0xad,0x92,0xad,0x94,0xbf,0x8c,0x94,0xa4,0x00 - -, -0x04,0x04,0x0a,0x09,0x0a,0x0a,0x2a,0x3f,0x0a,0x0a,0x09,0x0a,0x0a,0x02,0x00 - -, -/* @2302 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x10,0x96,0x5a,0x32,0xfe,0x11,0x39,0x55,0x90,0x90,0x00 - -, -0x02,0x3e,0x01,0x00,0x01,0x3f,0x25,0x25,0x3f,0x25,0x25,0x3f,0x00,0x00,0x00 - -, -/* @2303 (15x15,V)@ [suki software]*/ -0x10,0x10,0x90,0x7e,0x12,0x12,0x57,0x9a,0x12,0x92,0xfe,0x10,0x18,0x10,0x00 - -, -0x22,0x21,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3e,0x20,0x20,0x00 - -, -/* @2304 (15x15,V)@ [suki software]*/ -0x10,0x90,0x7e,0x13,0x3a,0x92,0xfe,0x18,0xb6,0x52,0x52,0xb7,0x8a,0x88,0x00 - -, -0x11,0x12,0x12,0x0a,0x3e,0x2a,0x2a,0x2b,0x2a,0x2a,0x2a,0x3a,0x02,0x00,0x00 - -, -/* @2305 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x22,0x22,0xfe,0x40,0x30,0x4e,0xc0,0x40,0x47,0xd8,0x20,0x40,0x00 - -, -0x00,0x1f,0x09,0x09,0x1f,0x20,0x10,0x08,0x07,0x10,0x20,0x1f,0x00,0x00,0x00 - -, -/* @2306 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x44,0xfc,0x44,0xfc,0x22,0x2c,0x20,0xff,0x20,0x28,0x26,0x00,0x00 - -, -0x00,0x0f,0x04,0x07,0x04,0x0f,0x01,0x01,0x01,0x3f,0x01,0x01,0x01,0x01,0x00 - -, -/* @2307 (15x15,V)@ [suki software]*/ -0x00,0x22,0x2c,0x20,0xff,0x20,0x28,0x26,0x00,0xfc,0x00,0x00,0xff,0x00,0x00 - -, -0x01,0x21,0x11,0x09,0x07,0x01,0x01,0x01,0x00,0x07,0x10,0x20,0x1f,0x00,0x00 - -, -/* @2308 (15x15,V)@ [suki software]*/ -0x00,0x24,0x28,0xff,0x28,0x24,0x00,0xfc,0x24,0xe4,0x22,0x22,0xe2,0x00,0x00 - -, -0x21,0x11,0x09,0x07,0x01,0x21,0x19,0x27,0x10,0x0b,0x04,0x0b,0x10,0x20,0x00 - -, -/* @2309 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0xfc,0x24,0x24,0x24,0x22,0xe2,0x22,0x23,0x32,0x20,0x00,0x00 - -, -0x02,0x02,0x02,0x03,0x02,0x02,0x02,0x02,0x07,0x0a,0x0a,0x12,0x33,0x02,0x00 - -, -/* @2310 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfc,0x24,0x24,0x24,0xfd,0x26,0xe4,0x2c,0x34,0xa4,0x26,0x04,0x00 - -, -0x20,0x18,0x27,0x10,0x08,0x16,0x11,0x08,0x1f,0x22,0x21,0x20,0x20,0x3c,0x00 - -, -/* @2311 (15x15,V)@ [suki software]*/ -0x80,0x60,0xa4,0xa4,0xac,0xb4,0xa5,0xe6,0xb4,0xac,0xa4,0xa6,0xa4,0x60,0x00 - -, -0x00,0x20,0x20,0x10,0x08,0x07,0x02,0x12,0x22,0x12,0x0e,0x00,0x00,0x00,0x00 - -, -/* @2312 (15x15,V)@ [suki software]*/ -0x44,0x54,0x54,0xff,0x54,0x50,0xe4,0xac,0xb5,0xe6,0xb4,0xac,0xa4,0x64,0x00 - -, -0x08,0x06,0x01,0x3f,0x01,0x22,0x10,0x08,0x07,0x22,0x22,0x1e,0x00,0x00,0x00 - -, -/* @2313 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x92,0x92,0xfe,0x00,0x24,0x38,0x20,0xff,0x20,0x30,0x2c,0x00,0x00 - -, -0x30,0x0f,0x10,0x20,0x1f,0x01,0x01,0x01,0x01,0x3f,0x01,0x01,0x01,0x01,0x00 - -, -/* @2314 (15x15,V)@ [suki software]*/ -0x08,0x08,0xff,0x88,0x10,0xff,0x10,0xf0,0x08,0x08,0xff,0x08,0xf8,0x00,0x00 - -, -0x11,0x21,0x1f,0x20,0x18,0x07,0x00,0x1f,0x28,0x26,0x21,0x28,0x27,0x38,0x00 - -, -/* @2315 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0x04,0xfc,0x20,0xf8,0x27,0x24,0xe4,0x04,0x04,0xfe,0x04,0x00 - -, -0x00,0x07,0x01,0x01,0x03,0x00,0x1f,0x21,0x21,0x21,0x22,0x24,0x23,0x38,0x00 - -, -/* @2316 (15x15,V)@ [suki software]*/ -0x20,0x10,0xfc,0x17,0x14,0xf4,0x04,0xfc,0x00,0xfc,0x00,0x00,0xff,0x00,0x00 - -, -0x00,0x00,0x1f,0x21,0x21,0x25,0x24,0x23,0x38,0x03,0x10,0x20,0x1f,0x00,0x00 - -, -/* @2317 (15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x20,0x18,0x20,0xf8,0x27,0x24,0xe4,0x04,0x04,0xfe,0x04,0x00 - -, -0x20,0x18,0x07,0x02,0x04,0x08,0x1f,0x21,0x21,0x21,0x22,0x24,0x23,0x38,0x00 - -, -/* @2318 (15x15,V)@ [suki software]*/ -0x08,0x88,0xc9,0xba,0x48,0x20,0xf8,0x27,0x24,0xe4,0x04,0x04,0xfe,0x04,0x00 - -, -0x01,0x00,0x3f,0x00,0x01,0x00,0x1f,0x21,0x21,0x25,0x24,0x22,0x21,0x38,0x00 - -, -/* @2319 (15x15,V)@ [suki software]*/ -0x00,0xbe,0x22,0xe2,0x22,0x3e,0x10,0xec,0x27,0x24,0xe4,0x04,0xfe,0x04,0x00 - -, -0x10,0x3f,0x10,0x0f,0x09,0x09,0x00,0x1f,0x21,0x21,0x25,0x24,0x23,0x38,0x00 - -, -/* @2320 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x00,0x10,0xec,0x27,0x24,0xe4,0x04,0x04,0xfe,0x04,0x00 - -, -0x02,0x02,0x3f,0x00,0x00,0x00,0x1f,0x21,0x21,0x21,0x22,0x22,0x21,0x38,0x00 - -, -/* @2321 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0x04,0xfc,0x02,0x82,0x42,0xf2,0x0e,0x42,0x82,0x03,0x02,0x00 - -, -0x00,0x07,0x01,0x01,0x13,0x11,0x10,0x10,0x1f,0x10,0x10,0x10,0x13,0x10,0x00 - -, -/* @2322 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x92,0x92,0xfe,0x00,0x82,0x42,0x22,0xfe,0x22,0x42,0x83,0x02,0x00 - -, -0x30,0x0f,0x10,0x20,0x1f,0x11,0x10,0x10,0x10,0x1f,0x10,0x10,0x11,0x10,0x00 - -, -/* @2323 (15x15,V)@ [suki software]*/ -0x10,0x10,0xff,0x10,0x10,0x44,0x4c,0x74,0x45,0x46,0x64,0x5c,0x44,0x40,0x00 - -, -0x08,0x08,0x07,0x04,0x04,0x00,0x3f,0x11,0x11,0x11,0x11,0x3f,0x00,0x00,0x00 - -, -/* @2324 (15x15,V)@ [suki software]*/ -0x00,0x22,0x2a,0x2a,0x2a,0x7f,0x40,0x80,0x7f,0x2a,0x2a,0x2a,0x22,0x00,0x00 - -, -0x11,0x11,0x09,0x05,0x3f,0x21,0x11,0x13,0x05,0x09,0x15,0x23,0x21,0x20,0x00 - -, -/* @2325 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0xfa,0x02,0xfe,0x44,0x4c,0x75,0x46,0x64,0x5c,0x44,0x40,0x00 - -, -0x20,0x13,0x08,0x07,0x08,0x13,0x00,0x3f,0x11,0x11,0x11,0x11,0x3f,0x00,0x00 - -, -/* @2326 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x22,0x5a,0x86,0x44,0x4c,0x74,0x45,0x46,0x64,0x5c,0x44,0x40,0x00 - -, -0x00,0x3f,0x02,0x04,0x03,0x00,0x3f,0x11,0x11,0x11,0x11,0x3f,0x00,0x00,0x00 - -, -/* @2327 (15x15,V)@ [suki software]*/ -0x02,0xfa,0x8e,0x7a,0x8e,0x8a,0xfa,0x00,0xe2,0x22,0x22,0x22,0x7f,0x02,0x00 - -, -0x00,0x3f,0x12,0x12,0x12,0x12,0x3f,0x00,0x1f,0x20,0x20,0x20,0x20,0x3c,0x00 - -, -/* @2328 (15x15,V)@ [suki software]*/ -0x20,0x10,0xfc,0x03,0xfe,0xea,0x2a,0xfa,0x2a,0xea,0x02,0xff,0x02,0x00,0x00 - -, -0x00,0x00,0x3f,0x10,0x0f,0x07,0x00,0x3f,0x04,0x07,0x00,0x0f,0x10,0x3c,0x00 - -, -/* @2329 (15x15,V)@ [suki software]*/ -0x10,0x61,0x06,0xc0,0x30,0x04,0xe4,0x24,0x24,0xff,0x24,0x24,0xe6,0x04,0x00 - -, -0x02,0x02,0x3f,0x00,0x00,0x00,0x0f,0x00,0x00,0x3f,0x04,0x08,0x07,0x00,0x00 - -, -/* @2330 (15x15,V)@ [suki software]*/ -0xfc,0x04,0x04,0xfc,0x10,0xd2,0x7a,0x52,0x5f,0x52,0x7a,0xd2,0x12,0x10,0x00 - -, -0x07,0x01,0x01,0x03,0x20,0x27,0x10,0x08,0x07,0x08,0x08,0x17,0x20,0x00,0x00 - -, -/* @2331 (15x15,V)@ [suki software]*/ -0x10,0x10,0x08,0x84,0x4b,0x38,0x08,0x88,0x8b,0x7c,0x08,0x08,0x10,0x10,0x00 - -, -0x20,0x21,0x3f,0x22,0x22,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3e,0x20,0x20,0x00 - -, -/* @2332 (15x15,V)@ [suki software]*/ -0x82,0x42,0xfe,0x22,0x22,0xe0,0x8a,0xb2,0x82,0xfe,0x82,0xa2,0x9b,0x82,0x00 - -, -0x00,0x00,0x1f,0x04,0x04,0x07,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00 - -, -/* @2333 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x80,0x8a,0xb2,0x82,0xfe,0x82,0xa3,0x9a,0x80,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00 - -, -/* @2334 (15x15,V)@ [suki software]*/ -0x00,0x02,0x82,0xba,0xaa,0xaa,0xab,0xaa,0xaa,0xaa,0xba,0x02,0x02,0x00,0x00 - -, -0x00,0x20,0x18,0x00,0x08,0x30,0x04,0x06,0x31,0x00,0x00,0x08,0x30,0x00,0x00 - -, -/* @2335 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x00,0xd4,0x54,0x5f,0x54,0xd4,0x04,0x10,0x88,0x44,0x22,0x00 - -, -0x02,0x3e,0x01,0x00,0x13,0x15,0x09,0x0d,0x2b,0x28,0x11,0x08,0x04,0x02,0x00 - -, -/* @2336 (15x15,V)@ [suki software]*/ -0x04,0xd4,0x54,0x54,0x5f,0x54,0xd4,0x04,0x10,0x10,0x88,0x44,0x22,0x00,0x00 - -, -0x10,0x33,0x15,0x19,0x11,0x0d,0x0b,0x28,0x21,0x11,0x08,0x04,0x02,0x01,0x00 - -, -/* @2337 (15x15,V)@ [suki software]*/ -0x82,0x8a,0xb2,0x02,0x82,0xa7,0x52,0xaa,0xea,0xaf,0xda,0x42,0x83,0x82,0x00 - -, -0x20,0x10,0x0f,0x10,0x20,0x28,0x2a,0x2a,0x3f,0x2a,0x2a,0x2a,0x28,0x20,0x00 - -, -/* @2338 (15x15,V)@ [suki software]*/ -0x08,0xc8,0xff,0x48,0x88,0xfe,0x12,0x12,0xfe,0x00,0xfe,0x12,0x12,0xfe,0x00 - -, -0x03,0x00,0x3f,0x00,0x30,0x0f,0x11,0x11,0x2f,0x10,0x0f,0x11,0x21,0x1f,0x00 - -, -/* @2339 (15x15,V)@ [suki software]*/ -0x82,0xe2,0x3e,0x22,0xe2,0x00,0xfe,0x92,0xfe,0x00,0xfe,0x92,0xff,0x02,0x00 - -, -0x00,0x0f,0x04,0x04,0x27,0x18,0x07,0x10,0x2f,0x10,0x0f,0x20,0x3f,0x00,0x00 - -, -/* @2340 (15x15,V)@ [suki software]*/ -0x88,0x94,0xa3,0x06,0x8a,0xa2,0x52,0xac,0xeb,0xaa,0xde,0x4a,0x82,0x82,0x00 - -, -0x20,0x10,0x0f,0x10,0x20,0x28,0x2a,0x2a,0x3f,0x2a,0x2a,0x2a,0x28,0x20,0x00 - -, -/* @2341 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x12,0xfe,0x00,0xd4,0x54,0x5f,0xd4,0x14,0x10,0x88,0x44,0x22,0x00 - -, -0x30,0x0f,0x21,0x3f,0x00,0x15,0x19,0x0d,0x0b,0x28,0x11,0x08,0x04,0x02,0x00 - -, -/* @2342 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x92,0x92,0xfe,0x00,0x00,0xfe,0x92,0x92,0x92,0xff,0x02,0x00 - -, -0x20,0x18,0x07,0x10,0x20,0x1f,0x20,0x10,0x0f,0x00,0x10,0x20,0x1f,0x00,0x00 - -, -/* @2343 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x22,0xfe,0x00,0xfe,0x22,0xfe,0x00,0xfc,0x96,0xa5,0xbc,0x80,0x00 - -, -0x30,0x0f,0x21,0x1f,0x20,0x1f,0x21,0x3f,0x04,0x04,0x14,0x24,0x20,0x1f,0x00 - -, -/* @2344 (15x15,V)@ [suki software]*/ -0x08,0x88,0xff,0x48,0x28,0x54,0xd4,0x74,0x5f,0x54,0xd4,0x56,0x64,0x40,0x00 - -, -0x11,0x20,0x1f,0x00,0x0a,0x09,0x0a,0x0a,0x3f,0x0a,0x0a,0x09,0x0a,0x02,0x00 - -, -/* @2345 (15x15,V)@ [suki software]*/ -0x84,0xe4,0x5c,0x44,0xc6,0x04,0xc8,0x09,0xfe,0x08,0xfc,0x0b,0x08,0xc8,0x00 - -, -0x00,0x1f,0x08,0x08,0x1f,0x20,0x21,0x22,0x3f,0x20,0x3f,0x22,0x31,0x20,0x00 - -, -/* @2346 (15x15,V)@ [suki software]*/ -0x10,0x10,0xff,0x10,0x10,0x12,0x82,0x42,0xf2,0x2e,0x42,0x82,0x03,0x02,0x00 - -, -0x08,0x18,0x0f,0x04,0x24,0x25,0x20,0x20,0x2f,0x20,0x20,0x20,0x33,0x20,0x00 - -, -/* @2347 (15x15,V)@ [suki software]*/ -0x82,0xe2,0x3e,0x22,0xe2,0x00,0xff,0x20,0x20,0x00,0xff,0x20,0x20,0x10,0x00 - -, -0x00,0x1f,0x08,0x08,0x1f,0x00,0x3f,0x10,0x08,0x00,0x1f,0x20,0x20,0x3c,0x00 - -, -/* @2348 (15x15,V)@ [suki software]*/ -0x10,0x0c,0xc4,0x55,0x55,0xd5,0x05,0xdf,0x45,0x75,0x55,0xc5,0x54,0x0c,0x00 - -, -0x10,0x08,0x1f,0x15,0x15,0x1d,0x02,0x0a,0x0b,0x3e,0x0b,0x0a,0x0a,0x02,0x00 - -, -/* @2349 (15x15,V)@ [suki software]*/ -0x08,0x88,0xff,0x48,0x48,0x00,0xfe,0x20,0x20,0x00,0xfe,0x40,0x20,0x10,0x00 - -, -0x11,0x20,0x1f,0x00,0x00,0x00,0x3f,0x10,0x08,0x00,0x3f,0x20,0x20,0x3c,0x00 - -, -/* @2350 (15x15,V)@ [suki software]*/ -0x08,0x08,0xff,0x88,0x48,0x00,0xfc,0x44,0xc4,0x7f,0x44,0xd4,0x0c,0x00,0x00 - -, -0x11,0x21,0x1f,0x00,0x20,0x18,0x27,0x10,0x0b,0x04,0x0a,0x11,0x20,0x20,0x00 - -, -/* @2351 (15x15,V)@ [suki software]*/ -0x80,0x40,0xfe,0xaa,0xaa,0xee,0x00,0x56,0x5a,0xf3,0x5a,0x56,0x52,0x10,0x00 - -, -0x00,0x20,0x22,0x22,0x12,0x0a,0x06,0x02,0x12,0x23,0x22,0x1e,0x00,0x00,0x00 - -, -/* @2352 (15x15,V)@ [suki software]*/ -0x00,0x4a,0xca,0x7e,0x4a,0x4a,0x0a,0x40,0xca,0x7e,0x4a,0x4b,0x4a,0x00,0x00 - -, -0x00,0x00,0x3f,0x12,0x12,0x0a,0x0a,0x00,0x1f,0x24,0x22,0x21,0x20,0x38,0x00 - -, -/* @2353 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x44,0xfc,0x44,0xfc,0x00,0xff,0x20,0x20,0xff,0x40,0x20,0x30,0x00 - -, -0x00,0x1f,0x08,0x0f,0x08,0x0f,0x00,0x3f,0x10,0x08,0x1f,0x20,0x20,0x38,0x00 - -, -}, -//************************************** -{ -/* @2354 ơ(15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0x04,0xfc,0x00,0xfc,0x94,0x97,0xfc,0x94,0x94,0xfc,0x00,0x00 - -, -0x00,0x07,0x01,0x01,0x03,0x04,0x06,0x05,0x04,0x3f,0x04,0x04,0x06,0x04,0x00 - -, -/* @2355 Ƣ(15x15,V)@ [suki software]*/ -0x00,0xfe,0x12,0x12,0xfe,0x00,0xfc,0x94,0x96,0xfd,0x94,0x94,0xfc,0x00,0x00 - -, -0x30,0x0f,0x11,0x21,0x1f,0x04,0x04,0x06,0x05,0x3e,0x04,0x04,0x04,0x04,0x00 - -, -/* @2356 ƣ(15x15,V)@ [suki software]*/ -0x08,0x30,0x80,0xfc,0x04,0xf4,0x94,0x95,0xfe,0x94,0x94,0x94,0x36,0x04,0x00 - -, -0x21,0x11,0x0c,0x23,0x18,0x27,0x20,0x11,0x0a,0x04,0x0a,0x11,0x20,0x20,0x00 - -, -/* @2357 Ƥ(15x15,V)@ [suki software]*/ -0x00,0x00,0xfc,0x04,0x44,0xc4,0x44,0x7f,0x44,0x44,0xc4,0x14,0x0c,0x00,0x00 - -, -0x20,0x10,0x2f,0x20,0x20,0x11,0x16,0x08,0x0c,0x12,0x11,0x20,0x20,0x20,0x00 - -, -/* @2358 ƥ(15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0x02,0x02,0xfe,0x02,0x02,0xfe,0x02,0x02,0x03,0x82,0x00,0x00 - -, -0x00,0x3f,0x10,0x14,0x13,0x10,0x10,0x10,0x13,0x14,0x14,0x14,0x17,0x10,0x00 - -, -/* @2359 Ʀ(15x15,V)@ [suki software]*/ -0x08,0x30,0x80,0xfc,0x14,0x94,0x54,0x35,0xf6,0x14,0x54,0x54,0x96,0x04,0x00 - -, -0x21,0x11,0x0c,0x03,0x01,0x3e,0x12,0x12,0x13,0x12,0x12,0x12,0x3e,0x00,0x00 - -, -/* @2360 Ƨ(15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x00,0xfe,0xa2,0xbe,0x40,0x54,0x65,0xc6,0x64,0x54,0x00 - -, -0x00,0x00,0x3f,0x04,0x03,0x1f,0x08,0x0f,0x00,0x02,0x02,0x3f,0x02,0x02,0x00 - -, -/* @2361 ƨ(15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x12,0xf2,0x12,0x12,0x12,0x12,0xf2,0x12,0x9f,0x42,0x00,0x00 - -, -0x20,0x18,0x07,0x00,0x3f,0x11,0x11,0x09,0x00,0x1f,0x21,0x20,0x20,0x38,0x00 - -, -/* @2362 Ʃ(15x15,V)@ [suki software]*/ -0x20,0x9e,0xba,0xaa,0xaa,0xbe,0xc0,0xa8,0xaa,0xae,0xfb,0xae,0xaa,0x88,0x00 - -, -0x00,0x00,0x02,0x3a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x3a,0x02,0x00,0x00,0x00 - -, -/* @2363 ƪ(15x15,V)@ [suki software]*/ -0x10,0x08,0xf4,0x53,0x5e,0x52,0x5a,0x54,0x53,0x56,0x5a,0x72,0x02,0x02,0x00 - -, -0x10,0x0c,0x03,0x3f,0x05,0x05,0x1f,0x05,0x05,0x1f,0x25,0x25,0x1f,0x00,0x00 - -, -/* @2364 ƫ(15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x00,0xfc,0xd4,0x54,0xd5,0x56,0xd4,0x54,0xdc,0x00,0x00 - -, -0x00,0x00,0x3f,0x10,0x0c,0x03,0x3f,0x02,0x1f,0x02,0x1f,0x22,0x3f,0x00,0x00 - -, -/* @2365 Ƭ(15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0xfe,0x90,0x90,0x90,0x90,0x9f,0x90,0x10,0x10,0x18,0x10,0x00 - -, -0x20,0x10,0x08,0x07,0x00,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00 - -, -/* @2366 ƭ(15x15,V)@ [suki software]*/ -0x02,0xfa,0x82,0x82,0xbe,0x00,0xfc,0x94,0x95,0x96,0x94,0x94,0xbe,0x84,0x00 - -, -0x04,0x04,0x12,0x22,0x1f,0x08,0x07,0x3f,0x02,0x1f,0x02,0x1f,0x22,0x3f,0x00 - -, -/* @2367 Ʈ(15x15,V)@ [suki software]*/ -0x3a,0xaa,0xbe,0xaa,0xbe,0xaa,0x3a,0x00,0xfe,0x32,0xc2,0x32,0xff,0x02,0x00 - -, -0x12,0x0e,0x22,0x3e,0x06,0x2a,0x12,0x08,0x07,0x01,0x00,0x03,0x0f,0x18,0x00 - -, -/* @2368 Ư(15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x02,0xba,0xaa,0xbe,0xaa,0xbe,0xaa,0xaa,0x3b,0x02,0x00 - -, -0x02,0x3e,0x01,0x00,0x12,0x0a,0x06,0x22,0x3e,0x02,0x06,0x0a,0x12,0x02,0x00 - -, -/* @2369 ư(15x15,V)@ [suki software]*/ -0x3a,0xaa,0xbe,0xaa,0xbe,0xaa,0x3a,0xfc,0x04,0xfc,0x02,0xff,0x02,0x00,0x00 - -, -0x12,0x0a,0x22,0x3e,0x02,0x2a,0x12,0x0f,0x00,0x1f,0x08,0x19,0x06,0x18,0x00 - -, -/* @2370 Ʊ(15x15,V)@ [suki software]*/ -0x02,0x02,0xba,0xaa,0xaa,0xbe,0xaa,0xaa,0xbe,0xaa,0xaa,0xba,0x03,0x02,0x00 - -, -0x02,0x12,0x12,0x0a,0x06,0x12,0x22,0x1e,0x02,0x02,0x06,0x0a,0x12,0x02,0x00 - -, -/* @2371 Ʋ(15x15,V)@ [suki software]*/ -0x08,0x88,0xff,0x48,0xe4,0x28,0xff,0x28,0xe6,0x70,0x9f,0x10,0xf8,0x10,0x00 - -, -0x11,0x20,0x1f,0x00,0x3f,0x01,0x3f,0x11,0x1f,0x20,0x13,0x0c,0x13,0x20,0x00 - -, -/* @2372 Ƴ(15x15,V)@ [suki software]*/ -0x00,0x7d,0x16,0xff,0x94,0xa6,0xfd,0x90,0x8c,0xd7,0xa4,0x5c,0x86,0x84,0x00 - -, -0x00,0x00,0x00,0x3f,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x3f,0x00,0x00,0x00,0x00 - -, -/* @2373 ƴ(15x15,V)@ [suki software]*/ -0x08,0x88,0xff,0x48,0x48,0x80,0x89,0xfe,0x88,0x88,0xfc,0x8b,0x88,0x80,0x00 - -, -0x11,0x20,0x1f,0x00,0x20,0x10,0x08,0x07,0x00,0x00,0x3f,0x00,0x00,0x00,0x00 - -, -/* @2374 Ƶ(15x15,V)@ [suki software]*/ -0x00,0x20,0xbc,0x20,0xff,0x24,0x24,0x02,0xfa,0x0a,0xee,0x0a,0x0b,0xfa,0x00 - -, -0x00,0x22,0x21,0x10,0x0b,0x04,0x23,0x20,0x17,0x08,0x07,0x08,0x10,0x37,0x00 - -, -/* @2375 ƶ(15x15,V)@ [suki software]*/ -0x08,0x48,0x44,0xcc,0xaa,0x99,0x88,0xa8,0xc9,0xba,0x84,0x04,0x08,0x08,0x00 - -, -0x00,0x20,0x20,0x17,0x10,0x08,0x06,0x08,0x08,0x10,0x17,0x20,0x00,0x00,0x00 - -, -/* @2376 Ʒ(15x15,V)@ [suki software]*/ -0x00,0x80,0x80,0x80,0xbe,0xa2,0x22,0x22,0xa2,0xa2,0xbf,0x82,0x80,0x00,0x00 - -, -0x00,0x3f,0x10,0x10,0x10,0x3f,0x00,0x00,0x3f,0x10,0x10,0x10,0x3f,0x00,0x00 - -, -/* @2377 Ƹ(15x15,V)@ [suki software]*/ -0x02,0xfe,0x92,0x92,0xfe,0x02,0x7e,0x52,0x52,0x7f,0x52,0x52,0x7e,0x00,0x00 - -, -0x08,0x0f,0x04,0x04,0x3f,0x02,0x01,0x07,0x15,0x25,0x25,0x1d,0x05,0x01,0x00 - -, -/* @2378 ƹ(15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0xfc,0x24,0x24,0x24,0x22,0xe2,0x22,0x23,0x32,0x20,0x00,0x00 - -, -0x22,0x22,0x12,0x13,0x0a,0x06,0x02,0x02,0x03,0x02,0x02,0x02,0x03,0x02,0x00 - -, -/* @2379 ƺ(15x15,V)@ [suki software]*/ -0x10,0x10,0xff,0x10,0x10,0x80,0x9a,0xe2,0x82,0xfe,0x82,0xe2,0x9b,0x82,0x00 - -, -0x04,0x0c,0x07,0x02,0x02,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00 - -, -/* @2380 ƻ(15x15,V)@ [suki software]*/ -0x04,0x14,0x14,0x54,0x94,0x1f,0x14,0xf4,0x14,0x1f,0xd4,0x14,0x16,0x04,0x00 - -, -0x02,0x02,0x02,0x02,0x03,0x02,0x02,0x3f,0x02,0x03,0x02,0x02,0x03,0x02,0x00 - -, -/* @2381 Ƽ(15x15,V)@ [suki software]*/ -0x44,0x94,0x24,0x84,0x04,0x5f,0x94,0x14,0xf4,0x1f,0x94,0x54,0x16,0x04,0x00 - -, -0x04,0x04,0x3f,0x00,0x02,0x02,0x02,0x02,0x3f,0x02,0x02,0x02,0x03,0x02,0x00 - -, -/* @2382 ƽ(15x15,V)@ [suki software]*/ -0x80,0x82,0x8a,0x92,0xa2,0x82,0xfe,0x82,0x82,0xa2,0x92,0x8b,0xc2,0x80,0x00 - -, -0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 - -, -/* @2383 ƾ(15x15,V)@ [suki software]*/ -0x20,0x10,0xfc,0x03,0x10,0x94,0x94,0x94,0xfe,0x92,0x93,0x92,0x10,0x00,0x00 - -, -0x20,0x20,0x21,0x10,0x0e,0x02,0x02,0x02,0x02,0x1e,0x20,0x20,0x20,0x38,0x00 - -, -/* @2384 ƿ(15x15,V)@ [suki software]*/ -0x88,0x89,0xfe,0x88,0xfc,0x8b,0x88,0x04,0xfc,0xa4,0x24,0xe4,0x06,0x04,0x00 - -, -0x20,0x18,0x07,0x00,0x3f,0x00,0x00,0x3c,0x13,0x08,0x01,0x3f,0x20,0x38,0x00 - -, -/* @2385 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x00,0x8a,0xb2,0x82,0x82,0xfe,0x82,0xa2,0x9b,0x82,0x00 - -, -0x00,0x00,0x3f,0x10,0x08,0x04,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00 - -, -/* @2386 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x0a,0x4a,0x5a,0xea,0x4a,0x4a,0xea,0x5a,0x4a,0x4f,0x02,0x00 - -, -0x20,0x18,0x07,0x22,0x22,0x12,0x0f,0x02,0x02,0x3f,0x02,0x02,0x02,0x02,0x00 - -, -/* @2387 (15x15,V)@ [suki software]*/ -0x10,0x10,0xff,0x10,0x10,0x00,0xfc,0x44,0xc4,0x7f,0x44,0xe4,0x44,0x0c,0x00 - -, -0x04,0x0c,0x07,0x22,0x12,0x0c,0x23,0x10,0x0b,0x04,0x0a,0x11,0x30,0x10,0x00 - -, -/* @2388 (15x15,V)@ [suki software]*/ -0x10,0x20,0x02,0xe4,0x00,0x1e,0x10,0xf0,0x9f,0x90,0x92,0x94,0x10,0x10,0x00 - -, -0x02,0x02,0x3f,0x20,0x10,0x28,0x26,0x11,0x0a,0x04,0x0a,0x11,0x30,0x10,0x00 - -, -/* @2389 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x44,0x7f,0x44,0xd4,0x0c,0xfa,0x0a,0x0e,0xca,0x0a,0xfb,0x02,0x00 - -, -0x30,0x2f,0x11,0x0a,0x04,0x1b,0x20,0x27,0x10,0x08,0x07,0x08,0x17,0x30,0x00 - -, -/* @2390 (15x15,V)@ [suki software]*/ -0x04,0x48,0xe1,0x16,0x80,0x7c,0x94,0xb4,0x5f,0x54,0xb4,0x94,0x8c,0x00,0x00 - -, -0x02,0x22,0x23,0x22,0x2a,0x2e,0x13,0x12,0x1a,0x16,0x22,0x22,0x02,0x02,0x00 - -, -/* @2391 (15x15,V)@ [suki software]*/ -0x04,0xc4,0x7c,0x44,0xc4,0x00,0xfc,0x44,0xc4,0x7f,0x44,0x44,0xdc,0x04,0x00 - -, -0x01,0x1f,0x08,0x08,0x2f,0x10,0x2f,0x20,0x11,0x0a,0x04,0x0b,0x30,0x10,0x00 - -, -/* @2392 (15x15,V)@ [suki software]*/ -0x00,0xf8,0x4c,0x4b,0xf8,0x00,0xfc,0x96,0xfd,0x94,0x94,0xfe,0x04,0x00,0x00 - -, -0x00,0x0f,0x04,0x24,0x2f,0x10,0x08,0x04,0x03,0x1e,0x24,0x26,0x24,0x38,0x00 - -, -/* @2393 (15x15,V)@ [suki software]*/ -0x20,0x22,0xe4,0x0c,0x00,0x00,0xf8,0x4c,0x4b,0x48,0x48,0xfc,0x08,0x00,0x00 - -, -0x10,0x08,0x07,0x08,0x10,0x10,0x2f,0x24,0x24,0x24,0x24,0x2f,0x20,0x20,0x00 - -, -/* @2394 (15x15,V)@ [suki software]*/ -0x22,0x2c,0xa0,0xff,0xa8,0x26,0x00,0xf8,0x88,0x8c,0x8b,0x88,0xfc,0x08,0x00 - -, -0x04,0x03,0x00,0x3f,0x00,0x01,0x00,0x3f,0x10,0x10,0x10,0x10,0x3f,0x00,0x00 - -, -/* @2395 (15x15,V)@ [suki software]*/ -0x40,0x44,0x4c,0x75,0x46,0x64,0x5c,0x44,0x00,0x00,0xfc,0x00,0xff,0x00,0x00 - -, -0x00,0x00,0x3f,0x11,0x11,0x11,0x3f,0x00,0x00,0x00,0x17,0x20,0x1f,0x00,0x00 - -, -/* @2396 (15x15,V)@ [suki software]*/ -0x00,0x08,0x08,0x88,0xff,0x48,0x48,0x00,0x00,0xff,0x20,0x40,0x80,0x00,0x00 - -, -0x00,0x01,0x11,0x20,0x1f,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x01,0x00,0x00 - -, -/* @2397 (15x15,V)@ [suki software]*/ -0x20,0x38,0xe7,0x24,0x24,0x04,0xe8,0xa8,0xa8,0xff,0xa8,0xa9,0xea,0x08,0x00 - -, -0x01,0x01,0x3f,0x11,0x09,0x00,0x3f,0x02,0x02,0x3f,0x02,0x22,0x3f,0x00,0x00 - -, -/* @2398 (15x15,V)@ [suki software]*/ -0x80,0x40,0x20,0xf8,0x07,0x00,0x00,0x00,0xff,0x10,0x20,0x40,0xc0,0x00,0x00 - -, -0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x00 - -, -/* @2399 (15x15,V)@ [suki software]*/ -0x04,0x14,0xd4,0x54,0x5f,0x54,0xfc,0x54,0x5f,0x54,0x5c,0xd4,0x16,0x14,0x00 - -, -0x00,0x00,0x3f,0x05,0x05,0x05,0x3f,0x05,0x05,0x15,0x25,0x1f,0x00,0x00,0x00 - -, -/* @2400 (15x15,V)@ [suki software]*/ -0x40,0x22,0x52,0xda,0x52,0x57,0xf2,0x52,0x72,0xd7,0x52,0x12,0xfb,0x12,0x00 - -, -0x00,0x00,0x00,0x3f,0x05,0x05,0x3f,0x05,0x25,0x1f,0x20,0x20,0x1f,0x00,0x00 - -, -/* @2401 (15x15,V)@ [suki software]*/ -0x04,0x24,0x24,0x24,0x6f,0xa4,0x2c,0x34,0xa4,0x6f,0x24,0x24,0x26,0x04,0x00 - -, -0x01,0x01,0x01,0x3d,0x25,0x25,0x25,0x25,0x25,0x25,0x3d,0x01,0x01,0x01,0x00 - -, -/* @2402 (15x15,V)@ [suki software]*/ -0x42,0x8a,0x12,0x82,0x22,0xaf,0xa2,0xa2,0xfa,0xa7,0xaa,0xb2,0xa2,0x22,0x00 - -, -0x04,0x04,0x3e,0x01,0x00,0x3f,0x0a,0x0a,0x3f,0x0a,0x0a,0x2a,0x3f,0x00,0x00 - -, -/* @2403 (15x15,V)@ [suki software]*/ -0x10,0x10,0xff,0x10,0x10,0x04,0xf4,0x94,0x94,0xff,0x94,0x95,0xf6,0x04,0x00 - -, -0x04,0x0c,0x07,0x02,0x02,0x00,0x3f,0x02,0x02,0x3f,0x02,0x22,0x3f,0x00,0x00 - -, -/* @2404 (15x15,V)@ [suki software]*/ -0x08,0x08,0xc8,0xff,0x48,0x88,0x08,0x00,0x00,0xff,0x20,0x20,0x40,0xc0,0x00 - -, -0x04,0x03,0x00,0x3f,0x00,0x00,0x01,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00 - -, -/* @2405 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0x0a,0xea,0xaa,0xaa,0xfe,0xaa,0xae,0xea,0x0a,0xff,0x02,0x00 - -, -0x00,0x3f,0x10,0x10,0x1f,0x12,0x12,0x1f,0x12,0x1a,0x1f,0x10,0x3f,0x00,0x00 - -, -/* @2406 (15x15,V)@ [suki software]*/ -0x40,0x44,0x54,0x64,0x45,0x7e,0x44,0x44,0x7e,0x45,0x64,0x54,0x44,0x40,0x00 - -, -0x00,0x00,0x00,0x3f,0x25,0x25,0x25,0x25,0x25,0x25,0x3f,0x00,0x00,0x00,0x00 - -, -/* @2407 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x08,0xe8,0xa8,0xa8,0xff,0xa8,0xa9,0xaa,0xe8,0x08,0x00 - -, -0x02,0x3e,0x01,0x00,0x00,0x3f,0x02,0x02,0x3f,0x02,0x12,0x22,0x1f,0x00,0x00 - -, -/* @2408 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x40,0x54,0x65,0x7e,0x44,0x44,0x7e,0x65,0x54,0x40,0x00 - -, -0x00,0x00,0x1f,0x08,0x04,0x00,0x3f,0x25,0x25,0x25,0x25,0x3f,0x00,0x00,0x00 - -, -/* @2409 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x22,0xfe,0x80,0xa0,0xbe,0xea,0xaa,0xaa,0xea,0xbf,0xa2,0x80,0x00 - -, -0x00,0x07,0x02,0x0b,0x08,0x14,0x16,0x29,0x3e,0x08,0x15,0x12,0x04,0x04,0x00 - -, -/* @2410 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x80,0xbe,0xaa,0xea,0xaa,0xea,0xaa,0xbf,0xa2,0x80,0x00 - -, -0x02,0x3e,0x01,0x08,0x04,0x12,0x15,0x28,0x3e,0x08,0x15,0x12,0x04,0x04,0x00 - -, -/* @2411 (15x15,V)@ [suki software]*/ -0x00,0x04,0xff,0x94,0x94,0xff,0x04,0x00,0xfe,0x12,0x12,0x12,0xff,0x02,0x00 - -, -0x22,0x12,0x0b,0x06,0x02,0x07,0x2a,0x10,0x0f,0x01,0x11,0x21,0x1f,0x00,0x00 - -, -/* @2412 (15x15,V)@ [suki software]*/ -0x00,0x04,0xff,0x54,0x54,0xff,0x04,0x30,0x0c,0xeb,0x08,0x08,0x28,0x18,0x00 - -, -0x22,0x12,0x0f,0x02,0x06,0x2b,0x12,0x08,0x06,0x01,0x06,0x08,0x30,0x10,0x00 - -, -/* @2413 (15x15,V)@ [suki software]*/ -0x10,0x90,0xff,0x50,0x90,0x02,0xf2,0x12,0xfe,0x12,0xfe,0x12,0xfb,0x12,0x00 - -, -0x06,0x01,0x3f,0x00,0x00,0x00,0x3f,0x12,0x11,0x10,0x13,0x12,0x3f,0x00,0x00 - -, -/* @2414 (15x15,V)@ [suki software]*/ -0x00,0x00,0xf8,0x88,0x88,0xf8,0xa8,0xa8,0x7f,0x88,0x09,0x8a,0x6c,0x08,0x00 - -, -0x20,0x18,0x07,0x08,0x24,0x3f,0x02,0x2c,0x10,0x09,0x06,0x09,0x10,0x3c,0x00 - -, -/* @2415 (15x15,V)@ [suki software]*/ -0x20,0x22,0xaa,0xaa,0xaa,0xaa,0xff,0xaa,0xaa,0xaa,0xfa,0x22,0x22,0x20,0x00 - -, -0x02,0x22,0x22,0x22,0x26,0x2b,0x1a,0x0a,0x0a,0x16,0x12,0x32,0x03,0x02,0x00 - -, -/* @2416 (15x15,V)@ [suki software]*/ -0x80,0x80,0x80,0x40,0x40,0x40,0xff,0x20,0x20,0x20,0x10,0x10,0x18,0x10,0x00 - -, -0x00,0x00,0x00,0x00,0x00,0x00,0x1f,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x00 - -, -/* @2417 (15x15,V)@ [suki software]*/ -0x02,0x04,0x8c,0x60,0x22,0xaa,0xaa,0xaa,0xff,0xaa,0xaa,0xfa,0x23,0x22,0x00 - -, -0x02,0x02,0x1f,0x20,0x22,0x22,0x2e,0x1b,0x0a,0x0a,0x16,0x12,0x22,0x02,0x00 - -, -/* @2418 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x40,0x24,0x24,0x94,0x4c,0xbf,0x44,0x8c,0x94,0x36,0x04,0x00 - -, -0x02,0x3e,0x01,0x00,0x11,0x11,0x0a,0x24,0x3f,0x04,0x0a,0x10,0x11,0x01,0x00 - -, -/* @2419 (15x15,V)@ [suki software]*/ -0x00,0x22,0x24,0xf1,0x0a,0x14,0x10,0x90,0x3f,0x48,0x48,0x44,0x44,0x74,0x00 - -, -0x22,0x22,0x12,0x12,0x0a,0x06,0x02,0x3f,0x02,0x06,0x0a,0x12,0x33,0x12,0x00 - -, -/* @2420 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x20,0x20,0xff,0x10,0x14,0x04,0xfc,0x04,0xfe,0x04,0x00 - -, -0x02,0x3e,0x01,0x00,0x00,0x20,0x27,0x12,0x08,0x04,0x13,0x20,0x1f,0x00,0x00 - -, -/* @2421 (15x15,V)@ [suki software]*/ -0x00,0x04,0x04,0x04,0xff,0x94,0x94,0x94,0x94,0xff,0x04,0x04,0x04,0x00,0x00 - -, -0x02,0x22,0x22,0x12,0x0b,0x02,0x02,0x02,0x02,0x0b,0x12,0x22,0x22,0x00,0x00 - -, -/* @2422 (15x15,V)@ [suki software]*/ -0x08,0x88,0xff,0x48,0x88,0x04,0x04,0xff,0xa4,0xa4,0xa4,0xff,0x04,0x04,0x00 - -, -0x06,0x01,0x3f,0x00,0x20,0x22,0x12,0x0b,0x02,0x02,0x02,0x0b,0x12,0x22,0x00 - -, -/* @2423 (15x15,V)@ [suki software]*/ -0x40,0x44,0x44,0x64,0x54,0x4c,0x47,0x4c,0x54,0x54,0xe4,0x46,0x44,0x40,0x00 - -, -0x00,0x00,0x00,0x1f,0x09,0x09,0x09,0x1f,0x00,0x20,0x3f,0x00,0x00,0x00,0x00 - -, -/* @2424 (15x15,V)@ [suki software]*/ -0x00,0xf0,0x00,0xff,0x20,0x28,0x48,0xc8,0x48,0x7f,0x48,0xc8,0x4c,0x08,0x00 - -, -0x08,0x0f,0x08,0x07,0x24,0x24,0x10,0x11,0x0a,0x04,0x0a,0x11,0x20,0x20,0x00 - -, -/* @2425 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x44,0xfc,0x44,0xfc,0x40,0x48,0x48,0xff,0x48,0x48,0x68,0x40,0x00 - -, -0x00,0x0f,0x04,0x07,0x04,0x2f,0x20,0x22,0x22,0x3f,0x22,0x22,0x32,0x20,0x00 - -, -/* @2426 (15x15,V)@ [suki software]*/ -0xf0,0x00,0xff,0x00,0xf0,0x40,0x64,0x54,0x4c,0x47,0x4c,0xd4,0x66,0x44,0x00 - -, -0x07,0x04,0x03,0x02,0x07,0x00,0x0f,0x05,0x05,0x0f,0x20,0x3f,0x00,0x00,0x00 - -, -/* @2427 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x92,0x92,0xfe,0x80,0x84,0x4c,0x55,0x26,0x54,0x4c,0x86,0x84,0x00 - -, -0x30,0x0f,0x10,0x20,0x1f,0x20,0x10,0x0f,0x00,0x00,0x00,0x3f,0x00,0x00,0x00 - -, -/* @2428 (15x15,V)@ [suki software]*/ -0x04,0x04,0x84,0x84,0x8c,0x54,0x25,0x26,0x54,0x4c,0x84,0x86,0x84,0x80,0x00 - -, -0x01,0x21,0x20,0x10,0x0f,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x01,0x00,0x00 - -, -/* @2429 (15x15,V)@ [suki software]*/ -0x08,0x08,0xf9,0x2e,0xe8,0x08,0x14,0xff,0x54,0x54,0x54,0xfc,0x16,0x04,0x00 - -, -0x20,0x18,0x07,0x10,0x1f,0x24,0x14,0x0f,0x05,0x05,0x0d,0x17,0x34,0x04,0x00 - -, -/* @2430 (15x15,V)@ [suki software]*/ -0x08,0x88,0x49,0xee,0x98,0x00,0x00,0xfc,0x24,0x24,0x22,0xe3,0x32,0x20,0x00 - -, -0x01,0x00,0x00,0x3f,0x00,0x21,0x18,0x07,0x00,0x00,0x00,0x3f,0x00,0x00,0x00 - -, -/* @2431 (15x15,V)@ [suki software]*/ -0x08,0x08,0x89,0xca,0x68,0x98,0x00,0x00,0xfe,0x02,0x02,0x62,0x9a,0x06,0x00 - -, -0x02,0x01,0x00,0x3f,0x00,0x00,0x01,0x00,0x3f,0x00,0x04,0x08,0x08,0x07,0x00 - -, -/* @2432 (15x15,V)@ [suki software]*/ -0x02,0xfa,0x82,0xe2,0x9e,0x40,0x44,0x64,0x54,0x4f,0x54,0xe4,0x44,0x40,0x00 - -, -0x04,0x04,0x12,0x22,0x1f,0x00,0x0f,0x05,0x05,0x17,0x20,0x1f,0x00,0x00,0x00 - -, -/* @2433 (15x15,V)@ [suki software]*/ -0x20,0xa4,0x24,0x24,0xff,0x24,0x24,0x00,0xe4,0x24,0x24,0x24,0x3e,0x04,0x00 - -, -0x30,0x0f,0x04,0x08,0x0f,0x11,0x11,0x20,0x27,0x28,0x28,0x28,0x28,0x2e,0x00 - -, -/* @2434 (15x15,V)@ [suki software]*/ -0x00,0x00,0x2e,0x28,0x28,0x28,0x28,0x2f,0x28,0x28,0x28,0xee,0x00,0x00,0x00 - -, -0x00,0x00,0x00,0x1f,0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x23,0x38,0x00,0x00 - -, -/* @2435 (15x15,V)@ [suki software]*/ -0x00,0x40,0x20,0x50,0x4c,0x4b,0x48,0xc8,0x68,0x48,0x08,0x0c,0x08,0x00,0x00 - -, -0x00,0x00,0x00,0x18,0x24,0x22,0x21,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x00 - -, -/* @2436 (15x15,V)@ [suki software]*/ -0x00,0x40,0x40,0x20,0x90,0x08,0x04,0xe3,0x04,0x08,0x10,0x20,0x40,0x40,0x00 - -, -0x20,0x20,0x20,0x20,0x3f,0x20,0x20,0x3f,0x21,0x21,0x21,0x20,0x30,0x20,0x00 - -, -/* @2437 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfc,0x24,0x24,0x24,0x25,0x26,0x24,0x24,0x24,0x3e,0x04,0x00,0x00 - -, -0x20,0x10,0x0f,0x00,0x3f,0x11,0x11,0x11,0x11,0x11,0x11,0x3f,0x00,0x00,0x00 - -, -/* @2438 (15x15,V)@ [suki software]*/ -0x00,0x54,0x54,0x54,0xff,0x54,0xd4,0x40,0x24,0x1c,0x44,0x84,0x7e,0x04,0x00 - -, -0x02,0x22,0x22,0x12,0x12,0x0a,0x06,0x03,0x06,0x0a,0x12,0x22,0x22,0x22,0x00 - -, -/* @2439 (15x15,V)@ [suki software]*/ -0x84,0xe4,0x5c,0x44,0xc4,0x20,0xff,0x10,0x14,0x04,0xfc,0x04,0x04,0xfc,0x00 - -, -0x00,0x1f,0x08,0x08,0x0f,0x00,0x27,0x12,0x09,0x06,0x11,0x20,0x10,0x0f,0x00 - -, -/* @2440 (15x15,V)@ [suki software]*/ -0x00,0x40,0x5e,0x52,0xd2,0x5e,0x60,0x40,0x5e,0xd2,0x72,0x5f,0x42,0x40,0x00 - -, -0x02,0x02,0x3e,0x13,0x12,0x3e,0x00,0x00,0x3e,0x12,0x13,0x3e,0x02,0x02,0x00 - -, -/* @2441 (15x15,V)@ [suki software]*/ -0x20,0x10,0x48,0x57,0x54,0x54,0x54,0x54,0x54,0x54,0xd4,0x16,0x04,0x00,0x00 - -, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x10,0x20,0x38,0x00 - -, -/* @2442 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x20,0x10,0x2c,0x2b,0xa8,0x68,0x28,0x08,0x0c,0x08,0x00 - -, -0x10,0x08,0x07,0x08,0x10,0x10,0x26,0x29,0x28,0x28,0x28,0x28,0x2e,0x20,0x00 - -, -/* @2443 (15x15,V)@ [suki software]*/ -0x00,0x04,0x24,0x24,0x34,0xac,0x25,0x26,0x24,0xac,0x34,0x64,0x06,0x04,0x00 - -, -0x02,0x22,0x22,0x12,0x0a,0x07,0x02,0x02,0x02,0x3f,0x02,0x02,0x02,0x02,0x00 - -, -/* @2444 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x40,0x10,0x48,0x54,0x57,0x54,0x54,0xd4,0x14,0x04,0x00,0x00 - -, -0x02,0x3e,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x10,0x20,0x3c,0x00 - -, -/* @2445 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x08,0x28,0xc8,0x09,0x0e,0x08,0x88,0x6c,0x08,0x00,0x00 - -, -0x02,0x3e,0x01,0x10,0x10,0x10,0x10,0x17,0x10,0x1e,0x11,0x10,0x10,0x10,0x00 - -, -/* @2446 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe2,0x06,0x20,0x10,0x4c,0x4b,0x48,0x48,0xe8,0x48,0x0c,0x08,0x00 - -, -0x00,0x00,0x1f,0x08,0x04,0x00,0x18,0x24,0x22,0x21,0x20,0x20,0x20,0x3c,0x00 - -, -/* @2447 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x08,0xd0,0x48,0x27,0x04,0x54,0x4c,0xc4,0x00,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x00,0x3f,0x12,0x12,0x10,0x12,0x12,0x3f,0x00,0x00 - -, -}, -//************************************** -{ -/* @2448 ǡ(15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x08,0x50,0x20,0x10,0x2c,0x23,0x24,0x28,0x10,0x20,0x20,0x00 - -, -0x00,0x00,0x3f,0x00,0x00,0x00,0x3f,0x11,0x11,0x11,0x11,0x3f,0x00,0x00,0x00 - -, -/* @2449 Ǣ(15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x00,0x40,0x20,0x10,0x2c,0x23,0x24,0x28,0x10,0x20,0x20,0x00 - -, -0x02,0x3e,0x01,0x00,0x00,0x00,0x3f,0x11,0x11,0x11,0x11,0x3f,0x00,0x00,0x00 - -, -/* @2450 ǣ(15x15,V)@ [suki software]*/ -0x80,0x60,0x22,0xa2,0x32,0x2a,0x26,0xe3,0x26,0x2a,0x32,0x22,0xa2,0x60,0x00 - -, -0x00,0x04,0x06,0x05,0x05,0x05,0x05,0x3f,0x05,0x05,0x05,0x05,0x04,0x04,0x00 - -, -/* @2451 Ǥ(15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x08,0x44,0x44,0x44,0xfe,0x42,0x43,0x62,0x40,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00 - -, -/* @2452 ǥ(15x15,V)@ [suki software]*/ -0x40,0x30,0xef,0x28,0x28,0x08,0x44,0x44,0x44,0xfc,0x42,0x43,0x62,0x40,0x00 - -, -0x01,0x01,0x3f,0x11,0x09,0x01,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00 - -, -/* @2453 Ǧ(15x15,V)@ [suki software]*/ -0x40,0x30,0xef,0x24,0x24,0x44,0x20,0x9e,0x82,0x82,0x82,0x9f,0xa2,0x20,0x00 - -, -0x01,0x01,0x3f,0x11,0x09,0x01,0x00,0x3f,0x10,0x10,0x10,0x10,0x3f,0x00,0x00 - -, -/* @2454 ǧ(15x15,V)@ [suki software]*/ -0x40,0x44,0x44,0x44,0x44,0x44,0x44,0xfe,0x42,0x42,0x43,0x42,0x60,0x40,0x00 - -, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00 - -, -/* @2455 Ǩ(15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x40,0x44,0x44,0x44,0xfc,0x42,0x42,0x43,0x62,0x40,0x00 - -, -0x10,0x08,0x07,0x08,0x10,0x10,0x20,0x20,0x2f,0x20,0x20,0x20,0x20,0x20,0x00 - -, -/* @2456 ǩ(15x15,V)@ [suki software]*/ -0x10,0x08,0x04,0x07,0x8c,0x54,0x24,0x34,0x48,0x87,0x8c,0x14,0x06,0x04,0x00 - -, -0x02,0x22,0x21,0x25,0x38,0x21,0x23,0x2d,0x31,0x28,0x26,0x21,0x31,0x21,0x00 - -, -/* @2457 Ǫ(15x15,V)@ [suki software]*/ -0x40,0x20,0x10,0xfc,0x03,0x40,0x44,0x44,0x44,0xfc,0x42,0x43,0x62,0x40,0x00 - -, -0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00 - -, -/* @2458 ǫ(15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x44,0x54,0x55,0xfe,0x54,0xfe,0x55,0xf4,0x46,0x44,0x00 - -, -0x00,0x00,0x1f,0x28,0x14,0x09,0x05,0x3f,0x01,0x3f,0x05,0x09,0x10,0x10,0x00 - -, -/* @2459 Ǭ(15x15,V)@ [suki software]*/ -0x04,0xf4,0x54,0x5f,0x54,0xf4,0x44,0x30,0x4c,0x4b,0xc8,0x48,0x0c,0x08,0x00 - -, -0x04,0x05,0x05,0x3f,0x05,0x05,0x04,0x00,0x1c,0x23,0x20,0x20,0x20,0x3c,0x00 - -, -/* @2460 ǭ(15x15,V)@ [suki software]*/ -0x00,0xbe,0xaa,0xfe,0xaa,0xa2,0xbe,0x20,0x10,0x2c,0xc3,0x0c,0x10,0x20,0x00 - -, -0x22,0x1a,0x02,0x1b,0x02,0x1a,0x02,0x18,0x01,0x01,0x31,0x0d,0x03,0x00,0x00 - -, -/* @2461 Ǯ(15x15,V)@ [suki software]*/ -0x40,0x30,0xef,0x24,0x24,0x24,0x90,0x90,0xff,0x48,0x4a,0x4c,0x68,0x40,0x00 - -, -0x01,0x01,0x3f,0x11,0x09,0x21,0x10,0x10,0x0b,0x04,0x0a,0x11,0x20,0x3c,0x00 - -, -/* @2462 ǯ(15x15,V)@ [suki software]*/ -0x20,0x38,0xe7,0x24,0x24,0x24,0x08,0xff,0x88,0x88,0x88,0xff,0x08,0x08,0x00 - -, -0x01,0x01,0x3f,0x11,0x09,0x01,0x00,0x3f,0x10,0x10,0x10,0x3f,0x00,0x00,0x00 - -, -/* @2463 ǰ(15x15,V)@ [suki software]*/ -0x08,0x08,0xe8,0xa9,0xaa,0xac,0xe8,0x08,0x0c,0xea,0x09,0xe8,0x0c,0x08,0x00 - -, -0x00,0x00,0x3f,0x02,0x12,0x22,0x1f,0x00,0x00,0x17,0x20,0x1f,0x00,0x00,0x00 - -, -/* @2464 DZ(15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x94,0x54,0x3f,0x54,0x80,0x54,0x3f,0x54,0x94,0x90,0x00 - -, -0x02,0x3e,0x01,0x00,0x00,0x3f,0x25,0x25,0x25,0x25,0x25,0x3f,0x00,0x00,0x00 - -, -/* @2465 Dz(15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x20,0x2e,0xea,0xaa,0xbf,0xaa,0xaa,0xee,0x20,0x00,0x00 - -, -0x10,0x08,0x07,0x08,0x10,0x20,0x2f,0x2a,0x2a,0x2a,0x2a,0x2e,0x20,0x20,0x00 - -, -/* @2466 dz(15x15,V)@ [suki software]*/ -0x10,0x61,0x02,0x86,0x60,0x90,0x90,0x90,0xff,0x48,0x4a,0x4c,0x48,0x00,0x00 - -, -0x02,0x02,0x3e,0x01,0x20,0x20,0x10,0x10,0x0b,0x04,0x0a,0x11,0x20,0x38,0x00 - -, -/* @2467 Ǵ(15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x40,0x42,0xcc,0x20,0xee,0xaa,0xbf,0xaa,0xea,0x2e,0x20,0x00 - -, -0x00,0x00,0x0f,0x24,0x10,0x0f,0x10,0x2f,0x2a,0x2a,0x2a,0x2a,0x2e,0x20,0x00 - -, -/* @2468 ǵ(15x15,V)@ [suki software]*/ -0x04,0x94,0x9c,0x57,0xfc,0x54,0x54,0x80,0x7c,0x14,0x12,0xf3,0x12,0x10,0x00 - -, -0x20,0x20,0x24,0x24,0x25,0x24,0x25,0x3e,0x24,0x24,0x24,0x25,0x34,0x20,0x00 - -, -/* @2469 Ƕ(15x15,V)@ [suki software]*/ -0x40,0x40,0xfe,0x48,0x48,0xf8,0x4f,0x88,0x48,0x78,0x48,0x4e,0xc0,0x40,0x00 - -, -0x00,0x00,0x3f,0x12,0x12,0x1f,0x20,0x10,0x08,0x07,0x04,0x08,0x10,0x20,0x00 - -, -/* @2470 Ƿ(15x15,V)@ [suki software]*/ -0x00,0x40,0x20,0x18,0x0f,0x08,0xe8,0x08,0x08,0x08,0x28,0x1c,0x08,0x00,0x00 - -, -0x20,0x20,0x10,0x10,0x08,0x06,0x01,0x01,0x02,0x04,0x08,0x10,0x30,0x10,0x00 - -, -/* @2471 Ǹ(15x15,V)@ [suki software]*/ -0x44,0x55,0xfe,0x54,0xfc,0x57,0xf4,0x44,0x10,0x0f,0xe8,0x08,0x18,0x08,0x00 - -, -0x18,0x05,0x3f,0x01,0x3f,0x05,0x29,0x10,0x08,0x06,0x01,0x06,0x18,0x20,0x00 - -, -/* @2472 ǹ(15x15,V)@ [suki software]*/ -0x10,0x90,0xff,0x50,0x90,0x20,0xd0,0x48,0x47,0x44,0xc8,0x10,0x20,0x20,0x00 - -, -0x06,0x01,0x3f,0x00,0x00,0x00,0x1f,0x20,0x22,0x24,0x23,0x20,0x38,0x00,0x00 - -, -/* @2473 Ǻ(15x15,V)@ [suki software]*/ -0xfc,0x04,0x04,0xfc,0x40,0x20,0xd0,0x4c,0x43,0x44,0xc8,0x10,0x20,0x20,0x00 - -, -0x07,0x02,0x02,0x07,0x00,0x00,0x1f,0x20,0x22,0x24,0x23,0x20,0x3c,0x00,0x00 - -, -/* @2474 ǻ(15x15,V)@ [suki software]*/ -0x00,0xfe,0x12,0x12,0xfe,0x00,0x4c,0x24,0x15,0x06,0x14,0x24,0x44,0x0c,0x00 - -, -0x30,0x0f,0x11,0x21,0x1f,0x20,0x21,0x21,0x21,0x3f,0x21,0x21,0x31,0x20,0x00 - -, -/* @2475 Ǽ(15x15,V)@ [suki software]*/ -0x00,0x04,0x24,0x24,0x25,0x26,0xfc,0x24,0x26,0x25,0x24,0x24,0x84,0x00,0x00 - -, -0x21,0x21,0x21,0x11,0x09,0x07,0x01,0x1f,0x21,0x21,0x21,0x21,0x21,0x39,0x00 - -, -/* @2476 ǽ(15x15,V)@ [suki software]*/ -0x10,0x10,0xff,0x10,0x10,0xac,0xb4,0xa4,0xbf,0xa4,0xb4,0xac,0xa4,0x20,0x00 - -, -0x04,0x0c,0x07,0x02,0x02,0x3f,0x10,0x1e,0x1a,0x1a,0x1e,0x10,0x3f,0x00,0x00 - -, -/* @2477 Ǿ(15x15,V)@ [suki software]*/ -0x04,0x84,0x94,0x94,0xbf,0xd4,0x94,0xfc,0x94,0xdf,0xb4,0x94,0x96,0x84,0x00 - -, -0x00,0x00,0x3e,0x22,0x22,0x2e,0x2a,0x2a,0x2a,0x2e,0x22,0x3e,0x00,0x00,0x00 - -, -/* @2478 ǿ(15x15,V)@ [suki software]*/ -0x02,0xf2,0x92,0x92,0x9e,0x00,0xc0,0x5e,0x52,0xf2,0x52,0x5f,0xc2,0x00,0x00 - -, -0x00,0x10,0x20,0x10,0x0f,0x10,0x33,0x12,0x12,0x1f,0x12,0x16,0x1b,0x30,0x00 - -, -/* @2479 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x48,0x20,0xd0,0x4c,0x43,0x4c,0xd0,0x20,0x20,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x00,0x00,0x1f,0x20,0x24,0x24,0x27,0x20,0x38,0x00 - -, -/* @2480 (15x15,V)@ [suki software]*/ -0x08,0xc8,0xff,0x28,0x88,0xa0,0x6a,0x2a,0x7e,0xd5,0xd5,0x55,0x40,0x70,0x00 - -, -0x03,0x00,0x3f,0x00,0x0a,0x3f,0x25,0x15,0x08,0x0a,0x1f,0x25,0x25,0x34,0x00 - -, -/* @2481 (15x15,V)@ [suki software]*/ -0x60,0x38,0xe7,0x24,0x24,0x94,0xfe,0x92,0x50,0x20,0xff,0x40,0x20,0x10,0x00 - -, -0x01,0x01,0x3f,0x11,0x0a,0x01,0x1f,0x20,0x11,0x0c,0x03,0x04,0x18,0x20,0x00 - -, -/* @2482 (15x15,V)@ [suki software]*/ -0x82,0x82,0xba,0xab,0xaa,0xba,0x82,0x02,0xc0,0x40,0x7f,0x48,0xc8,0x08,0x00 - -, -0x3f,0x00,0x0e,0x0a,0x0e,0x10,0x1f,0x20,0x10,0x0b,0x04,0x0a,0x11,0x20,0x00 - -, -/* @2483 (15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x08,0x10,0x02,0xf4,0x90,0x90,0x9f,0x90,0x94,0xf2,0x00,0x00 - -, -0x00,0x00,0x3f,0x00,0x00,0x00,0x3f,0x02,0x02,0x02,0x12,0x22,0x1f,0x00,0x00 - -, -/* @2484 (15x15,V)@ [suki software]*/ -0x08,0x88,0xff,0x48,0x88,0x92,0x52,0xb2,0x1e,0x12,0xb1,0x51,0x99,0x90,0x00 - -, -0x06,0x01,0x3f,0x00,0x20,0x20,0x10,0x0f,0x00,0x00,0x3f,0x00,0x00,0x00,0x00 - -, -/* @2485 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x12,0x12,0xfe,0x08,0xfc,0xa7,0xa4,0xfd,0xa6,0xa4,0xa4,0x04,0x00 - -, -0x00,0x1f,0x09,0x09,0x2f,0x18,0x03,0x0a,0x32,0x0b,0x32,0x02,0x0a,0x32,0x00 - -, -/* @2486 (15x15,V)@ [suki software]*/ -0x00,0x10,0x12,0x92,0x52,0x32,0x1e,0x12,0x31,0x51,0x91,0x10,0x18,0x10,0x00 - -, -0x02,0x22,0x21,0x10,0x0f,0x00,0x00,0x00,0x00,0x3f,0x00,0x01,0x01,0x01,0x00 - -, -/* @2487 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x20,0xa4,0x64,0x24,0x3c,0x22,0x63,0xa2,0x30,0x20,0x00 - -, -0x00,0x00,0x3f,0x00,0x21,0x10,0x0f,0x00,0x00,0x00,0x3f,0x00,0x01,0x01,0x00 - -, -/* @2488 (15x15,V)@ [suki software]*/ -0x04,0x04,0x04,0xfc,0x04,0x04,0x02,0x42,0x72,0x4e,0x42,0x42,0xe3,0x42,0x00 - -, -0x04,0x0c,0x04,0x03,0x02,0x02,0x00,0x00,0x08,0x10,0x20,0x10,0x0f,0x00,0x00 - -, -/* @2489 (15x15,V)@ [suki software]*/ -0x04,0xc4,0x5f,0xf4,0x54,0xdf,0x04,0xf2,0x94,0x90,0x9f,0x90,0xf4,0x02,0x00 - -, -0x04,0x05,0x05,0x3f,0x05,0x05,0x04,0x3f,0x02,0x02,0x12,0x22,0x1f,0x00,0x00 - -, -/* @2490 (15x15,V)@ [suki software]*/ -0x10,0x10,0xff,0x50,0x90,0xa0,0xaa,0x2a,0x7e,0xd5,0xd5,0x55,0x40,0x70,0x00 - -, -0x12,0x21,0x1f,0x00,0x0a,0x3f,0x25,0x15,0x08,0x0a,0x1f,0x25,0x25,0x34,0x00 - -, -/* @2491 (15x15,V)@ [suki software]*/ -0x44,0x44,0x5f,0x24,0x54,0x68,0x0a,0x92,0xfe,0x00,0x0a,0x92,0xff,0x02,0x00 - -, -0x21,0x11,0x0f,0x01,0x1f,0x21,0x25,0x28,0x27,0x20,0x25,0x28,0x27,0x38,0x00 - -, -/* @2492 (15x15,V)@ [suki software]*/ -0x00,0xf8,0x00,0xff,0x00,0xf8,0x02,0xf4,0x90,0x9f,0x90,0x94,0xf2,0x00,0x00 - -, -0x00,0x0f,0x08,0x07,0x04,0x0f,0x00,0x3f,0x02,0x02,0x12,0x22,0x1f,0x00,0x00 - -, -/* @2493 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x00,0x00,0xf2,0x94,0x90,0x9f,0x90,0x94,0xf2,0x00,0x00 - -, -0x00,0x00,0x3f,0x00,0x00,0x00,0x3f,0x02,0x02,0x02,0x12,0x22,0x1f,0x00,0x00 - -, -/* @2494 (15x15,V)@ [suki software]*/ -0x10,0x4c,0x54,0xd4,0x4c,0x44,0x25,0xa6,0x64,0x24,0x2c,0x34,0x2c,0x00,0x00 - -, -0x08,0x18,0x08,0x0f,0x04,0x04,0x04,0x01,0x11,0x21,0x11,0x0f,0x00,0x00,0x00 - -, -/* @2495 (15x15,V)@ [suki software]*/ -0x20,0x20,0xfe,0x10,0x10,0x10,0x04,0x04,0xfc,0x04,0x04,0x04,0xfe,0x04,0x00 - -, -0x00,0x00,0x0f,0x08,0x24,0x12,0x08,0x06,0x01,0x10,0x20,0x10,0x0f,0x00,0x00 - -, -/* @2496 (15x15,V)@ [suki software]*/ -0x04,0x44,0x44,0xf4,0x44,0x5f,0xc4,0x04,0xc4,0x5f,0x44,0x44,0xc6,0x04,0x00 - -, -0x20,0x10,0x0c,0x13,0x20,0x10,0x0f,0x00,0x3f,0x10,0x10,0x10,0x3f,0x00,0x00 - -, -/* @2497 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0xfe,0x22,0x22,0x22,0x22,0x22,0xff,0x02,0x00,0x00,0x00 - -, -0x20,0x20,0x20,0x20,0x3f,0x21,0x21,0x21,0x21,0x21,0x3f,0x20,0x20,0x20,0x00 - -, -/* @2498 (15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x08,0xb0,0x88,0x88,0x88,0xff,0x88,0x88,0x8c,0xc8,0x80,0x00 - -, -0x00,0x00,0x3f,0x00,0x00,0x10,0x18,0x16,0x11,0x10,0x12,0x14,0x38,0x00,0x00 - -, -/* @2499 (15x15,V)@ [suki software]*/ -0x00,0x2c,0xe4,0x94,0x8c,0x84,0x45,0x46,0xc4,0x4c,0x54,0x64,0xcc,0x00,0x00 - -, -0x01,0x01,0x1f,0x08,0x24,0x22,0x10,0x08,0x07,0x10,0x20,0x10,0x0f,0x00,0x00 - -, -/* @2500 (15x15,V)@ [suki software]*/ -0x40,0x30,0x2f,0xe4,0x24,0x24,0x40,0x30,0x0f,0xe8,0x08,0x28,0x1c,0x08,0x00 - -, -0x01,0x01,0x01,0x1f,0x29,0x25,0x10,0x08,0x06,0x01,0x06,0x08,0x30,0x10,0x00 - -, -/* @2501 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x80,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xbf,0x82,0x00,0x00 - -, -0x00,0x00,0x3f,0x00,0x21,0x22,0x12,0x16,0x0a,0x0a,0x16,0x22,0x21,0x20,0x00 - -, -/* @2502 (15x15,V)@ [suki software]*/ -0x20,0x24,0x24,0x24,0x2c,0x34,0xe5,0x26,0x34,0x2c,0x24,0x26,0x24,0x20,0x00 - -, -0x00,0x11,0x09,0x05,0x11,0x21,0x1f,0x01,0x01,0x05,0x05,0x09,0x11,0x00,0x00 - -, -/* @2503 (15x15,V)@ [suki software]*/ -0x40,0x44,0x54,0xd4,0x54,0x74,0x5f,0x54,0xd4,0x54,0xd4,0x46,0x64,0x40,0x00 - -, -0x02,0x22,0x25,0x14,0x0d,0x05,0x3f,0x05,0x04,0x0c,0x14,0x35,0x03,0x01,0x00 - -, -/* @2504 (15x15,V)@ [suki software]*/ -0x00,0x22,0x2a,0x2a,0x3e,0xaa,0x6a,0x40,0xaa,0x2a,0x3e,0x2a,0x2b,0x22,0x00 - -, -0x04,0x04,0x02,0x02,0x05,0x04,0x05,0x26,0x14,0x0d,0x05,0x02,0x02,0x02,0x00 - -, -/* @2505 (15x15,V)@ [suki software]*/ -0x04,0xc4,0x5f,0x54,0xf4,0x5f,0xc4,0x14,0x10,0xff,0x10,0x10,0x10,0xf0,0x00 - -, -0x20,0x25,0x25,0x15,0x1f,0x15,0x15,0x20,0x18,0x07,0x10,0x20,0x10,0x0f,0x00 - -, -/* @2506 (15x15,V)@ [suki software]*/ -0x04,0x04,0x04,0xe4,0xa4,0xaf,0xa4,0xa4,0x94,0x9f,0x94,0x94,0x86,0x84,0x00 - -, -0x00,0x20,0x10,0x0f,0x00,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00 - -, -/* @2507 (15x15,V)@ [suki software]*/ -0x08,0x88,0xff,0x48,0x10,0xe8,0x94,0xd2,0xb9,0xd2,0x94,0xe8,0x10,0x10,0x00 - -, -0x11,0x20,0x1f,0x00,0x00,0x3e,0x02,0x0e,0x0b,0x0a,0x0e,0x22,0x3e,0x00,0x00 - -, -/* @2508 (15x15,V)@ [suki software]*/ -0x10,0x10,0x08,0xe8,0x94,0xb2,0xd5,0xb9,0xd2,0x94,0xe8,0x08,0x10,0x10,0x00 - -, -0x00,0x00,0x3e,0x02,0x0a,0x0e,0x0b,0x0a,0x0e,0x0a,0x22,0x3e,0x00,0x00,0x00 - -, -/* @2509 (15x15,V)@ [suki software]*/ -0x00,0x2c,0x44,0xf4,0x04,0x04,0x55,0x56,0x54,0x54,0x54,0xf4,0x0c,0x00,0x00 - -, -0x04,0x02,0x01,0x3f,0x00,0x23,0x25,0x2d,0x15,0x15,0x2d,0x25,0x23,0x20,0x00 - -, -/* @2510 (15x15,V)@ [suki software]*/ -0x10,0x61,0x02,0xc6,0x30,0x80,0x00,0xf1,0x02,0x06,0x00,0x40,0x80,0x80,0x00 - -, -0x02,0x02,0x3f,0x00,0x02,0x01,0x00,0x1f,0x20,0x20,0x20,0x3c,0x00,0x01,0x00 - -, -/* @2511 (15x15,V)@ [suki software]*/ -0x20,0x22,0x2a,0xaa,0xaa,0xaa,0xbf,0xaa,0xaa,0xaa,0xaa,0x2a,0x22,0x20,0x00 - -, -0x00,0x00,0x00,0x3f,0x0a,0x0a,0x0a,0x0a,0x0a,0x2a,0x3f,0x00,0x00,0x00,0x00 - -, -/* @2512 (15x15,V)@ [suki software]*/ -0x44,0x64,0x5c,0xf7,0x44,0x44,0x80,0x42,0x22,0x12,0x0a,0x17,0x22,0x40,0x00 - -, -0x04,0x04,0x04,0x3f,0x02,0x12,0x10,0x11,0x11,0x1f,0x11,0x11,0x11,0x10,0x00 - -, -/* @2513 (15x15,V)@ [suki software]*/ -0x10,0x08,0x54,0x57,0x54,0x54,0xd4,0x54,0x14,0x14,0xf4,0x06,0x04,0x00,0x00 - -, -0x20,0x22,0x22,0x26,0x25,0x3d,0x24,0x25,0x22,0x30,0x27,0x08,0x10,0x3c,0x00 - -, -/* @2514 (15x15,V)@ [suki software]*/ -0x20,0x10,0xfc,0x03,0xfc,0x20,0x22,0xfa,0x0a,0xea,0x0e,0x0a,0xfb,0x02,0x00 - -, -0x00,0x00,0x3f,0x00,0x07,0x22,0x21,0x17,0x08,0x07,0x04,0x08,0x17,0x30,0x00 - -, -/* @2515 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x82,0xf9,0x00,0xfe,0x52,0x52,0xfe,0x00,0xfe,0x02,0x02,0xfe,0x00 - -, -0x20,0x11,0x08,0x07,0x00,0x0f,0x08,0x05,0x06,0x08,0x3f,0x02,0x04,0x03,0x00 - -, -/* @2516 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x22,0xaa,0xaa,0xaa,0xbf,0xaa,0xaa,0xaa,0x22,0x20,0x00 - -, -0x02,0x3e,0x01,0x00,0x00,0x3f,0x0a,0x0a,0x0a,0x0a,0x2a,0x3f,0x00,0x00,0x00 - -, -/* @2517 (15x15,V)@ [suki software]*/ -0x10,0x0a,0xba,0xaf,0xba,0xcf,0xba,0x82,0xc4,0xab,0x92,0x2a,0x46,0x42,0x00 - -, -0x08,0x08,0x0a,0x0a,0x0a,0x0a,0x2a,0x3f,0x0a,0x0a,0x0a,0x0a,0x0c,0x08,0x00 - -, -/* @2518 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x44,0x44,0xfc,0x22,0xaa,0xaa,0xaa,0xbf,0xaa,0xaa,0x2a,0x22,0x00 - -, -0x00,0x0f,0x04,0x04,0x0f,0x00,0x3f,0x0a,0x0a,0x0a,0x2a,0x3f,0x00,0x00,0x00 - -, -/* @2519 (15x15,V)@ [suki software]*/ -0x08,0xa4,0xab,0xaa,0xaa,0xfa,0xaa,0xaa,0xaa,0x0a,0xfa,0x03,0x02,0x00,0x00 - -, -0x00,0x00,0x3f,0x0a,0x0a,0x0a,0x2a,0x3f,0x00,0x00,0x07,0x18,0x20,0x38,0x00 - -, -/* @2520 (15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x08,0x10,0x22,0xaa,0xaa,0xaa,0xbf,0xaa,0xaa,0x2a,0x22,0x00 - -, -0x00,0x00,0x3f,0x00,0x00,0x00,0x3f,0x0a,0x0a,0x0a,0x2a,0x3f,0x00,0x00,0x00 - -, -/* @2521 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x20,0x20,0x20,0x02,0xfa,0x0a,0x0a,0xce,0x0a,0x0a,0xfb,0x02,0x00 - -, -0x00,0x0f,0x04,0x04,0x02,0x20,0x27,0x10,0x08,0x07,0x08,0x08,0x17,0x20,0x00 - -, -/* @2522 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x00,0x22,0xaa,0xaa,0xaa,0xbf,0xaa,0xaa,0x22,0x20,0x00 - -, -0x00,0x00,0x1f,0x08,0x04,0x00,0x3f,0x0a,0x0a,0x0a,0x2a,0x3f,0x00,0x00,0x00 - -, -/* @2523 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfc,0x44,0x44,0x44,0x45,0xf6,0x44,0x44,0x44,0x64,0x46,0x04,0x00 - -, -0x20,0x18,0x27,0x20,0x10,0x08,0x06,0x01,0x02,0x04,0x08,0x10,0x30,0x10,0x00 - -, -/* @2524 (15x15,V)@ [suki software]*/ -0x44,0x44,0xfc,0x44,0x40,0x04,0xf4,0x94,0x95,0x96,0x94,0xf4,0x04,0x04,0x00 - -, -0x08,0x18,0x0f,0x04,0x14,0x08,0x06,0x10,0x20,0x1f,0x00,0x02,0x04,0x18,0x00 - -, -/* @2525 (15x15,V)@ [suki software]*/ -0x00,0x50,0xcc,0xa4,0x94,0x8c,0xe5,0x86,0x84,0x8c,0x94,0xa4,0x54,0x0c,0x00 - -, -0x00,0x20,0x20,0x10,0x08,0x04,0x03,0x00,0x10,0x20,0x10,0x0f,0x00,0x00,0x00 - -, -/* @2526 (15x15,V)@ [suki software]*/ -0x14,0x14,0x94,0xfe,0x93,0x12,0x40,0x30,0x00,0xff,0x40,0x20,0x18,0x00,0x00 - -, -0x04,0x03,0x00,0x3f,0x00,0x21,0x10,0x0c,0x03,0x00,0x03,0x0c,0x30,0x10,0x00 - -, -/* @2527 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0xfc,0x44,0x44,0x44,0x44,0xc2,0x42,0x43,0x62,0x40,0x00,0x00 - -, -0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x18,0x10,0x00 - -, -/* @2528 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x12,0x12,0xf1,0x11,0x10,0x00,0xfe,0x02,0x62,0x9a,0x06,0x00 - -, -0x08,0x08,0x0f,0x08,0x04,0x07,0x04,0x04,0x00,0x3f,0x04,0x08,0x08,0x07,0x00 - -, -/* @2529 (15x15,V)@ [suki software]*/ -0x44,0x44,0xfc,0x44,0x44,0x08,0x28,0xc8,0x08,0xff,0x08,0x8a,0x6c,0x08,0x00 - -, -0x08,0x08,0x07,0x04,0x02,0x04,0x04,0x12,0x21,0x1f,0x01,0x02,0x04,0x08,0x00 - -, -/* @2530 (15x15,V)@ [suki software]*/ -0x08,0x08,0x28,0x48,0x88,0x08,0xff,0x88,0x08,0x89,0x4e,0x68,0x08,0x08,0x00 - -, -0x08,0x08,0x04,0x04,0x12,0x21,0x1f,0x00,0x01,0x02,0x04,0x08,0x18,0x08,0x00 - -, -/* @2531 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0x02,0x02,0x82,0x7e,0x42,0x82,0x02,0x02,0x02,0xff,0x02,0x00 - -, -0x00,0x3f,0x10,0x14,0x12,0x11,0x10,0x10,0x10,0x11,0x16,0x10,0x3f,0x00,0x00 - -, -/* @2532 (15x15,V)@ [suki software]*/ -0x04,0x04,0xe4,0x24,0xa5,0x7e,0x24,0x24,0xfe,0x25,0x24,0xf4,0x24,0x04,0x00 - -, -0x00,0x00,0x3f,0x15,0x14,0x14,0x14,0x14,0x14,0x15,0x15,0x3f,0x00,0x00,0x00 - -, -/* @2533 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x00,0xfe,0x02,0x82,0x7a,0x82,0x02,0x02,0xff,0x02,0x00 - -, -0x02,0x3e,0x01,0x00,0x00,0x3f,0x12,0x11,0x10,0x10,0x13,0x10,0x3f,0x00,0x00 - -, -/* @2534 (15x15,V)@ [suki software]*/ -0x20,0xa4,0x24,0xff,0x24,0x24,0x00,0xa8,0xa4,0xa7,0xb4,0xac,0xe4,0x00,0x00 - -, -0x30,0x0f,0x04,0x0f,0x11,0x11,0x21,0x24,0x24,0x24,0x24,0x24,0x2f,0x20,0x00 - -, -/* @2535 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0x02,0x12,0x22,0x42,0x82,0x42,0x22,0x1a,0x03,0x02,0x00,0x00 - -, -0x00,0x3f,0x20,0x24,0x24,0x22,0x21,0x20,0x21,0x22,0x26,0x30,0x20,0x00,0x00 - -, -/* @2536 (15x15,V)@ [suki software]*/ -0x00,0xf0,0x10,0xff,0x10,0xf0,0x00,0xfe,0x22,0x22,0x22,0xff,0x02,0x00,0x00 - -, -0x10,0x11,0x11,0x0f,0x09,0x3d,0x20,0x3f,0x22,0x22,0x22,0x3f,0x20,0x20,0x00 - -, -/* @2537 (15x15,V)@ [suki software]*/ -0x00,0x00,0xf8,0x88,0x88,0xff,0x88,0x88,0xff,0x88,0x88,0x88,0xfc,0x08,0x00 - -, -0x00,0x00,0x3f,0x10,0x10,0x1f,0x10,0x10,0x1f,0x10,0x10,0x10,0x3f,0x00,0x00 - -, -/* @2538 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x54,0x57,0x54,0xfc,0x00,0xfe,0x12,0x22,0xc2,0x22,0x1a,0x02,0x00 - -, -0x11,0x11,0x09,0x15,0x23,0x1f,0x00,0x3f,0x24,0x23,0x20,0x21,0x36,0x20,0x00 - -, -/* @2539 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x0a,0x0a,0xca,0x0a,0x0a,0xea,0x0a,0x0a,0x0a,0xcf,0x02,0x00 - -, -0x20,0x18,0x07,0x00,0x1c,0x11,0x11,0x11,0x1f,0x11,0x11,0x11,0x3d,0x00,0x00 - -, -/* @2540 (15x15,V)@ [suki software]*/ -0x02,0xfa,0x82,0x82,0xfe,0x80,0x00,0xfe,0x12,0x22,0xc2,0x22,0x1b,0x02,0x00 - -, -0x04,0x04,0x12,0x22,0x10,0x0f,0x00,0x3f,0x14,0x13,0x10,0x11,0x16,0x10,0x00 - -, -/* @2541 (15x15,V)@ [suki software]*/ -0x00,0x24,0xe9,0x12,0x08,0x00,0xfe,0xaa,0xaa,0xaa,0xaa,0xba,0x83,0x82,0x00 - -, -0x22,0x22,0x12,0x12,0x0a,0x06,0x02,0x3f,0x06,0x0a,0x0a,0x12,0x32,0x12,0x00 - -, -}, -//************************************** -{ -/* @2542 ȡ(15x15,V)@ [suki software]*/ -0x02,0x02,0xfe,0x92,0x92,0xff,0x02,0x3c,0xc4,0x04,0xc4,0x3e,0x04,0x00,0x00 - -, -0x04,0x04,0x07,0x02,0x02,0x3f,0x22,0x10,0x0c,0x03,0x04,0x08,0x30,0x10,0x00 - -, -/* @2543 Ȣ(15x15,V)@ [suki software]*/ -0x80,0x82,0xfe,0x4a,0x5a,0x52,0xff,0x42,0x8c,0x54,0x24,0x54,0x8c,0x80,0x00 - -, -0x02,0x22,0x22,0x22,0x2a,0x2e,0x13,0x12,0x1a,0x16,0x22,0x22,0x02,0x02,0x00 - -, -/* @2544 ȣ(15x15,V)@ [suki software]*/ -0x20,0xbc,0x20,0xff,0x24,0xa4,0x24,0x02,0x7a,0x4a,0xfe,0x49,0x79,0x00,0x00 - -, -0x00,0x1f,0x12,0x09,0x0a,0x1f,0x00,0x3f,0x09,0x09,0x07,0x15,0x21,0x1f,0x00 - -, -/* @2545 Ȥ(15x15,V)@ [suki software]*/ -0x20,0xa8,0x28,0xff,0x28,0x22,0xfe,0x92,0x92,0xfe,0x2a,0x48,0x88,0x78,0x00 - -, -0x30,0x0f,0x08,0x0f,0x11,0x15,0x27,0x22,0x22,0x2f,0x24,0x22,0x21,0x26,0x00 - -, -/* @2546 ȥ(15x15,V)@ [suki software]*/ -0x80,0x80,0x88,0x88,0x88,0x88,0xff,0x88,0x88,0x88,0x8c,0x88,0xc0,0x80,0x00 - -, -0x00,0x00,0x10,0x38,0x14,0x12,0x11,0x10,0x12,0x14,0x18,0x30,0x00,0x00,0x00 - -, -/* @2547 Ȧ(15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0x2a,0xae,0xea,0xbe,0xaa,0xea,0xae,0x2a,0x02,0xff,0x02,0x00 - -, -0x00,0x3f,0x10,0x11,0x10,0x17,0x14,0x16,0x15,0x16,0x11,0x10,0x3f,0x00,0x00 - -, -/* @2548 ȧ(15x15,V)@ [suki software]*/ -0x3a,0xaa,0x7f,0x02,0xba,0x2f,0x3a,0x00,0xfa,0x0a,0xee,0x0a,0x0b,0xfa,0x00 - -, -0x01,0x3f,0x15,0x15,0x1f,0x15,0x35,0x20,0x17,0x08,0x07,0x04,0x08,0x37,0x00 - -, -/* @2549 Ȩ(15x15,V)@ [suki software]*/ -0x08,0x88,0x68,0xff,0x48,0x88,0x04,0x7c,0x84,0x04,0xc4,0x3e,0x04,0x00,0x00 - -, -0x06,0x01,0x00,0x3f,0x00,0x21,0x10,0x08,0x05,0x02,0x05,0x08,0x30,0x10,0x00 - -, -/* @2550 ȩ(15x15,V)@ [suki software]*/ -0x02,0xf2,0x1e,0xf2,0x1e,0xf2,0x84,0x44,0x2f,0x14,0x24,0x4f,0x84,0x84,0x00 - -, -0x00,0x3f,0x15,0x14,0x15,0x1f,0x20,0x25,0x25,0x3f,0x25,0x25,0x20,0x20,0x00 - -, -/* @2551 Ȫ(15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x7c,0x54,0x54,0x57,0xd4,0x54,0x54,0x54,0x7e,0x04,0x00,0x00 - -, -0x20,0x21,0x11,0x09,0x05,0x13,0x20,0x1f,0x02,0x04,0x0a,0x11,0x30,0x10,0x00 - -, -/* @2552 ȫ(15x15,V)@ [suki software]*/ -0x40,0x40,0x20,0x50,0x48,0x44,0xc3,0x44,0x48,0x50,0x60,0x20,0x40,0x40,0x00 - -, -0x00,0x20,0x22,0x22,0x22,0x22,0x3f,0x22,0x22,0x22,0x22,0x32,0x20,0x00,0x00 - -, -/* @2553 Ȭ(15x15,V)@ [suki software]*/ -0x08,0xb0,0x40,0xfc,0x84,0x44,0xa4,0x95,0x8e,0x94,0xa4,0xa4,0x46,0x44,0x00 - -, -0x21,0x10,0x0c,0x23,0x20,0x24,0x24,0x24,0x3f,0x24,0x24,0x24,0x20,0x20,0x00 - -, -/* @2554 ȭ(15x15,V)@ [suki software]*/ -0x90,0x90,0x54,0x55,0x36,0x5c,0x57,0xd4,0x54,0x36,0x55,0x54,0x90,0x90,0x00 - -, -0x00,0x04,0x04,0x05,0x05,0x15,0x25,0x1f,0x05,0x05,0x05,0x04,0x04,0x00,0x00 - -, -/* @2555 Ȯ(15x15,V)@ [suki software]*/ -0x20,0x20,0x20,0x20,0x20,0x20,0xff,0xa0,0x20,0x22,0x2c,0x20,0x30,0x20,0x00 - -, -0x20,0x20,0x10,0x08,0x04,0x03,0x00,0x00,0x03,0x04,0x08,0x10,0x30,0x10,0x00 - -, -/* @2556 ȯ(15x15,V)@ [suki software]*/ -0x20,0x28,0x29,0xaa,0x6c,0x38,0x2f,0x28,0x2c,0x6a,0xa9,0x28,0x20,0x20,0x00 - -, -0x02,0x22,0x21,0x10,0x09,0x07,0x11,0x21,0x21,0x1f,0x00,0x01,0x03,0x01,0x00 - -, -/* @2557 Ȱ(15x15,V)@ [suki software]*/ -0x00,0x14,0x64,0x84,0x64,0x1c,0x10,0x10,0x10,0xff,0x10,0x10,0xf8,0x10,0x00 - -, -0x10,0x08,0x06,0x01,0x02,0x2c,0x10,0x08,0x06,0x11,0x20,0x10,0x0f,0x00,0x00 - -, -/* @2558 ȱ(15x15,V)@ [suki software]*/ -0x60,0x58,0x4f,0xf8,0x48,0x48,0x80,0x88,0xff,0x88,0x88,0xfc,0x88,0x80,0x00 - -, -0x00,0x1f,0x08,0x0f,0x08,0x2f,0x10,0x0c,0x03,0x02,0x04,0x08,0x30,0x10,0x00 - -, -/* @2559 Ȳ(15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x20,0x10,0x08,0x08,0x08,0xff,0x08,0x08,0xfc,0x08,0x00,0x00 - -, -0x20,0x18,0x07,0x02,0x2c,0x11,0x09,0x05,0x03,0x05,0x09,0x11,0x21,0x21,0x00 - -, -/* @2560 ȳ(15x15,V)@ [suki software]*/ -0x88,0x50,0xfe,0x82,0x4a,0x3e,0x4a,0x4b,0xba,0x02,0x7a,0x2a,0x7b,0x02,0x00 - -, -0x20,0x18,0x07,0x00,0x3f,0x01,0x15,0x0b,0x05,0x0b,0x15,0x21,0x3f,0x00,0x00 - -, -/* @2561 ȴ(15x15,V)@ [suki software]*/ -0x40,0x48,0x48,0xc8,0x7f,0x48,0x48,0x40,0xfc,0x04,0x04,0x04,0xfe,0x04,0x00 - -, -0x00,0x0c,0x0a,0x09,0x04,0x06,0x0c,0x00,0x3f,0x00,0x04,0x08,0x07,0x00,0x00 - -, -/* @2562 ȵ(15x15,V)@ [suki software]*/ -0x24,0xa4,0xbf,0xa4,0xa4,0xbf,0x24,0x00,0xfc,0x06,0x55,0x44,0x3c,0x00,0x00 - -, -0x00,0x3f,0x12,0x12,0x12,0x3f,0x00,0x04,0x05,0x05,0x15,0x25,0x11,0x0f,0x00 - -, -/* @2563 ȶ(15x15,V)@ [suki software]*/ -0x08,0x88,0xff,0x28,0x48,0x80,0xcc,0x34,0x2c,0x27,0xf4,0x24,0x24,0x2c,0x00 - -, -0x06,0x01,0x3f,0x00,0x01,0x00,0x3f,0x15,0x15,0x15,0x1f,0x15,0x15,0x10,0x00 - -, -/* @2564 ȷ(15x15,V)@ [suki software]*/ -0x04,0xc4,0x7c,0x44,0xc4,0x24,0xf0,0x5c,0x57,0xf4,0x5c,0x54,0xf0,0x00,0x00 - -, -0x01,0x1f,0x04,0x04,0x2f,0x10,0x0f,0x02,0x02,0x3f,0x02,0x22,0x3f,0x00,0x00 - -, -/* @2565 ȸ(15x15,V)@ [suki software]*/ -0x80,0x90,0x88,0xc6,0x40,0x40,0x6f,0xd0,0x68,0x45,0x42,0x42,0x44,0x08,0x00 - -, -0x00,0x00,0x00,0x3f,0x15,0x15,0x15,0x1f,0x15,0x15,0x15,0x15,0x10,0x00,0x00 - -, -/* @2566 ȹ(15x15,V)@ [suki software]*/ -0x08,0x89,0xce,0xb8,0x40,0x08,0x4a,0xfe,0x4a,0x4a,0x4a,0x7f,0x0a,0x08,0x00 - -, -0x01,0x00,0x3f,0x00,0x0b,0x04,0x02,0x3f,0x11,0x11,0x11,0x11,0x3f,0x00,0x00 - -, -/* @2567 Ⱥ(15x15,V)@ [suki software]*/ -0x10,0x52,0xfe,0x52,0x52,0x7e,0x10,0x09,0x4a,0x4c,0xf8,0x4c,0x4b,0x08,0x00 - -, -0x04,0x02,0x3f,0x11,0x11,0x3f,0x00,0x02,0x02,0x02,0x3f,0x02,0x02,0x02,0x00 - -, -/* @2568 Ȼ(15x15,V)@ [suki software]*/ -0x40,0x20,0x58,0x97,0xa4,0x44,0x3c,0x90,0x7f,0x50,0x92,0x1c,0x10,0x10,0x00 - -, -0x00,0x24,0x1a,0x01,0x08,0x34,0x02,0x01,0x08,0x30,0x00,0x09,0x32,0x02,0x00 - -, -/* @2569 ȼ(15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x10,0x28,0x58,0xa7,0x64,0x1c,0x90,0x7f,0x92,0x14,0x10,0x00 - -, -0x20,0x1c,0x03,0x04,0x3a,0x01,0x08,0x32,0x01,0x08,0x30,0x00,0x09,0x32,0x00 - -, -/* @2570 Ƚ(15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0xf8,0x48,0x48,0x48,0xff,0x48,0x48,0x48,0xfc,0x08,0x00,0x00 - -, -0x02,0x02,0x02,0x3f,0x02,0x02,0x02,0x03,0x02,0x12,0x22,0x1f,0x02,0x02,0x00 - -, -/* @2571 Ⱦ(15x15,V)@ [suki software]*/ -0x00,0x24,0xe9,0x12,0x88,0x44,0x24,0x9f,0x04,0x04,0x7e,0x44,0x40,0x70,0x00 - -, -0x22,0x22,0x12,0x12,0x0a,0x06,0x02,0x3f,0x06,0x0a,0x0a,0x12,0x33,0x12,0x00 - -, -/* @2572 ȿ(15x15,V)@ [suki software]*/ -0xba,0xaa,0xfa,0x83,0xfa,0xaa,0xba,0x00,0xfc,0x04,0xfc,0x02,0xff,0x02,0x00 - -, -0x12,0x0a,0x3f,0x12,0x0b,0x16,0x22,0x18,0x07,0x00,0x1f,0x08,0x0f,0x30,0x00 - -, -/* @2573 (15x15,V)@ [suki software]*/ -0x10,0x10,0xff,0x10,0x02,0xba,0xaa,0xfa,0x83,0xba,0xea,0xaa,0xba,0x82,0x00 - -, -0x04,0x04,0x03,0x12,0x10,0x0a,0x0a,0x3f,0x22,0x16,0x0b,0x16,0x22,0x22,0x00 - -, -/* @2574 (15x15,V)@ [suki software]*/ -0x10,0x10,0xff,0x90,0x02,0xba,0xaa,0xfa,0x83,0xba,0xea,0xaa,0xba,0x02,0x00 - -, -0x12,0x21,0x1f,0x00,0x12,0x12,0x0a,0x3f,0x22,0x16,0x0b,0x16,0x32,0x12,0x00 - -, -/* @2575 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0xfc,0x02,0xba,0xaa,0xfa,0x83,0xba,0xea,0xaa,0xba,0x02,0x00 - -, -0x00,0x03,0x01,0x13,0x12,0x0a,0x3e,0x23,0x12,0x06,0x0b,0x16,0x32,0x12,0x00 - -, -/* @2576 (15x15,V)@ [suki software]*/ -0x20,0x20,0x22,0xec,0x00,0x00,0x00,0x00,0xff,0x20,0x20,0x20,0x30,0x20,0x00 - -, -0x00,0x00,0x00,0x1f,0x08,0x14,0x10,0x10,0x1f,0x10,0x10,0x10,0x18,0x10,0x00 - -, -/* @2577 (15x15,V)@ [suki software]*/ -0x20,0x18,0xef,0x08,0x28,0x18,0x48,0x48,0x4f,0x34,0x24,0x54,0x4c,0x64,0x00 - -, -0x00,0x00,0x1f,0x08,0x24,0x21,0x11,0x0f,0x01,0x01,0x1f,0x21,0x21,0x38,0x00 - -, -/* @2578 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x48,0x10,0x10,0xff,0x10,0xf2,0x14,0x10,0x10,0x00 - -, -0x01,0x11,0x20,0x1f,0x20,0x10,0x08,0x06,0x01,0x00,0x1f,0x20,0x20,0x38,0x00 - -, -/* @2579 (15x15,V)@ [suki software]*/ -0x20,0x38,0xa7,0x60,0x18,0x88,0x88,0x48,0x5f,0x24,0x54,0x54,0x84,0xe4,0x00 - -, -0x09,0x1b,0x09,0x05,0x25,0x20,0x11,0x0f,0x01,0x01,0x1f,0x21,0x21,0x38,0x00 - -, -/* @2580 (15x15,V)@ [suki software]*/ -0x00,0x14,0x14,0x94,0xdf,0x74,0x5c,0x54,0x54,0x5f,0xd4,0x14,0x16,0x14,0x00 - -, -0x00,0x21,0x19,0x00,0x1b,0x22,0x26,0x2a,0x22,0x22,0x33,0x04,0x18,0x00,0x00 - -, -/* @2581 (15x15,V)@ [suki software]*/ -0x00,0x48,0x48,0xff,0x28,0x08,0x20,0xc8,0xbf,0x08,0x08,0xfc,0x08,0xc0,0x00 - -, -0x00,0x20,0x1a,0x03,0x08,0x32,0x01,0x08,0x30,0x01,0x00,0x09,0x32,0x03,0x00 - -, -/* @2582 (15x15,V)@ [suki software]*/ -0x00,0x80,0x84,0x84,0x84,0x84,0x84,0xfc,0x82,0x82,0x83,0xc2,0x80,0x00,0x00 - -, -0x00,0x20,0x20,0x20,0x20,0x20,0x20,0x3f,0x20,0x20,0x20,0x20,0x20,0x00,0x00 - -, -/* @2583 (15x15,V)@ [suki software]*/ -0x40,0x20,0x10,0xfc,0x03,0x00,0x08,0x08,0x08,0x08,0x08,0x0c,0x08,0x00,0x00 - -, -0x00,0x00,0x00,0x3f,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x18,0x10,0x00 - -, -/* @2584 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x00,0xc0,0x3f,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x00 - -, -0x20,0x20,0x10,0x08,0x06,0x01,0x00,0x00,0x01,0x02,0x04,0x08,0x30,0x10,0x00 - -, -/* @2585 (15x15,V)@ [suki software]*/ -0x00,0x00,0x22,0x9a,0x42,0x22,0x1e,0x02,0x42,0x82,0x42,0x3f,0x02,0x00,0x00 - -, -0x00,0x11,0x0d,0x00,0x1e,0x20,0x21,0x26,0x20,0x20,0x38,0x02,0x04,0x08,0x00 - -, -/* @2586 (15x15,V)@ [suki software]*/ -0xa4,0xa4,0xff,0xa4,0xa4,0xa4,0x00,0xe4,0x04,0xfc,0x04,0x04,0xfe,0x04,0x00 - -, -0x00,0x00,0x3f,0x04,0x08,0x27,0x10,0x08,0x06,0x11,0x20,0x10,0x0f,0x00,0x00 - -, -/* @2587 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x80,0x84,0x84,0x84,0xfc,0x82,0x82,0x82,0xc0,0x80,0x00 - -, -0x00,0x00,0x3f,0x00,0x00,0x20,0x20,0x20,0x3f,0x20,0x20,0x20,0x20,0x00,0x00 - -, -/* @2588 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe2,0x06,0x00,0x00,0x00,0x80,0x7f,0x80,0x00,0x00,0x00,0x00,0x00 - -, -0x00,0x00,0x1f,0x28,0x24,0x10,0x0c,0x03,0x00,0x01,0x06,0x08,0x30,0x10,0x00 - -, -/* @2589 (15x15,V)@ [suki software]*/ -0x00,0x00,0x82,0x62,0x02,0x02,0x02,0xfe,0x02,0x02,0x02,0x02,0xff,0x02,0x00 - -, -0x00,0x21,0x21,0x10,0x08,0x04,0x03,0x00,0x10,0x20,0x20,0x10,0x0f,0x00,0x00 - -, -/* @2590 (15x15,V)@ [suki software]*/ -0x08,0x08,0xf8,0x0f,0x08,0xf8,0x84,0x84,0x84,0xfc,0x82,0x82,0xc2,0x80,0x00 - -, -0x20,0x11,0x0a,0x04,0x0a,0x11,0x00,0x20,0x20,0x3f,0x20,0x20,0x20,0x00,0x00 - -, -/* @2591 (15x15,V)@ [suki software]*/ -0x00,0x30,0xac,0x63,0x20,0x18,0x82,0x72,0x02,0xfe,0x02,0x02,0xff,0x02,0x00 - -, -0x08,0x19,0x0b,0x09,0x05,0x24,0x10,0x08,0x06,0x11,0x20,0x10,0x0f,0x00,0x00 - -, -/* @2592 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x4a,0x02,0xfe,0x02,0x02,0x32,0x2f,0x22,0xe0,0x00 - -, -0x01,0x11,0x20,0x1f,0x20,0x10,0x0c,0x03,0x00,0x10,0x20,0x20,0x18,0x07,0x00 - -, -/* @2593 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x00,0x02,0x02,0xfe,0x02,0x02,0x72,0x4f,0x42,0xc0,0x00 - -, -0x00,0x00,0x3f,0x00,0x20,0x10,0x0c,0x03,0x00,0x10,0x20,0x20,0x10,0x0f,0x00 - -, -/* @2594 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0xfe,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0xff,0x02,0x00,0x00 - -, -0x00,0x00,0x00,0x3f,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x3f,0x00,0x00,0x00 - -, -/* @2595 (15x15,V)@ [suki software]*/ -0x08,0x88,0x88,0xe8,0x88,0x88,0x88,0x7f,0x88,0x08,0x09,0xee,0x08,0x08,0x00 - -, -0x20,0x10,0x08,0x07,0x20,0x20,0x10,0x08,0x05,0x06,0x09,0x10,0x20,0x3c,0x00 - -, -/* @2596 (15x15,V)@ [suki software]*/ -0x04,0x14,0x14,0x14,0xf4,0x5f,0x54,0x54,0x54,0x5f,0xf4,0x14,0x14,0x04,0x00 - -, -0x08,0x08,0x08,0x08,0x0f,0x09,0x09,0x05,0x05,0x05,0x3f,0x04,0x04,0x04,0x00 - -, -/* @2597 (15x15,V)@ [suki software]*/ -0x42,0x32,0x92,0x92,0x57,0x32,0x96,0x5a,0x92,0x37,0x52,0x92,0x32,0x02,0x00 - -, -0x04,0x04,0x04,0x02,0x3e,0x23,0x22,0x22,0x22,0x3f,0x02,0x02,0x04,0x04,0x00 - -, -/* @2598 (15x15,V)@ [suki software]*/ -0x40,0x34,0x94,0x94,0x94,0x9f,0x94,0xf4,0x94,0x9f,0x94,0x94,0xd6,0x34,0x00 - -, -0x10,0x10,0x08,0x08,0x04,0x02,0x01,0x3f,0x02,0x04,0x08,0x10,0x10,0x10,0x00 - -, -/* @2599 (15x15,V)@ [suki software]*/ -0x82,0xba,0xaa,0xaa,0xaa,0xba,0x83,0x02,0xf0,0x10,0xff,0x10,0x10,0xf0,0x00 - -, -0x3f,0x04,0x07,0x1c,0x07,0x24,0x3f,0x00,0x21,0x21,0x1f,0x11,0x19,0x31,0x00 - -, -/* @2600 (15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x20,0x10,0x4c,0x24,0x94,0x45,0x26,0x44,0x94,0x24,0x0c,0x00 - -, -0x20,0x18,0x07,0x02,0x0c,0x02,0x01,0x3e,0x12,0x12,0x12,0x3e,0x01,0x01,0x00 - -, -/* @2601 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x00,0x2c,0x94,0x4c,0x25,0x46,0x8c,0x14,0x24,0x0c,0x00 - -, -0x02,0x3e,0x01,0x02,0x02,0x01,0x3e,0x12,0x12,0x12,0x12,0x3f,0x01,0x01,0x00 - -, -/* @2602 (15x15,V)@ [suki software]*/ -0x10,0x4c,0x44,0x24,0x94,0x44,0x25,0x26,0x44,0x84,0x14,0x24,0x4c,0x04,0x00 - -, -0x04,0x04,0x02,0x01,0x3e,0x22,0x22,0x22,0x22,0x22,0x3f,0x01,0x02,0x02,0x00 - -, -/* @2603 (15x15,V)@ [suki software]*/ -0x20,0x38,0xa7,0x60,0x18,0x80,0xd0,0x90,0x90,0x7f,0x90,0x12,0xd4,0x10,0x00 - -, -0x09,0x1b,0x09,0x05,0x25,0x10,0x0f,0x10,0x08,0x04,0x03,0x0d,0x10,0x3c,0x00 - -, -/* @2604 (15x15,V)@ [suki software]*/ -0x08,0x06,0x02,0x02,0xf2,0x12,0x12,0x12,0xf2,0x02,0x02,0x0a,0x06,0x00,0x00 - -, -0x20,0x20,0x10,0x08,0x07,0x00,0x00,0x00,0x0f,0x10,0x10,0x10,0x10,0x1e,0x00 - -, -/* @2605 (15x15,V)@ [suki software]*/ -0x08,0x08,0xff,0x88,0x48,0x90,0x52,0x32,0x96,0xfa,0x16,0x13,0x32,0x10,0x00 - -, -0x11,0x21,0x1f,0x00,0x22,0x12,0x0a,0x06,0x3f,0x02,0x06,0x0a,0x12,0x22,0x00 - -, -/* @2606 (15x15,V)@ [suki software]*/ -0x00,0x90,0x92,0x52,0x32,0x96,0x9a,0xf2,0x1a,0x16,0x53,0x32,0x10,0x00,0x00 - -, -0x10,0x12,0x12,0x0a,0x0a,0x06,0x3f,0x02,0x06,0x0a,0x0a,0x12,0x12,0x10,0x00 - -, -/* @2607 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfc,0x04,0x44,0x24,0x14,0xcf,0x14,0x24,0x44,0x04,0xfe,0x04,0x00 - -, -0x00,0x00,0x3f,0x00,0x04,0x02,0x01,0x00,0x01,0x02,0x14,0x20,0x1f,0x00,0x00 - -, -/* @2608 (15x15,V)@ [suki software]*/ -0x44,0x44,0xc4,0x74,0x44,0xcf,0x04,0x04,0xc4,0x4f,0x44,0x44,0xe6,0x44,0x00 - -, -0x20,0x22,0x15,0x08,0x14,0x23,0x00,0x00,0x3f,0x10,0x10,0x10,0x3f,0x00,0x00 - -, -/* @2609 (15x15,V)@ [suki software]*/ -0xf0,0x10,0xff,0x10,0xf0,0x98,0xaa,0xaa,0x8a,0xfe,0x8a,0xab,0xaa,0x98,0x00 - -, -0x11,0x11,0x0f,0x09,0x1d,0x00,0x3e,0x02,0x1f,0x02,0x1e,0x22,0x3e,0x00,0x00 - -, -/* @2610 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x98,0x8a,0xaa,0xaa,0xfe,0x8a,0xaa,0xab,0x8a,0x98,0x00 - -, -0x00,0x00,0x3f,0x00,0x00,0x3e,0x02,0x1e,0x03,0x1e,0x02,0x22,0x3e,0x00,0x00 - -, -/* @2611 (15x15,V)@ [suki software]*/ -0x82,0x82,0xfa,0x46,0x42,0x98,0xaa,0xaa,0x8a,0xfe,0x8a,0xab,0xaa,0x98,0x00 - -, -0x10,0x20,0x1f,0x00,0x00,0x3e,0x02,0x02,0x1f,0x02,0x1e,0x22,0x3e,0x00,0x00 - -, -/* @2612 (15x15,V)@ [suki software]*/ -0x08,0x88,0x78,0x0f,0x08,0x08,0xf8,0x00,0xf8,0x08,0x08,0x08,0xfc,0x08,0x00 - -, -0x20,0x20,0x11,0x0a,0x04,0x0b,0x10,0x00,0x1f,0x08,0x08,0x08,0x1f,0x00,0x00 - -, -/* @2613 (15x15,V)@ [suki software]*/ -0x00,0x80,0x7e,0x22,0xea,0xaa,0xaa,0xaa,0x6a,0xaa,0xea,0xa3,0xa2,0x80,0x00 - -, -0x01,0x02,0x02,0x02,0x03,0x06,0x0a,0x22,0x22,0x1f,0x02,0x02,0x02,0x02,0x00 - -, -/* @2614 (15x15,V)@ [suki software]*/ -0x04,0x2c,0x34,0x22,0xba,0xa2,0x71,0x2d,0x00,0xff,0x00,0x00,0x00,0x00,0x00 - -, -0x04,0x04,0x14,0x24,0x1f,0x02,0x02,0x02,0x00,0x1f,0x20,0x20,0x20,0x3c,0x00 - -, -/* @2615 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x10,0x10,0xd0,0x38,0x17,0x10,0xf0,0x10,0x18,0x10,0x00 - -, -0x02,0x3e,0x01,0x20,0x20,0x21,0x12,0x0a,0x04,0x06,0x09,0x10,0x20,0x00,0x00 - -, -/* @2616 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x02,0x82,0x64,0x18,0xe0,0x00,0x00,0x00,0x00,0x00,0x00 - -, -0x10,0x10,0x08,0x04,0x02,0x01,0x00,0x00,0x00,0x03,0x04,0x08,0x10,0x10,0x00 - -, -/* @2617 (15x15,V)@ [suki software]*/ -0x08,0x88,0xc9,0x2e,0x98,0x00,0xfe,0x22,0xea,0xaa,0x6a,0xaa,0xeb,0xa2,0x00 - -, -0x01,0x00,0x3f,0x01,0x12,0x0c,0x03,0x02,0x06,0x0a,0x22,0x3f,0x02,0x02,0x00 - -, -/* @2618 (15x15,V)@ [suki software]*/ -0x04,0x64,0x5c,0x47,0xf4,0x44,0x44,0x10,0x0c,0xeb,0x08,0x08,0x28,0x18,0x00 - -, -0x04,0x04,0x04,0x04,0x3f,0x22,0x12,0x08,0x06,0x01,0x06,0x08,0x30,0x10,0x00 - -, -/* @2619 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0x32,0x4e,0xa0,0x22,0xe2,0x22,0x22,0xe2,0x23,0x32,0x20,0x00 - -, -0x00,0x3f,0x02,0x24,0x22,0x11,0x08,0x07,0x00,0x00,0x1f,0x20,0x20,0x3c,0x00 - -, -/* @2620 (15x15,V)@ [suki software]*/ -0x00,0x44,0x34,0x04,0x74,0x8f,0x84,0x94,0xa4,0x8f,0x64,0x14,0x26,0x04,0x00 - -, -0x1c,0x00,0x1e,0x21,0x22,0x38,0x00,0x1c,0x00,0x1e,0x21,0x22,0x30,0x0c,0x00 - -, -/* @2621 (15x15,V)@ [suki software]*/ -0x44,0x44,0xfc,0x44,0x44,0xa0,0xae,0xa8,0xe8,0xaf,0xa8,0xa8,0xae,0x20,0x00 - -, -0x08,0x08,0x07,0x04,0x00,0x3f,0x00,0x1f,0x00,0x00,0x1f,0x20,0x3f,0x00,0x00 - -, -/* @2622 (15x15,V)@ [suki software]*/ -0x20,0x38,0xe7,0x24,0x24,0x00,0xf1,0x96,0x90,0x90,0x94,0x93,0xf8,0x10,0x00 - -, -0x01,0x01,0x1f,0x09,0x21,0x20,0x10,0x08,0x07,0x00,0x1f,0x20,0x20,0x38,0x00 - -, -/* @2623 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x01,0x16,0x90,0x92,0x92,0xf2,0x92,0x92,0x92,0x02,0xff,0x02,0x00 - -, -0x00,0x3f,0x00,0x04,0x04,0x04,0x04,0x07,0x04,0x04,0x14,0x20,0x1f,0x00,0x00 - -, -/* @2624 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x40,0xfc,0x01,0x92,0x94,0xf2,0x92,0x92,0x02,0xff,0x02,0x00 - -, -0x02,0x3e,0x01,0x00,0x3f,0x00,0x04,0x04,0x07,0x04,0x14,0x20,0x1f,0x00,0x00 - -, -/* @2625 (15x15,V)@ [suki software]*/ -0x44,0x44,0x44,0x44,0x44,0xcf,0x74,0x44,0x44,0x4f,0x44,0x44,0x66,0x44,0x00 - -, -0x08,0x08,0x04,0x02,0x3f,0x11,0x11,0x11,0x11,0x11,0x3f,0x00,0x00,0x00,0x00 - -, -/* @2626 (15x15,V)@ [suki software]*/ -0x00,0xfa,0x4a,0x4a,0x4a,0xde,0x00,0x02,0xfa,0x4a,0x4a,0x4a,0xdf,0x02,0x00 - -, -0x08,0x08,0x15,0x22,0x12,0x0f,0x00,0x08,0x04,0x15,0x22,0x12,0x0f,0x00,0x00 - -, -/* @2627 (15x15,V)@ [suki software]*/ -0x08,0x88,0xff,0x48,0xa4,0xbf,0xa4,0xbf,0x24,0x30,0xdf,0x10,0xf8,0x10,0x00 - -, -0x11,0x20,0x1f,0x00,0x3f,0x0a,0x2a,0x3f,0x20,0x10,0x09,0x06,0x19,0x20,0x00 - -, -/* @2628 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x02,0xf2,0x12,0xfe,0x12,0xfe,0x12,0x12,0xf3,0x02,0x00 - -, -0x02,0x3e,0x01,0x00,0x00,0x3f,0x12,0x11,0x10,0x11,0x12,0x12,0x3f,0x00,0x00 - -, -/* @2629 (15x15,V)@ [suki software]*/ -0x02,0xf2,0x12,0xd2,0x37,0x02,0x92,0xb2,0xda,0x97,0xd2,0xb2,0x92,0x82,0x00 - -, -0x00,0x3f,0x04,0x04,0x23,0x18,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 - -, -/* @2630 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x92,0x92,0xfe,0x00,0xfe,0x52,0x52,0x7e,0x52,0x52,0xff,0x02,0x00 - -, -0x30,0x0f,0x10,0x20,0x1f,0x08,0x04,0x1e,0x21,0x26,0x20,0x38,0x02,0x0c,0x00 - -, -/* @2631 (15x15,V)@ [suki software]*/ -0x20,0xf8,0x97,0xf4,0x9c,0xf0,0x00,0xfe,0x52,0x52,0x7e,0x52,0xff,0x02,0x00 - -, -0x10,0x33,0x12,0x0b,0x0a,0x03,0x1c,0x00,0x1e,0x21,0x22,0x20,0x32,0x0c,0x00 - -, -/* @2632 (15x15,V)@ [suki software]*/ -0x10,0x0c,0x54,0x54,0x54,0xfc,0x55,0x56,0xfc,0x54,0x54,0x54,0x0c,0x00,0x00 - -, -0x08,0x09,0x25,0x25,0x23,0x25,0x25,0x3f,0x25,0x25,0x23,0x25,0x29,0x08,0x00 - -, -/* @2633 (15x15,V)@ [suki software]*/ -0x10,0x4c,0x54,0xd4,0xd4,0x7c,0x55,0x56,0x7c,0xd4,0xd4,0x54,0x4c,0x00,0x00 - -, -0x02,0x22,0x21,0x20,0x2f,0x11,0x0f,0x09,0x11,0x2f,0x20,0x21,0x02,0x02,0x00 - -, -/* @2634 (15x15,V)@ [suki software]*/ -0x00,0x04,0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,0xc4,0x86,0x04,0x00,0x00 - -, -0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x18,0x10,0x00 - -, -/* @2635 (15x15,V)@ [suki software]*/ -0x20,0x20,0x28,0xa8,0x6c,0x3a,0x29,0x28,0x6a,0xac,0xa8,0x28,0x20,0x20,0x00 - -, -0x22,0x22,0x21,0x24,0x25,0x25,0x25,0x25,0x25,0x25,0x24,0x21,0x33,0x21,0x00 - -, -}, -//************************************** -{ -/* @2636 ɡ(15x15,V)@ [suki software]*/ -0x40,0x40,0x20,0x50,0x88,0x04,0xfb,0x02,0x04,0x08,0xd0,0x20,0x60,0x20,0x00 - -, -0x00,0x04,0x04,0x04,0x05,0x04,0x3f,0x04,0x06,0x05,0x04,0x04,0x04,0x00,0x00 - -, -/* @2637 ɢ(15x15,V)@ [suki software]*/ -0x24,0xa4,0xbf,0xa4,0xa4,0xbf,0x24,0x40,0x70,0x8f,0x08,0xf8,0x0c,0x08,0x00 - -, -0x00,0x3f,0x0a,0x0a,0x2a,0x3f,0x00,0x20,0x10,0x09,0x06,0x09,0x30,0x10,0x00 - -, -/* @2638 ɣ(15x15,V)@ [suki software]*/ -0x00,0x20,0x60,0xa2,0xa2,0x76,0x2a,0x2a,0xea,0xb7,0xa2,0x60,0x20,0x00,0x00 - -, -0x20,0x22,0x13,0x12,0x0a,0x07,0x02,0x3f,0x06,0x0a,0x0a,0x13,0x32,0x10,0x00 - -, -/* @2639 ɤ(15x15,V)@ [suki software]*/ -0xfc,0x04,0x04,0xfc,0x20,0x62,0xb6,0x6a,0x0a,0x6a,0xb7,0xe2,0x20,0x00,0x00 - -, -0x07,0x01,0x01,0x13,0x12,0x0b,0x06,0x03,0x3e,0x03,0x06,0x0a,0x13,0x12,0x00 - -, -/* @2640 ɥ(15x15,V)@ [suki software]*/ -0x40,0x44,0x44,0xd4,0x64,0x44,0xff,0x44,0x44,0x64,0x54,0x46,0x44,0x40,0x00 - -, -0x00,0x00,0x00,0x3f,0x20,0x10,0x09,0x06,0x08,0x14,0x12,0x21,0x20,0x20,0x00 - -, -/* @2641 ɦ(15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x8a,0xc6,0xaa,0x96,0xd2,0xaa,0xa7,0xc2,0x40,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x10,0x37,0x14,0x14,0x1f,0x14,0x1c,0x17,0x20,0x00 - -, -/* @2642 ɧ(15x15,V)@ [suki software]*/ -0x02,0xfa,0x82,0x82,0xfe,0x80,0x42,0xc6,0xaa,0xd6,0xaa,0xa7,0xc2,0x40,0x00 - -, -0x04,0x04,0x12,0x22,0x10,0x0f,0x10,0x37,0x14,0x1f,0x14,0x1c,0x17,0x20,0x00 - -, -/* @2643 ɨ(15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x48,0x00,0x84,0x84,0x84,0x84,0x84,0xfe,0x04,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x3f,0x00,0x00 - -, -/* @2644 ɩ(15x15,V)@ [suki software]*/ -0x88,0x78,0x0f,0x08,0xf8,0x00,0x7e,0x52,0x40,0xff,0x40,0x52,0x7e,0x00,0x00 - -, -0x20,0x11,0x0a,0x04,0x2b,0x20,0x21,0x13,0x15,0x09,0x15,0x13,0x21,0x20,0x00 - -, -/* @2645 ɪ(15x15,V)@ [suki software]*/ -0x42,0x4a,0x4a,0x7e,0x4a,0x4a,0x80,0x4a,0x4a,0x7e,0x4a,0x4a,0x4b,0x42,0x00 - -, -0x20,0x28,0x26,0x10,0x1f,0x28,0x28,0x25,0x22,0x21,0x38,0x02,0x04,0x08,0x00 - -, -/* @2646 ɫ(15x15,V)@ [suki software]*/ -0x20,0x10,0xf8,0x14,0x13,0x12,0xf2,0x1a,0x16,0x12,0x10,0xf0,0x00,0x00,0x00 - -, -0x00,0x00,0x1f,0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x23,0x20,0x3c,0x00 - -, -/* @2647 ɬ(15x15,V)@ [suki software]*/ -0x10,0x21,0x82,0x66,0x00,0x92,0x4a,0x22,0x1e,0x82,0x22,0x42,0x3f,0x02,0x00 - -, -0x02,0x3e,0x01,0x20,0x20,0x20,0x3f,0x20,0x20,0x3f,0x22,0x22,0x22,0x20,0x00 - -, -/* @2648 ɭ(15x15,V)@ [suki software]*/ -0x00,0x44,0x24,0xe4,0x14,0x0c,0x04,0x7f,0x04,0xcc,0x14,0x24,0x66,0x24,0x00 - -, -0x11,0x09,0x05,0x3f,0x03,0x05,0x10,0x09,0x05,0x3f,0x03,0x05,0x19,0x09,0x00 - -, -/* @2649 ɮ(15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x00,0xf8,0xa9,0xce,0xf8,0xcc,0xab,0x88,0xf8,0x00,0x00 - -, -0x00,0x00,0x3f,0x00,0x00,0x00,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x00,0x00,0x00 - -, -/* @2650 ɯ(15x15,V)@ [suki software]*/ -0x04,0x44,0x94,0x24,0x8f,0x04,0xc4,0x04,0xef,0x04,0x04,0x44,0x86,0x04,0x00 - -, -0x04,0x04,0x3e,0x01,0x22,0x21,0x20,0x10,0x17,0x08,0x04,0x02,0x00,0x01,0x00 - -, -/* @2651 ɰ(15x15,V)@ [suki software]*/ -0x84,0xc4,0x7c,0x44,0xc6,0x84,0x40,0x38,0x00,0xff,0x00,0x08,0x90,0x20,0x00 - -, -0x00,0x1f,0x08,0x08,0x2f,0x20,0x20,0x10,0x10,0x09,0x04,0x02,0x01,0x00,0x00 - -, -/* @2652 ɱ(15x15,V)@ [suki software]*/ -0x80,0x80,0xa0,0xa2,0x92,0x94,0x88,0xe8,0x8c,0x93,0xb0,0x80,0xc0,0x80,0x00 - -, -0x00,0x10,0x08,0x04,0x02,0x10,0x20,0x1f,0x00,0x02,0x04,0x08,0x18,0x00,0x00 - -, -/* @2653 ɲ(15x15,V)@ [suki software]*/ -0x80,0x90,0x91,0x8a,0xe4,0x84,0x8a,0x91,0x00,0xfc,0x00,0x00,0xff,0x00,0x00 - -, -0x08,0x04,0x12,0x20,0x1f,0x00,0x02,0x0c,0x00,0x07,0x10,0x20,0x1f,0x00,0x00 - -, -/* @2654 ɳ(15x15,V)@ [suki software]*/ -0x10,0x61,0x82,0x66,0x80,0x60,0x18,0x00,0x00,0xff,0x00,0x08,0x90,0x20,0x00 - -, -0x02,0x3e,0x01,0x00,0x20,0x20,0x10,0x10,0x08,0x05,0x02,0x01,0x00,0x00,0x00 - -, -/* @2655 ɴ(15x15,V)@ [suki software]*/ -0x20,0x30,0xac,0x63,0x18,0x00,0xc0,0x38,0x00,0xff,0x00,0x08,0x90,0x20,0x00 - -, -0x09,0x1b,0x09,0x05,0x05,0x20,0x20,0x10,0x10,0x09,0x04,0x02,0x01,0x00,0x00 - -, -/* @2656 ɵ(15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x00,0x3e,0xa2,0x76,0xab,0x2a,0x36,0x62,0xbe,0x00,0x00 - -, -0x00,0x00,0x3f,0x00,0x22,0x21,0x24,0x12,0x15,0x09,0x15,0x13,0x20,0x21,0x00 - -, -/* @2657 ɶ(15x15,V)@ [suki software]*/ -0xfc,0x04,0x04,0xfc,0x20,0x90,0x88,0x94,0xf3,0x92,0x94,0x88,0x90,0x10,0x00 - -, -0x07,0x01,0x01,0x03,0x00,0x3e,0x12,0x12,0x13,0x12,0x12,0x3e,0x00,0x00,0x00 - -, -/* @2658 ɷ(15x15,V)@ [suki software]*/ -0x10,0xa8,0xa7,0xa4,0xb4,0xae,0xe4,0x20,0x18,0x6f,0x88,0x78,0x0c,0x08,0x00 - -, -0x00,0x22,0x1a,0x02,0x0a,0x32,0x03,0x0c,0x32,0x01,0x00,0x09,0x32,0x04,0x00 - -, -/* @2659 ɸ(15x15,V)@ [suki software]*/ -0x10,0xe8,0x04,0xf3,0x06,0x2a,0xa2,0xa8,0xa4,0xe3,0xa6,0xaa,0xa2,0x22,0x00 - -, -0x00,0x27,0x10,0x0f,0x00,0x00,0x0f,0x00,0x00,0x3f,0x00,0x08,0x0f,0x00,0x00 - -, -/* @2660 ɹ(15x15,V)@ [suki software]*/ -0x00,0xfc,0x44,0x44,0xfc,0x02,0xf2,0x12,0xfe,0x12,0xfe,0x12,0xf3,0x02,0x00 - -, -0x00,0x0f,0x04,0x04,0x0f,0x00,0x3f,0x12,0x11,0x10,0x13,0x12,0x3f,0x00,0x00 - -, -/* @2661 ɺ(15x15,V)@ [suki software]*/ -0x22,0x22,0xfe,0x22,0x40,0xfe,0x42,0xfe,0x40,0xfe,0x42,0x42,0xff,0x42,0x00 - -, -0x08,0x08,0x07,0x24,0x10,0x0f,0x10,0x2f,0x10,0x0f,0x10,0x20,0x1f,0x00,0x00 - -, -/* @2662 ɻ(15x15,V)@ [suki software]*/ -0x04,0x04,0x04,0x04,0x0f,0x04,0xfc,0x24,0x24,0x2f,0x24,0x24,0x26,0x04,0x00 - -, -0x00,0x00,0x00,0x3f,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x3f,0x00,0x00,0x00 - -, -/* @2663 ɼ(15x15,V)@ [suki software]*/ -0x08,0x08,0xc8,0xff,0x28,0x48,0x88,0x10,0x10,0x88,0x44,0x23,0x10,0x00,0x00 - -, -0x04,0x03,0x00,0x3f,0x00,0x00,0x20,0x21,0x11,0x10,0x08,0x04,0x02,0x01,0x00 - -, -/* @2664 ɽ(15x15,V)@ [suki software]*/ -0x00,0x00,0xf0,0x00,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0x00,0xf0,0x00,0x00 - -, -0x00,0x00,0x1f,0x10,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x10,0x3f,0x00,0x00 - -, -/* @2665 ɾ(15x15,V)@ [suki software]*/ -0x40,0xfe,0x42,0xfe,0x40,0xfe,0x42,0xfe,0x40,0x40,0xfc,0x00,0xff,0x00,0x00 - -, -0x30,0x0f,0x10,0x1f,0x20,0x1f,0x20,0x3f,0x00,0x00,0x13,0x20,0x1f,0x00,0x00 - -, -/* @2666 ɿ(15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x20,0x10,0xfc,0x14,0x54,0x55,0xd6,0x14,0x54,0x5c,0xc0,0x00 - -, -0x20,0x10,0x0f,0x22,0x14,0x0f,0x08,0x15,0x22,0x1f,0x00,0x15,0x22,0x1f,0x00 - -, -/* @2667 (15x15,V)@ [suki software]*/ -0x08,0x08,0x89,0xee,0x98,0x40,0x00,0x10,0x10,0x88,0x44,0x23,0x10,0x00,0x00 - -, -0x02,0x01,0x00,0x3f,0x00,0x03,0x20,0x21,0x11,0x10,0x08,0x04,0x02,0x01,0x00 - -, -/* @2668 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x01,0x02,0x04,0x80,0x7a,0x82,0x02,0x02,0x02,0x02,0xff,0x02,0x00 - -, -0x00,0x3f,0x00,0x04,0x02,0x01,0x00,0x00,0x01,0x06,0x10,0x20,0x1f,0x00,0x00 - -, -/* @2669 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x12,0x2a,0xc6,0x08,0x68,0x08,0xff,0x08,0x48,0x2c,0x08,0x00,0x00 - -, -0x00,0x3f,0x02,0x24,0x23,0x11,0x09,0x05,0x03,0x05,0x09,0x11,0x31,0x11,0x00 - -, -/* @2670 (15x15,V)@ [suki software]*/ -0x08,0x08,0xff,0x88,0x02,0xfa,0x8a,0xba,0xab,0xaa,0xba,0x8a,0xfa,0x02,0x00 - -, -0x11,0x21,0x1f,0x00,0x20,0x20,0x2f,0x2a,0x2a,0x2a,0x2a,0x2f,0x20,0x20,0x00 - -, -/* @2671 (15x15,V)@ [suki software]*/ -0xfe,0x02,0xfa,0x02,0xfe,0x10,0xf8,0x4c,0x6b,0x5a,0x6e,0x5a,0x68,0x48,0x00 - -, -0x23,0x18,0x07,0x04,0x2b,0x10,0x0f,0x00,0x39,0x2b,0x2d,0x29,0x39,0x00,0x00 - -, -/* @2672 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x92,0x92,0xfe,0x44,0x55,0xd6,0x54,0xfc,0x56,0xd5,0x54,0x44,0x00 - -, -0x30,0x0f,0x10,0x20,0x1f,0x01,0x3d,0x15,0x15,0x15,0x15,0x3d,0x01,0x01,0x00 - -, -/* @2673 (15x15,V)@ [suki software]*/ -0x40,0x44,0x54,0x54,0xd5,0x56,0x54,0xfc,0x56,0xd5,0x54,0x56,0x44,0x40,0x00 - -, -0x00,0x01,0x01,0x3d,0x25,0x25,0x25,0x25,0x25,0x25,0x3d,0x01,0x01,0x00,0x00 - -, -/* @2674 (15x15,V)@ [suki software]*/ -0x10,0x21,0x02,0xc4,0x00,0xf0,0x00,0x00,0x00,0xff,0x00,0x00,0xf0,0x00,0x00 - -, -0x02,0x02,0x3f,0x00,0x00,0x1f,0x10,0x10,0x10,0x1f,0x10,0x10,0x3f,0x00,0x00 - -, -/* @2675 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfc,0x54,0x54,0x54,0xd5,0x16,0x54,0xd4,0x54,0x5e,0xc4,0x00,0x00 - -, -0x20,0x18,0x07,0x08,0x15,0x22,0x1f,0x00,0x08,0x04,0x15,0x22,0x1f,0x00,0x00 - -, -/* @2676 (15x15,V)@ [suki software]*/ -0x20,0xb8,0x67,0x20,0x10,0x44,0x55,0xd6,0x54,0xfc,0x56,0xd5,0x54,0x44,0x00 - -, -0x09,0x1b,0x09,0x05,0x04,0x01,0x3d,0x15,0x15,0x15,0x15,0x3d,0x01,0x00,0x00 - -, -/* @2677 (15x15,V)@ [suki software]*/ -0x10,0x10,0xff,0x10,0x14,0xe4,0x2c,0xb4,0x65,0x26,0xb4,0x2c,0xe6,0x04,0x00 - -, -0x04,0x04,0x07,0x02,0x02,0x3f,0x01,0x0e,0x0a,0x0a,0x0e,0x21,0x3f,0x00,0x00 - -, -/* @2678 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x20,0x50,0x4c,0x47,0xf4,0x44,0x44,0x44,0xe6,0x44,0x00 - -, -0x00,0x00,0x3f,0x00,0x20,0x20,0x10,0x0c,0x03,0x10,0x20,0x10,0x0f,0x00,0x00 - -, -/* @2679 (15x15,V)@ [suki software]*/ -0x02,0x02,0xf2,0x12,0x96,0x5a,0x13,0x12,0x5a,0x96,0x12,0xf2,0x02,0x00,0x00 - -, -0x00,0x00,0x3f,0x01,0x00,0x0f,0x09,0x09,0x0f,0x10,0x21,0x1f,0x00,0x00,0x00 - -, -/* @2680 (15x15,V)@ [suki software]*/ -0x10,0x0c,0x04,0x05,0x76,0x54,0x57,0x54,0x54,0x76,0x05,0x14,0x0c,0x00,0x00 - -, -0x00,0x20,0x20,0x2f,0x11,0x09,0x07,0x01,0x09,0x11,0x2f,0x20,0x00,0x00,0x00 - -, -/* @2681 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x44,0x44,0xfc,0x00,0xfc,0x04,0xe6,0x25,0x24,0xe4,0x04,0xfc,0x00 - -, -0x00,0x0f,0x04,0x04,0x0f,0x00,0x3f,0x00,0x03,0x01,0x01,0x13,0x20,0x1f,0x00 - -, -/* @2682 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x20,0x20,0x20,0x20,0x30,0x20,0x00,0x00 - -, -0x10,0x10,0x10,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x10,0x10,0x18,0x10,0x00 - -, -/* @2683 (15x15,V)@ [suki software]*/ -0x00,0x00,0xe2,0x24,0x28,0xa0,0xa0,0xbf,0xa0,0xa0,0x28,0x24,0xf2,0x20,0x00 - -, -0x00,0x00,0x3f,0x00,0x00,0x0f,0x04,0x04,0x04,0x07,0x10,0x20,0x1f,0x00,0x00 - -, -/* @2684 (15x15,V)@ [suki software]*/ -0x00,0x10,0x0c,0x05,0x76,0x54,0xd4,0x57,0x54,0x54,0x76,0x05,0x14,0x0c,0x00 - -, -0x00,0x11,0x11,0x09,0x05,0x3f,0x21,0x13,0x05,0x09,0x15,0x13,0x21,0x21,0x00 - -, -/* @2685 (15x15,V)@ [suki software]*/ -0x08,0x88,0x68,0xff,0x28,0x40,0xf2,0x94,0x90,0x9f,0x90,0x94,0xf2,0x00,0x00 - -, -0x06,0x01,0x00,0x3f,0x00,0x00,0x3f,0x02,0x02,0x02,0x12,0x22,0x1f,0x00,0x00 - -, -/* @2686 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x08,0xf2,0x94,0x90,0x9f,0x90,0x94,0xf2,0x00,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x00,0x3f,0x02,0x02,0x02,0x12,0x22,0x1f,0x00,0x00 - -, -/* @2687 (15x15,V)@ [suki software]*/ -0x12,0x92,0x52,0xfe,0x51,0x90,0x02,0xf4,0x90,0x9f,0x90,0x94,0xf2,0x00,0x00 - -, -0x02,0x01,0x00,0x3f,0x00,0x00,0x00,0x3f,0x02,0x02,0x12,0x22,0x1f,0x00,0x00 - -, -/* @2688 (15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x20,0x10,0x08,0x88,0x4f,0x58,0x24,0x54,0x84,0x84,0xe0,0x00 - -, -0x20,0x18,0x07,0x02,0x2d,0x11,0x0f,0x01,0x01,0x1f,0x21,0x21,0x20,0x38,0x00 - -, -/* @2689 (15x15,V)@ [suki software]*/ -0x04,0x84,0x44,0x34,0xa4,0x2f,0x24,0x24,0x24,0x2f,0x24,0xf4,0x26,0x04,0x00 - -, -0x01,0x00,0x00,0x00,0x00,0x01,0x06,0x10,0x20,0x20,0x10,0x0f,0x00,0x00,0x00 - -, -/* @2690 (15x15,V)@ [suki software]*/ -0x80,0x40,0x30,0x0f,0x08,0x48,0x88,0x08,0x08,0x08,0x08,0x08,0xfc,0x08,0x00 - -, -0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x10,0x20,0x20,0x10,0x0f,0x00,0x00 - -, -/* @2691 (15x15,V)@ [suki software]*/ -0x44,0x4c,0x75,0x46,0x74,0x4c,0x04,0x42,0x22,0x1e,0x42,0x42,0x3e,0x00,0x00 - -, -0x00,0x3f,0x15,0x15,0x15,0x3f,0x00,0x00,0x3f,0x11,0x11,0x11,0x3f,0x00,0x00 - -, -/* @2692 (15x15,V)@ [suki software]*/ -0x00,0x00,0x80,0x60,0x18,0x00,0x00,0xff,0x00,0x08,0x08,0x90,0x20,0x40,0x00 - -, -0x00,0x21,0x20,0x20,0x10,0x10,0x08,0x0b,0x04,0x02,0x01,0x00,0x00,0x00,0x00 - -, -/* @2693 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0x04,0xfc,0x00,0xf2,0x94,0x90,0x9f,0x90,0x94,0xf2,0x00,0x00 - -, -0x00,0x07,0x01,0x01,0x03,0x00,0x3f,0x02,0x02,0x02,0x12,0x22,0x1f,0x00,0x00 - -, -/* @2694 (15x15,V)@ [suki software]*/ -0x40,0x22,0x92,0x8e,0xa2,0xa2,0x9e,0x00,0x00,0xfe,0x02,0x72,0x8f,0x02,0x00 - -, -0x00,0x00,0x3f,0x10,0x10,0x10,0x3f,0x00,0x00,0x3f,0x04,0x08,0x08,0x07,0x00 - -, -/* @2695 (15x15,V)@ [suki software]*/ -0x20,0x30,0xac,0x63,0x10,0x00,0x42,0x22,0x1e,0x02,0x22,0x42,0x3f,0x02,0x00 - -, -0x09,0x1b,0x09,0x05,0x05,0x00,0x00,0x3f,0x11,0x11,0x11,0x11,0x3f,0x00,0x00 - -, -/* @2696 (15x15,V)@ [suki software]*/ -0x44,0x44,0x64,0x54,0x4c,0x54,0x7f,0xd4,0x44,0x6c,0x54,0x54,0x66,0x24,0x00 - -, -0x04,0x04,0x04,0x02,0x3f,0x15,0x15,0x15,0x15,0x15,0x3f,0x00,0x00,0x00,0x00 - -, -/* @2697 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0xfa,0x02,0xfe,0x90,0xa8,0xa4,0xa3,0xa4,0xa8,0x90,0x90,0x00 - -, -0x20,0x13,0x0c,0x03,0x0c,0x13,0x08,0x16,0x20,0x1f,0x00,0x02,0x04,0x18,0x00 - -, -/* @2698 (15x15,V)@ [suki software]*/ -0x00,0xf0,0x10,0xff,0x10,0xf0,0x18,0x08,0xe8,0x09,0x0e,0x88,0xc8,0x18,0x00 - -, -0x10,0x31,0x11,0x0f,0x09,0x1d,0x00,0x00,0x1f,0x21,0x21,0x20,0x20,0x3c,0x00 - -, -/* @2699 (15x15,V)@ [suki software]*/ -0x20,0x24,0x24,0x24,0x24,0x24,0xfc,0x22,0x22,0x22,0xa3,0x22,0x30,0x20,0x00 - -, -0x00,0x00,0x00,0x3f,0x11,0x11,0x11,0x11,0x11,0x11,0x3f,0x01,0x00,0x00,0x00 - -, -/* @2700 (15x15,V)@ [suki software]*/ -0x00,0xa0,0xa0,0x90,0x88,0x94,0xf3,0x92,0x94,0x88,0x90,0x90,0xa0,0x20,0x00 - -, -0x00,0x00,0x00,0x3e,0x12,0x12,0x13,0x12,0x12,0x12,0x3e,0x00,0x00,0x00,0x00 - -, -/* @2701 (15x15,V)@ [suki software]*/ -0x20,0xa4,0x24,0xe4,0x3f,0xe4,0x24,0x40,0x30,0xcf,0x08,0x88,0x7c,0x08,0x00 - -, -0x22,0x11,0x0c,0x13,0x20,0x1f,0x01,0x26,0x10,0x09,0x06,0x09,0x10,0x20,0x00 - -, -/* @2702 (15x15,V)@ [suki software]*/ -0x08,0x88,0xff,0x48,0x08,0x42,0x42,0x7e,0x4a,0x5a,0x52,0xfe,0x43,0x42,0x00 - -, -0x11,0x20,0x1f,0x00,0x21,0x17,0x09,0x17,0x20,0x17,0x09,0x15,0x23,0x20,0x00 - -, -/* @2703 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x54,0x57,0x54,0xfc,0x00,0x50,0x90,0x10,0x10,0xff,0x10,0x10,0x00 - -, -0x21,0x11,0x09,0x15,0x23,0x1f,0x00,0x00,0x01,0x10,0x20,0x1f,0x00,0x00,0x00 - -, -/* @2704 (15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x08,0x52,0x42,0x7e,0x4a,0x5a,0x52,0xfe,0x42,0x43,0x42,0x00 - -, -0x00,0x00,0x3f,0x00,0x23,0x15,0x09,0x17,0x20,0x17,0x09,0x15,0x23,0x20,0x00 - -, -/* @2705 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x20,0x20,0xbc,0x20,0xff,0x24,0x24,0x24,0xa4,0x20,0x00 - -, -0x02,0x3e,0x01,0x00,0x24,0x22,0x21,0x10,0x13,0x08,0x04,0x02,0x01,0x00,0x00 - -, -/* @2706 (15x15,V)@ [suki software]*/ -0x08,0x88,0x49,0xee,0x58,0x88,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0x00,0x00 - -, -0x01,0x00,0x00,0x3f,0x00,0x11,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x10,0x00 - -, -/* @2707 (15x15,V)@ [suki software]*/ -0x20,0x20,0x21,0xe6,0x40,0x20,0x5e,0xc2,0x42,0x42,0x4f,0xd2,0x10,0x10,0x00 - -, -0x00,0x00,0x00,0x0f,0x24,0x22,0x10,0x11,0x0a,0x04,0x0a,0x11,0x30,0x10,0x00 - -, -/* @2708 (15x15,V)@ [suki software]*/ -0x84,0x44,0xfc,0x24,0xe6,0x04,0xf8,0x48,0x48,0xff,0x48,0x48,0x48,0xf8,0x00 - -, -0x00,0x00,0x1f,0x04,0x0f,0x00,0x03,0x02,0x02,0x3f,0x02,0x02,0x02,0x03,0x00 - -, -/* @2709 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfc,0x24,0x24,0x24,0x24,0xff,0x24,0x24,0x24,0xfe,0x04,0x00,0x00 - -, -0x00,0x00,0x07,0x02,0x02,0x02,0x02,0x3f,0x02,0x02,0x02,0x07,0x00,0x00,0x00 - -, -/* @2710 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0x04,0xfc,0x00,0xfc,0x24,0x24,0xff,0x24,0x24,0xfe,0x04,0x00 - -, -0x00,0x07,0x01,0x01,0x03,0x00,0x03,0x01,0x01,0x3f,0x01,0x01,0x03,0x00,0x00 - -, -/* @2711 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x00,0xf8,0x48,0x48,0x48,0xff,0x48,0x48,0xfc,0x08,0x00 - -, -0x00,0x00,0x3f,0x00,0x00,0x07,0x02,0x02,0x02,0x3f,0x02,0x02,0x07,0x00,0x00 - -, -/* @2712 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0xfc,0x54,0x56,0x55,0x54,0x54,0x54,0xfe,0x84,0x40,0x00,0x00 - -, -0x00,0x21,0x21,0x11,0x11,0x09,0x09,0x05,0x13,0x21,0x1f,0x00,0x00,0x00,0x00 - -, -/* @2713 (15x15,V)@ [suki software]*/ -0x10,0x62,0x84,0x60,0x88,0xa6,0x92,0x8a,0xe2,0x82,0x8a,0x92,0xaa,0x86,0x00 - -, -0x02,0x3e,0x01,0x00,0x10,0x08,0x04,0x02,0x3f,0x01,0x02,0x04,0x18,0x08,0x00 - -, -/* @2714 (15x15,V)@ [suki software]*/ -0x88,0x78,0x0f,0x08,0xf8,0x00,0xfe,0x42,0xca,0x4a,0xca,0x4a,0x4b,0x42,0x00 - -, -0x20,0x11,0x0a,0x04,0x2b,0x10,0x0f,0x00,0x3f,0x10,0x03,0x0c,0x12,0x21,0x00 - -, -/* @2715 (15x15,V)@ [suki software]*/ -0x20,0x30,0xac,0x63,0x10,0x00,0xfc,0x24,0x24,0xff,0x24,0x24,0xfe,0x04,0x00 - -, -0x09,0x1b,0x09,0x05,0x05,0x00,0x03,0x02,0x02,0x3f,0x02,0x02,0x03,0x00,0x00 - -, -/* @2716 (15x15,V)@ [suki software]*/ -0x08,0x08,0x89,0xee,0x98,0x00,0xf8,0x28,0x28,0xff,0x28,0x28,0xfc,0x08,0x00 - -, -0x02,0x01,0x00,0x3f,0x00,0x01,0x03,0x01,0x01,0x3f,0x01,0x01,0x03,0x00,0x00 - -, -/* @2717 (15x15,V)@ [suki software]*/ -0x10,0x61,0x06,0x80,0x20,0x18,0x08,0x08,0xff,0x88,0x08,0x28,0x18,0x00,0x00 - -, -0x02,0x3e,0x01,0x20,0x20,0x10,0x0c,0x03,0x00,0x1f,0x20,0x20,0x20,0x3c,0x00 - -, -/* @2718 (15x15,V)@ [suki software]*/ -0x10,0x0c,0xe4,0xa4,0xa4,0xa4,0xf5,0xa6,0xa4,0xa4,0xa4,0xf4,0x0c,0x00,0x00 - -, -0x00,0x00,0x0f,0x04,0x04,0x04,0x3f,0x04,0x04,0x04,0x04,0x0f,0x00,0x00,0x00 - -, -/* @2719 (15x15,V)@ [suki software]*/ -0x88,0x78,0x0f,0x08,0xf8,0x00,0xec,0xa4,0xa5,0xf6,0xa4,0xa4,0xe4,0x0c,0x00 - -, -0x20,0x11,0x0a,0x04,0x0b,0x00,0x0f,0x04,0x04,0x3f,0x04,0x04,0x0f,0x00,0x00 - -, -/* @2720 (15x15,V)@ [suki software]*/ -0x00,0x04,0x04,0x04,0xff,0x54,0x54,0x54,0x54,0xff,0x04,0x04,0x04,0x00,0x00 - -, -0x01,0x01,0x01,0x3f,0x21,0x29,0x25,0x21,0x21,0x25,0x29,0x21,0x21,0x01,0x00 - -, -/* @2721 (15x15,V)@ [suki software]*/ -0x00,0x3e,0x00,0xc0,0x7f,0x40,0x62,0x62,0x56,0x4a,0xca,0x17,0x22,0x20,0x00 - -, -0x00,0x00,0x00,0x3f,0x05,0x05,0x05,0x05,0x15,0x25,0x1f,0x00,0x00,0x00,0x00 - -, -/* @2722 (15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x08,0x30,0x04,0xf4,0x54,0x5f,0x54,0x54,0xf4,0x06,0x04,0x00 - -, -0x00,0x00,0x3f,0x00,0x24,0x24,0x17,0x0d,0x05,0x05,0x0d,0x17,0x34,0x04,0x00 - -, -/* @2723 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x00,0x28,0xac,0x6a,0x39,0xa8,0x6a,0xac,0x28,0x00,0x00 - -, -0x02,0x3e,0x01,0x00,0x01,0x29,0x2a,0x2a,0x25,0x14,0x12,0x0a,0x09,0x01,0x00 - -, -/* @2724 (15x15,V)@ [suki software]*/ -0x04,0x04,0xd4,0x54,0x54,0x54,0x54,0xdf,0x54,0x54,0x54,0xd4,0x06,0x04,0x00 - -, -0x20,0x10,0x0f,0x02,0x02,0x02,0x02,0x03,0x02,0x02,0x02,0x03,0x00,0x00,0x00 - -, -/* @2725 (15x15,V)@ [suki software]*/ -0x80,0x40,0x30,0x1e,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x18,0x10,0x00,0x00 - -, -0x20,0x20,0x20,0x21,0x21,0x21,0x21,0x3f,0x21,0x21,0x21,0x21,0x30,0x20,0x00 - -, -/* @2726 (15x15,V)@ [suki software]*/ -0x30,0x8c,0x88,0xff,0x88,0x88,0x00,0x7e,0x4a,0xfe,0x4a,0x4a,0x7f,0x02,0x00 - -, -0x08,0x08,0x08,0x07,0x04,0x24,0x21,0x11,0x09,0x07,0x11,0x21,0x1f,0x00,0x00 - -, -/* @2727 (15x15,V)@ [suki software]*/ -0x60,0x1c,0x10,0xff,0x90,0x10,0x60,0x1e,0x10,0xff,0x10,0x10,0x18,0x10,0x00 - -, -0x02,0x02,0x01,0x3f,0x00,0x20,0x21,0x21,0x21,0x3f,0x21,0x21,0x31,0x20,0x00 - -, -/* @2728 (15x15,V)@ [suki software]*/ -0x40,0x44,0x44,0x44,0xfc,0x42,0x43,0x42,0x40,0xff,0x40,0x40,0x60,0x40,0x00 - -, -0x00,0x20,0x10,0x0c,0x03,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00 - -, -/* @2729 (15x15,V)@ [suki software]*/ -0x20,0x38,0xa7,0x60,0x18,0xe0,0xae,0xaa,0xaa,0xfa,0xaa,0xaf,0xe2,0x00,0x00 - -, -0x09,0x1b,0x09,0x05,0x04,0x07,0x04,0x04,0x04,0x1f,0x24,0x24,0x27,0x38,0x00 - -, -}, -//************************************** -{ -/* @2730 ʡ(15x15,V)@ [suki software]*/ -0x00,0x10,0x08,0x84,0xc2,0x40,0x6f,0x50,0x50,0x48,0xc2,0x04,0x18,0x00,0x00 - -, -0x00,0x01,0x01,0x00,0x3f,0x15,0x15,0x15,0x15,0x15,0x3f,0x00,0x00,0x00,0x00 - -, -/* @2731 ʢ(15x15,V)@ [suki software]*/ -0x00,0x00,0xfc,0x14,0x94,0x94,0x74,0x04,0xbf,0x44,0xa5,0x16,0x04,0xc4,0x00 - -, -0x22,0x21,0x3e,0x22,0x22,0x3e,0x22,0x23,0x3e,0x22,0x22,0x3f,0x21,0x21,0x00 - -, -/* @2732 ʣ(15x15,V)@ [suki software]*/ -0x28,0xaa,0xfa,0x0a,0xfe,0x09,0xf9,0x29,0xa8,0x00,0xfc,0x00,0xff,0x00,0x00 - -, -0x11,0x08,0x05,0x02,0x3f,0x02,0x05,0x09,0x01,0x00,0x17,0x20,0x1f,0x00,0x00 - -, -/* @2733 ʤ(15x15,V)@ [suki software]*/ -0x00,0xfe,0x92,0x92,0xfe,0x40,0x3c,0x10,0x10,0xff,0x10,0x10,0x18,0x10,0x00 - -, -0x30,0x0f,0x10,0x20,0x1f,0x20,0x21,0x21,0x21,0x3f,0x21,0x21,0x21,0x20,0x00 - -, -/* @2734 ʥ(15x15,V)@ [suki software]*/ -0x80,0x80,0x82,0x42,0x46,0x2a,0x12,0x92,0x2a,0x26,0x43,0x42,0xc0,0x40,0x00 - -, -0x20,0x20,0x22,0x22,0x22,0x22,0x22,0x3f,0x22,0x22,0x22,0x22,0x30,0x20,0x00 - -, -/* @2735 ʦ(15x15,V)@ [suki software]*/ -0x00,0xfc,0x00,0xff,0x00,0x02,0xf2,0x12,0x12,0xfe,0x12,0x12,0xf3,0x02,0x00 - -, -0x20,0x13,0x08,0x07,0x00,0x00,0x0f,0x00,0x00,0x3f,0x04,0x08,0x07,0x00,0x00 - -, -/* @2736 ʧ(15x15,V)@ [suki software]*/ -0x00,0x80,0xb0,0x8e,0x88,0x88,0x88,0xff,0x88,0x88,0x8c,0x88,0xc0,0x80,0x00 - -, -0x00,0x20,0x20,0x10,0x08,0x04,0x02,0x01,0x02,0x04,0x08,0x10,0x30,0x10,0x00 - -, -/* @2737 ʨ(15x15,V)@ [suki software]*/ -0x11,0x8a,0xfc,0x03,0xfc,0x00,0xff,0x00,0xf2,0x12,0xfe,0x12,0xf3,0x02,0x00 - -, -0x11,0x20,0x1f,0x20,0x13,0x08,0x07,0x00,0x07,0x00,0x3f,0x04,0x07,0x00,0x00 - -, -/* @2738 ʩ(15x15,V)@ [suki software]*/ -0x08,0x08,0xf9,0x4e,0xc8,0x08,0x90,0xec,0x87,0xf4,0x44,0x44,0xe4,0x44,0x00 - -, -0x20,0x18,0x07,0x20,0x1f,0x00,0x00,0x1f,0x20,0x2f,0x22,0x24,0x23,0x38,0x00 - -, -/* @2739 ʪ(15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x00,0x7e,0x2a,0xaa,0x2a,0xaa,0x2a,0x7f,0x02,0x00,0x00 - -, -0x02,0x3e,0x01,0x20,0x23,0x2c,0x20,0x3f,0x20,0x3f,0x28,0x24,0x23,0x20,0x00 - -, -/* @2740 ʫ(15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x20,0x24,0x24,0x24,0x3f,0x24,0xe4,0x26,0xa4,0x20,0x00 - -, -0x00,0x00,0x1f,0x08,0x05,0x01,0x03,0x0d,0x11,0x21,0x1f,0x01,0x01,0x01,0x00 - -, -/* @2741 ʬ(15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0xfe,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x7f,0x02,0x00 - -, -0x20,0x10,0x0c,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 - -, -/* @2742 ʭ(15x15,V)@ [suki software]*/ -0x00,0x12,0xd2,0x52,0x52,0xf2,0x4a,0x4a,0xca,0x02,0xff,0x02,0x00,0x00,0x00 - -, -0x10,0x30,0x13,0x12,0x12,0x1f,0x12,0x12,0x1b,0x20,0x07,0x08,0x10,0x3c,0x00 - -, -/* @2743 ʮ(15x15,V)@ [suki software]*/ -0x40,0x40,0x40,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0x40,0x40,0x60,0x40,0x00 - -, -0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 - -, -/* @2744 ʯ(15x15,V)@ [suki software]*/ -0x00,0x02,0x02,0x82,0xc2,0x72,0x4e,0x42,0x42,0x42,0x42,0xe2,0x43,0x02,0x00 - -, -0x04,0x02,0x01,0x00,0x3f,0x08,0x08,0x08,0x08,0x08,0x08,0x3f,0x00,0x00,0x00 - -, -/* @2745 ʰ(15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x20,0x10,0x2c,0x23,0x24,0x28,0x10,0x20,0x20,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x00,0x3f,0x11,0x11,0x11,0x11,0x3f,0x00,0x00,0x00 - -, -/* @2746 ʱ(15x15,V)@ [suki software]*/ -0x00,0xfc,0x44,0x44,0xfc,0x00,0x08,0x48,0x88,0x08,0xff,0x08,0x08,0x08,0x00 - -, -0x00,0x1f,0x04,0x04,0x0f,0x00,0x00,0x00,0x11,0x20,0x1f,0x00,0x00,0x00,0x00 - -, -/* @2747 ʲ(15x15,V)@ [suki software]*/ -0x40,0x20,0x10,0xfc,0x03,0x20,0x20,0x20,0x20,0xff,0x20,0x20,0x30,0x20,0x00 - -, -0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00 - -, -/* @2748 ʳ(15x15,V)@ [suki software]*/ -0x20,0x20,0x10,0xe8,0xa4,0xa2,0xa9,0xb2,0xa4,0xe8,0x08,0x10,0x10,0x10,0x00 - -, -0x00,0x00,0x00,0x3f,0x22,0x12,0x16,0x06,0x0a,0x0b,0x14,0x32,0x00,0x00,0x00 - -, -/* @2749 ʴ(15x15,V)@ [suki software]*/ -0x20,0x18,0xcf,0x08,0x18,0x08,0xf0,0x10,0x10,0xff,0x10,0x10,0xf8,0x10,0x00 - -, -0x00,0x00,0x3f,0x10,0x08,0x10,0x31,0x11,0x11,0x1f,0x11,0x15,0x19,0x30,0x00 - -, -/* @2750 ʵ(15x15,V)@ [suki software]*/ -0x00,0x10,0x0c,0x44,0x94,0x24,0x05,0xf6,0x04,0x04,0x04,0x04,0x14,0x0c,0x00 - -, -0x00,0x22,0x22,0x12,0x13,0x0a,0x06,0x03,0x06,0x0a,0x0a,0x12,0x33,0x02,0x00 - -, -/* @2751 ʶ(15x15,V)@ [suki software]*/ -0x20,0x20,0x21,0xe6,0x00,0x00,0x00,0xfe,0x42,0x42,0x42,0x42,0xff,0x02,0x00 - -, -0x00,0x00,0x00,0x1f,0x08,0x24,0x10,0x08,0x06,0x00,0x00,0x02,0x04,0x18,0x00 - -, -/* @2752 ʷ(15x15,V)@ [suki software]*/ -0x00,0x00,0xf8,0x88,0x88,0x88,0x88,0xff,0x88,0x88,0x88,0xfc,0x08,0x00,0x00 - -, -0x20,0x20,0x20,0x10,0x11,0x0a,0x04,0x0b,0x08,0x10,0x10,0x20,0x20,0x20,0x00 - -, -/* @2753 ʸ(15x15,V)@ [suki software]*/ -0x80,0xa0,0x98,0x8f,0x88,0x88,0xf8,0x88,0x88,0x88,0x88,0x8c,0xc8,0x80,0x00 - -, -0x20,0x20,0x10,0x10,0x08,0x04,0x03,0x00,0x03,0x04,0x08,0x10,0x30,0x10,0x00 - -, -/* @2754 ʹ(15x15,V)@ [suki software]*/ -0x40,0x20,0x10,0xfc,0x03,0x04,0xf4,0x94,0x94,0xff,0x94,0x94,0xf6,0x04,0x00 - -, -0x00,0x00,0x00,0x3f,0x00,0x20,0x22,0x14,0x08,0x17,0x10,0x20,0x21,0x20,0x00 - -, -/* @2755 ʺ(15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x8a,0xaa,0xca,0x8a,0xea,0x8a,0x8a,0xca,0xaf,0x82,0x00,0x00 - -, -0x10,0x0c,0x13,0x10,0x08,0x04,0x02,0x3f,0x01,0x02,0x04,0x08,0x18,0x08,0x00 - -, -/* @2756 ʻ(15x15,V)@ [suki software]*/ -0x02,0xfa,0x82,0x82,0xfe,0x80,0xf8,0x48,0x48,0xff,0x48,0x48,0xfc,0x08,0x00 - -, -0x04,0x04,0x12,0x22,0x10,0x2f,0x20,0x11,0x0a,0x07,0x08,0x10,0x20,0x20,0x00 - -, -/* @2757 ʼ(15x15,V)@ [suki software]*/ -0x08,0x08,0xf8,0x0f,0x08,0xf8,0x20,0x30,0x2c,0x23,0x20,0x28,0x30,0x60,0x00 - -, -0x20,0x11,0x0a,0x04,0x0a,0x11,0x00,0x3f,0x11,0x11,0x11,0x11,0x3f,0x00,0x00 - -, -/* @2758 ʽ(15x15,V)@ [suki software]*/ -0x08,0x48,0x48,0x48,0xc8,0x48,0x48,0x08,0xff,0x08,0x09,0x0e,0x08,0x08,0x00 - -, -0x10,0x10,0x10,0x10,0x0f,0x08,0x08,0x08,0x01,0x06,0x08,0x10,0x20,0x3c,0x00 - -, -/* @2759 ʾ(15x15,V)@ [suki software]*/ -0x00,0x20,0x22,0x22,0xa2,0x22,0x22,0xe2,0x22,0xa2,0x22,0x23,0x32,0x20,0x00 - -, -0x00,0x08,0x04,0x02,0x01,0x10,0x20,0x1f,0x00,0x00,0x01,0x02,0x0c,0x00,0x00 - -, -/* @2760 ʿ(15x15,V)@ [suki software]*/ -0x20,0x20,0x20,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0x20,0x20,0x30,0x20,0x00 - -, -0x00,0x10,0x10,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x10,0x18,0x10,0x00,0x00 - -, -/* @2761 (15x15,V)@ [suki software]*/ -0x10,0x10,0xfe,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x00 - -, -0x00,0x00,0x3f,0x20,0x20,0x20,0x27,0x22,0x22,0x22,0x27,0x20,0x30,0x20,0x00 - -, -/* @2762 (15x15,V)@ [suki software]*/ -0x10,0x90,0xff,0x50,0x90,0x08,0xc8,0x48,0x49,0xfa,0x48,0x48,0xec,0x48,0x00 - -, -0x06,0x01,0x3f,0x00,0x00,0x00,0x0f,0x00,0x00,0x3f,0x00,0x08,0x0f,0x00,0x00 - -, -/* @2763 (15x15,V)@ [suki software]*/ -0x00,0x02,0x82,0xba,0xaa,0xaa,0xaa,0xff,0xaa,0xaa,0xaa,0xba,0x02,0x02,0x00 - -, -0x02,0x02,0x0a,0x0a,0x0a,0x0a,0x2a,0x3f,0x0a,0x0a,0x0a,0x0f,0x02,0x02,0x00 - -, -/* @2764 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x00,0x48,0xc8,0x48,0x48,0xff,0x08,0x0e,0x08,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x10,0x10,0x0f,0x08,0x08,0x03,0x0c,0x10,0x3c,0x00 - -, -/* @2765 (15x15,V)@ [suki software]*/ -0x90,0x94,0x94,0xff,0x94,0xa4,0x90,0xce,0x8a,0x8a,0xfa,0x89,0x89,0x88,0x00 - -, -0x00,0x00,0x00,0x3a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x3a,0x00,0x00,0x00,0x00 - -, -/* @2766 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x88,0x88,0xfe,0x48,0x08,0xfc,0x24,0xe2,0x22,0x20,0x00 - -, -0x10,0x08,0x07,0x08,0x14,0x28,0x27,0x28,0x24,0x23,0x20,0x2f,0x20,0x20,0x00 - -, -/* @2767 (15x15,V)@ [suki software]*/ -0x24,0x24,0xa4,0xff,0x14,0x94,0x40,0x24,0x5f,0x04,0x04,0x7c,0x80,0xc0,0x00 - -, -0x20,0x22,0x22,0x12,0x0a,0x07,0x02,0x02,0x12,0x22,0x1f,0x02,0x00,0x01,0x00 - -, -/* @2768 (15x15,V)@ [suki software]*/ -0x80,0x80,0x80,0x80,0xbe,0xaa,0xaa,0xaa,0xaa,0xaa,0xbf,0x82,0xc0,0x80,0x00 - -, -0x20,0x10,0x08,0x07,0x04,0x08,0x10,0x1f,0x22,0x22,0x22,0x22,0x22,0x20,0x00 - -, -/* @2769 (15x15,V)@ [suki software]*/ -0xfc,0x04,0x04,0xfc,0x48,0x4a,0xea,0xaf,0x9a,0xca,0xae,0x8b,0xe8,0x08,0x00 - -, -0x07,0x01,0x01,0x03,0x00,0x00,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x00,0x00,0x00 - -, -/* @2770 (15x15,V)@ [suki software]*/ -0xfc,0x04,0x04,0xfc,0x10,0x48,0xc7,0x4c,0xd4,0x48,0x47,0xcc,0x54,0x04,0x00 - -, -0x07,0x01,0x01,0x03,0x28,0x24,0x23,0x24,0x3f,0x28,0x24,0x23,0x2c,0x20,0x00 - -, -/* @2771 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x10,0x92,0x92,0x92,0xfe,0x92,0x91,0xd1,0x98,0x10,0x00 - -, -0x10,0x08,0x07,0x08,0x10,0x2f,0x24,0x24,0x24,0x24,0x24,0x2f,0x20,0x20,0x00 - -, -/* @2772 (15x15,V)@ [suki software]*/ -0x40,0x20,0x10,0xfc,0x23,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0x30,0x20,0x00 - -, -0x00,0x00,0x00,0x3f,0x00,0x10,0x10,0x10,0x1f,0x10,0x10,0x18,0x10,0x00,0x00 - -, -/* @2773 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x20,0x24,0x24,0x24,0x3f,0x24,0xe4,0x26,0xa4,0x20,0x00 - -, -0x00,0x00,0x3f,0x00,0x01,0x01,0x03,0x0d,0x01,0x21,0x3f,0x01,0x01,0x01,0x00 - -, -/* @2774 (15x15,V)@ [suki software]*/ -0x2c,0x34,0xa4,0xfe,0xa3,0x2a,0x40,0x46,0x2a,0xd2,0x2a,0x47,0x42,0x40,0x00 - -, -0x04,0x03,0x00,0x3f,0x00,0x05,0x04,0x05,0x05,0x3f,0x05,0x05,0x05,0x04,0x00 - -, -/* @2775 (15x15,V)@ [suki software]*/ -0x20,0x18,0xef,0x08,0x18,0x28,0xd0,0x4c,0x4b,0xf8,0x48,0x48,0xec,0x48,0x00 - -, -0x00,0x00,0x1f,0x08,0x04,0x00,0x0f,0x00,0x00,0x3f,0x00,0x08,0x0f,0x00,0x00 - -, -/* @2776 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfc,0x44,0x44,0x44,0x44,0xfc,0x42,0x42,0x43,0x42,0x60,0x40,0x00 - -, -0x00,0x00,0x3f,0x10,0x08,0x08,0x04,0x01,0x06,0x08,0x10,0x10,0x20,0x3c,0x00 - -, -/* @2777 (15x15,V)@ [suki software]*/ -0x04,0x04,0xe4,0x24,0x24,0x25,0xfe,0x24,0x24,0x24,0x24,0xe4,0x06,0x04,0x00 - -, -0x00,0x00,0x1f,0x00,0x00,0x00,0x3f,0x00,0x00,0x08,0x10,0x0f,0x00,0x00,0x00 - -, -/* @2778 (15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x08,0x30,0x24,0x24,0x24,0x3f,0x24,0xe4,0x26,0xa4,0x20,0x00 - -, -0x00,0x00,0x3f,0x00,0x01,0x01,0x03,0x0d,0x21,0x21,0x1f,0x01,0x01,0x01,0x00 - -, -/* @2779 (15x15,V)@ [suki software]*/ -0x00,0x10,0x0c,0x94,0x94,0xd4,0xb5,0x96,0x94,0x94,0xd4,0x94,0x14,0x0c,0x00 - -, -0x00,0x20,0x20,0x24,0x24,0x24,0x24,0x3f,0x24,0x24,0x24,0x25,0x20,0x20,0x00 - -, -/* @2780 (15x15,V)@ [suki software]*/ -0x08,0x88,0x49,0xee,0x98,0x00,0x00,0xfe,0x02,0xfa,0x02,0x02,0xff,0x02,0x00 - -, -0x01,0x00,0x00,0x3f,0x00,0x21,0x10,0x09,0x06,0x01,0x1f,0x20,0x21,0x38,0x00 - -, -/* @2781 (15x15,V)@ [suki software]*/ -0x40,0x42,0xcc,0x00,0x08,0x48,0x48,0xc8,0x48,0x7f,0x88,0x0a,0x0c,0x08,0x00 - -, -0x00,0x00,0x3f,0x10,0x08,0x10,0x10,0x0f,0x08,0x08,0x03,0x0c,0x10,0x3c,0x00 - -, -/* @2782 (15x15,V)@ [suki software]*/ -0x00,0xf8,0x00,0x00,0xff,0x40,0x30,0xcf,0x08,0x08,0x88,0x78,0x0c,0x08,0x00 - -, -0x00,0x07,0x02,0x01,0x3f,0x20,0x20,0x10,0x09,0x06,0x09,0x10,0x30,0x10,0x00 - -, -/* @2783 (15x15,V)@ [suki software]*/ -0x00,0x24,0x24,0x24,0x24,0x24,0xfc,0x22,0x22,0x22,0x33,0x22,0x80,0x00,0x00 - -, -0x01,0x01,0x01,0x01,0x11,0x21,0x1f,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00 - -, -/* @2784 (15x15,V)@ [suki software]*/ -0x08,0x08,0x08,0xe9,0xaa,0xac,0xb8,0xa8,0xac,0xab,0xe8,0x08,0x0c,0x08,0x00 - -, -0x00,0x00,0x00,0x3f,0x14,0x14,0x14,0x14,0x14,0x14,0x3f,0x00,0x00,0x00,0x00 - -, -/* @2785 (15x15,V)@ [suki software]*/ -0x00,0x50,0x4c,0x44,0x44,0x44,0x45,0x46,0xf4,0x44,0x44,0x54,0x4c,0x00,0x00 - -, -0x00,0x00,0x00,0x01,0x06,0x00,0x10,0x20,0x1f,0x00,0x00,0x00,0x00,0x00,0x00 - -, -/* @2786 (15x15,V)@ [suki software]*/ -0x40,0x44,0x54,0x54,0xd4,0x74,0x5f,0x54,0x54,0x54,0xd4,0x56,0x44,0x40,0x00 - -, -0x10,0x08,0x04,0x02,0x01,0x03,0x0d,0x01,0x11,0x21,0x1f,0x01,0x01,0x00,0x00 - -, -/* @2787 (15x15,V)@ [suki software]*/ -0x08,0x08,0xff,0x88,0x48,0x62,0xa6,0xba,0xa6,0xba,0xa2,0xb1,0x6d,0x00,0x00 - -, -0x11,0x21,0x1f,0x00,0x20,0x20,0x10,0x11,0x0a,0x04,0x0a,0x11,0x30,0x10,0x00 - -, -/* @2788 (15x15,V)@ [suki software]*/ -0x20,0x10,0x08,0xff,0x54,0x54,0x55,0xfe,0x54,0x54,0x54,0x56,0x04,0x00,0x00 - -, -0x00,0x00,0x00,0x3f,0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x3d,0x01,0x00,0x00 - -, -/* @2789 (15x15,V)@ [suki software]*/ -0x80,0x62,0x26,0xba,0xa2,0xa6,0xba,0xa2,0xa2,0xb1,0x2d,0xa1,0x60,0x00,0x00 - -, -0x00,0x20,0x20,0x10,0x11,0x0a,0x04,0x04,0x0a,0x11,0x10,0x20,0x20,0x20,0x00 - -, -/* @2790 (15x15,V)@ [suki software]*/ -0x08,0x30,0x80,0xfe,0x02,0xfa,0xaa,0x83,0xfe,0x82,0xaa,0xaa,0xfa,0x02,0x00 - -, -0x21,0x11,0x0c,0x23,0x20,0x22,0x12,0x16,0x0b,0x0a,0x16,0x22,0x20,0x20,0x00 - -, -/* @2791 (15x15,V)@ [suki software]*/ -0x00,0x00,0x7c,0x54,0x55,0x56,0x7c,0x54,0x56,0x55,0x54,0x7c,0x00,0x00,0x00 - -, -0x01,0x01,0x01,0x3d,0x25,0x25,0x25,0x25,0x25,0x25,0x3d,0x01,0x01,0x01,0x00 - -, -/* @2792 (15x15,V)@ [suki software]*/ -0x02,0x92,0x12,0xd2,0x32,0x07,0x92,0xd2,0xb7,0x9a,0x92,0xd2,0x93,0x02,0x00 - -, -0x10,0x3f,0x10,0x0f,0x29,0x29,0x10,0x0e,0x00,0x3e,0x00,0x1e,0x20,0x38,0x00 - -, -/* @2793 (15x15,V)@ [suki software]*/ -0x10,0x90,0xff,0x50,0x90,0x00,0xfc,0x04,0x24,0x44,0x84,0x44,0x36,0x04,0x00 - -, -0x06,0x01,0x3f,0x00,0x01,0x00,0x3f,0x24,0x22,0x21,0x20,0x21,0x26,0x20,0x00 - -, -/* @2794 (15x15,V)@ [suki software]*/ -0x08,0xc8,0xff,0x28,0xc8,0x04,0xa4,0x34,0xad,0x26,0x24,0xb4,0x64,0x04,0x00, -0x03,0x00,0x3f,0x00,0x20,0x10,0x0f,0x00,0x1f,0x00,0x00,0x1f,0x20,0x38,0x00 -, -/* @2795 (15x15,V)@ [suki software]*/ -0x82,0x62,0x9e,0x12,0xf2,0x42,0x58,0x4e,0xc8,0xff,0x48,0x4c,0x48,0x40,0x00, -0x20,0x10,0x08,0x07,0x10,0x08,0x04,0x03,0x00,0x3f,0x01,0x06,0x18,0x08,0x00 - -, -/* @2796 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x28,0x22,0x22,0x2a,0xf2,0x2a,0x27,0xa2,0x60,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x00,0x00,0x10,0x20,0x1f,0x00,0x00,0x00,0x00,0x00 - -, -/* @2797 (15x15,V)@ [suki software]*/ -0x64,0x5c,0x47,0xf4,0x44,0xd4,0x48,0x54,0xd3,0x12,0x94,0x08,0xd0,0x10,0x00 - -, -0x04,0x0c,0x04,0x3f,0x02,0x3f,0x05,0x25,0x3f,0x00,0x0f,0x20,0x3f,0x00,0x00 - -, -/* @2798 (15x15,V)@ [suki software]*/ -0x20,0x20,0x20,0x20,0xff,0x24,0x24,0x00,0x7c,0x84,0x04,0xc4,0x3e,0x04,0x00 - -, -0x08,0x04,0x13,0x20,0x1f,0x00,0x01,0x26,0x10,0x09,0x06,0x09,0x30,0x10,0x00 - -, -/* @2799 (15x15,V)@ [suki software]*/ -0x50,0x48,0x54,0xf3,0x52,0x54,0x48,0x22,0x22,0x2a,0xf2,0x2a,0xa6,0x60,0x00 - -, -0x00,0x3e,0x12,0x13,0x12,0x3e,0x00,0x00,0x10,0x20,0x1f,0x00,0x00,0x00,0x00 - -, -/* @2800 (15x15,V)@ [suki software]*/ -0x10,0x21,0xc6,0x30,0x40,0x40,0xff,0x48,0x48,0xfc,0x04,0x84,0x7e,0x04,0x00 - -, -0x02,0x3f,0x00,0x04,0x03,0x10,0x1f,0x21,0x16,0x09,0x06,0x09,0x30,0x10,0x00 - -, -/* @2801 (15x15,V)@ [suki software]*/ -0x04,0xe4,0x04,0xf4,0x4c,0x40,0x24,0xb4,0x2d,0xa6,0x24,0xb4,0x66,0x04,0x00 - -, -0x08,0x1f,0x08,0x07,0x24,0x14,0x08,0x07,0x00,0x1f,0x00,0x3f,0x20,0x38,0x00 - -, -/* @2802 (15x15,V)@ [suki software]*/ -0x00,0x80,0x88,0x88,0x88,0xff,0x88,0x88,0x88,0x88,0xf9,0x82,0x86,0x00,0x00 - -, -0x00,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x08,0x10,0x08,0x07,0x00,0x00 - -, -/* @2803 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0xfa,0x02,0xfe,0x14,0xb4,0x54,0x1f,0xd4,0x14,0x36,0x14,0x00 - -, -0x20,0x13,0x0c,0x03,0x04,0x2b,0x22,0x22,0x13,0x0a,0x07,0x0a,0x12,0x22,0x00 - -, -/* @2804 (15x15,V)@ [suki software]*/ -0x04,0x04,0x74,0x55,0x56,0x54,0x74,0x14,0x50,0xff,0x10,0xf8,0x10,0x00,0x00 - -, -0x00,0x09,0x09,0x25,0x3d,0x07,0x25,0x10,0x0c,0x03,0x01,0x0f,0x10,0x3c,0x00 - -, -/* @2805 (15x15,V)@ [suki software]*/ -0x04,0x44,0x5c,0x55,0xd6,0x5c,0x04,0x0c,0xa8,0x7f,0x88,0xfc,0x08,0x80,0x00 - -, -0x00,0x21,0x19,0x05,0x07,0x31,0x02,0x01,0x08,0x30,0x00,0x09,0x32,0x07,0x00 - -, -/* @2806 (15x15,V)@ [suki software]*/ -0x02,0x02,0x02,0xba,0xaa,0xbf,0xea,0xaa,0xba,0xaf,0xaa,0x7a,0x02,0x02,0x00 - -, -0x08,0x0a,0x0a,0x06,0x3e,0x2a,0x2b,0x2a,0x2b,0x2a,0x2a,0x3e,0x03,0x02,0x00 - -, -/* @2807 (15x15,V)@ [suki software]*/ -0x80,0x80,0x80,0xbe,0xaa,0xaa,0xea,0xaa,0xaa,0xea,0xbf,0xa2,0x90,0x80,0x00 - -, -0x04,0x04,0x04,0x02,0x3e,0x2a,0x2b,0x2a,0x2a,0x2a,0x3e,0x00,0x00,0x00,0x00 - -, -/* @2808 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x22,0x22,0xfe,0x80,0xae,0xaa,0xfe,0xaa,0xae,0xca,0xaf,0x82,0x00 - -, -0x00,0x07,0x02,0x0a,0x0b,0x04,0x02,0x3e,0x2b,0x2a,0x2a,0x2a,0x3e,0x00,0x00 - -, -/* @2809 (15x15,V)@ [suki software]*/ -0x00,0x80,0x8e,0xaa,0xaa,0xae,0xfa,0xaa,0xae,0xca,0xaa,0x8f,0xc2,0x80,0x00 - -, -0x08,0x08,0x04,0x04,0x3e,0x2a,0x2b,0x2a,0x2a,0x2a,0x3e,0x00,0x00,0x00,0x00 - -, -/* @2810 (15x15,V)@ [suki software]*/ -0x80,0x80,0x5e,0xaa,0xba,0xae,0xea,0xaa,0xae,0xaa,0x2a,0x2f,0xe2,0x00,0x00 - -, -0x00,0x10,0x10,0x17,0x14,0x14,0x1f,0x14,0x1c,0x17,0x20,0x10,0x0f,0x00,0x00 - -, -/* @2811 (15x15,V)@ [suki software]*/ -0x08,0x48,0x4a,0x2a,0x9a,0x4a,0xbe,0x2a,0x49,0x99,0xa9,0x28,0x4c,0x08,0x00 - -, -0x02,0x12,0x11,0x09,0x0a,0x24,0x3f,0x04,0x04,0x0a,0x08,0x19,0x01,0x01,0x00 - -, -/* @2812 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0xaa,0x2a,0x29,0xe0,0xaa,0x2a,0x2a,0xea,0x3f,0x02,0x00,0x00 - -, -0x00,0x00,0x3f,0x22,0x15,0x00,0x3f,0x22,0x15,0x00,0x0f,0x10,0x20,0x3c,0x00 - -, -/* @2813 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x0a,0x0a,0xea,0xaa,0xaa,0xfa,0xaa,0xaa,0xef,0x02,0x00,0x00 - -, -0x20,0x18,0x07,0x00,0x3e,0x02,0x0a,0x0a,0x0f,0x0a,0x0e,0x22,0x3e,0x00,0x00 - -, -/* @2814 (15x15,V)@ [suki software]*/ -0x10,0x10,0x10,0x10,0x90,0x50,0xff,0x50,0x90,0x12,0x12,0x14,0x10,0x10,0x00 - -, -0x08,0x08,0x04,0x02,0x01,0x00,0x3f,0x00,0x00,0x01,0x02,0x04,0x0c,0x04,0x00 - -, -/* @2815 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x10,0x10,0x90,0x50,0xff,0x30,0x52,0x94,0x10,0x10,0x00 - -, -0x10,0x08,0x07,0x08,0x12,0x11,0x20,0x20,0x2f,0x20,0x20,0x20,0x23,0x20,0x00 - -, -/* @2816 (15x15,V)@ [suki software]*/ -0x10,0xd0,0xff,0x50,0x80,0x14,0x24,0xc4,0x3c,0x90,0x10,0xff,0x10,0x10,0x00 - -, -0x03,0x00,0x3f,0x00,0x09,0x04,0x03,0x00,0x07,0x10,0x21,0x1f,0x00,0x00,0x00 - -, -/* @2817 (15x15,V)@ [suki software]*/ -0x04,0x04,0xf4,0x94,0x94,0x94,0xff,0x94,0x94,0x94,0x94,0xf4,0x06,0x04,0x00 - -, -0x20,0x20,0x11,0x08,0x04,0x02,0x3f,0x01,0x02,0x04,0x08,0x11,0x30,0x10,0x00 - -, -/* @2818 (15x15,V)@ [suki software]*/ -0x00,0x00,0xf8,0x88,0x08,0x08,0x08,0xff,0x08,0x08,0x0a,0xec,0x08,0x08,0x00 - -, -0x20,0x18,0x07,0x00,0x21,0x22,0x10,0x10,0x0b,0x04,0x0b,0x10,0x20,0x3c,0x00 - -, -/* @2819 (15x15,V)@ [suki software]*/ -0x00,0x7e,0x00,0x00,0xff,0x42,0x46,0x2a,0x12,0x2a,0x47,0x42,0xc0,0x40,0x00 - -, -0x20,0x20,0x22,0x22,0x26,0x3a,0x22,0x23,0x32,0x2e,0x22,0x22,0x30,0x20,0x00 - -, -/* @2820 (15x15,V)@ [suki software]*/ -0x00,0xbe,0xaa,0xaa,0xfe,0xaa,0xbe,0x10,0x12,0x16,0xfa,0x16,0x53,0x32,0x00 - -, -0x20,0x22,0x22,0x22,0x27,0x26,0x24,0x3f,0x24,0x25,0x25,0x24,0x20,0x20,0x00 - -, -/* @2821 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfc,0x24,0x24,0xfc,0x25,0x26,0x24,0xfc,0x24,0x24,0x26,0x04,0x00 - -, -0x20,0x18,0x07,0x20,0x18,0x03,0x09,0x31,0x01,0x0b,0x30,0x00,0x08,0x30,0x00 - -, -/* @2822 (15x15,V)@ [suki software]*/ -0x08,0x4a,0x2c,0x18,0xff,0x2c,0x4a,0x28,0xf0,0x0f,0x08,0x88,0x7c,0x08,0x00 - -, -0x21,0x21,0x15,0x17,0x09,0x0d,0x13,0x20,0x10,0x0b,0x04,0x0b,0x10,0x20,0x00 - -, -/* @2823 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x00,0xf4,0x94,0xff,0x94,0xf4,0x10,0xef,0x08,0x28,0x18,0x00 - -, -0x04,0x3e,0x01,0x08,0x04,0x02,0x3f,0x22,0x14,0x0c,0x03,0x04,0x18,0x20,0x00 - -, -}, -//************************************** -{ -/* @2824 ˡ(15x15,V)@ [suki software]*/ -0x00,0x04,0x34,0xaf,0x44,0x64,0x9c,0x00,0xfc,0x84,0x84,0x84,0xfe,0x04,0x00 - -, -0x00,0x11,0x0d,0x00,0x1e,0x20,0x20,0x22,0x2d,0x20,0x38,0x02,0x04,0x0c,0x00 - -, -/* @2825 ˢ(15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x8a,0x8a,0xea,0x8a,0x8a,0x8e,0x00,0xfc,0x00,0xff,0x00,0x00 - -, -0x08,0x07,0x00,0x1f,0x00,0x3f,0x08,0x10,0x0f,0x00,0x17,0x20,0x1f,0x00,0x00 - -, -/* @2826 ˣ(15x15,V)@ [suki software]*/ -0x00,0x02,0x7a,0x0a,0x0a,0x7a,0x8e,0x0a,0x7a,0x0a,0x4a,0x7b,0x02,0x00,0x00 - -, -0x21,0x21,0x21,0x21,0x15,0x17,0x09,0x09,0x0d,0x13,0x11,0x31,0x01,0x01,0x00 - -, -/* @2827 ˤ(15x15,V)@ [suki software]*/ -0x08,0x08,0xff,0x88,0x48,0x94,0x44,0xb4,0x6d,0x26,0x94,0x64,0x96,0x04,0x00 - -, -0x11,0x21,0x1f,0x00,0x05,0x04,0x04,0x05,0x05,0x3f,0x05,0x05,0x04,0x04,0x00 - -, -/* @2828 ˥(15x15,V)@ [suki software]*/ -0x20,0x22,0x22,0xfa,0xaa,0xaa,0xab,0xaa,0xaa,0xfa,0x22,0x22,0x22,0x00,0x00 - -, -0x08,0x08,0x04,0x04,0x3e,0x12,0x11,0x0a,0x04,0x0a,0x0a,0x11,0x30,0x10,0x00 - -, -/* @2829 ˦(15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x92,0x92,0x92,0xfe,0x92,0x92,0x92,0x92,0xff,0x02,0x00,0x00 - -, -0x20,0x18,0x07,0x00,0x00,0x00,0x1f,0x20,0x20,0x24,0x28,0x27,0x20,0x38,0x00 - -, -/* @2830 ˧(15x15,V)@ [suki software]*/ -0x00,0xfc,0x00,0x00,0xff,0x00,0xf8,0x08,0x08,0xff,0x08,0x08,0xfc,0x08,0x00 - -, -0x00,0x23,0x10,0x0c,0x03,0x00,0x07,0x00,0x00,0x3f,0x02,0x04,0x03,0x00,0x00 - -, -/* @2831 ˨(15x15,V)@ [suki software]*/ -0x10,0x90,0x50,0xff,0x90,0x50,0x20,0x50,0x4c,0xc3,0x4c,0x50,0x20,0x20,0x00 - -, -0x02,0x01,0x00,0x3f,0x00,0x21,0x22,0x22,0x22,0x3f,0x22,0x22,0x32,0x20,0x00 - -, -/* @2832 ˩(15x15,V)@ [suki software]*/ -0x08,0x88,0xff,0x48,0x08,0x20,0x50,0x4c,0xc3,0x44,0x48,0x50,0x20,0x20,0x00 - -, -0x11,0x20,0x1f,0x00,0x20,0x22,0x22,0x22,0x3f,0x22,0x22,0x22,0x30,0x20,0x00 - -, -/* @2833 ˪(15x15,V)@ [suki software]*/ -0x20,0x18,0x2a,0xea,0x2a,0x0a,0x3e,0x8a,0xaa,0xaa,0x8b,0xaa,0x18,0x00,0x00 - -, -0x09,0x05,0x03,0x3f,0x05,0x09,0x00,0x3f,0x2a,0x2a,0x2a,0x3f,0x00,0x00,0x00 - -, -/* @2834 ˫(15x15,V)@ [suki software]*/ -0x04,0x24,0x44,0x84,0x64,0x1c,0x00,0x04,0x3c,0xc4,0x04,0xc4,0x3e,0x04,0x00 - -, -0x08,0x04,0x02,0x01,0x02,0x24,0x20,0x10,0x08,0x04,0x03,0x0c,0x10,0x20,0x00 - -, -/* @2835 ˬ(15x15,V)@ [suki software]*/ -0x04,0x44,0xac,0x14,0xac,0x04,0xff,0x04,0x44,0xac,0x14,0xac,0x04,0x00,0x00 - -, -0x20,0x24,0x12,0x11,0x0a,0x04,0x03,0x02,0x04,0x0a,0x11,0x12,0x20,0x20,0x00 - -, -/* @2836 ˭(15x15,V)@ [suki software]*/ -0x20,0x21,0xe2,0x06,0x20,0x10,0xfc,0x4b,0x48,0xf9,0x4e,0x48,0x4c,0x08,0x00 - -, -0x00,0x00,0x1f,0x08,0x04,0x00,0x3f,0x12,0x12,0x1f,0x12,0x12,0x1a,0x10,0x00 - -, -/* @2837 ˮ(15x15,V)@ [suki software]*/ -0x00,0x10,0x10,0x10,0xf0,0x00,0x00,0xff,0xc0,0x20,0x10,0x08,0x00,0x00,0x00 - -, -0x10,0x08,0x04,0x03,0x00,0x10,0x20,0x1f,0x00,0x01,0x02,0x04,0x08,0x08,0x00 - -, -/* @2838 ˯(15x15,V)@ [suki software]*/ -0x00,0xfe,0x22,0x22,0xfe,0x90,0xf2,0x92,0xfe,0x92,0x91,0xf1,0x98,0x90,0x00 - -, -0x00,0x1f,0x09,0x09,0x0f,0x24,0x27,0x24,0x3f,0x24,0x24,0x27,0x24,0x04,0x00 - -, -/* @2839 ˰(15x15,V)@ [suki software]*/ -0x14,0x14,0x94,0xfe,0x53,0x92,0x00,0xf9,0x8e,0x88,0x8c,0x8b,0xf8,0x00,0x00 - -, -0x04,0x03,0x00,0x3f,0x00,0x21,0x10,0x08,0x07,0x00,0x1f,0x20,0x20,0x38,0x00 - -, -/* @2840 ˱(15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0x04,0xfc,0x20,0x30,0xec,0x23,0x10,0xd4,0x18,0x30,0x00,0x00 - -, -0x00,0x07,0x01,0x21,0x23,0x10,0x08,0x07,0x00,0x00,0x1f,0x20,0x20,0x38,0x00 - -, -/* @2841 ˲(15x15,V)@ [suki software]*/ -0xfe,0x22,0x22,0xfe,0x00,0xb6,0xda,0x96,0x1a,0x92,0x99,0xd5,0xb1,0x90,0x00 - -, -0x1f,0x09,0x09,0x2f,0x11,0x0a,0x04,0x03,0x04,0x07,0x04,0x3f,0x04,0x04,0x00 - -, -/* @2842 ˳(15x15,V)@ [suki software]*/ -0x00,0xfe,0x00,0xfc,0x00,0xfe,0x02,0xfa,0x0a,0x0e,0xea,0x0a,0xfb,0x02,0x00 - -, -0x30,0x0f,0x00,0x0f,0x00,0x1f,0x20,0x27,0x10,0x0c,0x03,0x08,0x17,0x30,0x00 - -, -/* @2843 ˴(15x15,V)@ [suki software]*/ -0x40,0x32,0x16,0xda,0x92,0x96,0x1a,0x92,0x92,0x99,0xd5,0x91,0xb0,0x00,0x00 - -, -0x24,0x22,0x11,0x0a,0x04,0x03,0x00,0x06,0x05,0x04,0x3f,0x04,0x04,0x04,0x00 - -, -/* @2844 ˵(15x15,V)@ [suki software]*/ -0x20,0x20,0xe1,0x06,0x00,0x00,0xf9,0x8e,0x88,0x88,0x8c,0xfb,0x00,0x00,0x00 - -, -0x00,0x00,0x1f,0x08,0x24,0x20,0x10,0x0c,0x03,0x00,0x3f,0x20,0x20,0x38,0x00 - -, -/* @2845 ˶(15x15,V)@ [suki software]*/ -0x82,0x42,0xf2,0x2e,0x22,0xe2,0x00,0xfa,0x0a,0xee,0x0a,0x0a,0xfb,0x02,0x00 - -, -0x00,0x00,0x0f,0x04,0x04,0x2f,0x20,0x17,0x08,0x07,0x00,0x08,0x17,0x30,0x00 - -, -/* @2846 ˷(15x15,V)@ [suki software]*/ -0x08,0xe8,0x0a,0x0c,0xf8,0x0c,0xea,0x00,0xfe,0x22,0x22,0x22,0xff,0x02,0x00 - -, -0x00,0x21,0x11,0x09,0x07,0x21,0x13,0x08,0x07,0x01,0x11,0x21,0x1f,0x00,0x00 - -, -/* @2847 ˸(15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x20,0x18,0x40,0x7c,0x44,0x44,0xfa,0x42,0x43,0x42,0x40,0x00 - -, -0x20,0x18,0x07,0x02,0x14,0x08,0x04,0x13,0x20,0x1f,0x00,0x02,0x04,0x18,0x00 - -, -/* @2848 ˹(15x15,V)@ [suki software]*/ -0x00,0x04,0xff,0x54,0x54,0xff,0x04,0x00,0xfc,0x24,0x24,0xe2,0x23,0x22,0x00 - -, -0x22,0x12,0x0f,0x02,0x02,0x07,0x2a,0x10,0x0f,0x00,0x00,0x3f,0x00,0x00,0x00 - -, -/* @2849 ˺(15x15,V)@ [suki software]*/ -0x08,0x88,0xff,0x48,0x08,0xff,0xa8,0xff,0x08,0x00,0xfc,0x24,0xe2,0x22,0x00 - -, -0x11,0x20,0x1f,0x20,0x12,0x0b,0x02,0x2b,0x12,0x08,0x07,0x00,0x3f,0x00,0x00 - -, -/* @2850 ˻(15x15,V)@ [suki software]*/ -0xfc,0x04,0x04,0xfc,0x08,0xff,0xa8,0xff,0x08,0x08,0xfc,0x24,0xe2,0x22,0x00 - -, -0x07,0x01,0x01,0x23,0x12,0x0f,0x02,0x07,0x2a,0x12,0x0f,0x00,0x3f,0x00,0x00 - -, -/* @2851 ˼(15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0xfe,0x92,0x92,0x92,0xfe,0x92,0x92,0x92,0xff,0x02,0x00,0x00 - -, -0x00,0x10,0x0c,0x01,0x1e,0x20,0x21,0x22,0x24,0x20,0x20,0x3a,0x04,0x08,0x00 - -, -/* @2852 ˽(15x15,V)@ [suki software]*/ -0x00,0x24,0x24,0xa4,0xfe,0xa3,0x32,0x20,0x80,0x60,0x1e,0x00,0x00,0x00,0x00 - -, -0x04,0x02,0x01,0x00,0x3f,0x00,0x09,0x0e,0x09,0x08,0x08,0x09,0x0e,0x18,0x00 - -, -/* @2853 ˾(15x15,V)@ [suki software]*/ -0x10,0x12,0xd2,0x52,0x52,0x52,0x52,0xd2,0x1a,0x12,0x02,0xff,0x02,0x00,0x00 - -, -0x00,0x00,0x07,0x02,0x02,0x02,0x02,0x07,0x00,0x10,0x20,0x1f,0x00,0x00,0x00 - -, -/* @2854 ˿(15x15,V)@ [suki software]*/ -0x00,0x20,0x38,0xa7,0x60,0x18,0x00,0x30,0x28,0xa7,0x60,0x18,0x00,0x00,0x00 - -, -0x10,0x12,0x17,0x12,0x12,0x12,0x10,0x12,0x17,0x12,0x12,0x12,0x1a,0x10,0x00 - -, -/* @2855 (15x15,V)@ [suki software]*/ -0x02,0x02,0xc2,0x32,0x2e,0x22,0xe2,0x02,0xfe,0x82,0x42,0x22,0x33,0x02,0x00 - -, -0x22,0x21,0x10,0x0b,0x04,0x03,0x00,0x00,0x1f,0x20,0x20,0x20,0x20,0x3c,0x00 - -, -/* @2856 (15x15,V)@ [suki software]*/ -0x80,0x80,0xfe,0xaa,0xaa,0xaa,0x50,0x52,0x52,0xff,0x52,0x7e,0x10,0x10,0x00 - -, -0x00,0x0c,0x0a,0x09,0x0c,0x18,0x05,0x05,0x05,0x3f,0x05,0x05,0x05,0x04,0x00 - -, -/* @2857 (15x15,V)@ [suki software]*/ -0x20,0x24,0x24,0x24,0x24,0x24,0x3f,0x24,0x24,0xe4,0x24,0x26,0x34,0x20,0x00 - -, -0x00,0x01,0x01,0x01,0x03,0x0d,0x01,0x11,0x21,0x1f,0x01,0x01,0x01,0x00,0x00 - -, -/* @2858 (15x15,V)@ [suki software]*/ -0xe0,0x2e,0xea,0x2a,0xea,0x2e,0xe0,0x0a,0xea,0x2a,0xea,0x0a,0xff,0x02,0x00 - -, -0x3f,0x01,0x1f,0x01,0x1f,0x21,0x3f,0x00,0x07,0x02,0x13,0x20,0x1f,0x00,0x00 - -, -/* @2859 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0x02,0x02,0xfe,0x02,0x02,0xfe,0x02,0x02,0x02,0xff,0x02,0x00 - -, -0x00,0x3f,0x14,0x12,0x11,0x10,0x10,0x10,0x11,0x12,0x12,0x12,0x3f,0x00,0x00 - -, -/* @2860 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x10,0x12,0xd2,0x52,0x52,0xd2,0x12,0x02,0xff,0x02,0x00 - -, -0x00,0x00,0x3f,0x00,0x00,0x00,0x07,0x02,0x02,0x07,0x10,0x20,0x1f,0x00,0x00 - -, -/* @2861 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x00,0xfc,0x00,0x04,0x08,0x30,0x00,0x00,0xfe,0x00,0x00 - -, -0x00,0x00,0x3f,0x00,0x00,0x2f,0x24,0x12,0x11,0x08,0x04,0x03,0x04,0x18,0x00 - -, -/* @2862 (15x15,V)@ [suki software]*/ -0x20,0x18,0xef,0x08,0x18,0x08,0xd2,0x52,0x52,0x52,0xd2,0x02,0xff,0x02,0x00 - -, -0x00,0x00,0x1f,0x08,0x04,0x00,0x07,0x02,0x02,0x02,0x17,0x20,0x1f,0x00,0x00 - -, -/* @2863 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x7f,0x02,0x00,0x00,0x00 - -, -0x00,0x00,0x0f,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x1e,0x00,0x00 - -, -/* @2864 (15x15,V)@ [suki software]*/ -0x08,0xc8,0xff,0x48,0x88,0x40,0x30,0x0e,0x00,0xc0,0x0f,0x30,0x40,0x80,0x00 - -, -0x03,0x00,0x3f,0x00,0x00,0x00,0x10,0x1c,0x13,0x10,0x14,0x18,0x30,0x00,0x00 - -, -/* @2865 (15x15,V)@ [suki software]*/ -0x20,0x50,0x48,0x47,0xc4,0x68,0x50,0x48,0x47,0xc4,0x48,0x50,0x30,0x10,0x00 - -, -0x10,0x10,0x10,0x10,0x1f,0x15,0x15,0x15,0x15,0x3f,0x08,0x08,0x08,0x00,0x00 - -, -/* @2866 (15x15,V)@ [suki software]*/ -0x00,0x80,0x40,0x30,0x0f,0x10,0xa0,0x40,0x30,0x0f,0x30,0x40,0x80,0x00,0x00 - -, -0x01,0x10,0x0c,0x00,0x1e,0x21,0x20,0x22,0x24,0x20,0x38,0x02,0x0c,0x01,0x00 - -, -/* @2867 (15x15,V)@ [suki software]*/ -0x40,0x30,0x8e,0x60,0x06,0x38,0x02,0xfa,0x0a,0x0e,0xea,0x0a,0xfb,0x02,0x00 - -, -0x04,0x0e,0x05,0x04,0x05,0x0e,0x20,0x27,0x10,0x08,0x07,0x08,0x17,0x30,0x00 - -, -/* @2868 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x00,0x48,0x49,0x4e,0xf8,0x4c,0x4b,0x48,0x48,0x00,0x00 - -, -0x10,0x08,0x07,0x08,0x10,0x28,0x24,0x22,0x21,0x21,0x22,0x24,0x28,0x20,0x00 - -, -/* @2869 (15x15,V)@ [suki software]*/ -0x00,0x50,0x4c,0x44,0x44,0x44,0xc5,0xf6,0x44,0x44,0x44,0x44,0x54,0x0c,0x00 - -, -0x10,0x10,0x08,0x04,0x02,0x01,0x00,0x3f,0x01,0x02,0x04,0x08,0x18,0x08,0x00 - -, -/* @2870 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe2,0x06,0x80,0x40,0x30,0x0e,0xc0,0x00,0x0e,0x30,0x40,0x80,0x00 - -, -0x00,0x00,0x1f,0x08,0x04,0x10,0x38,0x16,0x11,0x10,0x14,0x18,0x30,0x00,0x00 - -, -/* @2871 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x00,0x02,0xf2,0x92,0x96,0xfa,0x96,0x93,0xf2,0x00,0x00 - -, -0x00,0x00,0x1f,0x08,0x04,0x00,0x3f,0x02,0x02,0x3f,0x02,0x22,0x3f,0x00,0x00 - -, -/* @2872 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x00,0x7c,0x52,0x40,0xff,0x40,0x54,0x7c,0x00,0x00 - -, -0x01,0x11,0x20,0x1f,0x20,0x21,0x21,0x13,0x15,0x09,0x15,0x13,0x21,0x20,0x00 - -, -/* @2873 (15x15,V)@ [suki software]*/ -0x40,0xfc,0x44,0x77,0x44,0xfc,0x00,0x7c,0x52,0xff,0x40,0x54,0x7c,0x00,0x00 - -, -0x30,0x0f,0x00,0x13,0x20,0x1f,0x21,0x23,0x15,0x09,0x15,0x13,0x21,0x20,0x00 - -, -/* @2874 (15x15,V)@ [suki software]*/ -0x08,0x88,0xff,0x48,0x2a,0x18,0xff,0x2c,0x4a,0x30,0xcf,0x08,0xf8,0x08,0x00 - -, -0x11,0x20,0x1f,0x00,0x21,0x17,0x09,0x0d,0x33,0x10,0x08,0x07,0x08,0x30,0x00 - -, -/* @2875 (15x15,V)@ [suki software]*/ -0xfc,0x04,0xfc,0x00,0xf4,0x94,0xff,0x94,0xf4,0x10,0xef,0x08,0x28,0x18,0x00 - -, -0x07,0x01,0x03,0x08,0x04,0x02,0x3f,0x21,0x12,0x0c,0x03,0x0c,0x10,0x20,0x00 - -, -/* @2876 (15x15,V)@ [suki software]*/ -0x04,0x04,0x44,0x44,0x44,0x4f,0xf4,0x44,0x44,0x4f,0xe4,0x44,0x06,0x04,0x00 - -, -0x00,0x20,0x24,0x13,0x08,0x04,0x03,0x10,0x20,0x10,0x0f,0x01,0x02,0x04,0x00 - -, -/* @2877 (15x15,V)@ [suki software]*/ -0x02,0xfa,0x8e,0x7a,0x8e,0x8a,0xfa,0x24,0x24,0xa4,0xfe,0xa3,0x32,0x20,0x00 - -, -0x00,0x3f,0x12,0x12,0x12,0x12,0x3f,0x04,0x03,0x00,0x3f,0x01,0x06,0x04,0x00 - -, -/* @2878 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x00,0x88,0x44,0x23,0x18,0x21,0x42,0x84,0x88,0x80,0x00 - -, -0x00,0x00,0x3f,0x00,0x01,0x00,0x3f,0x11,0x11,0x11,0x11,0x3f,0x00,0x00,0x00 - -, -/* @2879 (15x15,V)@ [suki software]*/ -0x00,0x20,0x22,0xaa,0xaa,0xea,0xaa,0xbf,0xaa,0x6a,0x2a,0x2a,0x32,0x20,0x00 - -, -0x00,0x10,0x12,0x0a,0x06,0x12,0x23,0x1e,0x02,0x06,0x0b,0x12,0x16,0x00,0x00 - -, -/* @2880 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x04,0x74,0x54,0x54,0xff,0xd4,0x54,0x74,0x06,0x04,0x00 - -, -0x10,0x08,0x07,0x08,0x10,0x24,0x22,0x21,0x2f,0x20,0x21,0x22,0x24,0x20,0x00 - -, -/* @2881 (15x15,V)@ [suki software]*/ -0x02,0x02,0x3a,0xaa,0x2a,0x3e,0xea,0x2a,0x3e,0xaa,0x2a,0x3a,0x03,0x02,0x00 - -, -0x12,0x12,0x12,0x0a,0x07,0x02,0x3f,0x02,0x07,0x0a,0x0a,0x12,0x13,0x02,0x00 - -, -/* @2882 (15x15,V)@ [suki software]*/ -0x20,0x10,0xfc,0x03,0x02,0xba,0x2a,0x3e,0xea,0x3e,0x2a,0xaa,0x3b,0x02,0x00 - -, -0x00,0x00,0x3f,0x02,0x12,0x0a,0x07,0x02,0x3f,0x02,0x07,0x0a,0x12,0x12,0x00 - -, -/* @2883 (15x15,V)@ [suki software]*/ -0x04,0x74,0x45,0x46,0xfc,0x46,0x75,0x00,0xfe,0x4a,0x4a,0x4a,0xff,0x02,0x00 - -, -0x00,0x24,0x2a,0x29,0x28,0x28,0x2a,0x3d,0x28,0x28,0x29,0x2a,0x21,0x00,0x00 - -, -/* @2884 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x00,0xe9,0x0a,0xfc,0x0a,0xe9,0x00,0xfe,0x12,0xff,0x02,0x00 - -, -0x02,0x3e,0x01,0x20,0x11,0x09,0x07,0x21,0x11,0x0c,0x13,0x21,0x1f,0x00,0x00 - -, -/* @2885 (15x15,V)@ [suki software]*/ -0x10,0x8c,0xc4,0x34,0x04,0x14,0x95,0x96,0xd4,0xb4,0x94,0x94,0x0c,0x04,0x00 - -, -0x01,0x00,0x3f,0x00,0x00,0x00,0x3f,0x24,0x24,0x24,0x24,0x3f,0x00,0x00,0x00 - -, -/* @2886 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe2,0x06,0x00,0x00,0xfe,0x12,0x92,0x92,0xf1,0x11,0x11,0x10,0x00 - -, -0x00,0x00,0x0f,0x24,0x12,0x0c,0x03,0x00,0x00,0x00,0x3f,0x01,0x01,0x02,0x00 - -, -/* @2887 (15x15,V)@ [suki software]*/ -0x00,0x08,0x4a,0x4a,0x4a,0x4a,0xff,0x4a,0x4a,0x4a,0x4a,0x7e,0x08,0x08,0x00 - -, -0x20,0x10,0x0f,0x08,0x07,0x00,0x3f,0x00,0x01,0x0e,0x00,0x3f,0x00,0x00,0x00 - -, -/* @2888 (15x15,V)@ [suki software]*/ -0x02,0xf2,0x1e,0xf2,0x1e,0xf3,0x02,0x4c,0x2a,0xd9,0x88,0x9a,0xac,0x48,0x00 - -, -0x00,0x3f,0x15,0x14,0x15,0x1f,0x20,0x22,0x23,0x14,0x08,0x16,0x21,0x20,0x00 - -, -/* @2889 (15x15,V)@ [suki software]*/ -0x84,0x94,0x94,0x94,0x94,0x9f,0x84,0x04,0x94,0x9f,0x94,0x94,0x96,0x84,0x00 - -, -0x08,0x16,0x20,0x1f,0x02,0x04,0x10,0x08,0x16,0x20,0x1f,0x02,0x04,0x18,0x00 - -, -/* @2890 (15x15,V)@ [suki software]*/ -0x10,0x08,0x04,0xf3,0x56,0x5a,0x52,0x54,0x53,0x52,0xf6,0x0a,0x02,0x02,0x00 - -, -0x04,0x24,0x24,0x15,0x0f,0x05,0x05,0x05,0x05,0x3f,0x05,0x04,0x04,0x00,0x00 - -, -/* @2891 (15x15,V)@ [suki software]*/ -0x00,0x00,0xc0,0x5e,0x52,0x52,0xf2,0x52,0x52,0x52,0x5f,0xc2,0x00,0x00,0x00 - -, -0x10,0x30,0x17,0x12,0x12,0x12,0x1f,0x12,0x12,0x12,0x12,0x17,0x18,0x30,0x00 - -, -/* @2892 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x12,0x2a,0xc6,0x20,0x32,0xae,0xab,0xba,0xaa,0xaa,0xaa,0x22,0x00 - -, -0x00,0x3f,0x02,0x04,0x03,0x00,0x00,0x3f,0x0a,0x0a,0x0a,0x2a,0x3f,0x00,0x00 - -, -/* @2893 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x12,0x2a,0xc6,0x58,0xc4,0x24,0xfc,0x57,0x54,0x54,0xf6,0x04,0x00 - -, -0x00,0x3f,0x02,0x04,0x23,0x10,0x0f,0x10,0x2f,0x21,0x21,0x29,0x2f,0x20,0x00 - -, -/* @2894 (15x15,V)@ [suki software]*/ -0x20,0x30,0xac,0x63,0x18,0x84,0x8c,0xb4,0xc6,0x9a,0x82,0x91,0x8d,0x80,0x00 - -, -0x12,0x13,0x12,0x09,0x09,0x20,0x20,0x16,0x15,0x08,0x0c,0x13,0x30,0x00,0x00 - -, -/* @2895 (15x15,V)@ [suki software]*/ -0x30,0xde,0x5a,0x52,0xde,0x70,0x4c,0xe2,0x3a,0xef,0xba,0xaa,0xea,0x22,0x00 - -, -0x00,0x3f,0x05,0x25,0x3f,0x20,0x10,0x0f,0x10,0x2f,0x22,0x2a,0x2f,0x20,0x00 - -, -/* @2896 (15x15,V)@ [suki software]*/ -0x84,0xe4,0x5c,0x44,0xc4,0x80,0x44,0x3c,0x45,0x46,0x24,0x1c,0x64,0x00,0x00 - -, -0x00,0x1f,0x08,0x08,0x1f,0x02,0x02,0x02,0x02,0x3f,0x02,0x02,0x02,0x02,0x00 - -, -/* @2897 (15x15,V)@ [suki software]*/ -0x00,0x00,0x1e,0x10,0x90,0xf0,0x90,0x9f,0x90,0x90,0x90,0x9e,0x00,0x00,0x00 - -, -0x00,0x24,0x22,0x21,0x21,0x12,0x14,0x08,0x04,0x02,0x01,0x00,0x00,0x00,0x00 - -, -/* @2898 (15x15,V)@ [suki software]*/ -0x12,0x92,0x52,0xff,0x51,0x90,0xfa,0xaa,0xaa,0xff,0xaa,0xaa,0xfa,0x02,0x00 - -, -0x06,0x01,0x00,0x3f,0x20,0x1a,0x02,0x1e,0x22,0x27,0x2a,0x32,0x0b,0x16,0x00 - -, -/* @2899 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x40,0x48,0xa9,0x5e,0x28,0xcc,0x4b,0xa8,0x1c,0x08,0x00 - -, -0x10,0x08,0x07,0x08,0x10,0x25,0x24,0x22,0x29,0x28,0x27,0x20,0x21,0x22,0x00 - -, -/* @2900 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x12,0x2e,0xc0,0x5c,0xc0,0x09,0xaa,0x58,0xec,0x8a,0x49,0x28,0x00 - -, -0x00,0x3f,0x02,0x04,0x23,0x10,0x0f,0x15,0x22,0x29,0x2f,0x20,0x21,0x22,0x00 - -, -/* @2901 (15x15,V)@ [suki software]*/ -0x00,0x00,0xbe,0xa8,0xa8,0xa8,0xa8,0xbf,0xa8,0xa8,0xa8,0xae,0x30,0x00,0x00 - -, -0x02,0x12,0x12,0x0a,0x06,0x12,0x22,0x1e,0x02,0x02,0x06,0x0a,0x12,0x02,0x00 - -, -/* @2902 (15x15,V)@ [suki software]*/ -0x02,0x02,0x82,0xf2,0x4a,0x26,0x00,0xf0,0x00,0xff,0x00,0x30,0xc0,0x00,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x04,0x03,0x10,0x20,0x1f,0x00,0x00,0x00,0x07,0x00 - -, -/* @2903 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x00,0xc0,0x5e,0x52,0xd2,0x52,0x5f,0xc2,0x00,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x20,0x2f,0x10,0x08,0x07,0x08,0x10,0x2f,0x20,0x00 - -, -/* @2904 (15x15,V)@ [suki software]*/ -0x10,0x88,0xa4,0xa3,0xa6,0xea,0xa2,0xa8,0xa7,0xa2,0xe6,0x8a,0x82,0x82,0x00 - -, -0x20,0x20,0x24,0x14,0x0c,0x07,0x04,0x04,0x04,0x04,0x0f,0x00,0x00,0x00,0x00 - -, -/* @2905 (15x15,V)@ [suki software]*/ -0x00,0x8a,0x8a,0xea,0xaf,0xaa,0xaa,0xae,0xaa,0xaf,0xea,0x8a,0xca,0x80,0x00 - -, -0x10,0x10,0x10,0x0b,0x3e,0x22,0x12,0x12,0x06,0x0a,0x17,0x12,0x30,0x10,0x00 - -, -/* @2906 (15x15,V)@ [suki software]*/ -0x08,0xc8,0xff,0x48,0x88,0x00,0x48,0xac,0xdb,0x88,0x9a,0xac,0x68,0x00,0x00 - -, -0x03,0x00,0x3f,0x00,0x00,0x24,0x22,0x11,0x0a,0x04,0x0a,0x11,0x30,0x10,0x00 - -, -/* @2907 (15x15,V)@ [suki software]*/ -0xfc,0x04,0x04,0xfc,0x00,0x48,0x2c,0xda,0x89,0x88,0x9a,0xac,0x68,0x00,0x00 - -, -0x07,0x01,0x01,0x03,0x20,0x24,0x22,0x11,0x0a,0x04,0x0a,0x11,0x30,0x10,0x00 - -, -/* @2908 (15x15,V)@ [suki software]*/ -0x30,0xa8,0x66,0x30,0x80,0x4c,0xf4,0x04,0xd5,0x56,0x74,0x54,0xdc,0x14,0x00 - -, -0x09,0x09,0x05,0x05,0x00,0x00,0x3f,0x00,0x3f,0x12,0x12,0x12,0x3f,0x00,0x00 - -, -/* @2909 (15x15,V)@ [suki software]*/ -0x44,0x44,0xfc,0x44,0x44,0x00,0xf2,0x14,0x10,0xdf,0x10,0x14,0xf2,0x00,0x00 - -, -0x08,0x08,0x0f,0x04,0x24,0x20,0x17,0x10,0x08,0x07,0x08,0x10,0x37,0x00,0x00 - -, -/* @2910 (15x15,V)@ [suki software]*/ -0x40,0x30,0x14,0x94,0xd4,0xb4,0x94,0x9f,0x54,0x54,0x14,0x56,0x34,0x00,0x00 - -, -0x00,0x20,0x12,0x0a,0x02,0x13,0x22,0x1e,0x02,0x02,0x0b,0x16,0x20,0x00,0x00 - -, -/* @2911 (15x15,V)@ [suki software]*/ -0x20,0x38,0xe7,0x24,0x24,0x04,0xf2,0x14,0x10,0xdf,0x10,0x14,0xf2,0x00,0x00 - -, -0x01,0x01,0x1f,0x11,0x09,0x21,0x27,0x10,0x08,0x07,0x08,0x08,0x17,0x20,0x00 - -, -/* @2912 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfc,0x94,0x92,0xf3,0x02,0xfc,0x24,0x24,0x22,0xe3,0x32,0x20,0x00 - -, -0x20,0x18,0x07,0x00,0x20,0x11,0x0c,0x03,0x00,0x00,0x00,0x3f,0x00,0x00,0x00 - -, -/* @2913 (15x15,V)@ [suki software]*/ -0x10,0x10,0xff,0x10,0x10,0x80,0xbe,0xaa,0xaa,0x2a,0xaa,0xbf,0x82,0x00,0x00 - -, -0x04,0x0c,0x07,0x02,0x02,0x08,0x0a,0x24,0x3f,0x00,0x0a,0x24,0x3f,0x00,0x00 - -, -/* @2914 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x40,0x40,0xf8,0x20,0xff,0x20,0x10,0x10,0xf8,0x10,0x00 - -, -0x00,0x00,0x3f,0x00,0x00,0x00,0x1f,0x20,0x27,0x20,0x21,0x22,0x21,0x3c,0x00 - -, -/* @2915 (15x15,V)@ [suki software]*/ -0x10,0x0c,0x04,0x04,0xe4,0x04,0x05,0x86,0x84,0x44,0x04,0x14,0x0c,0x00,0x00 - -, -0x00,0x00,0x00,0x00,0x1f,0x21,0x21,0x20,0x20,0x20,0x20,0x20,0x3c,0x00,0x00 - -, -/* @2916 (15x15,V)@ [suki software]*/ -0x08,0x08,0xf8,0x0f,0x08,0xf8,0x20,0xfc,0x20,0xff,0x10,0x10,0xf8,0x10,0x00 - -, -0x20,0x11,0x0a,0x04,0x0a,0x11,0x00,0x1f,0x20,0x27,0x21,0x22,0x21,0x38,0x00 - -, -/* @2917 (15x15,V)@ [suki software]*/ -0x10,0x10,0xff,0x10,0x94,0x84,0x4f,0xa4,0x94,0xa4,0xcf,0x44,0x86,0x84,0x00 - -, -0x04,0x0c,0x07,0x02,0x02,0x00,0x3e,0x12,0x12,0x12,0x12,0x3e,0x00,0x00,0x00 - -, -}, -//************************************** -{ -/* @2918 ̡(15x15,V)@ [suki software]*/ -0x22,0x94,0xf8,0x07,0xf4,0x94,0xff,0x94,0xf4,0xf8,0x17,0xd4,0x1e,0xf4,0x00 - -, -0x11,0x20,0x1f,0x08,0x04,0x02,0x3f,0x04,0x28,0x17,0x08,0x07,0x08,0x37,0x00 - -, -/* @2919 ̢(15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x42,0xcc,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x00 - -, -0x01,0x11,0x20,0x1f,0x20,0x10,0x0f,0x10,0x14,0x23,0x20,0x21,0x26,0x20,0x00 - -, -/* @2920 ̣(15x15,V)@ [suki software]*/ -0x00,0x9e,0x12,0xf2,0x9e,0x00,0x80,0xbe,0xaa,0x2a,0xaa,0xaa,0xbf,0x82,0x00 - -, -0x08,0x1f,0x08,0x07,0x04,0x08,0x15,0x22,0x1f,0x00,0x08,0x15,0x22,0x1f,0x00 - -, -/* @2921 ̤(15x15,V)@ [suki software]*/ -0x00,0x9e,0x12,0xf2,0x92,0xde,0x24,0x1c,0x40,0x7f,0x04,0x18,0x24,0x40,0x00 - -, -0x10,0x3f,0x10,0x0f,0x08,0x08,0x3f,0x15,0x15,0x15,0x15,0x15,0x3f,0x00,0x00 - -, -/* @2922 ̥(15x15,V)@ [suki software]*/ -0x00,0xfe,0x92,0x92,0xfe,0x00,0x20,0xb0,0xac,0xa3,0xa0,0xa8,0xb0,0x60,0x00 - -, -0x30,0x0f,0x10,0x20,0x1f,0x00,0x00,0x3f,0x10,0x10,0x10,0x10,0x3f,0x00,0x00 - -, -/* @2923 ̦(15x15,V)@ [suki software]*/ -0x04,0x04,0x44,0xc4,0x6f,0x54,0x4c,0x44,0x44,0x5f,0x64,0x44,0x86,0x04,0x00 - -, -0x00,0x00,0x00,0x3e,0x12,0x12,0x12,0x12,0x12,0x12,0x3e,0x00,0x00,0x00,0x00 - -, -/* @2924 ̧(15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x28,0xb0,0xa8,0xa4,0xa3,0xa0,0xa8,0xb0,0x60,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x00,0x3f,0x10,0x10,0x10,0x10,0x10,0x3f,0x00,0x00 - -, -/* @2925 ̨(15x15,V)@ [suki software]*/ -0x00,0x20,0x60,0x30,0x28,0x24,0x23,0x20,0x20,0x24,0x28,0x30,0x60,0x00,0x00 - -, -0x00,0x00,0x00,0x3f,0x11,0x11,0x11,0x11,0x11,0x11,0x3f,0x00,0x00,0x00,0x00 - -, -/* @2926 ̩(15x15,V)@ [suki software]*/ -0x40,0x44,0x54,0x54,0xd4,0x74,0xdf,0x54,0x54,0xd4,0x54,0x56,0x44,0x40,0x00 - -, -0x04,0x04,0x12,0x11,0x0a,0x28,0x3f,0x04,0x0a,0x0a,0x11,0x02,0x04,0x04,0x00 - -, -/* @2927 ̪(15x15,V)@ [suki software]*/ -0x02,0xfa,0x8e,0x7a,0x8e,0xfa,0x02,0x10,0x10,0xff,0x10,0x10,0x18,0x10,0x00 - -, -0x00,0x3f,0x12,0x12,0x12,0x3f,0x20,0x18,0x07,0x04,0x0b,0x04,0x18,0x20,0x00 - -, -/* @2928 ̫(15x15,V)@ [suki software]*/ -0x10,0x10,0x10,0x10,0x10,0x90,0x7f,0x50,0x90,0x10,0x10,0x10,0x18,0x10,0x00 - -, -0x20,0x20,0x10,0x08,0x06,0x01,0x04,0x18,0x01,0x02,0x04,0x08,0x30,0x10,0x00 - -, -/* @2929 ̬(15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0x88,0x48,0x38,0x4f,0x98,0x28,0x48,0x48,0x88,0x8c,0x88,0x00 - -, -0x01,0x11,0x0c,0x00,0x1e,0x20,0x22,0x24,0x21,0x20,0x38,0x02,0x0d,0x00,0x00 - -, -/* @2930 ̭(15x15,V)@ [suki software]*/ -0x10,0x21,0x86,0x60,0x10,0x10,0x10,0x90,0x7f,0x90,0x10,0x10,0x18,0x10,0x00 - -, -0x02,0x3e,0x01,0x20,0x10,0x08,0x06,0x05,0x08,0x01,0x06,0x08,0x30,0x10,0x00 - -, -/* @2931 ̮(15x15,V)@ [suki software]*/ -0x10,0x10,0xff,0x10,0x90,0x80,0xfe,0x82,0x92,0xe2,0x82,0xff,0x82,0x80,0x00 - -, -0x04,0x0c,0x07,0x22,0x12,0x08,0x07,0x00,0x00,0x10,0x20,0x1f,0x00,0x00,0x00 - -, -/* @2932 ̯(15x15,V)@ [suki software]*/ -0x08,0x88,0xff,0x48,0x34,0xc4,0x3c,0x10,0xfc,0x4b,0x48,0xfe,0x48,0x48,0x00 - -, -0x11,0x20,0x1f,0x04,0x03,0x00,0x07,0x00,0x3f,0x12,0x12,0x1f,0x12,0x12,0x00 - -, -/* @2933 ̰(15x15,V)@ [suki software]*/ -0x20,0x20,0x10,0x88,0x94,0x92,0x99,0x92,0xd4,0xb8,0x88,0x10,0x10,0x10,0x00 - -, -0x20,0x20,0x20,0x2f,0x10,0x08,0x06,0x08,0x08,0x10,0x17,0x20,0x20,0x00,0x00 - -, -/* @2934 ̱(15x15,V)@ [suki software]*/ -0x10,0xa0,0xfc,0x04,0x54,0x94,0x75,0x86,0xfc,0xa4,0xac,0xf4,0xa6,0xa4,0x00 - -, -0x21,0x10,0x0f,0x10,0x0c,0x03,0x0c,0x00,0x3f,0x12,0x12,0x1f,0x12,0x12,0x00 - -, -/* @2935 ̲(15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x50,0x24,0xc4,0x3c,0x10,0xfc,0x4b,0x48,0xfe,0x48,0x48,0x00 - -, -0x02,0x3e,0x01,0x04,0x02,0x01,0x06,0x00,0x3f,0x12,0x12,0x1f,0x12,0x12,0x00 - -, -/* @2936 ̳(15x15,V)@ [suki software]*/ -0x20,0x20,0xff,0x20,0x20,0x40,0x44,0x44,0xc4,0x44,0x44,0x46,0x64,0x40,0x00 - -, -0x08,0x18,0x0f,0x04,0x04,0x14,0x38,0x16,0x11,0x10,0x10,0x14,0x18,0x30,0x00 - -, -/* @2937 ̴(15x15,V)@ [suki software]*/ -0x08,0xc8,0xff,0x28,0x4a,0xfa,0x8a,0xba,0xaa,0xab,0xba,0x8a,0xfa,0x02,0x00 - -, -0x03,0x00,0x3f,0x00,0x20,0x20,0x2f,0x2a,0x2a,0x2a,0x2a,0x2f,0x20,0x20,0x00 - -, -/* @2938 ̵(15x15,V)@ [suki software]*/ -0x08,0x90,0xfc,0x04,0x04,0xa4,0x94,0x45,0xbe,0x24,0x54,0x54,0x86,0x04,0x00 - -, -0x21,0x18,0x07,0x20,0x25,0x12,0x08,0x04,0x03,0x04,0x0a,0x11,0x20,0x20,0x00 - -, -/* @2939 ̶(15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x40,0x3a,0xea,0xaa,0xbe,0xaa,0xbe,0xaa,0xea,0x3b,0x02,0x00 - -, -0x02,0x3e,0x01,0x08,0x08,0x0b,0x0a,0x0a,0x3e,0x0a,0x0a,0x0b,0x08,0x08,0x00 - -, -/* @2940 ̷(15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x02,0x3a,0xea,0xbe,0xaa,0xbe,0xaa,0xea,0x3b,0x02,0x00 - -, -0x00,0x00,0x1f,0x04,0x0a,0x08,0x0b,0x0a,0x3e,0x0a,0x0a,0x0b,0x08,0x08,0x00 - -, -/* @2941 ̸(15x15,V)@ [suki software]*/ -0x20,0x21,0xe2,0x06,0x80,0x90,0x4c,0x20,0xdf,0x08,0x14,0x24,0x62,0x00,0x00 - -, -0x00,0x00,0x1f,0x08,0x20,0x24,0x13,0x0c,0x03,0x04,0x0a,0x11,0x31,0x10,0x00 - -, -/* @2942 ̹(15x15,V)@ [suki software]*/ -0x20,0x20,0xff,0x20,0x20,0x00,0xfe,0x22,0x22,0x22,0x22,0xff,0x02,0x00,0x00 - -, -0x08,0x18,0x0f,0x04,0x24,0x20,0x27,0x22,0x22,0x22,0x22,0x27,0x30,0x20,0x00 - -, -/* @2943 ̺(15x15,V)@ [suki software]*/ -0x44,0x44,0xfc,0x22,0x23,0x22,0x48,0xa6,0x10,0xcf,0x08,0x94,0x22,0x00,0x00 - -, -0x02,0x02,0x1f,0x21,0x21,0x21,0x2a,0x29,0x24,0x23,0x25,0x28,0x20,0x3c,0x00 - -, -/* @2944 ̻(15x15,V)@ [suki software]*/ -0x08,0x88,0x49,0xee,0x98,0x40,0xfe,0x22,0x22,0x22,0x22,0xff,0x02,0x00,0x00 - -, -0x01,0x00,0x00,0x3f,0x00,0x11,0x17,0x12,0x12,0x12,0x12,0x17,0x10,0x10,0x00 - -, -/* @2945 ̼(15x15,V)@ [suki software]*/ -0x04,0xc4,0x7c,0x44,0xc4,0x00,0x4e,0xf8,0x48,0x4f,0xc8,0x48,0x6e,0x40,0x00 - -, -0x01,0x1f,0x08,0x08,0x1f,0x08,0x26,0x11,0x0a,0x04,0x07,0x0a,0x11,0x20,0x00 - -, -/* @2946 ̽(15x15,V)@ [suki software]*/ -0x08,0x88,0xff,0x48,0x08,0x80,0xa6,0x9a,0x82,0xe2,0x8a,0x92,0xa2,0x86,0x00 - -, -0x11,0x20,0x1f,0x00,0x00,0x10,0x08,0x04,0x02,0x3f,0x02,0x04,0x08,0x10,0x00 - -, -/* @2947 ̾(15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0x04,0xfc,0x00,0x02,0x3e,0xc2,0x02,0xc2,0x3f,0x02,0x00,0x00 - -, -0x00,0x03,0x01,0x01,0x23,0x20,0x10,0x08,0x04,0x03,0x04,0x08,0x30,0x10,0x00 - -, -/* @2948 ̿(15x15,V)@ [suki software]*/ -0x00,0x20,0x2e,0xa8,0x78,0x28,0x28,0xef,0x28,0x28,0x28,0x2e,0x20,0x20,0x00 - -, -0x10,0x08,0x26,0x21,0x12,0x09,0x06,0x01,0x02,0x04,0x0a,0x11,0x30,0x10,0x00 - -, -/* @2949 (15x15,V)@ [suki software]*/ -0x10,0x61,0x06,0xc0,0x30,0x42,0x62,0xd2,0x4a,0xc6,0x43,0x42,0xe0,0x40,0x00 - -, -0x02,0x02,0x3f,0x00,0x08,0x24,0x13,0x08,0x06,0x11,0x20,0x10,0x0f,0x00,0x00 - -, -/* @2950 (15x15,V)@ [suki software]*/ -0x10,0x10,0xff,0x10,0x10,0xfc,0x44,0x54,0x55,0xfe,0x54,0xf4,0x46,0x44,0x00 - -, -0x04,0x04,0x07,0x22,0x12,0x0f,0x00,0x3d,0x25,0x27,0x25,0x3d,0x00,0x00,0x00 - -, -/* @2951 (15x15,V)@ [suki software]*/ -0x08,0x88,0xff,0x48,0x00,0xfc,0x44,0x54,0x55,0xfe,0x54,0xf4,0x46,0x44,0x00 - -, -0x11,0x20,0x1f,0x20,0x18,0x07,0x00,0x3d,0x25,0x27,0x25,0x3d,0x00,0x00,0x00 - -, -/* @2952 (15x15,V)@ [suki software]*/ -0x00,0x20,0x18,0x0a,0xec,0x28,0x28,0x2f,0x28,0x2c,0xea,0x08,0x28,0x18,0x00 - -, -0x00,0x20,0x24,0x24,0x25,0x25,0x25,0x3f,0x25,0x25,0x25,0x24,0x30,0x20,0x00 - -, -/* @2953 (15x15,V)@ [suki software]*/ -0x20,0x18,0x08,0xea,0xac,0xa8,0xaf,0xa8,0xa8,0xec,0x0a,0x28,0x18,0x00,0x00 - -, -0x12,0x12,0x12,0x0a,0x06,0x02,0x3f,0x02,0x06,0x0a,0x0a,0x12,0x12,0x10,0x00 - -, -/* @2954 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x22,0x22,0xfe,0x18,0x0a,0xec,0x28,0x2f,0x28,0xec,0x0a,0x18,0x00 - -, -0x30,0x0f,0x11,0x21,0x1f,0x20,0x24,0x25,0x25,0x3f,0x25,0x25,0x24,0x20,0x00 - -, -/* @2955 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfc,0x44,0x54,0x54,0x55,0xfe,0x54,0x54,0x54,0xf4,0x46,0x44,0x00 - -, -0x20,0x18,0x07,0x00,0x3d,0x25,0x25,0x27,0x25,0x25,0x25,0x3d,0x00,0x00,0x00 - -, -/* @2956 (15x15,V)@ [suki software]*/ -0x24,0xa8,0xff,0xa8,0x24,0x00,0xfc,0x44,0x55,0xfe,0x54,0x54,0xf6,0x44,0x00 - -, -0x06,0x01,0x3f,0x00,0x31,0x0c,0x03,0x3c,0x25,0x27,0x25,0x25,0x3d,0x00,0x00 - -, -/* @2957 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x00,0xe2,0x2c,0xa0,0xbf,0xa0,0xa0,0x28,0xe6,0x00,0x00 - -, -0x00,0x00,0x3f,0x00,0x00,0x3f,0x00,0x07,0x04,0x04,0x17,0x20,0x1f,0x00,0x00 - -, -/* @2958 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x54,0x57,0xfc,0x00,0xe4,0x38,0xa0,0xbf,0xa0,0xb0,0x28,0xe4,0x00 - -, -0x11,0x09,0x15,0x23,0x1f,0x00,0x3f,0x00,0x0f,0x04,0x04,0x17,0x20,0x1f,0x00 - -, -/* @2959 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x00,0xe2,0x2c,0xa0,0xbf,0xa0,0xa8,0x24,0xe2,0x00,0x00 - -, -0x02,0x3e,0x01,0x00,0x00,0x3f,0x00,0x07,0x04,0x04,0x17,0x20,0x1f,0x00,0x00 - -, -/* @2960 (15x15,V)@ [suki software]*/ -0x20,0xa4,0x24,0xff,0x24,0x20,0xf2,0x14,0xd0,0x5f,0xd0,0x14,0xf2,0x00,0x00 - -, -0x18,0x07,0x08,0x0f,0x11,0x11,0x2f,0x20,0x23,0x22,0x23,0x28,0x2f,0x20,0x00 - -, -/* @2961 (15x15,V)@ [suki software]*/ -0x00,0x48,0xd1,0x22,0x10,0x40,0x4a,0xaa,0x5e,0x2a,0x1a,0x8b,0x7a,0x00,0x00 - -, -0x00,0x20,0x29,0x26,0x10,0x09,0x05,0x06,0x08,0x15,0x15,0x22,0x20,0x20,0x00 - -, -/* @2962 (15x15,V)@ [suki software]*/ -0x08,0x88,0xff,0x48,0x88,0xd0,0xac,0xb7,0xe4,0xa4,0xa4,0x84,0xfe,0x04,0x00 - -, -0x11,0x20,0x1f,0x00,0x00,0x00,0x0e,0x08,0x0f,0x08,0x1e,0x20,0x1f,0x00,0x00 - -, -/* @2963 (15x15,V)@ [suki software]*/ -0x10,0x61,0x02,0xc6,0x20,0x44,0xd4,0x74,0x5f,0x54,0x54,0xd4,0x56,0x44,0x00 - -, -0x04,0x04,0x3f,0x00,0x08,0x06,0x01,0x06,0x0a,0x02,0x22,0x3f,0x02,0x02,0x00 - -, -/* @2964 (15x15,V)@ [suki software]*/ -0x10,0x21,0x02,0xc6,0x30,0xcc,0x94,0x44,0x44,0x1a,0x42,0x63,0xd2,0x08,0x00 - -, -0x04,0x04,0x3f,0x00,0x00,0x3f,0x12,0x12,0x12,0x10,0x12,0x12,0x3f,0x00,0x00 - -, -/* @2965 (15x15,V)@ [suki software]*/ -0x20,0xb0,0x6c,0x23,0x18,0x80,0x90,0x4f,0x54,0xa4,0x54,0x4e,0x84,0x80,0x00 - -, -0x09,0x19,0x09,0x05,0x15,0x08,0x06,0x12,0x22,0x1f,0x02,0x06,0x0a,0x10,0x00 - -, -/* @2966 (15x15,V)@ [suki software]*/ -0x84,0x44,0x24,0x9c,0x74,0x5f,0xd4,0x54,0x54,0x5f,0x14,0x14,0xf6,0x04,0x00 - -, -0x00,0x01,0x01,0x0d,0x09,0x09,0x0f,0x09,0x09,0x0d,0x21,0x20,0x1f,0x00,0x00 - -, -/* @2967 (15x15,V)@ [suki software]*/ -0x08,0xc8,0xff,0x48,0x88,0x10,0x20,0xff,0x00,0x00,0xff,0xa0,0x10,0x08,0x00 - -, -0x03,0x00,0x3f,0x00,0x20,0x12,0x09,0x07,0x00,0x00,0x1f,0x20,0x21,0x3a,0x00 - -, -/* @2968 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x84,0x88,0x50,0xff,0x00,0xff,0x50,0x48,0x84,0x00,0x00 - -, -0x10,0x08,0x07,0x08,0x10,0x28,0x24,0x23,0x20,0x23,0x24,0x24,0x24,0x26,0x00 - -, -/* @2969 (15x15,V)@ [suki software]*/ -0x10,0x61,0x06,0xc0,0x90,0xc8,0xb7,0xa4,0xe4,0xa4,0xa4,0x84,0xfe,0x04,0x00 - -, -0x02,0x3e,0x01,0x00,0x00,0x07,0x04,0x04,0x07,0x14,0x27,0x20,0x1f,0x00,0x00 - -, -/* @2970 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x22,0x5a,0x86,0xc8,0xb7,0xa4,0xe4,0xa4,0xa4,0x84,0xfe,0x04,0x00 - -, -0x00,0x3f,0x02,0x04,0x03,0x00,0x0e,0x08,0x0f,0x08,0x2e,0x20,0x1f,0x00,0x00 - -, -/* @2971 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe2,0x06,0x00,0x10,0x50,0x90,0x10,0x10,0x10,0xff,0x10,0x10,0x00 - -, -0x00,0x00,0x1f,0x08,0x04,0x00,0x00,0x01,0x00,0x10,0x20,0x1f,0x00,0x00,0x00 - -, -/* @2972 (15x15,V)@ [suki software]*/ -0x44,0x44,0x24,0x14,0xfc,0x54,0x57,0x54,0x54,0x5c,0x14,0x24,0x66,0x24,0x00 - -, -0x04,0x04,0x04,0x24,0x37,0x2d,0x25,0x25,0x25,0x2d,0x34,0x24,0x04,0x04,0x00 - -, -/* @2973 (15x15,V)@ [suki software]*/ -0x60,0x1c,0x10,0xff,0x90,0x24,0x24,0x24,0x3f,0x24,0xe4,0x24,0x24,0x20,0x00 - -, -0x02,0x02,0x01,0x3f,0x00,0x01,0x03,0x05,0x11,0x21,0x1f,0x01,0x01,0x01,0x00 - -, -/* @2974 (15x15,V)@ [suki software]*/ -0x02,0xfa,0x4a,0x4a,0xfa,0x87,0xb2,0xa2,0xfa,0xa7,0xb2,0xaa,0xa2,0x02,0x00 - -, -0x30,0x0f,0x02,0x22,0x3f,0x12,0x11,0x0a,0x24,0x3f,0x0a,0x11,0x12,0x02,0x00 - -, -/* @2975 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x92,0x92,0xfe,0x94,0x56,0x74,0x5f,0x54,0xf6,0x54,0x94,0x90,0x00 - -, -0x30,0x0f,0x10,0x20,0x1f,0x00,0x0b,0x0a,0x0a,0x0a,0x2b,0x22,0x1e,0x00,0x00 - -, -/* @2976 (15x15,V)@ [suki software]*/ -0x04,0x98,0x40,0xfc,0x04,0x44,0x24,0x5d,0x96,0x54,0x34,0x04,0x06,0x04,0x00 - -, -0x21,0x10,0x0c,0x03,0x02,0x02,0x09,0x09,0x12,0x15,0x21,0x02,0x02,0x02,0x00 - -, -/* @2977 (15x15,V)@ [suki software]*/ -0x80,0x90,0x54,0xb5,0x96,0x9c,0xb7,0xd4,0x94,0x96,0xb5,0x54,0x90,0x80,0x00 - -, -0x00,0x00,0x00,0x3a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x3a,0x00,0x00,0x00,0x00 - -, -/* @2978 (15x15,V)@ [suki software]*/ -0x08,0xc8,0xff,0x28,0x48,0x04,0xe5,0x26,0x24,0xfc,0x26,0x25,0x3c,0x00,0x00 - -, -0x03,0x00,0x3f,0x00,0x10,0x09,0x05,0x03,0x01,0x3f,0x01,0x09,0x09,0x07,0x00 - -, -/* @2979 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0xaa,0xaa,0xaa,0xaa,0xbf,0x02,0x00,0xfc,0x00,0xff,0x00,0x00 - -, -0x0a,0x25,0x12,0x09,0x14,0x23,0x10,0x0f,0x00,0x00,0x13,0x20,0x1f,0x00,0x00 - -, -/* @2980 (15x15,V)@ [suki software]*/ -0x00,0xbe,0x12,0xf2,0x92,0x9e,0x00,0xbe,0xea,0xaa,0xaa,0xaa,0xbf,0x82,0x00 - -, -0x10,0x1f,0x08,0x0f,0x04,0x0a,0x25,0x12,0x09,0x04,0x12,0x21,0x10,0x0f,0x00 - -, -/* @2981 (15x15,V)@ [suki software]*/ -0x40,0x30,0xef,0x24,0x24,0x00,0xe4,0xa5,0xa6,0xfc,0xa6,0xa5,0xbc,0x80,0x00 - -, -0x01,0x01,0x1f,0x09,0x25,0x11,0x08,0x04,0x02,0x3f,0x00,0x04,0x08,0x07,0x00 - -, -/* @2982 (15x15,V)@ [suki software]*/ -0x08,0x88,0xff,0x48,0x08,0x80,0xbe,0xaa,0xaa,0xaa,0xaa,0xbf,0x82,0x80,0x00 - -, -0x11,0x20,0x1f,0x20,0x10,0x08,0x06,0x08,0x10,0x1f,0x22,0x22,0x22,0x20,0x00 - -, -/* @2983 (15x15,V)@ [suki software]*/ -0x80,0xbe,0xaa,0xaa,0xaa,0xbe,0x80,0xfa,0x0a,0xee,0x0a,0x0a,0xfb,0x02,0x00 - -, -0x30,0x0f,0x08,0x0f,0x12,0x12,0x22,0x29,0x24,0x23,0x22,0x24,0x29,0x20,0x00 - -, -/* @2984 (15x15,V)@ [suki software]*/ -0x00,0xbe,0x22,0xe2,0x3e,0x00,0x64,0xac,0xb5,0xe6,0xb4,0xac,0xa6,0x64,0x00 - -, -0x10,0x1f,0x08,0x0f,0x05,0x05,0x00,0x0f,0x00,0x3f,0x00,0x08,0x0f,0x00,0x00 - -, -/* @2985 (15x15,V)@ [suki software]*/ -0xfc,0x04,0x04,0xfc,0x60,0xa4,0xac,0xb5,0xe6,0xb4,0xac,0xa6,0x64,0x00,0x00 - -, -0x07,0x01,0x01,0x03,0x00,0x0f,0x00,0x00,0x3f,0x00,0x08,0x0f,0x00,0x00,0x00 - -, -/* @2986 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x08,0x08,0xc8,0x28,0xff,0x28,0xc8,0x08,0x0c,0x08,0x00 - -, -0x00,0x00,0x3f,0x04,0x02,0x05,0x04,0x04,0x3f,0x04,0x04,0x05,0x02,0x04,0x00 - -, -/* @2987 (15x15,V)@ [suki software]*/ -0x00,0x94,0x54,0x3f,0x34,0x54,0x80,0x54,0x34,0x1f,0x34,0x54,0x94,0x80,0x00 - -, -0x01,0x00,0x00,0x3f,0x25,0x25,0x25,0x25,0x25,0x25,0x3f,0x00,0x00,0x00,0x00 - -, -/* @2988 (15x15,V)@ [suki software]*/ -0xfc,0x04,0x04,0xfc,0x00,0x1a,0xea,0xaa,0xef,0xaa,0xaa,0xea,0x1a,0x00,0x00 - -, -0x03,0x01,0x21,0x23,0x10,0x0a,0x0f,0x12,0x1f,0x2a,0x2a,0x2b,0x26,0x20,0x00 - -, -/* @2989 (15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x08,0x30,0x00,0xbe,0xea,0xaa,0xaa,0xaa,0xbf,0x82,0x00,0x00 - -, -0x00,0x00,0x3f,0x00,0x02,0x29,0x24,0x12,0x09,0x14,0x23,0x10,0x0f,0x00,0x00 - -, -/* @2990 (15x15,V)@ [suki software]*/ -0x10,0x21,0x82,0x64,0x00,0xe8,0x29,0x2e,0xf8,0x2c,0x2a,0x29,0x38,0x00,0x00 - -, -0x02,0x3e,0x01,0x20,0x10,0x09,0x05,0x03,0x3f,0x01,0x09,0x11,0x0f,0x00,0x00 - -, -/* @2991 (15x15,V)@ [suki software]*/ -0x00,0xe4,0xa5,0xa6,0xfc,0xa6,0xa5,0xbc,0x00,0x00,0xfc,0x00,0xff,0x00,0x00 - -, -0x10,0x08,0x04,0x02,0x3f,0x04,0x08,0x07,0x00,0x00,0x13,0x20,0x1f,0x00,0x00 - -, -/* @2992 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x8a,0xea,0x8a,0x8a,0xfa,0x8a,0x8a,0xfa,0x8f,0x82,0x80,0x00 - -, -0x20,0x18,0x07,0x00,0x1f,0x10,0x10,0x17,0x14,0x14,0x17,0x10,0x10,0x00,0x00 - -, -/* @2993 (15x15,V)@ [suki software]*/ -0x20,0x22,0x22,0x22,0x22,0x22,0xfe,0xa2,0x22,0x22,0x23,0x22,0x30,0x20,0x00 - -, -0x20,0x20,0x10,0x08,0x04,0x03,0x00,0x00,0x03,0x04,0x08,0x10,0x30,0x10,0x00 - -, -/* @2994 (15x15,V)@ [suki software]*/ -0x10,0x21,0xc6,0x20,0x92,0x52,0x32,0xde,0x12,0x32,0x53,0x92,0x90,0x80,0x00 - -, -0x02,0x3f,0x00,0x09,0x06,0x10,0x20,0x1f,0x02,0x04,0x08,0x02,0x0d,0x00,0x00 - -, -/* @2995 (15x15,V)@ [suki software]*/ -0x10,0x10,0xff,0x10,0x10,0x04,0xf4,0x54,0x54,0x5f,0x54,0xf4,0x06,0x04,0x00 - -, -0x04,0x0c,0x07,0x02,0x22,0x24,0x17,0x0d,0x05,0x05,0x05,0x0f,0x14,0x24,0x00 - -, -/* @2996 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfc,0x84,0x84,0x84,0x84,0xfc,0x84,0x84,0x84,0x84,0xfe,0x04,0x00 - -, -0x00,0x00,0x1f,0x08,0x08,0x08,0x08,0x0f,0x08,0x08,0x08,0x08,0x1f,0x00,0x00 - -, -/* @2997 (15x15,V)@ [suki software]*/ -0x24,0x24,0x24,0xfe,0x22,0x22,0x08,0xff,0x88,0x88,0x88,0xff,0x08,0x08,0x00 - -, -0x00,0x3f,0x11,0x11,0x11,0x3f,0x00,0x3f,0x10,0x10,0x10,0x3f,0x00,0x00,0x00 - -, -/* @2998 (15x15,V)@ [suki software]*/ -0x38,0x00,0xff,0x08,0x30,0x24,0x24,0x24,0xfc,0x22,0x22,0xa3,0x32,0x20,0x00 - -, -0x00,0x00,0x3f,0x00,0x00,0x3f,0x11,0x11,0x11,0x11,0x11,0x3f,0x01,0x00,0x00 - -, -/* @2999 (15x15,V)@ [suki software]*/ -0x14,0x94,0xfc,0x92,0x93,0x00,0x92,0x52,0x32,0x9e,0x32,0x53,0x9a,0x10,0x00 - -, -0x00,0x1f,0x08,0x08,0x1f,0x01,0x08,0x16,0x20,0x1f,0x02,0x0c,0x02,0x0d,0x00 - -, -/* @3000 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x92,0x92,0xfe,0x00,0xfc,0x24,0xff,0x24,0xff,0x24,0xfc,0x00,0x00 - -, -0x30,0x0f,0x10,0x20,0x1f,0x22,0x13,0x0a,0x03,0x02,0x03,0x0a,0x13,0x22,0x00 - -, -/* @3001 (15x15,V)@ [suki software]*/ -0x08,0x08,0xff,0x88,0x88,0x08,0x10,0xa0,0xff,0x00,0xff,0xa0,0x10,0x08,0x00 - -, -0x11,0x21,0x1f,0x00,0x20,0x11,0x09,0x04,0x03,0x00,0x1f,0x20,0x21,0x3a,0x00 - -, -/* @3002 (15x15,V)@ [suki software]*/ -0x00,0x00,0x90,0x88,0x47,0x2a,0x12,0x92,0x2a,0x47,0x42,0x80,0x80,0x80,0x00 - -, -0x01,0x11,0x10,0x09,0x05,0x11,0x21,0x1f,0x01,0x05,0x09,0x19,0x00,0x00,0x00 - -, -/* @3003 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe2,0x06,0x80,0x42,0xe2,0x5e,0x42,0x52,0x52,0x52,0xcf,0x02,0x00 - -, -0x10,0x08,0x07,0x08,0x10,0x10,0x2f,0x24,0x24,0x24,0x24,0x24,0x2f,0x20,0x00 - -, -/* @3004 (15x15,V)@ [suki software]*/ -0xfe,0x12,0x12,0xfe,0x00,0x18,0xa0,0xff,0x00,0x00,0xff,0xa0,0x10,0x08,0x00 - -, -0x1f,0x09,0x09,0x1f,0x22,0x11,0x08,0x07,0x00,0x00,0x1f,0x20,0x21,0x3a,0x00 - -, -/* @3005 (15x15,V)@ [suki software]*/ -0x00,0xbe,0x12,0xf2,0x9e,0x08,0x10,0xa0,0xff,0x00,0xff,0x90,0x08,0x00,0x00 - -, -0x10,0x1f,0x08,0x0f,0x24,0x25,0x11,0x0c,0x03,0x00,0x1f,0x20,0x21,0x3a,0x00 - -, -/* @3006 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0xfa,0x02,0xfe,0x00,0x80,0x80,0xff,0x90,0x90,0x98,0x10,0x00 - -, -0x20,0x13,0x0c,0x03,0x04,0x0b,0x10,0x3f,0x10,0x10,0x10,0x10,0x3f,0x00,0x00 - -, -/* @3007 (15x15,V)@ [suki software]*/ -0x60,0x38,0xe7,0x24,0x24,0x04,0xb0,0x8e,0x88,0xff,0x88,0x8c,0xc8,0x80,0x00 - -, -0x01,0x01,0x1f,0x11,0x29,0x21,0x10,0x08,0x06,0x01,0x06,0x08,0x10,0x20,0x00 - -, -/* @3008 (15x15,V)@ [suki software]*/ -0x00,0xf8,0x08,0xff,0x08,0xf8,0x00,0x80,0x80,0xff,0x88,0x88,0x8c,0x08,0x00 - -, -0x00,0x03,0x00,0x3f,0x02,0x03,0x00,0x3f,0x10,0x10,0x10,0x10,0x3f,0x00,0x00 - -, -/* @3009 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x02,0x12,0x12,0x12,0x12,0xf2,0x12,0x12,0x12,0x1b,0x12,0x00 - -, -0x20,0x18,0x07,0x00,0x00,0x00,0x10,0x20,0x1f,0x00,0x00,0x00,0x00,0x00,0x00 - -, -/* @3010 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0x04,0xfc,0x00,0x00,0xfe,0x24,0x24,0xe2,0x23,0x32,0x20,0x00 - -, -0x00,0x03,0x01,0x21,0x13,0x08,0x06,0x01,0x00,0x00,0x3f,0x00,0x00,0x00,0x00 - -, -/* @3011 (15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x20,0x10,0x48,0x42,0x22,0x12,0x0a,0x16,0x13,0x22,0x40,0x00 - -, -0x20,0x18,0x07,0x02,0x04,0x28,0x21,0x21,0x21,0x3f,0x21,0x21,0x31,0x20,0x00 - -, -}, -//************************************** -{ -/* @3012 ͡(15x15,V)@ [suki software]*/ -0x10,0x62,0x04,0xcc,0x20,0x04,0x04,0x04,0x04,0xfc,0x04,0x04,0x06,0x04,0x00 - -, -0x02,0x02,0x3f,0x00,0x00,0x00,0x00,0x10,0x20,0x1f,0x00,0x00,0x00,0x00,0x00 - -, -/* @3013 ͢(15x15,V)@ [suki software]*/ -0x00,0x62,0x52,0x4a,0xc6,0x00,0x44,0x44,0x44,0xfe,0x42,0x43,0x62,0x40,0x00 - -, -0x20,0x11,0x0a,0x04,0x0b,0x10,0x14,0x24,0x24,0x27,0x24,0x24,0x24,0x20,0x00 - -, -/* @3014 ͣ(15x15,V)@ [suki software]*/ -0x20,0x10,0xfc,0x03,0x82,0x82,0xba,0xaa,0xab,0xaa,0xaa,0xba,0x82,0x80,0x00 - -, -0x00,0x00,0x3f,0x00,0x01,0x00,0x02,0x12,0x22,0x1e,0x02,0x02,0x00,0x01,0x00 - -, -/* @3015 ͤ(15x15,V)@ [suki software]*/ -0x00,0x82,0x82,0x82,0xba,0xaa,0xaa,0xab,0xaa,0xaa,0xba,0x82,0x82,0x82,0x00 - -, -0x02,0x01,0x00,0x02,0x02,0x12,0x22,0x1e,0x02,0x02,0x02,0x00,0x02,0x01,0x00 - -, -/* @3016 ͥ(15x15,V)@ [suki software]*/ -0x00,0x00,0xfc,0x94,0xd4,0xb4,0x05,0x86,0x94,0x94,0xf4,0x8c,0x86,0x84,0x00 - -, -0x20,0x18,0x27,0x12,0x0c,0x0b,0x10,0x24,0x24,0x24,0x27,0x24,0x24,0x20,0x00 - -, -/* @3017 ͦ(15x15,V)@ [suki software]*/ -0x08,0x88,0xff,0x48,0x0c,0x64,0x5c,0xc0,0x24,0x24,0xfc,0x22,0x22,0x20,0x00 - -, -0x11,0x20,0x1f,0x20,0x11,0x0a,0x04,0x0b,0x12,0x12,0x23,0x22,0x22,0x22,0x00 - -, -/* @3018 ͧ(15x15,V)@ [suki software]*/ -0x40,0xfc,0x46,0x55,0xfc,0x00,0x64,0x54,0xcc,0x24,0x24,0xfc,0x22,0x22,0x00 - -, -0x30,0x0f,0x01,0x12,0x1f,0x20,0x13,0x0c,0x13,0x14,0x24,0x27,0x24,0x24,0x00 - -, -/* @3019 ͨ(15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x00,0xfa,0x2a,0x2e,0xfa,0x2e,0x2b,0xfa,0x00,0x00,0x00 - -, -0x10,0x08,0x07,0x08,0x10,0x2f,0x21,0x21,0x2f,0x21,0x29,0x2f,0x20,0x20,0x00 - -, -/* @3020 ͩ(15x15,V)@ [suki software]*/ -0x08,0x88,0xff,0x48,0x88,0x00,0xfe,0x02,0xd2,0x52,0xd2,0x02,0xff,0x02,0x00 - -, -0x03,0x00,0x3f,0x00,0x00,0x00,0x3f,0x00,0x07,0x02,0x17,0x20,0x1f,0x00,0x00 - -, -/* @3021 ͪ(15x15,V)@ [suki software]*/ -0x02,0xf2,0x9e,0x72,0x9e,0xf2,0x00,0xfe,0x02,0xd2,0x52,0xd2,0x02,0xfe,0x00 - -, -0x00,0x3f,0x12,0x12,0x12,0x1f,0x00,0x3f,0x00,0x07,0x02,0x17,0x20,0x1f,0x00 - -, -/* @3022 ͫ(15x15,V)@ [suki software]*/ -0x00,0xfc,0x24,0xfc,0x20,0x24,0xec,0xb5,0xe6,0xb4,0xac,0xe4,0x24,0x20,0x00 - -, -0x00,0x1f,0x09,0x1f,0x20,0x28,0x2b,0x2a,0x3f,0x2a,0x2a,0x2b,0x28,0x20,0x00 - -, -/* @3023 ͬ(15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x02,0x0a,0xca,0x4a,0x4a,0x4a,0xca,0x0a,0x02,0xff,0x02,0x00 - -, -0x00,0x00,0x3f,0x00,0x00,0x07,0x02,0x02,0x02,0x07,0x10,0x20,0x1f,0x00,0x00 - -, -/* @3024 ͭ(15x15,V)@ [suki software]*/ -0x20,0x38,0xe7,0x24,0x24,0x00,0xfe,0x02,0xea,0x2a,0xea,0x02,0xff,0x02,0x00 - -, -0x01,0x01,0x1f,0x11,0x09,0x01,0x3f,0x00,0x07,0x02,0x17,0x20,0x1f,0x00,0x00 - -, -/* @3025 ͮ(15x15,V)@ [suki software]*/ -0x80,0x80,0xfe,0x8a,0xb2,0x82,0xff,0x82,0xa0,0x10,0x88,0x44,0x22,0x00,0x00 - -, -0x20,0x18,0x07,0x00,0x10,0x20,0x1f,0x20,0x22,0x11,0x08,0x04,0x02,0x01,0x00 - -, -/* @3026 ͯ(15x15,V)@ [suki software]*/ -0x10,0x12,0x12,0xf2,0x96,0x9a,0x92,0xf3,0x9a,0x96,0xf2,0x12,0x12,0x10,0x00 - -, -0x20,0x20,0x28,0x2b,0x2a,0x2a,0x2a,0x3f,0x2a,0x2a,0x2b,0x28,0x28,0x20,0x00 - -, -/* @3027 Ͱ(15x15,V)@ [suki software]*/ -0x08,0xc8,0xff,0x48,0x88,0x00,0xf2,0x92,0x96,0xfa,0x96,0x93,0xf2,0x00,0x00 - -, -0x03,0x00,0x3f,0x00,0x00,0x00,0x3f,0x02,0x02,0x1f,0x02,0x22,0x3f,0x00,0x00 - -, -/* @3028 ͱ(15x15,V)@ [suki software]*/ -0x08,0x08,0xff,0x88,0x48,0x00,0xf2,0x92,0x96,0xfa,0x96,0x93,0xfa,0x10,0x00 - -, -0x11,0x21,0x1f,0x00,0x00,0x00,0x3f,0x02,0x02,0x3f,0x02,0x22,0x3f,0x00,0x00 - -, -/* @3029 Ͳ(15x15,V)@ [suki software]*/ -0x10,0x08,0xe4,0x27,0xac,0xb4,0xa4,0xa8,0xa4,0xa7,0xac,0x34,0xe6,0x04,0x00 - -, -0x00,0x00,0x3f,0x00,0x00,0x0e,0x0a,0x0a,0x0a,0x0e,0x10,0x20,0x1f,0x00,0x00 - -, -/* @3030 ͳ(15x15,V)@ [suki software]*/ -0x20,0x30,0xac,0x63,0x18,0x00,0x44,0xe4,0x55,0x4e,0xc4,0x64,0x46,0x04,0x00 - -, -0x09,0x1b,0x09,0x05,0x25,0x20,0x10,0x0f,0x00,0x00,0x1f,0x20,0x20,0x38,0x00 - -, -/* @3031 ʹ(15x15,V)@ [suki software]*/ -0x04,0x98,0x40,0xfc,0x04,0xd4,0x54,0x75,0xd6,0x74,0x54,0x54,0xc6,0x04,0x00 - -, -0x21,0x10,0x0c,0x03,0x00,0x3f,0x05,0x05,0x3f,0x05,0x05,0x25,0x3f,0x00,0x00 - -, -/* @3032 ͵(15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x10,0xd0,0x48,0xd4,0x13,0x94,0x18,0xc8,0x10,0x10,0x00 - -, -0x00,0x00,0x3f,0x00,0x00,0x3f,0x05,0x3f,0x00,0x0f,0x20,0x3f,0x00,0x00,0x00 - -, -/* @3033 Ͷ(15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x08,0x60,0xde,0x42,0x42,0x5f,0xe2,0x20,0x20,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x20,0x20,0x11,0x0a,0x04,0x0b,0x10,0x30,0x10,0x00 - -, -/* @3034 ͷ(15x15,V)@ [suki software]*/ -0x00,0x00,0x10,0x22,0x64,0x0c,0x00,0xff,0x00,0x00,0x00,0x00,0x80,0x00,0x00 - -, -0x21,0x21,0x21,0x11,0x11,0x09,0x05,0x03,0x05,0x05,0x09,0x11,0x31,0x01,0x00 - -, -/* @3035 ͸(15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x40,0x2a,0x5a,0xca,0x7e,0x49,0xd9,0x29,0x48,0x48,0x00 - -, -0x10,0x08,0x07,0x08,0x10,0x28,0x24,0x23,0x20,0x29,0x29,0x27,0x20,0x20,0x00 - -, -/* @3036 ͹(15x15,V)@ [suki software]*/ -0x00,0xc0,0x40,0x40,0x7e,0x02,0x02,0x02,0x02,0x7f,0x42,0x40,0xc0,0x00,0x00 - -, -0x00,0x3f,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x3f,0x00,0x00 - -, -/* @3037 ͺ(15x15,V)@ [suki software]*/ -0x08,0x8a,0x8a,0x4a,0x2a,0x1a,0x7e,0x0a,0x99,0x29,0x49,0x8c,0x88,0x00,0x00 - -, -0x21,0x20,0x20,0x10,0x0f,0x01,0x01,0x01,0x1f,0x21,0x20,0x20,0x3c,0x00,0x00 - -, -/* @3038 ͻ(15x15,V)@ [suki software]*/ -0x10,0x4c,0x44,0x24,0x14,0x04,0xe5,0x06,0x24,0x44,0x14,0x24,0x4c,0x00,0x00 - -, -0x20,0x21,0x21,0x11,0x09,0x07,0x01,0x03,0x05,0x09,0x11,0x11,0x31,0x11,0x00 - -, -/* @3039 ͼ(15x15,V)@ [suki software]*/ -0x00,0xfe,0x22,0x22,0x92,0x5e,0x2a,0x2a,0x5a,0x8a,0x82,0x82,0xff,0x02,0x00 - -, -0x00,0x3f,0x11,0x11,0x10,0x14,0x15,0x15,0x1a,0x10,0x10,0x10,0x3f,0x00,0x00 - -, -/* @3040 ͽ(15x15,V)@ [suki software]*/ -0x10,0x88,0xc4,0x33,0x40,0x48,0xc8,0x48,0x48,0xff,0x48,0x4c,0x68,0x40,0x00 - -, -0x01,0x00,0x3f,0x00,0x20,0x18,0x07,0x08,0x10,0x1f,0x22,0x22,0x22,0x22,0x00 - -, -/* @3041 ;(15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x20,0x90,0xa8,0xa4,0xe3,0xa4,0xa8,0x90,0xb0,0x10,0x00 - -, -0x10,0x08,0x07,0x08,0x10,0x14,0x22,0x29,0x2f,0x20,0x21,0x22,0x24,0x20,0x00 - -, -/* @3042 Ϳ(15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x00,0x20,0x10,0x28,0x24,0xe3,0x24,0x28,0x10,0x20,0x20,0x00 - -, -0x02,0x3e,0x01,0x00,0x11,0x09,0x17,0x21,0x1f,0x01,0x03,0x05,0x19,0x00,0x00 - -, -/* @3043 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x8a,0xaa,0xaa,0xaa,0xfa,0xaa,0xea,0xaa,0x9a,0x8f,0x82,0x00 - -, -0x20,0x18,0x07,0x04,0x04,0x3e,0x2b,0x2a,0x2a,0x2a,0x2a,0x3e,0x00,0x00,0x00 - -, -/* @3044 (15x15,V)@ [suki software]*/ -0x00,0x20,0x20,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0x20,0x30,0x20,0x00,0x00 - -, -0x10,0x10,0x10,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x10,0x10,0x18,0x10,0x00 - -, -/* @3045 (15x15,V)@ [suki software]*/ -0x00,0xf8,0x08,0x08,0xf8,0x00,0x20,0x20,0x20,0xff,0x20,0x30,0x20,0x00,0x00 - -, -0x00,0x0f,0x02,0x02,0x17,0x10,0x10,0x10,0x10,0x1f,0x10,0x10,0x18,0x10,0x00 - -, -/* @3046 (15x15,V)@ [suki software]*/ -0x00,0x20,0x10,0xf8,0x96,0x95,0x94,0xf4,0x9e,0x94,0x90,0xf0,0x00,0x00,0x00 - -, -0x00,0x20,0x20,0x11,0x10,0x08,0x07,0x00,0x1f,0x20,0x22,0x2d,0x20,0x38,0x00 - -, -/* @3047 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x40,0x5e,0x50,0xd0,0x5f,0x50,0x50,0x50,0x5e,0x40,0x00 - -, -0x02,0x3e,0x01,0x00,0x3f,0x01,0x01,0x1f,0x01,0x1f,0x01,0x21,0x3f,0x00,0x00 - -, -/* @3048 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0x12,0x12,0x12,0x92,0x52,0xfe,0x12,0x12,0x02,0xff,0x02,0x00 - -, -0x00,0x3f,0x10,0x14,0x12,0x11,0x10,0x14,0x17,0x10,0x10,0x10,0x3f,0x00,0x00 - -, -/* @3049 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x20,0xf8,0x4f,0x48,0xf9,0x4e,0x48,0x48,0x48,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x00,0x3f,0x12,0x12,0x1f,0x12,0x12,0x12,0x12,0x00 - -, -/* @3050 (15x15,V)@ [suki software]*/ -0x88,0x4a,0x2a,0xfe,0x19,0x29,0x48,0xfa,0x0a,0x0e,0xea,0x0a,0xfb,0x02,0x00 - -, -0x20,0x10,0x0f,0x01,0x01,0x0f,0x24,0x23,0x10,0x08,0x07,0x08,0x0b,0x30,0x00 - -, -/* @3051 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x12,0xfe,0x00,0x44,0xd8,0x00,0xfe,0xd2,0x52,0x52,0x7e,0x80,0x00 - -, -0x30,0x0f,0x21,0x1f,0x20,0x10,0x0f,0x10,0x2f,0x24,0x21,0x22,0x25,0x28,0x00 - -, -/* @3052 (15x15,V)@ [suki software]*/ -0x00,0xf8,0x08,0xff,0x08,0xf8,0x00,0xf9,0x8e,0x88,0x8c,0x8b,0xf8,0x00,0x00 - -, -0x10,0x11,0x11,0x0f,0x09,0x2d,0x20,0x10,0x0f,0x00,0x1f,0x20,0x20,0x3c,0x00 - -, -/* @3053 (15x15,V)@ [suki software]*/ -0x08,0x89,0xce,0x38,0xc0,0x22,0xec,0x00,0xfe,0x2a,0xaa,0x2a,0xbf,0x42,0x00 - -, -0x01,0x00,0x3f,0x01,0x22,0x10,0x0f,0x08,0x17,0x24,0x22,0x21,0x22,0x24,0x00 - -, -/* @3054 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x00,0x00,0xfe,0x4a,0xca,0x4a,0x4a,0x7f,0x82,0x00,0x00 - -, -0x10,0x08,0x07,0x08,0x10,0x10,0x2f,0x24,0x24,0x21,0x22,0x25,0x2c,0x20,0x00 - -, -/* @3055 (15x15,V)@ [suki software]*/ -0x10,0x10,0x12,0x92,0x52,0x32,0x1e,0x12,0x32,0x52,0x92,0x93,0x1a,0x10,0x00 - -, -0x02,0x02,0x01,0x00,0x3f,0x11,0x11,0x11,0x11,0x11,0x3f,0x00,0x01,0x01,0x00 - -, -/* @3056 (15x15,V)@ [suki software]*/ -0x00,0x08,0xe8,0x08,0x08,0x08,0xff,0x08,0x08,0x08,0xe8,0x0c,0x08,0x00,0x00 - -, -0x00,0x00,0x01,0x01,0x01,0x01,0x1f,0x21,0x21,0x21,0x23,0x20,0x20,0x38,0x00 - -, -/* @3057 (15x15,V)@ [suki software]*/ -0x80,0x7e,0xaa,0xfa,0xaa,0xfa,0xae,0xa0,0x98,0xb6,0xd2,0x77,0x9a,0x88,0x00 - -, -0x00,0x00,0x00,0x3f,0x0a,0x0a,0x0a,0x0a,0x0a,0x2a,0x3f,0x00,0x00,0x00,0x00 - -, -/* @3058 (15x15,V)@ [suki software]*/ -0x08,0x88,0xff,0x48,0x08,0x10,0xe8,0x87,0x84,0xf4,0x44,0x44,0xe6,0x44,0x00 - -, -0x11,0x20,0x1f,0x00,0x00,0x01,0x1f,0x20,0x20,0x2f,0x24,0x24,0x23,0x38,0x00 - -, -/* @3059 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x88,0x84,0x84,0xfc,0x42,0x42,0x43,0x62,0x40,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x00,0x00,0x00,0x1f,0x20,0x20,0x20,0x20,0x3c,0x00 - -, -/* @3060 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x92,0x92,0xfe,0x00,0x00,0xf9,0x8e,0x88,0x8c,0x8b,0xf8,0x00,0x00 - -, -0x30,0x0f,0x10,0x20,0x1f,0x20,0x10,0x08,0x07,0x00,0x1f,0x20,0x20,0x38,0x00 - -, -/* @3061 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0x57,0x44,0x3c,0x00,0x1c,0xe4,0x05,0x06,0x84,0x44,0x1c,0x00 - -, -0x08,0x09,0x09,0x15,0x25,0x11,0x0f,0x00,0x1f,0x21,0x21,0x20,0x20,0x3c,0x00 - -, -/* @3062 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0x32,0x4e,0x90,0x0c,0xe4,0x05,0x06,0x84,0x44,0x14,0x0c,0x00 - -, -0x00,0x3f,0x02,0x04,0x04,0x03,0x00,0x1f,0x21,0x21,0x20,0x20,0x20,0x3c,0x00 - -, -/* @3063 (15x15,V)@ [suki software]*/ -0x02,0xfa,0x82,0x82,0xfe,0x80,0x10,0x10,0x90,0x7f,0x90,0x10,0x18,0x10,0x00 - -, -0x04,0x04,0x12,0x22,0x10,0x2f,0x10,0x0c,0x03,0x00,0x03,0x0c,0x10,0x20,0x00 - -, -/* @3064 (15x15,V)@ [suki software]*/ -0x02,0xfa,0x82,0x82,0xfe,0x80,0x10,0x0c,0xe4,0x05,0x06,0x84,0xd4,0x0c,0x00 - -, -0x04,0x04,0x14,0x22,0x12,0x0f,0x00,0x00,0x1f,0x22,0x21,0x20,0x20,0x3c,0x00 - -, -/* @3065 (15x15,V)@ [suki software]*/ -0x08,0xc8,0xff,0x48,0x88,0xfe,0x22,0xde,0x44,0xf4,0xaf,0xa4,0xe4,0x04,0x00 - -, -0x03,0x00,0x3f,0x00,0x00,0x3f,0x02,0x03,0x00,0x3f,0x02,0x22,0x3f,0x00,0x00 - -, -/* @3066 (15x15,V)@ [suki software]*/ -0x80,0x80,0x8a,0xb2,0x82,0x82,0xca,0x92,0x82,0xa1,0x91,0x8d,0x80,0x80,0x00 - -, -0x00,0x20,0x20,0x20,0x16,0x15,0x08,0x08,0x0c,0x0b,0x10,0x10,0x30,0x00,0x00 - -, -/* @3067 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x04,0x84,0xe4,0x9c,0x84,0x84,0x84,0xc6,0x84,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x01,0x00,0x3f,0x10,0x10,0x10,0x10,0x3f,0x00,0x00 - -, -/* @3068 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0xfc,0x80,0x92,0xf2,0x92,0xfe,0x92,0x91,0xf1,0x98,0x90,0x00 - -, -0x00,0x07,0x01,0x03,0x04,0x24,0x27,0x24,0x3f,0x24,0x24,0x27,0x24,0x04,0x00 - -, -/* @3069 (15x15,V)@ [suki software]*/ -0x08,0x88,0xff,0x48,0x08,0x90,0x4c,0xb4,0x85,0x86,0x94,0x24,0x54,0x0c,0x00 - -, -0x11,0x20,0x1f,0x00,0x00,0x00,0x18,0x24,0x22,0x21,0x20,0x20,0x20,0x38,0x00 - -, -/* @3070 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0x04,0xfc,0x40,0x48,0x48,0x48,0xff,0x48,0x48,0x68,0x40,0x00 - -, -0x00,0x07,0x01,0x01,0x03,0x20,0x22,0x22,0x22,0x3f,0x22,0x22,0x32,0x20,0x00 - -, -/* @3071 (15x15,V)@ [suki software]*/ -0x00,0xf8,0x08,0xff,0x08,0xf8,0x40,0x48,0x48,0xff,0x48,0x48,0x68,0x40,0x00 - -, -0x10,0x13,0x11,0x0f,0x09,0x3d,0x22,0x22,0x22,0x3f,0x22,0x22,0x32,0x20,0x00 - -, -/* @3072 (15x15,V)@ [suki software]*/ -0x10,0x62,0x04,0xcc,0x40,0x48,0x48,0x48,0xff,0x48,0x48,0x4c,0x48,0x40,0x00 - -, -0x04,0x04,0x3f,0x00,0x20,0x22,0x22,0x22,0x3f,0x22,0x22,0x22,0x32,0x20,0x00 - -, -/* @3073 (15x15,V)@ [suki software]*/ -0x08,0x08,0xf8,0x0f,0x08,0xf8,0x40,0x48,0x48,0xff,0x48,0x4c,0x48,0x40,0x00 - -, -0x20,0x11,0x0a,0x04,0x0a,0x11,0x22,0x22,0x22,0x3f,0x22,0x22,0x32,0x20,0x00 - -, -/* @3074 (15x15,V)@ [suki software]*/ -0x00,0x02,0x02,0x82,0x7e,0x52,0x92,0x12,0xfa,0x12,0x02,0x02,0x03,0x02,0x00 - -, -0x00,0x00,0x10,0x1f,0x08,0x08,0x05,0x00,0x0f,0x10,0x10,0x10,0x10,0x1e,0x00 - -, -/* @3075 (15x15,V)@ [suki software]*/ -0x08,0x88,0xc9,0x2e,0x98,0x40,0x08,0x48,0x48,0xff,0x48,0x48,0x4c,0x08,0x00 - -, -0x01,0x00,0x3f,0x01,0x02,0x08,0x04,0x02,0x01,0x3f,0x01,0x02,0x04,0x08,0x00 - -, -/* @3076 (15x15,V)@ [suki software]*/ -0x00,0xa2,0xa2,0x92,0x8a,0x86,0x82,0xbe,0x82,0x8a,0x8a,0x93,0x92,0x00,0x00 - -, -0x10,0x10,0x10,0x1e,0x10,0x10,0x10,0x1f,0x12,0x12,0x12,0x12,0x18,0x10,0x00 - -, -/* @3077 (15x15,V)@ [suki software]*/ -0x80,0x40,0x30,0x4f,0x88,0x88,0x78,0x00,0x00,0xff,0x20,0x40,0x80,0x80,0x00 - -, -0x20,0x10,0x08,0x04,0x02,0x01,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x01,0x00 - -, -/* @3078 (15x15,V)@ [suki software]*/ -0x02,0xf2,0x92,0x92,0xf2,0x02,0xcc,0x34,0xe5,0x06,0xe4,0x24,0xe4,0x0c,0x00 - -, -0x10,0x16,0x08,0x0e,0x28,0x11,0x09,0x06,0x01,0x00,0x1f,0x22,0x23,0x38,0x00 - -, -/* @3079 (15x15,V)@ [suki software]*/ -0x24,0x24,0x54,0x4c,0x44,0x7c,0x45,0x46,0x7c,0x44,0xcc,0x14,0x36,0x04,0x00 - -, -0x00,0x00,0x06,0x05,0x05,0x05,0x05,0x25,0x25,0x25,0x15,0x0c,0x00,0x00,0x00 - -, -/* @3080 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x20,0x14,0x4c,0x44,0x7d,0x46,0x7c,0x44,0xcc,0x16,0x04,0x00 - -, -0x02,0x3e,0x01,0x00,0x00,0x07,0x05,0x05,0x15,0x25,0x25,0x15,0x0c,0x00,0x00 - -, -/* @3081 (15x15,V)@ [suki software]*/ -0x22,0x22,0x22,0xfe,0x22,0x02,0x20,0xe2,0x22,0x22,0xe2,0x23,0x32,0x20,0x00 - -, -0x04,0x0c,0x04,0x23,0x22,0x12,0x08,0x07,0x00,0x00,0x1f,0x20,0x20,0x38,0x00 - -, -/* @3082 (15x15,V)@ [suki software]*/ -0x10,0x12,0xf2,0x12,0xf2,0x12,0x00,0xfa,0x0a,0x0e,0xea,0x0a,0xfb,0x02,0x00 - -, -0x10,0x0c,0x03,0x00,0x07,0x22,0x21,0x17,0x08,0x04,0x03,0x08,0x17,0x30,0x00 - -, -/* @3083 (15x15,V)@ [suki software]*/ -0x00,0x08,0x08,0x48,0x88,0xff,0x08,0x08,0x08,0xfc,0x08,0x00,0x00,0x00,0x00 - -, -0x20,0x20,0x10,0x08,0x06,0x01,0x01,0x02,0x00,0x1f,0x20,0x20,0x20,0x3c,0x00 - -, -/* @3084 (15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x10,0x08,0x90,0xac,0xa4,0xa5,0xa6,0xa4,0xa4,0x94,0x8c,0x00 - -, -0x20,0x18,0x07,0x02,0x2c,0x10,0x08,0x07,0x00,0x00,0x1f,0x20,0x20,0x38,0x00 - -, -/* @3085 (15x15,V)@ [suki software]*/ -0x00,0x90,0x8c,0xa4,0xa4,0xa4,0xa5,0xa6,0xa4,0xa4,0xa4,0x84,0x94,0x0c,0x00 - -, -0x00,0x20,0x20,0x10,0x08,0x07,0x00,0x00,0x1f,0x20,0x20,0x20,0x20,0x38,0x00 - -, -/* @3086 (15x15,V)@ [suki software]*/ -0x84,0xe4,0x3c,0x24,0xe4,0x80,0x4c,0x34,0xe5,0x06,0xe4,0x24,0xe4,0x0c,0x00 - -, -0x00,0x1f,0x08,0x08,0x2f,0x10,0x09,0x06,0x01,0x00,0x1f,0x24,0x27,0x38,0x00 - -, -/* @3087 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x10,0xf8,0x97,0x94,0xf4,0x9e,0x94,0xf0,0x00,0x00 - -, -0x01,0x11,0x20,0x1f,0x20,0x10,0x09,0x04,0x02,0x1f,0x20,0x20,0x21,0x38,0x00 - -, -/* @3088 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x44,0x44,0xfc,0x10,0xf8,0x97,0x94,0xf4,0x9e,0x94,0xf0,0x00,0x00 - -, -0x00,0x0f,0x04,0x04,0x2f,0x10,0x09,0x04,0x02,0x1f,0x20,0x20,0x21,0x38,0x00 - -, -/* @3089 (15x15,V)@ [suki software]*/ -0xf8,0x48,0x4f,0x48,0xf8,0x90,0xac,0xa4,0xa5,0xa6,0xa4,0xa4,0x94,0x8c,0x00 - -, -0x0f,0x04,0x04,0x04,0x2f,0x10,0x08,0x07,0x00,0x00,0x1f,0x20,0x20,0x38,0x00 - -, -/* @3090 (15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x10,0x20,0x8c,0x74,0x24,0xe5,0x06,0xe4,0x24,0xe4,0x0c,0x00 - -, -0x00,0x00,0x3f,0x00,0x22,0x11,0x09,0x06,0x01,0x00,0x1f,0x22,0x23,0x38,0x00 - -, -/* @3091 (15x15,V)@ [suki software]*/ -0x10,0x0c,0x84,0x74,0x44,0x44,0xc5,0x06,0xe4,0x24,0x24,0xf4,0x0c,0x00,0x00 - -, -0x22,0x21,0x11,0x0a,0x04,0x03,0x00,0x00,0x1f,0x22,0x24,0x23,0x20,0x3c,0x00 - -, -/* @3092 (15x15,V)@ [suki software]*/ -0x88,0x78,0x0f,0x08,0xf8,0x00,0xcc,0x34,0xe5,0x06,0xe4,0x24,0xec,0x00,0x00 - -, -0x20,0x11,0x0a,0x04,0x0b,0x21,0x10,0x0d,0x03,0x00,0x1f,0x22,0x23,0x38,0x00 - -, -/* @3093 (15x15,V)@ [suki software]*/ -0x02,0x02,0x02,0x02,0x02,0xfe,0x22,0x22,0x22,0x22,0xf2,0x22,0x03,0x02,0x00 - -, -0x20,0x20,0x10,0x08,0x06,0x01,0x00,0x10,0x20,0x10,0x0f,0x00,0x00,0x00,0x00 - -, -/* @3094 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x92,0x92,0xfe,0x00,0xcc,0x34,0xe5,0x06,0xe4,0x24,0xe4,0x0c,0x00 - -, -0x30,0x0f,0x10,0x20,0x1f,0x21,0x10,0x0d,0x03,0x00,0x1f,0x22,0x23,0x38,0x00 - -, -/* @3095 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x04,0x84,0x84,0x84,0xfc,0x84,0x84,0xc4,0x86,0x04,0x00 - -, -0x02,0x3e,0x01,0x20,0x20,0x20,0x20,0x20,0x3f,0x20,0x20,0x20,0x30,0x20,0x00 - -, -/* @3096 (15x15,V)@ [suki software]*/ -0x00,0x04,0x84,0x84,0x84,0x84,0xfc,0x84,0x84,0x84,0xc4,0x86,0x04,0x00,0x00 - -, -0x20,0x20,0x20,0x20,0x20,0x20,0x3f,0x20,0x20,0x20,0x20,0x20,0x30,0x20,0x00 - -, -/* @3097 (15x15,V)@ [suki software]*/ -0x08,0x08,0x08,0xf8,0x08,0x08,0x09,0x0e,0x08,0x08,0x08,0x08,0x0c,0x08,0x00 - -, -0x00,0x00,0x00,0x3f,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x18,0x10,0x00 - -, -/* @3098 (15x15,V)@ [suki software]*/ -0x08,0x88,0x48,0xff,0x48,0x88,0x04,0x84,0x84,0xfc,0x84,0x84,0x86,0x04,0x00 - -, -0x02,0x01,0x00,0x3f,0x00,0x21,0x20,0x20,0x20,0x3f,0x20,0x20,0x30,0x20,0x00 - -, -/* @3099 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x0a,0x92,0x62,0x9a,0x02,0x32,0xc2,0x32,0x0a,0x02,0xfe,0x00,0x00 - -, -0x00,0x3f,0x02,0x01,0x00,0x01,0x02,0x01,0x00,0x01,0x12,0x20,0x1f,0x00,0x00 - -, -/* @3100 (15x15,V)@ [suki software]*/ -0x10,0x88,0xc4,0x33,0x00,0x08,0x08,0x09,0xfe,0x08,0x08,0x88,0x08,0x00,0x00 - -, -0x01,0x00,0x3f,0x00,0x20,0x21,0x21,0x21,0x3f,0x21,0x21,0x21,0x31,0x20,0x00 - -, -/* @3101 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x44,0x44,0xfc,0x02,0x42,0x42,0x42,0xfe,0x42,0x42,0x43,0x02,0x00 - -, -0x00,0x1f,0x04,0x04,0x0f,0x20,0x20,0x20,0x20,0x3f,0x20,0x20,0x30,0x20,0x00 - -, -/* @3102 (15x15,V)@ [suki software]*/ -0x04,0x04,0xfc,0x45,0x46,0x24,0x80,0x7e,0x2a,0x2a,0x2a,0xaa,0x7e,0x00,0x00 - -, -0x20,0x21,0x25,0x25,0x25,0x25,0x3f,0x25,0x25,0x25,0x25,0x25,0x31,0x20,0x00 - -, -/* @3103 (15x15,V)@ [suki software]*/ -0x04,0x04,0x04,0x04,0x7c,0x44,0x45,0x46,0x44,0x44,0x44,0x44,0x46,0x04,0x00 - -, -0x00,0x18,0x06,0x00,0x1e,0x20,0x21,0x26,0x20,0x20,0x38,0x02,0x0c,0x00,0x00 - -, -/* @3104 (15x15,V)@ [suki software]*/ -0x00,0x04,0x04,0x04,0x3c,0xa4,0x65,0x26,0x24,0x24,0x24,0x24,0x06,0x04,0x00 - -, -0x01,0x21,0x21,0x21,0x27,0x15,0x09,0x09,0x0d,0x13,0x11,0x21,0x21,0x01,0x00 - -, -/* @3105 (15x15,V)@ [suki software]*/ -0x00,0x00,0xf8,0xa8,0xa8,0xe8,0xa8,0x28,0xff,0x08,0x09,0x0a,0xe8,0x08,0x00 - -, -0x20,0x18,0x07,0x10,0x0b,0x04,0x2b,0x20,0x10,0x0b,0x04,0x0b,0x10,0x3c,0x00 - -, -}, -//************************************** -{ -/* @3106 Ρ(15x15,V)@ [suki software]*/ -0x40,0xd0,0x56,0xf4,0x54,0xd4,0x44,0xf7,0x5c,0xf4,0x54,0x56,0xf0,0x00,0x00 - -, -0x21,0x22,0x16,0x0b,0x0e,0x12,0x21,0x19,0x05,0x1f,0x29,0x2d,0x29,0x38,0x00 - -, -/* @3107 ΢(15x15,V)@ [suki software]*/ -0x88,0x44,0xf3,0x00,0x5c,0x50,0x5e,0x50,0x5c,0x30,0xdf,0x10,0xf8,0x10,0x00 - -, -0x00,0x00,0x3f,0x10,0x08,0x07,0x01,0x2f,0x24,0x10,0x09,0x06,0x19,0x20,0x00 - -, -/* @3108 Σ(15x15,V)@ [suki software]*/ -0x20,0x10,0x08,0xf4,0x13,0x12,0xd2,0x52,0x5a,0x56,0xd0,0x10,0x10,0x00,0x00 - -, -0x20,0x10,0x0c,0x03,0x00,0x00,0x1f,0x20,0x22,0x24,0x23,0x20,0x20,0x3c,0x00 - -, -/* @3109 Τ(15x15,V)@ [suki software]*/ -0x80,0x84,0xa4,0xa4,0xa4,0xa4,0xff,0xa4,0xa4,0xa4,0xa4,0xa6,0x84,0x00,0x00 - -, -0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x08,0x10,0x08,0x07,0x00,0x00 - -, -/* @3110 Υ(15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x04,0x94,0x94,0x94,0xff,0x94,0x94,0x94,0x96,0x04,0x00 - -, -0x10,0x08,0x07,0x08,0x10,0x10,0x20,0x20,0x2f,0x20,0x24,0x24,0x23,0x20,0x00 - -, -/* @3111 Φ(15x15,V)@ [suki software]*/ -0x08,0xc8,0xff,0x48,0x88,0x10,0xf8,0x17,0xd4,0x54,0x5e,0xd4,0x10,0x10,0x00 - -, -0x03,0x00,0x3f,0x00,0x20,0x18,0x07,0x00,0x1f,0x22,0x24,0x23,0x20,0x38,0x00 - -, -/* @3112 Χ(15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0xaa,0xaa,0xaa,0xfe,0xaa,0xaa,0xaa,0xaa,0x02,0xff,0x02,0x00 - -, -0x00,0x3f,0x10,0x10,0x10,0x10,0x1f,0x10,0x12,0x14,0x13,0x10,0x3f,0x00,0x00 - -, -/* @3113 Ψ(15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0x04,0xfc,0x10,0xfc,0x4b,0x48,0xf9,0x4e,0x48,0x48,0x08,0x00 - -, -0x00,0x07,0x01,0x01,0x03,0x00,0x3f,0x12,0x12,0x1f,0x12,0x12,0x12,0x10,0x00 - -, -/* @3114 Ω(15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x10,0x20,0x10,0xfc,0x4b,0x48,0xf9,0x4e,0x48,0x48,0x08,0x00 - -, -0x00,0x00,0x3f,0x00,0x00,0x00,0x3f,0x12,0x12,0x1f,0x12,0x12,0x12,0x10,0x00 - -, -/* @3115 Ϊ(15x15,V)@ [suki software]*/ -0x00,0x10,0x10,0x12,0x1c,0x10,0xf0,0x9f,0x10,0x10,0x10,0x10,0xf8,0x10,0x00 - -, -0x00,0x20,0x10,0x08,0x04,0x03,0x00,0x00,0x11,0x26,0x20,0x10,0x0f,0x00,0x00 - -, -/* @3116 Ϋ(15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x20,0xb8,0x66,0x10,0x20,0xfc,0x4b,0xf8,0x4e,0x48,0x48,0x00 - -, -0x02,0x3e,0x01,0x08,0x09,0x05,0x05,0x00,0x3f,0x12,0x1f,0x12,0x12,0x12,0x00 - -, -/* @3117 ά(15x15,V)@ [suki software]*/ -0x20,0x30,0xac,0x63,0x10,0x20,0x10,0xfc,0x4b,0x48,0xfe,0x48,0x48,0x08,0x00 - -, -0x09,0x1b,0x09,0x05,0x05,0x00,0x00,0x3f,0x12,0x12,0x1f,0x12,0x12,0x10,0x00 - -, -/* @3118 έ(15x15,V)@ [suki software]*/ -0x00,0x24,0xa4,0xa4,0xa4,0xaf,0xa4,0xf4,0xa4,0xaf,0xa4,0xb4,0x26,0x04,0x00 - -, -0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x3f,0x02,0x0a,0x12,0x0a,0x06,0x00,0x00 - -, -/* @3119 ή(15x15,V)@ [suki software]*/ -0x02,0x22,0x2a,0xaa,0x6a,0x2f,0xfa,0x2a,0x6f,0xaa,0xaa,0x2a,0x22,0x02,0x00 - -, -0x01,0x21,0x23,0x22,0x2e,0x2b,0x1a,0x0a,0x0a,0x16,0x12,0x23,0x21,0x01,0x00 - -, -/* @3120 ί(15x15,V)@ [suki software]*/ -0x00,0x48,0x4a,0x2a,0x2a,0x1a,0x8a,0x7e,0x19,0x29,0x29,0x49,0x4c,0x48,0x00 - -, -0x01,0x21,0x21,0x21,0x15,0x17,0x09,0x09,0x0d,0x13,0x11,0x21,0x21,0x01,0x00 - -, -/* @3121 ΰ(15x15,V)@ [suki software]*/ -0x40,0x20,0x18,0xf7,0x80,0xa4,0xa4,0xa4,0xff,0xa4,0xa4,0xa4,0x86,0x04,0x00 - -, -0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x3f,0x00,0x04,0x08,0x07,0x00,0x00 - -, -/* @3122 α(15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x20,0x22,0x2c,0x20,0xe0,0xbf,0x20,0x20,0xf0,0x20,0x00 - -, -0x00,0x00,0x3f,0x00,0x20,0x10,0x08,0x06,0x01,0x10,0x23,0x10,0x0f,0x00,0x00 - -, -/* @3123 β(15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x0a,0x4a,0x4a,0x4a,0xca,0xaa,0xaa,0xaa,0xaf,0x02,0x00,0x00 - -, -0x20,0x18,0x07,0x00,0x05,0x05,0x05,0x1f,0x22,0x22,0x22,0x22,0x22,0x38,0x00 - -, -/* @3124 γ(15x15,V)@ [suki software]*/ -0x20,0x30,0xac,0x63,0x10,0x84,0xa4,0xa4,0xff,0xa4,0xa4,0xa4,0xa4,0x04,0x00 - -, -0x09,0x1b,0x09,0x05,0x05,0x00,0x00,0x00,0x3f,0x00,0x04,0x08,0x07,0x00,0x00 - -, -/* @3125 δ(15x15,V)@ [suki software]*/ -0x00,0x40,0x44,0x44,0x44,0x44,0xff,0xc4,0x44,0x44,0x46,0x44,0x60,0x40,0x00 - -, -0x10,0x10,0x08,0x04,0x02,0x01,0x3f,0x00,0x01,0x02,0x04,0x08,0x18,0x08,0x00 - -, -/* @3126 ε(15x15,V)@ [suki software]*/ -0x02,0xf2,0x52,0x52,0x52,0x57,0x52,0x72,0x02,0x47,0x42,0xfa,0x42,0x42,0x00 - -, -0x30,0x0f,0x10,0x0d,0x25,0x3d,0x05,0x0d,0x10,0x01,0x22,0x3f,0x00,0x00,0x00 - -, -/* @3127 ζ(15x15,V)@ [suki software]*/ -0xfc,0x04,0x04,0xfc,0x40,0x48,0x48,0x48,0xff,0x48,0x48,0x4c,0x48,0x40,0x00 - -, -0x07,0x01,0x01,0x13,0x08,0x04,0x02,0x01,0x3f,0x01,0x02,0x04,0x08,0x10,0x00 - -, -/* @3128 η(15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x7e,0x4a,0x4a,0x4a,0x7e,0x4a,0x4a,0x4a,0x7f,0x82,0x00,0x00 - -, -0x01,0x01,0x01,0x3f,0x21,0x11,0x13,0x05,0x09,0x15,0x13,0x21,0x21,0x21,0x00 - -, -/* @3129 θ(15x15,V)@ [suki software]*/ -0x00,0x00,0x3e,0xaa,0xaa,0xaa,0xaa,0xbe,0xaa,0xaa,0xaa,0xaa,0x3f,0x02,0x00 - -, -0x00,0x00,0x00,0x3f,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x2a,0x3f,0x00,0x00,0x00 - -, -/* @3130 ι(15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0xfc,0x80,0xbe,0xaa,0xaa,0xbe,0xaa,0xaa,0xbf,0x82,0x80,0x00 - -, -0x00,0x03,0x01,0x03,0x00,0x3f,0x20,0x10,0x0b,0x04,0x0a,0x11,0x30,0x10,0x00 - -, -/* @3131 κ(15x15,V)@ [suki software]*/ -0x48,0x2a,0x1a,0xfe,0x29,0x49,0xfc,0x94,0x96,0xfd,0x94,0x94,0xfe,0x04,0x00 - -, -0x21,0x25,0x17,0x09,0x15,0x23,0x10,0x08,0x06,0x1f,0x20,0x27,0x24,0x38,0x00 - -, -/* @3132 λ(15x15,V)@ [suki software]*/ -0x80,0x40,0xf8,0x07,0x08,0x28,0xc8,0x09,0x0e,0x08,0x08,0xe8,0x0c,0x08,0x00 - -, -0x00,0x00,0x3f,0x00,0x20,0x20,0x20,0x27,0x20,0x3c,0x23,0x20,0x20,0x20,0x00 - -, -/* @3133 μ(15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x70,0x00,0x3e,0xaa,0xaa,0xaa,0xbe,0xaa,0xaa,0x3f,0x02,0x00 - -, -0x02,0x02,0x3f,0x00,0x00,0x00,0x3f,0x0a,0x0a,0x0a,0x2a,0x3f,0x00,0x00,0x00 - -, -/* @3134 ν(15x15,V)@ [suki software]*/ -0x20,0x20,0xe1,0x06,0x00,0x00,0x3e,0xaa,0xaa,0xbe,0xaa,0xaa,0xaa,0x3e,0x00 - -, -0x00,0x00,0x1f,0x08,0x04,0x00,0x00,0x3f,0x0a,0x0a,0x0a,0x2a,0x3f,0x00,0x00 - -, -/* @3135 ξ(15x15,V)@ [suki software]*/ -0x00,0xfe,0x8a,0xaa,0xaa,0xaa,0xaa,0x8e,0x40,0x90,0x10,0xff,0x10,0x10,0x00 - -, -0x18,0x17,0x08,0x14,0x20,0x1f,0x04,0x18,0x00,0x11,0x20,0x1f,0x00,0x00,0x00 - -, -/* @3136 ο(15x15,V)@ [suki software]*/ -0x00,0xfe,0x0a,0xca,0x5a,0xda,0xda,0x4e,0x00,0x68,0x08,0xff,0x08,0x08,0x00 - -, -0x01,0x10,0x0d,0x00,0x1a,0x23,0x24,0x29,0x20,0x39,0x02,0x09,0x10,0x00,0x00 - -, -/* @3137 (15x15,V)@ [suki software]*/ -0x00,0x02,0x02,0x02,0x02,0x02,0xfe,0x02,0x02,0x82,0x02,0xff,0x02,0x00,0x00 - -, -0x10,0x10,0x10,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x11,0x10,0x18,0x10,0x00 - -, -/* @3138 (15x15,V)@ [suki software]*/ -0x08,0x30,0x80,0xfc,0x04,0xf4,0x94,0xb5,0xd6,0xd4,0x94,0xf4,0x06,0x04,0x00 - -, -0x21,0x11,0x2e,0x21,0x20,0x3e,0x22,0x3e,0x22,0x22,0x3e,0x22,0x3e,0x20,0x00 - -, -/* @3139 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x00,0x7e,0x4a,0x4a,0x4a,0x4a,0x4a,0x7f,0x02,0x00,0x00 - -, -0x02,0x3e,0x01,0x20,0x3f,0x21,0x21,0x3f,0x21,0x3f,0x21,0x21,0x3f,0x20,0x00 - -, -/* @3140 (15x15,V)@ [suki software]*/ -0x00,0xf8,0x08,0xff,0x08,0xf8,0x08,0x78,0x89,0x0e,0x88,0x78,0x0c,0x08,0x00 - -, -0x10,0x11,0x11,0x0f,0x29,0x2d,0x10,0x08,0x05,0x02,0x05,0x08,0x30,0x10,0x00 - -, -/* @3141 (15x15,V)@ [suki software]*/ -0x00,0x08,0x08,0x08,0x38,0xc8,0x09,0x0e,0x88,0x78,0x08,0x08,0x0c,0x08,0x00 - -, -0x20,0x20,0x20,0x10,0x10,0x08,0x05,0x02,0x05,0x08,0x08,0x10,0x30,0x10,0x00 - -, -/* @3142 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x01,0x0e,0xf8,0xaa,0xaa,0xaa,0xfa,0x0a,0x0a,0x02,0xff,0x02,0x00 - -, -0x00,0x3f,0x00,0x04,0x07,0x02,0x02,0x02,0x1f,0x02,0x12,0x20,0x1f,0x00,0x00 - -, -/* @3143 (15x15,V)@ [suki software]*/ -0x20,0x30,0xac,0x63,0x10,0x10,0x08,0x78,0x89,0x0e,0x88,0x78,0x0c,0x08,0x00 - -, -0x09,0x1b,0x09,0x05,0x25,0x25,0x10,0x08,0x05,0x02,0x05,0x08,0x30,0x10,0x00 - -, -/* @3144 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0x04,0xfc,0x20,0x18,0xcf,0x38,0x88,0x78,0x08,0xfc,0x08,0x00 - -, -0x00,0x07,0x01,0x01,0x25,0x22,0x11,0x08,0x06,0x11,0x20,0x10,0x0f,0x00,0x00 - -, -/* @3145 (15x15,V)@ [suki software]*/ -0x10,0x12,0xd2,0xfe,0x51,0x81,0x18,0x54,0x57,0x54,0x5c,0x56,0xf4,0x00,0x00 - -, -0x04,0x03,0x00,0x3f,0x10,0x0c,0x01,0x1d,0x23,0x25,0x21,0x39,0x05,0x18,0x00 - -, -/* @3146 (15x15,V)@ [suki software]*/ -0x40,0x42,0x42,0xa2,0xa6,0xea,0x93,0x92,0x5a,0x26,0x22,0x22,0x62,0x20,0x00 - -, -0x00,0x20,0x10,0x0a,0x02,0x02,0x23,0x3e,0x02,0x02,0x0b,0x12,0x20,0x00,0x00 - -, -/* @3147 (15x15,V)@ [suki software]*/ -0x00,0x00,0xf8,0x01,0x06,0xe0,0x22,0x22,0x22,0xe2,0x02,0x02,0xff,0x02,0x00 - -, -0x00,0x00,0x3f,0x00,0x00,0x07,0x02,0x02,0x02,0x03,0x10,0x20,0x1f,0x00,0x00 - -, -/* @3148 (15x15,V)@ [suki software]*/ -0xfc,0x04,0x04,0xfc,0x10,0x88,0xa4,0xb3,0x28,0xa3,0xb4,0xa8,0x90,0x10,0x00 - -, -0x07,0x01,0x01,0x03,0x10,0x2a,0x24,0x1f,0x00,0x08,0x2a,0x24,0x1f,0x00,0x00 - -, -/* @3149 (15x15,V)@ [suki software]*/ -0x10,0x90,0x88,0xa4,0xb2,0xa9,0x24,0xa0,0xab,0xb4,0xe4,0x88,0x98,0x08,0x00 - -, -0x10,0x10,0x09,0x16,0x24,0x1f,0x00,0x10,0x09,0x0a,0x14,0x20,0x1f,0x00,0x00 - -, -/* @3150 (15x15,V)@ [suki software]*/ -0x90,0x90,0x88,0xa4,0xb2,0xa9,0xa4,0xa0,0xa9,0xb2,0xa4,0x88,0x98,0x88,0x00 - -, -0x00,0x00,0x20,0x3f,0x12,0x12,0x16,0x0a,0x02,0x1e,0x20,0x20,0x20,0x38,0x00 - -, -/* @3151 (15x15,V)@ [suki software]*/ -0x08,0x88,0xff,0x48,0x28,0x42,0xcc,0x00,0x50,0x90,0x10,0xff,0x10,0x10,0x00 - -, -0x11,0x20,0x1f,0x00,0x20,0x10,0x0f,0x10,0x20,0x25,0x28,0x27,0x20,0x20,0x00 - -, -/* @3152 (15x15,V)@ [suki software]*/ -0xf8,0x08,0xff,0x08,0xf8,0x00,0x80,0xbe,0xa2,0xe2,0xa2,0xa2,0xbf,0x82,0x00 - -, -0x13,0x11,0x1f,0x09,0x0d,0x10,0x3f,0x04,0x02,0x01,0x02,0x14,0x20,0x1f,0x00 - -, -/* @3153 (15x15,V)@ [suki software]*/ -0x10,0x21,0x02,0xc6,0x30,0x80,0xbe,0xa2,0xe2,0xa2,0xa2,0xbf,0xc2,0x80,0x00 - -, -0x02,0x02,0x3f,0x00,0x00,0x3f,0x08,0x04,0x03,0x02,0x14,0x20,0x1f,0x00,0x00 - -, -/* @3154 (15x15,V)@ [suki software]*/ -0x00,0x08,0x16,0x12,0xfa,0x96,0x93,0x92,0x92,0x96,0xfa,0x12,0x2a,0x06,0x00 - -, -0x00,0x00,0x3e,0x02,0x12,0x0a,0x06,0x03,0x06,0x0a,0x32,0x22,0x1e,0x00,0x00 - -, -/* @3155 (15x15,V)@ [suki software]*/ -0x00,0x14,0x14,0x14,0xfe,0x92,0x92,0x10,0xff,0x10,0x12,0xdc,0x10,0x00,0x00 - -, -0x02,0x02,0x12,0x21,0x1f,0x00,0x08,0x08,0x05,0x06,0x09,0x10,0x20,0x3c,0x00 - -, -/* @3156 (15x15,V)@ [suki software]*/ -0x04,0xf4,0x54,0x5f,0x54,0xf4,0x24,0x90,0x2c,0x43,0x04,0xe8,0x10,0x10,0x00 - -, -0x04,0x05,0x05,0x3f,0x05,0x05,0x04,0x08,0x09,0x04,0x04,0x3f,0x02,0x02,0x00 - -, -/* @3157 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x22,0x22,0x3e,0x22,0x22,0xe2,0x00,0xff,0x20,0x20,0x40,0x80,0x00 - -, -0x00,0x3f,0x11,0x11,0x1f,0x11,0x11,0x13,0x00,0x3f,0x00,0x00,0x00,0x00,0x00 - -, -/* @3158 (15x15,V)@ [suki software]*/ -0x08,0x08,0xff,0x88,0x00,0xfe,0x2a,0xaa,0x6a,0x2a,0x2a,0x6a,0xaf,0x02,0x00 - -, -0x11,0x21,0x1f,0x20,0x10,0x2f,0x20,0x25,0x25,0x3f,0x25,0x25,0x35,0x20,0x00 - -, -/* @3159 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x40,0x24,0x24,0x24,0x24,0xfc,0x22,0x22,0x23,0x22,0x20,0x00 - -, -0x02,0x3e,0x01,0x20,0x20,0x10,0x0c,0x03,0x00,0x03,0x04,0x08,0x30,0x10,0x00 - -, -/* @3160 (15x15,V)@ [suki software]*/ -0x00,0x02,0x82,0x7a,0x82,0x02,0x02,0xfe,0x02,0x82,0x7a,0x83,0x02,0x00,0x00 - -, -0x14,0x12,0x11,0x10,0x10,0x13,0x10,0x1f,0x12,0x11,0x10,0x10,0x1b,0x10,0x00 - -, -/* @3161 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0x04,0xfc,0x00,0xfc,0x04,0x07,0x24,0x44,0x3c,0x80,0x00,0x00 - -, -0x00,0x07,0x01,0x01,0x03,0x04,0x05,0x05,0x05,0x15,0x25,0x11,0x0f,0x01,0x00 - -, -/* @3162 (15x15,V)@ [suki software]*/ -0xa0,0xb8,0xe7,0xa4,0xa4,0xa4,0x00,0xfc,0x84,0xa7,0xa4,0xbe,0x84,0x80,0x00 - -, -0x00,0x00,0x1f,0x10,0x08,0x04,0x04,0x04,0x04,0x04,0x14,0x20,0x10,0x0f,0x00 - -, -/* @3163 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0xfc,0x84,0x86,0x85,0xa4,0xa4,0xbe,0x84,0x80,0xc0,0x80,0x00 - -, -0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x14,0x24,0x10,0x0f,0x00,0x00 - -, -/* @3164 (15x15,V)@ [suki software]*/ -0x10,0x61,0x82,0x46,0x10,0x12,0x12,0xf2,0x12,0x12,0x12,0x93,0x12,0x10,0x00 - -, -0x02,0x3e,0x01,0x00,0x00,0x00,0x01,0x01,0x11,0x21,0x11,0x0f,0x01,0x00,0x00 - -, -/* @3165 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe2,0x06,0x00,0x02,0xf2,0x02,0xfe,0x02,0x02,0xf3,0x82,0x00,0x00 - -, -0x00,0x00,0x1f,0x08,0x12,0x11,0x10,0x11,0x1f,0x12,0x11,0x10,0x18,0x13,0x00 - -, -/* @3166 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x2a,0x2a,0xaa,0x6a,0x2a,0x2a,0x6a,0xaa,0x2f,0x22,0x00,0x00 - -, -0x20,0x18,0x07,0x20,0x25,0x25,0x25,0x25,0x3f,0x25,0x25,0x25,0x34,0x20,0x00 - -, -/* @3167 (15x15,V)@ [suki software]*/ -0x00,0x22,0x22,0x22,0x22,0x22,0xfe,0x22,0xe2,0x22,0x22,0x23,0x32,0x20,0x00 - -, -0x00,0x20,0x20,0x10,0x08,0x06,0x01,0x00,0x1f,0x20,0x20,0x20,0x20,0x3c,0x00 - -, -/* @3168 (15x15,V)@ [suki software]*/ -0x04,0x84,0x94,0x94,0x94,0x9f,0xf4,0x94,0x94,0x9f,0x94,0x94,0x86,0x04,0x00 - -, -0x00,0x20,0x20,0x10,0x08,0x04,0x03,0x00,0x1f,0x20,0x20,0x20,0x20,0x3c,0x00 - -, -/* @3169 (15x15,V)@ [suki software]*/ -0x08,0x88,0xff,0x48,0x88,0x42,0x4a,0x7a,0x4e,0x4a,0x4a,0x7a,0x43,0x42,0x00 - -, -0x06,0x01,0x3f,0x00,0x01,0x00,0x3f,0x11,0x11,0x11,0x11,0x3f,0x00,0x00,0x00 - -, -/* @3170 (15x15,V)@ [suki software]*/ -0x40,0x42,0x4a,0x4a,0x7a,0x4e,0x4a,0x4a,0x4a,0x7a,0x42,0x43,0x42,0x40,0x00 - -, -0x00,0x00,0x00,0x3f,0x11,0x11,0x11,0x11,0x11,0x11,0x3f,0x00,0x00,0x00,0x00 - -, -/* @3171 (15x15,V)@ [suki software]*/ -0x00,0x00,0x40,0x5e,0x52,0x52,0x52,0xd2,0x52,0x52,0x5f,0x42,0x00,0x00,0x00 - -, -0x21,0x21,0x21,0x11,0x11,0x09,0x07,0x01,0x07,0x09,0x11,0x11,0x21,0x21,0x00 - -, -/* @3172 (15x15,V)@ [suki software]*/ -0x20,0x20,0x20,0xfe,0x22,0x22,0xfe,0x22,0x22,0x22,0xff,0x22,0x20,0x20,0x00 - -, -0x00,0x20,0x23,0x12,0x12,0x0a,0x07,0x12,0x22,0x12,0x0f,0x02,0x02,0x00,0x00 - -, -/* @3173 (15x15,V)@ [suki software]*/ -0x10,0x10,0x92,0x12,0x12,0xf2,0x12,0x10,0x10,0xff,0x10,0x12,0x14,0x10,0x00 - -, -0x10,0x30,0x1f,0x10,0x10,0x0f,0x09,0x09,0x08,0x03,0x0c,0x10,0x20,0x3c,0x00 - -, -/* @3174 (15x15,V)@ [suki software]*/ -0x00,0x02,0x42,0x42,0x42,0xc2,0x7e,0x42,0x42,0x42,0xe2,0x43,0x02,0x00,0x00 - -, -0x20,0x20,0x20,0x20,0x20,0x3f,0x20,0x20,0x20,0x20,0x3f,0x20,0x30,0x20,0x00 - -, -/* @3175 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x82,0x92,0xf2,0x9e,0x92,0x92,0xf2,0x83,0x82,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x00,0x3e,0x12,0x12,0x12,0x12,0x3e,0x00,0x00,0x00 - -, -/* @3176 (15x15,V)@ [suki software]*/ -0x80,0xa0,0x98,0x87,0x84,0x84,0x84,0xfc,0x84,0x84,0x84,0x86,0xc4,0x80,0x00 - -, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00 - -, -/* @3177 (15x15,V)@ [suki software]*/ -0x48,0x54,0x57,0xfc,0x54,0x7c,0x54,0x7c,0x54,0x54,0xfc,0x56,0x54,0x40,0x00 - -, -0x24,0x22,0x15,0x09,0x05,0x03,0x08,0x0f,0x09,0x09,0x3f,0x09,0x09,0x08,0x00 - -, -/* @3178 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x00,0x44,0x44,0xc4,0x7c,0x44,0x44,0xe4,0x46,0x04,0x00 - -, -0x00,0x00,0x3f,0x00,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x1f,0x10,0x10,0x00 - -, -/* @3179 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x90,0x88,0xf7,0x94,0xb4,0xd4,0x94,0xf4,0x86,0x84,0x00 - -, -0x00,0x00,0x3f,0x00,0x00,0x0f,0x08,0x09,0x0a,0x28,0x28,0x1f,0x08,0x08,0x00 - -, -/* @3180 (15x15,V)@ [suki software]*/ -0x20,0x20,0xff,0x20,0x20,0x00,0xfc,0x04,0x07,0x24,0x44,0x3e,0x84,0x00,0x00 - -, -0x04,0x0c,0x07,0x02,0x02,0x04,0x05,0x05,0x05,0x15,0x25,0x11,0x0f,0x01,0x00 - -, -/* @3181 (15x15,V)@ [suki software]*/ -0x00,0x00,0xf8,0x08,0x08,0x08,0x08,0xff,0x08,0x09,0x8e,0x68,0x08,0x00,0x00 - -, -0x20,0x18,0x07,0x20,0x20,0x10,0x10,0x0b,0x04,0x0a,0x11,0x10,0x20,0x3c,0x00 - -, -/* @3182 (15x15,V)@ [suki software]*/ -0x10,0x0c,0x95,0x55,0x75,0xc5,0x5f,0x45,0xd5,0x55,0x45,0x15,0x0c,0x00,0x00 - -, -0x02,0x22,0x22,0x26,0x15,0x0d,0x07,0x15,0x25,0x25,0x1e,0x02,0x02,0x02,0x00 - -, -/* @3183 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x44,0x44,0xfc,0x82,0x92,0xf2,0x9e,0x92,0x92,0xf2,0x83,0x82,0x00 - -, -0x00,0x0f,0x04,0x04,0x0f,0x00,0x3e,0x12,0x12,0x12,0x12,0x12,0x3e,0x00,0x00 - -, -/* @3184 (15x15,V)@ [suki software]*/ -0x60,0x1c,0x10,0xff,0x90,0xa0,0x18,0xcf,0x38,0x88,0x78,0x08,0xfc,0x08,0x00 - -, -0x02,0x02,0x01,0x3f,0x00,0x12,0x09,0x04,0x02,0x11,0x20,0x10,0x0f,0x00,0x00 - -, -/* @3185 (15x15,V)@ [suki software]*/ -0x40,0x20,0x10,0x0c,0x0b,0xc8,0x38,0x08,0x88,0x78,0x08,0x08,0xfc,0x08,0x00 - -, -0x00,0x24,0x24,0x12,0x11,0x08,0x04,0x02,0x01,0x10,0x20,0x10,0x0f,0x00,0x00 - -, -/* @3186 (15x15,V)@ [suki software]*/ -0x00,0x20,0x10,0x88,0x87,0x4a,0xd2,0x22,0x52,0x4e,0x82,0x80,0x80,0x80,0x00 - -, -0x01,0x21,0x21,0x12,0x0a,0x06,0x03,0x12,0x22,0x12,0x0e,0x00,0x01,0x00,0x00 - -, -/* @3187 (15x15,V)@ [suki software]*/ -0x78,0x00,0xff,0x08,0x90,0x82,0x92,0xf2,0x9e,0x92,0x92,0xf2,0x83,0x82,0x00 - -, -0x00,0x00,0x3f,0x00,0x00,0x00,0x3e,0x12,0x12,0x12,0x12,0x3e,0x00,0x00,0x00 - -, -/* @3188 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x00,0x00,0x5e,0x52,0x52,0xd2,0x52,0x5f,0x42,0x00,0x00 - -, -0x00,0x00,0x1f,0x08,0x24,0x21,0x11,0x09,0x05,0x03,0x05,0x09,0x31,0x11,0x00 - -, -/* @3189 (15x15,V)@ [suki software]*/ -0x20,0x24,0x24,0xa4,0xa4,0xbf,0xa4,0xa4,0xa4,0xbf,0xa4,0x24,0x24,0x20,0x00 - -, -0x00,0x00,0x00,0x3f,0x14,0x14,0x14,0x14,0x14,0x14,0x3f,0x00,0x00,0x00,0x00 - -, -/* @3190 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0x7a,0xce,0x4a,0x7a,0x00,0xfe,0x22,0x22,0x22,0x3f,0x82,0x00 - -, -0x00,0x23,0x1a,0x02,0x0b,0x32,0x02,0x02,0x09,0x32,0x02,0x0a,0x32,0x03,0x00 - -, -/* @3191 (15x15,V)@ [suki software]*/ -0x08,0x08,0xc8,0xff,0x48,0x88,0x00,0xfe,0x22,0x22,0x22,0xe1,0x21,0x20,0x00 - -, -0x04,0x03,0x00,0x3f,0x00,0x21,0x18,0x07,0x00,0x00,0x00,0x3f,0x00,0x00,0x00 - -, -/* @3192 (15x15,V)@ [suki software]*/ -0x02,0x02,0xf2,0x12,0x12,0xfe,0x12,0x12,0xfe,0x12,0x12,0x12,0xf3,0x02,0x00 - -, -0x00,0x00,0x3f,0x14,0x12,0x11,0x10,0x10,0x11,0x12,0x12,0x12,0x3f,0x00,0x00 - -, -/* @3193 (15x15,V)@ [suki software]*/ -0x84,0xe4,0x3c,0x24,0xe4,0x02,0xf2,0x12,0xfe,0x12,0xfe,0x12,0xf3,0x02,0x00 - -, -0x00,0x1f,0x08,0x08,0x0f,0x00,0x3f,0x12,0x11,0x10,0x13,0x12,0x3f,0x00,0x00 - -, -/* @3194 (15x15,V)@ [suki software]*/ -0x04,0x84,0xe4,0x5c,0x46,0xc4,0x80,0x70,0x8f,0x08,0x08,0x88,0x7c,0x08,0x00 - -, -0x01,0x00,0x1f,0x08,0x28,0x2f,0x10,0x10,0x08,0x05,0x02,0x01,0x00,0x00,0x00 - -, -/* @3195 (15x15,V)@ [suki software]*/ -0xfc,0x44,0x44,0xfc,0x08,0x88,0xff,0x48,0x88,0xfc,0x24,0x22,0xf3,0x22,0x00 - -, -0x0f,0x04,0x04,0x0f,0x01,0x00,0x3f,0x20,0x10,0x0f,0x00,0x00,0x3f,0x00,0x00 - -, -/* @3196 (15x15,V)@ [suki software]*/ -0xfc,0x04,0x04,0xfc,0x02,0x0a,0xea,0xaa,0xaf,0xaa,0xaa,0xea,0x0a,0x02,0x00 - -, -0x07,0x01,0x01,0x03,0x02,0x3a,0x2a,0x2b,0x2a,0x2a,0x2b,0x3a,0x02,0x02,0x00 - -, -/* @3197 (15x15,V)@ [suki software]*/ -0xfc,0x04,0x04,0xfc,0x02,0x02,0xfe,0x82,0x02,0x3a,0x27,0xf2,0x20,0x00,0x00 - -, -0x03,0x01,0x21,0x13,0x08,0x26,0x21,0x10,0x0b,0x04,0x0b,0x10,0x30,0x10,0x00 - -, -/* @3198 (15x15,V)@ [suki software]*/ -0x20,0x38,0xe7,0x24,0x24,0x04,0x00,0xbe,0xea,0xaa,0xaa,0xbf,0xc2,0x80,0x00 - -, -0x01,0x01,0x1f,0x11,0x09,0x02,0x29,0x14,0x0b,0x14,0x23,0x10,0x0f,0x00,0x00 - -, -/* @3199 (15x15,V)@ [suki software]*/ -0x60,0x1c,0x10,0xff,0x90,0x02,0xf2,0x12,0xfe,0x12,0xfe,0x12,0x13,0xf2,0x00 - -, -0x02,0x02,0x01,0x3f,0x00,0x00,0x3f,0x14,0x13,0x10,0x11,0x12,0x12,0x3f,0x00 - -, -}, -//************************************** -{ -/* @3200 ϡ(15x15,V)@ [suki software]*/ -0x12,0x92,0x52,0xfe,0x91,0x21,0xa8,0xe9,0xba,0xe4,0xa4,0xaa,0xa9,0x20,0x00 - -, -0x02,0x01,0x00,0x3f,0x04,0x02,0x0f,0x00,0x00,0x3f,0x00,0x08,0x0f,0x00,0x00 - -, -/* @3201 Ϣ(15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0xfc,0x54,0x56,0x55,0x54,0x54,0x54,0xfe,0x04,0x00,0x00,0x00 - -, -0x00,0x10,0x0c,0x01,0x1d,0x21,0x23,0x2d,0x21,0x21,0x39,0x00,0x04,0x18,0x00 - -, -/* @3202 ϣ(15x15,V)@ [suki software]*/ -0x20,0x20,0x20,0xa9,0x6a,0x2a,0x34,0xe4,0x24,0x2a,0x29,0xa0,0x20,0x20,0x00 - -, -0x04,0x02,0x01,0x1f,0x01,0x01,0x01,0x3f,0x01,0x09,0x11,0x0f,0x01,0x00,0x00 - -, -/* @3203 Ϥ(15x15,V)@ [suki software]*/ -0x00,0x10,0x12,0x96,0x5a,0x32,0x12,0xfe,0x31,0x59,0x95,0x91,0x18,0x10,0x00 - -, -0x00,0x11,0x0d,0x00,0x1e,0x20,0x22,0x2d,0x20,0x20,0x38,0x02,0x0d,0x01,0x00 - -, -/* @3204 ϥ(15x15,V)@ [suki software]*/ -0x00,0xfe,0x92,0x92,0xfe,0x24,0x94,0x4c,0x24,0x9f,0x24,0x4c,0x96,0xa4,0x00 - -, -0x30,0x0f,0x10,0x20,0x1f,0x01,0x10,0x0a,0x24,0x3f,0x04,0x0a,0x0a,0x10,0x00 - -, -/* @3205 Ϧ(15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x80,0x60,0x38,0x4f,0x88,0x08,0x08,0xc8,0x3c,0x08,0x00,0x00 - -, -0x00,0x22,0x21,0x20,0x10,0x10,0x08,0x05,0x02,0x01,0x00,0x00,0x00,0x00,0x00 - -, -/* @3206 ϧ(15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x08,0x50,0x48,0x48,0x7f,0x48,0x48,0x7f,0x48,0x48,0x40,0x00 - -, -0x00,0x00,0x3f,0x00,0x00,0x00,0x3f,0x15,0x15,0x15,0x15,0x3f,0x00,0x00,0x00 - -, -/* @3207 Ϩ(15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x20,0x18,0x00,0xfc,0x54,0x56,0x55,0x54,0x54,0xfc,0x00,0x00 - -, -0x20,0x18,0x07,0x02,0x24,0x18,0x01,0x1d,0x23,0x25,0x21,0x39,0x05,0x18,0x00 - -, -/* @3208 ϩ(15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x10,0x28,0x20,0xa8,0x6a,0x3a,0xa4,0x26,0x29,0xa8,0x20,0x00 - -, -0x20,0x18,0x07,0x02,0x0c,0x01,0x1f,0x01,0x01,0x3f,0x09,0x11,0x0f,0x01,0x00 - -, -/* @3209 Ϫ(15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x02,0x46,0x6a,0xd6,0x4a,0x21,0x29,0x85,0x01,0x00,0x00 - -, -0x02,0x3e,0x01,0x24,0x24,0x25,0x15,0x0d,0x07,0x0d,0x15,0x15,0x25,0x24,0x00 - -, -/* @3210 ϫ(15x15,V)@ [suki software]*/ -0x10,0x61,0x82,0x66,0x80,0x40,0x30,0x4c,0x8b,0x08,0x08,0xc8,0x3c,0x08,0x00 - -, -0x02,0x02,0x3f,0x00,0x20,0x20,0x10,0x08,0x05,0x02,0x01,0x00,0x00,0x00,0x00 - -, -/* @3211 Ϭ(15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x0a,0x4a,0x5a,0x2a,0x2a,0x7a,0x2a,0x2a,0x5f,0x42,0x00,0x00 - -, -0x20,0x18,0x07,0x08,0x0c,0x0b,0x0a,0x0a,0x3f,0x0a,0x0a,0x0b,0x0a,0x08,0x00 - -, -/* @3212 ϭ(15x15,V)@ [suki software]*/ -0x08,0xc8,0xff,0x48,0x00,0x7c,0xd7,0x54,0x7c,0x20,0xdf,0x10,0xf8,0x10,0x00 - -, -0x03,0x00,0x3f,0x20,0x11,0x0f,0x15,0x15,0x2d,0x10,0x09,0x06,0x19,0x20,0x00 - -, -/* @3213 Ϯ(15x15,V)@ [suki software]*/ -0x04,0x44,0x44,0x24,0x14,0x2f,0x24,0xa4,0x3d,0x56,0x54,0x4c,0x46,0x74,0x00 - -, -0x10,0x11,0x09,0x05,0x3f,0x21,0x11,0x13,0x05,0x09,0x15,0x13,0x31,0x10,0x00 - -, -/* @3214 ϯ(15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0x12,0x12,0x7e,0x52,0xd3,0x52,0x7e,0x12,0x12,0x12,0x02,0x00 - -, -0x30,0x0f,0x00,0x00,0x1f,0x01,0x01,0x3f,0x01,0x09,0x11,0x0f,0x00,0x00,0x00 - -, -/* @3215 ϰ(15x15,V)@ [suki software]*/ -0x00,0x02,0x02,0x02,0x0a,0x12,0x62,0x02,0x02,0x82,0x02,0xff,0x02,0x00,0x00 - -, -0x00,0x04,0x0c,0x04,0x04,0x02,0x02,0x01,0x11,0x20,0x10,0x0f,0x00,0x00,0x00 - -, -/* @3216 ϱ(15x15,V)@ [suki software]*/ -0x88,0x78,0x0f,0x08,0xf8,0x00,0xfc,0x54,0x56,0x55,0x54,0x54,0xfe,0x04,0x00 - -, -0x20,0x11,0x0a,0x04,0x0b,0x10,0x09,0x1d,0x21,0x23,0x25,0x39,0x03,0x0c,0x00 - -, -/* @3217 ϲ(15x15,V)@ [suki software]*/ -0x00,0x02,0x02,0xea,0xaa,0xaa,0xaa,0xaf,0xaa,0xaa,0xea,0x0a,0x02,0x00,0x00 - -, -0x02,0x02,0x02,0x3a,0x2a,0x2b,0x2a,0x2a,0x2b,0x2a,0x3a,0x02,0x02,0x02,0x00 - -, -/* @3218 ϳ(15x15,V)@ [suki software]*/ -0x40,0x30,0xef,0x24,0x24,0x44,0x50,0xce,0x48,0x7f,0xc8,0x48,0x48,0x40,0x00 - -, -0x01,0x01,0x3f,0x11,0x29,0x21,0x10,0x0f,0x00,0x00,0x1f,0x20,0x20,0x3c,0x00 - -, -/* @3219 ϴ(15x15,V)@ [suki software]*/ -0x10,0x62,0x8c,0x60,0x80,0xb0,0x8e,0x88,0xff,0x88,0x88,0x8c,0xc8,0x80,0x00 - -, -0x02,0x3e,0x01,0x20,0x20,0x10,0x0f,0x00,0x00,0x1f,0x20,0x20,0x20,0x3c,0x00 - -, -/* @3220 ϵ(15x15,V)@ [suki software]*/ -0x00,0x02,0x82,0x92,0x92,0xda,0xb6,0xb2,0x92,0x91,0xc9,0x81,0x01,0x00,0x00 - -, -0x00,0x10,0x08,0x04,0x02,0x10,0x20,0x1f,0x00,0x02,0x04,0x08,0x19,0x00,0x00 - -, -/* @3221 ϶(15x15,V)@ [suki software]*/ -0x00,0xfe,0x22,0x5a,0x86,0x08,0xf4,0x52,0x50,0x5f,0x50,0x52,0xf4,0x0c,0x00 - -, -0x00,0x3f,0x02,0x04,0x13,0x08,0x05,0x11,0x21,0x1f,0x01,0x05,0x09,0x18,0x00 - -, -/* @3222 Ϸ(15x15,V)@ [suki software]*/ -0x08,0x28,0x48,0x88,0x7c,0x08,0x20,0x20,0xff,0x10,0x12,0xd4,0x18,0x10,0x00 - -, -0x10,0x08,0x06,0x01,0x02,0x2c,0x20,0x10,0x09,0x06,0x09,0x10,0x20,0x3c,0x00 - -, -/* @3223 ϸ(15x15,V)@ [suki software]*/ -0x20,0x30,0xac,0x63,0x18,0x00,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfe,0x04,0x00 - -, -0x09,0x1b,0x09,0x05,0x05,0x00,0x3f,0x10,0x10,0x1f,0x10,0x10,0x3f,0x00,0x00 - -, -/* @3224 Ϲ(15x15,V)@ [suki software]*/ -0xfc,0x24,0x24,0xfc,0x00,0x0c,0x54,0x54,0xfd,0x56,0x54,0x54,0x0c,0x00,0x00 - -, -0x1f,0x09,0x09,0x1f,0x00,0x01,0x3d,0x25,0x27,0x25,0x25,0x3d,0x01,0x00,0x00 - -, -/* @3225 Ϻ(15x15,V)@ [suki software]*/ -0x00,0xf8,0x08,0xff,0x08,0xfa,0x02,0x02,0x02,0xfe,0x22,0x42,0x43,0x82,0x00 - -, -0x10,0x11,0x11,0x0f,0x09,0x0d,0x18,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00 - -, -/* @3226 ϻ(15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0x02,0xfa,0x4a,0x4a,0xfa,0x4a,0x4a,0x4a,0xfb,0x02,0x00,0x00 - -, -0x00,0x3f,0x20,0x20,0x23,0x21,0x21,0x3f,0x21,0x21,0x21,0x23,0x20,0x00,0x00 - -, -/* @3227 ϼ(15x15,V)@ [suki software]*/ -0x10,0xcc,0x55,0x55,0x55,0xc5,0x1f,0x45,0x55,0x55,0x45,0xd5,0x0c,0x00,0x00 - -, -0x00,0x3f,0x15,0x15,0x15,0x15,0x20,0x2d,0x15,0x15,0x2d,0x25,0x20,0x20,0x00 - -, -/* @3228 Ͻ(15x15,V)@ [suki software]*/ -0x44,0x74,0x4f,0xf4,0x44,0x40,0x0c,0x54,0x54,0xff,0x54,0x54,0x54,0x0c,0x00 - -, -0x04,0x04,0x04,0x3f,0x02,0x02,0x01,0x3d,0x15,0x17,0x15,0x15,0x3d,0x01,0x00 - -, -/* @3229 Ͼ(15x15,V)@ [suki software]*/ -0xfc,0x24,0x24,0xfc,0x00,0xfe,0x52,0x52,0x1e,0xc0,0x52,0x52,0xde,0x00,0x00 - -, -0x0f,0x02,0x02,0x07,0x00,0x3f,0x02,0x22,0x10,0x0b,0x04,0x0a,0x31,0x10,0x00 - -, -/* @3230 Ͽ(15x15,V)@ [suki software]*/ -0xf8,0x00,0xff,0x00,0xf8,0x00,0x28,0x48,0x08,0xff,0x08,0x48,0x2c,0x08,0x00 - -, -0x07,0x04,0x03,0x02,0x27,0x21,0x11,0x09,0x05,0x03,0x05,0x09,0x11,0x21,0x00 - -, -/* @3231 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x00,0x28,0x48,0x08,0xff,0x08,0x48,0x2c,0x88,0x00,0x00 - -, -0x00,0x00,0x3f,0x00,0x21,0x11,0x09,0x05,0x03,0x05,0x09,0x11,0x21,0x21,0x00 - -, -/* @3232 (15x15,V)@ [suki software]*/ -0x22,0x14,0x88,0xf4,0x03,0x28,0x48,0x08,0xff,0x08,0x48,0x2c,0x88,0x00,0x00 - -, -0x02,0x11,0x20,0x1f,0x21,0x11,0x09,0x05,0x03,0x05,0x09,0x11,0x21,0x21,0x00 - -, -/* @3233 (15x15,V)@ [suki software]*/ -0x02,0x02,0x02,0x02,0x02,0x02,0xfe,0x22,0x22,0x42,0x42,0x82,0x03,0x02,0x00 - -, -0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 - -, -/* @3234 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x02,0x02,0xfa,0xaa,0xae,0xaa,0xaa,0xaa,0xfa,0x03,0x02,0x00 - -, -0x20,0x18,0x07,0x20,0x28,0x24,0x13,0x16,0x0a,0x0a,0x16,0x22,0x20,0x20,0x00 - -, -/* @3235 (15x15,V)@ [suki software]*/ -0x02,0x02,0x02,0xfa,0xaa,0xaa,0xae,0xaa,0xaa,0xaa,0xfa,0x02,0x03,0x02,0x00 - -, -0x20,0x28,0x28,0x24,0x12,0x17,0x0a,0x0a,0x0a,0x16,0x12,0x20,0x20,0x20,0x00 - -, -/* @3236 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0x04,0xfc,0x02,0x02,0x02,0xfe,0x22,0x22,0x42,0xc3,0x02,0x00 - -, -0x00,0x03,0x01,0x01,0x03,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x00 - -, -/* @3237 (15x15,V)@ [suki software]*/ -0x08,0x88,0xff,0x48,0x08,0xfc,0x24,0xe4,0x22,0x30,0x0f,0xe8,0x08,0x18,0x00 - -, -0x11,0x20,0x1f,0x20,0x10,0x0f,0x00,0x2f,0x10,0x08,0x06,0x01,0x0e,0x30,0x00 - -, -/* @3238 (15x15,V)@ [suki software]*/ -0x30,0x2c,0xe7,0x24,0x00,0xfc,0x14,0xf2,0x12,0x18,0xef,0x08,0x18,0x08,0x00 - -, -0x01,0x01,0x1f,0x29,0x10,0x0f,0x00,0x2f,0x10,0x0e,0x01,0x06,0x18,0x20,0x00 - -, -/* @3239 (15x15,V)@ [suki software]*/ -0x80,0xa0,0x90,0x8e,0x88,0x88,0x88,0xff,0x88,0x88,0x8c,0x88,0xc0,0x80,0x00 - -, -0x20,0x20,0x10,0x08,0x04,0x03,0x00,0x00,0x1f,0x20,0x20,0x20,0x20,0x38,0x00 - -, -/* @3240 (15x15,V)@ [suki software]*/ -0x40,0x20,0x10,0xfc,0x03,0xf0,0x00,0x00,0x00,0xff,0x00,0x00,0xf0,0x00,0x00 - -, -0x00,0x00,0x00,0x3f,0x00,0x1f,0x10,0x10,0x10,0x1f,0x10,0x10,0x3f,0x00,0x00 - -, -/* @3241 (15x15,V)@ [suki software]*/ -0x20,0xf8,0x97,0xf4,0x9c,0xf0,0x08,0x49,0x4e,0xf8,0x4c,0x4b,0x48,0x08,0x00 - -, -0x10,0x17,0x12,0x0b,0x0a,0x0b,0x02,0x02,0x02,0x3f,0x02,0x02,0x02,0x02,0x00 - -, -/* @3242 (15x15,V)@ [suki software]*/ -0x20,0x30,0xac,0x63,0x10,0x48,0x42,0x42,0x42,0xfe,0x41,0x41,0x61,0x40,0x00 - -, -0x09,0x1b,0x09,0x05,0x05,0x05,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00 - -, -/* @3243 (15x15,V)@ [suki software]*/ -0x00,0x00,0xf8,0x08,0xa8,0xa8,0xa8,0x88,0x7f,0x88,0x09,0xea,0x08,0x08,0x00 - -, -0x20,0x18,0x07,0x00,0x0f,0x04,0x24,0x2f,0x10,0x09,0x06,0x09,0x10,0x3c,0x00 - -, -/* @3244 (15x15,V)@ [suki software]*/ -0x00,0x3e,0x00,0xc0,0x7f,0x40,0x62,0x56,0x4a,0x4a,0xd6,0x23,0x22,0x20,0x00 - -, -0x20,0x20,0x20,0x17,0x10,0x08,0x07,0x08,0x08,0x10,0x17,0x20,0x20,0x00,0x00 - -, -/* @3245 (15x15,V)@ [suki software]*/ -0x90,0x48,0xe7,0x10,0x60,0x38,0xe7,0x24,0x24,0x10,0x12,0xf2,0x12,0x12,0x00 - -, -0x00,0x00,0x3f,0x00,0x01,0x01,0x1f,0x09,0x05,0x10,0x20,0x1f,0x00,0x00,0x00 - -, -/* @3246 (15x15,V)@ [suki software]*/ -0x40,0x40,0xfc,0x57,0x44,0xfc,0x00,0xc4,0xa4,0x9d,0x86,0xc4,0x24,0x04,0x00 - -, -0x20,0x18,0x07,0x11,0x22,0x1f,0x00,0x10,0x18,0x16,0x11,0x14,0x18,0x30,0x00 - -, -/* @3247 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x01,0x26,0x20,0xa0,0x62,0xfa,0xa2,0x22,0x22,0x02,0xff,0x02,0x00 - -, -0x00,0x3f,0x00,0x02,0x01,0x00,0x00,0x0f,0x00,0x01,0x12,0x20,0x1f,0x00,0x00 - -, -/* @3248 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x00,0x62,0x5a,0xc6,0x00,0xf4,0x04,0xfc,0x22,0x23,0x22,0x00 - -, -0x02,0x3e,0x21,0x10,0x0b,0x04,0x0b,0x10,0x17,0x24,0x27,0x24,0x24,0x24,0x00 - -, -/* @3249 (15x15,V)@ [suki software]*/ -0x02,0xf2,0x92,0x92,0x9e,0x00,0x84,0xc4,0xa5,0x9e,0x84,0x44,0x26,0x04,0x00 - -, -0x00,0x10,0x20,0x10,0x0f,0x00,0x10,0x38,0x14,0x12,0x11,0x14,0x18,0x30,0x00 - -, -/* @3250 (15x15,V)@ [suki software]*/ -0x88,0x78,0x0f,0x08,0xf8,0x00,0x55,0x56,0xfc,0x54,0xfe,0x55,0xf4,0x44,0x00 - -, -0x20,0x11,0x0a,0x04,0x2b,0x10,0x09,0x05,0x3f,0x01,0x3f,0x05,0x09,0x10,0x00 - -, -/* @3251 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x7e,0x2a,0xaa,0x2a,0x2a,0xaa,0x2a,0x2a,0x7f,0x02,0x00,0x00 - -, -0x20,0x21,0x22,0x2c,0x20,0x3f,0x20,0x20,0x3f,0x28,0x24,0x22,0x31,0x20,0x00 - -, -/* @3252 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x22,0x5a,0x86,0x20,0x10,0x2c,0x23,0x24,0x28,0x10,0xa0,0x20,0x00 - -, -0x00,0x3f,0x02,0x04,0x23,0x20,0x22,0x2c,0x21,0x26,0x38,0x26,0x21,0x20,0x00 - -, -/* @3253 (15x15,V)@ [suki software]*/ -0x22,0x22,0xfe,0x22,0x22,0x00,0xfe,0x02,0xfa,0x02,0x02,0xff,0x02,0x00,0x00 - -, -0x08,0x08,0x07,0x04,0x24,0x20,0x11,0x0c,0x03,0x1f,0x20,0x21,0x20,0x3c,0x00 - -, -/* @3254 (15x15,V)@ [suki software]*/ -0xe4,0x24,0x64,0xbf,0x64,0x24,0xe6,0x04,0x20,0x20,0xff,0x20,0x2c,0x20,0x00 - -, -0x3f,0x00,0x05,0x1f,0x05,0x10,0x1f,0x20,0x18,0x07,0x00,0x07,0x18,0x20,0x00 - -, -/* @3255 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0xfe,0x4a,0x4a,0x4a,0x4a,0x4a,0xff,0x02,0x00,0x00,0x00,0x00 - -, -0x01,0x11,0x31,0x19,0x15,0x13,0x11,0x11,0x15,0x19,0x11,0x21,0x01,0x01,0x00 - -, -/* @3256 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x92,0x92,0xfe,0x00,0x7c,0x54,0x56,0xd5,0x54,0x54,0x7e,0x84,0x00 - -, -0x30,0x0f,0x10,0x20,0x1f,0x11,0x09,0x17,0x20,0x1f,0x02,0x05,0x09,0x10,0x00 - -, -/* @3257 (15x15,V)@ [suki software]*/ -0x20,0x10,0xef,0x08,0x18,0x28,0xd0,0x48,0x27,0x04,0x54,0x4c,0xc4,0x00,0x00 - -, -0x00,0x00,0x1f,0x08,0x04,0x00,0x3f,0x12,0x12,0x10,0x12,0x12,0x3f,0x00,0x00 - -, -/* @3258 (15x15,V)@ [suki software]*/ -0x40,0xc4,0x54,0x54,0x55,0x56,0xfc,0x54,0x56,0x55,0x54,0x56,0x44,0x00,0x00 - -, -0x08,0x08,0x3d,0x02,0x25,0x22,0x11,0x09,0x07,0x09,0x11,0x23,0x21,0x20,0x00 - -, -/* @3259 (15x15,V)@ [suki software]*/ -0x10,0x0c,0x84,0x74,0x24,0x24,0x25,0xf6,0x24,0x24,0x24,0x14,0x0c,0x00,0x00 - -, -0x20,0x21,0x21,0x11,0x09,0x07,0x01,0x01,0x1f,0x21,0x21,0x21,0x21,0x3c,0x00 - -, -/* @3260 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0x32,0xce,0x20,0xd0,0x48,0x27,0x04,0x54,0x4e,0xc4,0x00,0x00 - -, -0x00,0x3f,0x02,0x04,0x03,0x00,0x3f,0x12,0x12,0x10,0x12,0x12,0x3f,0x00,0x00 - -, -/* @3261 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0x32,0xce,0x00,0xfe,0x4a,0xca,0x4a,0x4a,0x7f,0x82,0x00,0x00 - -, -0x00,0x3f,0x02,0x04,0x03,0x00,0x3f,0x10,0x13,0x04,0x0a,0x11,0x30,0x10,0x00 - -, -/* @3262 (15x15,V)@ [suki software]*/ -0x20,0x30,0xac,0x63,0x10,0x88,0x90,0x90,0xff,0x48,0x4a,0x4c,0x48,0x00,0x00 - -, -0x09,0x1b,0x09,0x05,0x25,0x20,0x10,0x10,0x0b,0x04,0x0a,0x11,0x20,0x3c,0x00 - -, -/* @3263 (15x15,V)@ [suki software]*/ -0x10,0x10,0xd0,0xff,0x50,0x90,0x00,0xfe,0x22,0x22,0x22,0x22,0xff,0x02,0x00 - -, -0x04,0x03,0x00,0x3f,0x00,0x00,0x00,0x3f,0x11,0x11,0x11,0x11,0x3f,0x00,0x00 - -, -/* @3264 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x12,0x92,0xfe,0x92,0x12,0xfa,0x4a,0x4a,0x4a,0xfb,0x02,0x00 - -, -0x20,0x18,0x07,0x02,0x01,0x3f,0x00,0x01,0x3f,0x12,0x12,0x12,0x3f,0x00,0x00 - -, -/* @3265 (15x15,V)@ [suki software]*/ -0x30,0x2c,0xeb,0x28,0x02,0xba,0xaa,0xfa,0x83,0xba,0xea,0xaa,0xba,0x02,0x00 - -, -0x01,0x01,0x1f,0x09,0x15,0x12,0x0a,0x3f,0x22,0x16,0x0b,0x16,0x22,0x22,0x00 - -, -/* @3266 (15x15,V)@ [suki software]*/ -0x80,0x88,0x4a,0x4a,0x2a,0x1a,0x0a,0xfe,0x19,0x29,0x49,0x48,0x8c,0x88,0x00 - -, -0x00,0x00,0x00,0x3f,0x15,0x15,0x15,0x15,0x15,0x15,0x3f,0x00,0x00,0x00,0x00 - -, -/* @3267 (15x15,V)@ [suki software]*/ -0x50,0x48,0x44,0xf7,0x4c,0x54,0x04,0xe8,0xa4,0xa7,0xac,0xb4,0xe6,0x04,0x00 - -, -0x04,0x02,0x01,0x3f,0x01,0x02,0x00,0x3f,0x14,0x14,0x14,0x14,0x3f,0x00,0x00 - -, -/* @3268 (15x15,V)@ [suki software]*/ -0x02,0x02,0xba,0xaa,0xea,0xba,0x83,0x82,0xfa,0xaa,0xaa,0xba,0x02,0x02,0x00 - -, -0x12,0x12,0x12,0x0a,0x3f,0x22,0x12,0x06,0x0b,0x12,0x1a,0x26,0x22,0x22,0x00 - -, -/* @3269 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x08,0x88,0xff,0x48,0x88,0x00,0xfc,0x24,0x24,0xfe,0x04,0x00 - -, -0x02,0x3e,0x01,0x06,0x01,0x3f,0x00,0x00,0x00,0x3f,0x11,0x11,0x3f,0x00,0x00 - -, -/* @3270 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x10,0x18,0x94,0x52,0x31,0x10,0x08,0x04,0xc0,0x00,0x00,0x00 - -, -0x00,0x20,0x20,0x21,0x21,0x11,0x11,0x09,0x05,0x03,0x01,0x00,0x00,0x00,0x00 - -, -/* @3271 (15x15,V)@ [suki software]*/ -0x08,0x49,0x4e,0xf8,0x4f,0x48,0x12,0x22,0xfe,0x00,0x12,0x22,0xfe,0x00,0x00 - -, -0x22,0x12,0x0a,0x07,0x02,0x04,0x12,0x21,0x1f,0x00,0x12,0x21,0x1f,0x00,0x00 - -, -/* @3272 (15x15,V)@ [suki software]*/ -0x08,0x88,0xc9,0x6a,0x98,0x00,0x49,0x4a,0x4c,0xf8,0x4c,0x4b,0x48,0x08,0x00 - -, -0x01,0x00,0x3f,0x00,0x00,0x02,0x02,0x02,0x02,0x3f,0x02,0x02,0x02,0x02,0x00 - -, -/* @3273 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x00,0x08,0x49,0x4e,0x48,0xf8,0x4c,0x4b,0x48,0x08,0x00 - -, -0x00,0x00,0x1f,0x08,0x04,0x02,0x02,0x02,0x02,0x3f,0x02,0x02,0x02,0x02,0x00 - -, -/* @3274 (15x15,V)@ [suki software]*/ -0x88,0x48,0x28,0xff,0x28,0x48,0x00,0xfe,0xaa,0xaa,0xaa,0xaa,0xff,0x02,0x00 - -, -0x00,0x10,0x0c,0x01,0x1e,0x20,0x22,0x25,0x28,0x20,0x38,0x02,0x04,0x08,0x00 - -, -/* @3275 (15x15,V)@ [suki software]*/ -0x00,0xf8,0x08,0xf8,0x00,0xf8,0x08,0xec,0x2b,0x28,0xe8,0x08,0xfc,0x08,0x00 - -, -0x00,0x07,0x02,0x03,0x00,0x3f,0x00,0x07,0x02,0x02,0x17,0x20,0x1f,0x00,0x00 - -, -/* @3276 (15x15,V)@ [suki software]*/ -0x00,0x02,0x82,0xba,0xaa,0xaa,0xab,0xaa,0xaa,0xaa,0xba,0x82,0x02,0x00,0x00 - -, -0x04,0x04,0x04,0x04,0x04,0x14,0x24,0x1e,0x05,0x04,0x04,0x04,0x06,0x04,0x00 - -, -/* @3277 (15x15,V)@ [suki software]*/ -0x04,0x04,0xfc,0x04,0x04,0x04,0x02,0xfa,0x0a,0xee,0x0a,0x0a,0xfb,0x02,0x00 - -, -0x04,0x04,0x03,0x02,0x02,0x20,0x20,0x17,0x08,0x07,0x00,0x08,0x17,0x30,0x00 - -, -/* @3278 (15x15,V)@ [suki software]*/ -0x20,0x24,0x24,0xa4,0xe4,0xbf,0xa4,0xa4,0xa4,0xbf,0x64,0xa4,0x24,0x20,0x00 - -, -0x02,0x02,0x01,0x00,0x1f,0x24,0x24,0x24,0x24,0x27,0x20,0x38,0x01,0x01,0x00 - -, -/* @3279 (15x15,V)@ [suki software]*/ -0x08,0xc8,0xff,0x48,0x80,0x08,0xbc,0x6b,0xaa,0x3a,0x2e,0xaa,0x38,0x00,0x00 - -, -0x03,0x00,0x3f,0x00,0x14,0x15,0x0a,0x15,0x22,0x1f,0x01,0x06,0x08,0x10,0x00 - -, -/* @3280 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x08,0x38,0xac,0x6b,0xaa,0x3a,0x2e,0xaa,0xb8,0x00,0x00 - -, -0x00,0x00,0x3f,0x00,0x15,0x15,0x0a,0x15,0x22,0x1f,0x01,0x06,0x08,0x10,0x00 - -, -/* @3281 (15x15,V)@ [suki software]*/ -0x00,0x00,0xf8,0x08,0x08,0xcc,0x4b,0x48,0x48,0xc8,0x08,0x08,0xfc,0x08,0x00 - -, -0x00,0x00,0x3f,0x00,0x00,0x07,0x02,0x02,0x02,0x07,0x10,0x20,0x1f,0x00,0x00 - -, -/* @3282 (15x15,V)@ [suki software]*/ -0x10,0x10,0x38,0x2c,0xaa,0x6b,0xba,0x2a,0x2e,0x2a,0xa8,0x78,0x00,0x00,0x00 - -, -0x00,0x11,0x15,0x15,0x0a,0x09,0x24,0x23,0x1e,0x03,0x04,0x08,0x18,0x08,0x00 - -, -/* @3283 (15x15,V)@ [suki software]*/ -0x22,0x22,0xaa,0xaa,0xaf,0xaa,0xfa,0xaa,0xaa,0xaf,0xfa,0x22,0x23,0x22,0x00 - -, -0x20,0x10,0x0f,0x10,0x0e,0x00,0x3f,0x00,0x06,0x18,0x00,0x3f,0x00,0x00,0x00 - -, -/* @3284 (15x15,V)@ [suki software]*/ -0x80,0x42,0xf2,0x2e,0x22,0xe0,0x02,0xf4,0x90,0x9f,0x90,0x94,0xf2,0x00,0x00 - -, -0x00,0x00,0x1f,0x08,0x08,0x1f,0x00,0x3f,0x02,0x02,0x12,0x22,0x1f,0x00,0x00 - -, -/* @3285 (15x15,V)@ [suki software]*/ -0x10,0x0c,0x95,0xb5,0xd5,0x85,0xef,0x85,0x95,0xd5,0xa5,0x15,0x0c,0x00,0x00 - -, -0x00,0x00,0x3f,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x2a,0x3f,0x00,0x00,0x00,0x00 - -, -/* @3286 (15x15,V)@ [suki software]*/ -0x00,0xf2,0x94,0x90,0x9f,0x90,0xf4,0x02,0x00,0xfc,0x00,0x00,0xff,0x00,0x00 - -, -0x00,0x3f,0x02,0x02,0x12,0x22,0x1f,0x00,0x00,0x07,0x10,0x20,0x1f,0x00,0x00 - -, -/* @3287 (15x15,V)@ [suki software]*/ -0xfc,0x04,0x04,0xfc,0x10,0x54,0xd4,0x5f,0x74,0x54,0xdc,0x56,0x10,0x10,0x00 - -, -0x03,0x01,0x05,0x05,0x02,0x03,0x02,0x22,0x3f,0x03,0x02,0x02,0x02,0x02,0x00 - -, -/* @3288 (15x15,V)@ [suki software]*/ -0x00,0x08,0x0e,0xea,0x2a,0x2e,0xb8,0x68,0xae,0x2a,0x2a,0xef,0x0a,0x00,0x00 - -, -0x00,0x02,0x3e,0x16,0x15,0x3d,0x00,0x00,0x3c,0x15,0x15,0x3e,0x02,0x00,0x00 - -, -/* @3289 (15x15,V)@ [suki software]*/ -0x20,0x38,0xe7,0x24,0x24,0x04,0xf2,0x94,0x90,0x9f,0x90,0x94,0xf2,0x00,0x00 - -, -0x01,0x01,0x3f,0x11,0x09,0x00,0x3f,0x02,0x02,0x02,0x12,0x22,0x1f,0x00,0x00 - -, -/* @3290 (15x15,V)@ [suki software]*/ -0x10,0x61,0x02,0xc6,0x30,0x02,0xf4,0x90,0x90,0x9f,0x90,0x94,0xf2,0x00,0x00 - -, -0x02,0x02,0x3f,0x00,0x00,0x00,0x3f,0x02,0x02,0x02,0x12,0x22,0x1f,0x00,0x00 - -, -/* @3291 (15x15,V)@ [suki software]*/ -0x10,0x0c,0x04,0xd4,0x64,0x45,0x76,0x44,0x64,0x54,0xc4,0x14,0x0c,0x00,0x00 - -, -0x00,0x00,0x00,0x3f,0x05,0x05,0x05,0x05,0x15,0x25,0x1f,0x00,0x00,0x00,0x00 - -, -/* @3292 (15x15,V)@ [suki software]*/ -0x10,0x61,0x82,0x66,0x20,0x28,0xaa,0xea,0xb4,0xa4,0xaa,0xa9,0x28,0x20,0x00 - -, -0x02,0x3e,0x01,0x00,0x02,0x01,0x3f,0x0a,0x0a,0x0a,0x2a,0x3f,0x00,0x00,0x00 - -, -/* @3293 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x44,0x44,0xfc,0x08,0x48,0x4f,0x58,0x24,0x54,0x8c,0x84,0xe0,0x00 - -, -0x00,0x0f,0x04,0x24,0x2f,0x11,0x09,0x07,0x01,0x1f,0x21,0x21,0x20,0x38,0x00 - -, -}, -//************************************** -{ -/* @3294 С(15x15,V)@ [suki software]*/ -0x00,0x00,0x80,0x40,0x30,0x00,0x00,0xff,0x00,0x10,0x20,0x40,0x80,0x00,0x00 - -, -0x02,0x01,0x00,0x00,0x00,0x10,0x20,0x1f,0x00,0x00,0x00,0x00,0x00,0x03,0x00 - -, -/* @3295 Т(15x15,V)@ [suki software]*/ -0x10,0x10,0x54,0x54,0xd4,0x54,0x5f,0x74,0x54,0xd8,0x54,0x13,0x18,0x10,0x00 - -, -0x04,0x04,0x05,0x05,0x04,0x14,0x24,0x1f,0x05,0x04,0x04,0x04,0x06,0x04,0x00 - -, -/* @3296 У(15x15,V)@ [suki software]*/ -0x08,0x88,0xff,0x28,0x48,0x84,0x44,0xb4,0x05,0x06,0x14,0xa4,0x44,0x04,0x00 - -, -0x06,0x01,0x3f,0x00,0x00,0x20,0x20,0x11,0x0a,0x04,0x0a,0x11,0x30,0x10,0x00 - -, -/* @3297 Ф(15x15,V)@ [suki software]*/ -0x00,0x00,0x02,0xf4,0x98,0x90,0x90,0x9f,0x90,0x98,0x94,0xf2,0x00,0x00,0x00 - -, -0x00,0x00,0x00,0x3f,0x04,0x04,0x04,0x04,0x04,0x14,0x24,0x1f,0x00,0x00,0x00 - -, -/* @3298 Х(15x15,V)@ [suki software]*/ -0xfc,0x04,0x04,0xfc,0x08,0xaa,0x2a,0x2a,0xff,0x2a,0x2a,0xbe,0x08,0x08,0x00 - -, -0x03,0x01,0x21,0x13,0x08,0x07,0x02,0x01,0x3f,0x01,0x06,0x3f,0x00,0x00,0x00 - -, -/* @3299 Ц(15x15,V)@ [suki software]*/ -0x10,0x08,0x44,0x47,0x5c,0x44,0xd4,0x28,0x24,0x27,0x2c,0x14,0x04,0x04,0x00 - -, -0x20,0x21,0x11,0x11,0x09,0x05,0x03,0x03,0x05,0x09,0x11,0x11,0x21,0x20,0x00 - -, -/* @3300 Ч(15x15,V)@ [suki software]*/ -0x88,0x48,0xb8,0x09,0x0e,0x98,0x28,0x48,0xf8,0x17,0x10,0x90,0x78,0x10,0x00 - -, -0x20,0x10,0x08,0x05,0x02,0x25,0x28,0x10,0x10,0x0b,0x04,0x0b,0x10,0x20,0x00 - -, -/* @3301 Ш(15x15,V)@ [suki software]*/ -0x08,0xc8,0xff,0x48,0x94,0x54,0xff,0x54,0x90,0x44,0xbc,0x84,0x7e,0x04,0x00 - -, -0x03,0x00,0x3f,0x00,0x22,0x22,0x12,0x0a,0x07,0x06,0x0a,0x12,0x22,0x22,0x00 - -, -/* @3302 Щ(15x15,V)@ [suki software]*/ -0x00,0x00,0xfc,0x80,0xff,0x88,0x88,0x00,0x7f,0x90,0x88,0x88,0x84,0xe0,0x00 - -, -0x01,0x21,0x25,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x20,0x20,0x00 - -, -/* @3303 Ъ(15x15,V)@ [suki software]*/ -0x00,0xbe,0xea,0xaa,0xaa,0xaa,0xbe,0x80,0x18,0x0f,0xe8,0x08,0x28,0x18,0x00 - -, -0x01,0x0f,0x08,0x0a,0x09,0x2a,0x10,0x2f,0x10,0x0e,0x01,0x06,0x18,0x20,0x00 - -, -/* @3304 Ы(15x15,V)@ [suki software]*/ -0xf8,0x08,0xff,0x08,0xf8,0x00,0xbe,0xea,0xaa,0xaa,0xaa,0xbf,0xc2,0x80,0x00 - -, -0x11,0x11,0x0f,0x09,0x1d,0x01,0x0f,0x08,0x0a,0x09,0x2a,0x20,0x1f,0x00,0x00 - -, -/* @3305 Ь(15x15,V)@ [suki software]*/ -0x04,0xc4,0x5f,0xf4,0x54,0xdf,0x44,0x48,0x48,0xff,0x48,0x48,0x68,0x40,0x00 - -, -0x04,0x05,0x05,0x3f,0x05,0x05,0x14,0x12,0x12,0x1f,0x12,0x12,0x12,0x10,0x00 - -, -/* @3306 Э(15x15,V)@ [suki software]*/ -0x10,0x10,0xff,0x10,0x10,0xc8,0x08,0x08,0xff,0x08,0x08,0xfc,0x48,0x80,0x00 - -, -0x00,0x00,0x3f,0x00,0x21,0x10,0x08,0x06,0x11,0x20,0x10,0x0f,0x00,0x03,0x00 - -, -/* @3307 Ю(15x15,V)@ [suki software]*/ -0x08,0x88,0xff,0x48,0x40,0x28,0x48,0x08,0xff,0x08,0x48,0x2c,0x08,0x00,0x00 - -, -0x11,0x20,0x1f,0x00,0x21,0x11,0x09,0x05,0x03,0x05,0x09,0x11,0x31,0x11,0x00 - -, -/* @3308 Я(15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x10,0xfc,0x57,0x54,0xff,0x54,0x54,0x56,0x04,0x00 - -, -0x01,0x11,0x20,0x1f,0x20,0x21,0x11,0x0f,0x01,0x11,0x25,0x27,0x15,0x0c,0x00 - -, -/* @3309 а(15x15,V)@ [suki software]*/ -0x00,0x22,0x3a,0x22,0xa2,0xfe,0x22,0x22,0x00,0xfe,0x02,0x72,0x8f,0x02,0x00 - -, -0x08,0x04,0x02,0x11,0x20,0x1f,0x00,0x00,0x00,0x3f,0x04,0x08,0x08,0x07,0x00 - -, -/* @3310 б(15x15,V)@ [suki software]*/ -0x20,0x90,0xa8,0xa4,0xe3,0xa4,0xa8,0x10,0x44,0x88,0x00,0xff,0x00,0x00,0x00 - -, -0x10,0x08,0x16,0x20,0x1f,0x02,0x04,0x0a,0x02,0x02,0x02,0x3f,0x01,0x01,0x00 - -, -/* @3311 в(15x15,V)@ [suki software]*/ -0x00,0xfe,0x92,0x92,0xfe,0x00,0xc8,0x08,0xff,0x08,0x08,0xfc,0x48,0x80,0x00 - -, -0x30,0x0f,0x10,0x20,0x1f,0x21,0x10,0x0c,0x03,0x10,0x20,0x1f,0x00,0x03,0x00 - -, -/* @3312 г(15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x00,0x00,0x7f,0x28,0xa8,0x00,0x3f,0x48,0x44,0x72,0x00 - -, -0x00,0x00,0x1f,0x08,0x04,0x00,0x3f,0x15,0x15,0x15,0x15,0x3f,0x00,0x00,0x00 - -, -/* @3313 д(15x15,V)@ [suki software]*/ -0x00,0x08,0x06,0xc2,0xba,0x92,0x92,0x92,0x92,0x92,0x92,0x9a,0x06,0x00,0x00 - -, -0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x14,0x24,0x10,0x0f,0x00,0x00,0x00 - -, -/* @3314 е(15x15,V)@ [suki software]*/ -0x08,0xc8,0xff,0x48,0x80,0xe8,0x88,0xe8,0x88,0xff,0x08,0x08,0xee,0x08,0x00 - -, -0x03,0x00,0x3f,0x20,0x10,0x0f,0x00,0x2f,0x10,0x09,0x06,0x09,0x10,0x3c,0x00 - -, -/* @3315 ж(15x15,V)@ [suki software]*/ -0x30,0x28,0xa7,0x24,0xfc,0x24,0x24,0x20,0xfc,0x04,0x04,0x04,0xfe,0x04,0x00 - -, -0x10,0x10,0x1f,0x08,0x0f,0x09,0x09,0x00,0x3f,0x00,0x02,0x04,0x03,0x00,0x00 - -, -/* @3316 з(15x15,V)@ [suki software]*/ -0x08,0x84,0x7b,0x2a,0xfe,0xaa,0xf8,0x4a,0xba,0xa6,0xf2,0xaa,0xaf,0x02,0x00 - -, -0x01,0x20,0x2e,0x2a,0x2a,0x2a,0x2a,0x3f,0x2a,0x2a,0x2b,0x3e,0x20,0x00,0x00 - -, -/* @3317 и(15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x10,0xf8,0x97,0xf4,0x9c,0xf4,0x22,0x9e,0xc2,0xa2,0x9e,0x00 - -, -0x00,0x00,0x3f,0x10,0x0f,0x02,0x1f,0x22,0x3f,0x05,0x04,0x3f,0x04,0x04,0x00 - -, -/* @3318 й(15x15,V)@ [suki software]*/ -0x10,0x61,0x06,0xe0,0x00,0x20,0xfe,0x20,0xff,0x20,0x20,0xff,0x20,0x20,0x00 - -, -0x04,0x04,0x3f,0x00,0x00,0x00,0x3f,0x10,0x17,0x14,0x14,0x17,0x10,0x10,0x00 - -, -/* @3319 к(15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x08,0x06,0xfa,0x92,0x92,0x92,0x92,0x92,0x8a,0x06,0x00 - -, -0x02,0x3e,0x01,0x00,0x04,0x04,0x04,0x04,0x04,0x14,0x24,0x10,0x0f,0x00,0x00 - -, -/* @3320 л(15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x00,0xfc,0x56,0x55,0xfc,0x00,0x90,0x10,0xff,0x10,0x00 - -, -0x00,0x00,0x0f,0x24,0x11,0x09,0x15,0x23,0x1f,0x00,0x10,0x21,0x1f,0x00,0x00 - -, -/* @3321 м(15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x0a,0xda,0x6a,0x4a,0x7a,0x4a,0x6a,0x5a,0xcf,0x02,0x00,0x00 - -, -0x20,0x18,0x07,0x00,0x3f,0x05,0x05,0x05,0x05,0x15,0x25,0x1f,0x00,0x00,0x00 - -, -/* @3322 н(15x15,V)@ [suki software]*/ -0x92,0xb2,0xd2,0x9a,0xd2,0xb7,0x92,0x02,0xf2,0x97,0x92,0x8a,0x8a,0x82,0x00 - -, -0x10,0x0a,0x22,0x3f,0x02,0x06,0x2a,0x10,0x0f,0x00,0x00,0x3f,0x00,0x00,0x00 - -, -/* @3323 о(15x15,V)@ [suki software]*/ -0x04,0x04,0x04,0x04,0xc4,0x1f,0x04,0x44,0x84,0x1f,0x04,0x84,0x06,0x04,0x00 - -, -0x00,0x08,0x07,0x00,0x1f,0x20,0x20,0x20,0x21,0x20,0x20,0x3c,0x01,0x06,0x00 - -, -/* @3324 п(15x15,V)@ [suki software]*/ -0x60,0x38,0xe7,0x24,0x24,0x80,0x84,0x94,0xe5,0x86,0xe4,0x94,0x84,0x80,0x00 - -, -0x01,0x01,0x1f,0x11,0x09,0x00,0x04,0x04,0x04,0x3f,0x04,0x04,0x04,0x00,0x00 - -, -/* @3325 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x24,0x24,0xe2,0x23,0x22,0x20,0x18,0xef,0x08,0x08,0x28,0x18,0x00 - -, -0x30,0x0f,0x00,0x00,0x3f,0x00,0x20,0x18,0x06,0x01,0x06,0x08,0x30,0x10,0x00 - -, -/* @3326 (15x15,V)@ [suki software]*/ -0x40,0x44,0x44,0x4c,0x54,0x65,0xc6,0x44,0x64,0x5c,0x44,0x46,0x44,0x40,0x00 - -, -0x00,0x04,0x04,0x04,0x04,0x04,0x3f,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00 - -, -/* @3327 (15x15,V)@ [suki software]*/ -0x20,0x24,0x2c,0x35,0xe6,0x34,0x2c,0x00,0xfe,0x24,0x24,0xe2,0x33,0x22,0x00 - -, -0x10,0x09,0x15,0x21,0x1f,0x05,0x29,0x10,0x0f,0x00,0x00,0x3f,0x00,0x00,0x00 - -, -/* @3328 (15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x08,0x30,0x00,0xfe,0x24,0x24,0x22,0xe2,0x23,0x32,0x20,0x00 - -, -0x00,0x00,0x3f,0x00,0x20,0x18,0x07,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00 - -, -/* @3329 (15x15,V)@ [suki software]*/ -0x00,0x00,0xc0,0x00,0xf8,0x00,0x02,0x04,0x18,0x00,0x00,0x20,0xc0,0x80,0x00 - -, -0x02,0x03,0x00,0x00,0x0f,0x10,0x10,0x10,0x10,0x10,0x1e,0x00,0x00,0x03,0x00 - -, -/* @3330 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x00,0x94,0x94,0x94,0x95,0x96,0x94,0x94,0x94,0x04,0x00 - -, -0x00,0x00,0x3f,0x00,0x00,0x00,0x3e,0x12,0x12,0x12,0x12,0x3e,0x00,0x00,0x00 - -, -/* @3331 (15x15,V)@ [suki software]*/ -0x00,0xf8,0x08,0xfc,0x0b,0xf8,0x00,0x24,0x28,0x20,0xff,0x20,0x28,0x24,0x00 - -, -0x08,0x0f,0x08,0x07,0x04,0x07,0x04,0x05,0x01,0x01,0x3f,0x01,0x01,0x01,0x00 - -, -/* @3332 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0xbe,0x2a,0x2a,0x2a,0xea,0x2a,0x2a,0x2a,0xbf,0x02,0x00,0x00 - -, -0x00,0x24,0x22,0x25,0x25,0x25,0x25,0x3f,0x25,0x25,0x25,0x25,0x31,0x20,0x00 - -, -/* @3333 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x92,0x92,0xfe,0x00,0x3e,0xea,0xaa,0xea,0xaa,0xaa,0xbf,0x82,0x00 - -, -0x30,0x0f,0x10,0x20,0x1f,0x20,0x25,0x24,0x24,0x3f,0x24,0x24,0x24,0x20,0x00 - -, -/* @3334 (15x15,V)@ [suki software]*/ -0x22,0x14,0x08,0x94,0xe3,0x00,0xbe,0x2a,0x2a,0xea,0x2a,0x2a,0x3f,0x02,0x00 - -, -0x04,0x12,0x21,0x10,0x0f,0x22,0x25,0x25,0x25,0x3f,0x25,0x25,0x25,0x21,0x00 - -, -/* @3335 (15x15,V)@ [suki software]*/ -0x78,0x00,0xff,0x08,0x10,0x00,0xbe,0x2a,0x2a,0xea,0x2a,0x2a,0x3e,0x00,0x00 - -, -0x00,0x00,0x3f,0x00,0x24,0x22,0x25,0x25,0x25,0x3f,0x25,0x25,0x25,0x20,0x00 - -, -/* @3336 (15x15,V)@ [suki software]*/ -0x80,0x80,0x84,0x98,0xe0,0x82,0x8c,0xb0,0x80,0xc0,0xb0,0x8e,0xc0,0x80,0x00 - -, -0x20,0x20,0x10,0x08,0x04,0x02,0x00,0x00,0x02,0x04,0x08,0x10,0x30,0x00,0x00 - -, -/* @3337 (15x15,V)@ [suki software]*/ -0x42,0x42,0xfe,0x42,0x42,0xfe,0x42,0x42,0x00,0xfc,0x00,0x00,0xff,0x00,0x00 - -, -0x20,0x18,0x07,0x00,0x00,0x3f,0x00,0x00,0x00,0x03,0x10,0x20,0x1f,0x00,0x00 - -, -/* @3338 (15x15,V)@ [suki software]*/ -0x00,0x12,0x92,0x7e,0x12,0x12,0xfe,0x12,0x00,0x7e,0x80,0x00,0xff,0x00,0x00 - -, -0x00,0x21,0x24,0x24,0x24,0x24,0x25,0x3e,0x24,0x24,0x24,0x25,0x30,0x20,0x00 - -, -/* @3339 (15x15,V)@ [suki software]*/ -0x42,0x42,0x42,0xfe,0x42,0x42,0xfe,0x43,0x42,0x10,0x88,0x44,0x22,0x00,0x00 - -, -0x20,0x10,0x0c,0x03,0x00,0x00,0x3f,0x00,0x21,0x11,0x08,0x04,0x02,0x01,0x00 - -, -/* @3340 (15x15,V)@ [suki software]*/ -0x40,0x42,0x42,0xfe,0x42,0x42,0xfe,0x42,0x40,0xfe,0x02,0x62,0x9a,0x06,0x00 - -, -0x20,0x10,0x0c,0x03,0x00,0x00,0x3f,0x00,0x00,0x3f,0x04,0x08,0x08,0x07,0x00 - -, -/* @3341 (15x15,V)@ [suki software]*/ -0x10,0x88,0x44,0xe3,0x18,0x20,0x22,0x22,0x22,0x22,0xe2,0x23,0x32,0x20,0x00 - -, -0x01,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x10,0x20,0x1f,0x00,0x00,0x00,0x00 - -, -/* @3342 (15x15,V)@ [suki software]*/ -0x02,0xfa,0x8e,0x7a,0x8e,0xfa,0x00,0xbe,0x2a,0x2a,0xea,0x2a,0x3f,0x02,0x00 - -, -0x00,0x3f,0x14,0x14,0x14,0x1f,0x22,0x25,0x25,0x25,0x3f,0x25,0x25,0x21,0x00 - -, -/* @3343 (15x15,V)@ [suki software]*/ -0x10,0x90,0x94,0x94,0xb4,0xd4,0x9f,0x94,0xd4,0xb4,0x96,0x94,0x10,0x00,0x00 - -, -0x04,0x04,0x04,0x04,0x04,0x04,0x3f,0x04,0x04,0x04,0x04,0x06,0x04,0x00,0x00 - -, -/* @3344 (15x15,V)@ [suki software]*/ -0x84,0x84,0x44,0x24,0x14,0x0c,0xff,0x04,0x0c,0x14,0x24,0x46,0xc4,0x40,0x00 - -, -0x00,0x00,0x00,0x3f,0x11,0x11,0x11,0x11,0x11,0x11,0x3f,0x00,0x00,0x00,0x00 - -, -/* @3345 (15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x08,0x90,0x60,0x1e,0x10,0x10,0xff,0x10,0x10,0x18,0x10,0x00 - -, -0x00,0x00,0x3f,0x00,0x00,0x20,0x21,0x21,0x21,0x3f,0x21,0x21,0x31,0x20,0x00 - -, -/* @3346 (15x15,V)@ [suki software]*/ -0x08,0x08,0xf8,0x0f,0x08,0xf8,0x20,0x1c,0x10,0xff,0x10,0x10,0x18,0x10,0x00 - -, -0x20,0x11,0x0a,0x04,0x0a,0x11,0x20,0x21,0x21,0x3f,0x21,0x21,0x31,0x20,0x00 - -, -/* @3347 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x7e,0x22,0xe2,0x22,0x22,0xe2,0x22,0x22,0x7f,0x02,0x00,0x00 - -, -0x20,0x20,0x10,0x08,0x04,0x03,0x00,0x00,0x1f,0x20,0x20,0x20,0x20,0x3c,0x00 - -, -/* @3348 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x00,0x04,0x08,0x10,0xa0,0x40,0xb0,0x0e,0x00,0x00,0xfc,0x00,0x00 - -, -0x00,0x1f,0x10,0x14,0x12,0x11,0x10,0x10,0x10,0x11,0x16,0x10,0x3f,0x00,0x00 - -, -/* @3349 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x92,0x92,0xfe,0x10,0xc8,0x07,0x24,0xc4,0x34,0xc4,0x04,0xfc,0x00 - -, -0x30,0x0f,0x10,0x20,0x1f,0x00,0x07,0x04,0x05,0x04,0x15,0x27,0x10,0x0f,0x00 - -, -/* @3350 (15x15,V)@ [suki software]*/ -0x20,0x10,0xe8,0x27,0x44,0x84,0x44,0x34,0x04,0xe4,0x04,0x04,0xfe,0x04,0x00 - -, -0x00,0x00,0x0f,0x0a,0x09,0x08,0x09,0x0a,0x08,0x0f,0x10,0x20,0x1f,0x00,0x00 - -, -/* @3351 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x00,0xf8,0x04,0x08,0x30,0xc0,0x38,0x06,0xf8,0x00,0x00 - -, -0x02,0x3e,0x01,0x00,0x00,0x1f,0x14,0x12,0x11,0x10,0x17,0x10,0x1f,0x00,0x00 - -, -/* @3352 (15x15,V)@ [suki software]*/ -0x08,0x88,0x78,0x0f,0xe8,0x28,0x10,0xfc,0x4b,0x48,0xfe,0x48,0x48,0x48,0x00 - -, -0x0c,0x03,0x0c,0x0b,0x08,0x0e,0x00,0x3f,0x12,0x12,0x1f,0x12,0x12,0x12,0x00 - -, -/* @3353 (15x15,V)@ [suki software]*/ -0x08,0xec,0xaa,0xa9,0xa8,0xec,0x08,0x00,0xef,0x94,0x94,0x52,0x18,0x00,0x00 - -, -0x20,0x17,0x02,0x02,0x12,0x27,0x00,0x00,0x13,0x24,0x04,0x14,0x26,0x00,0x00 - -, -/* @3354 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x08,0x08,0x88,0x48,0xff,0x48,0x88,0x08,0x08,0x08,0x00 - -, -0x00,0x00,0x3f,0x00,0x04,0x02,0x01,0x00,0x3f,0x00,0x01,0x02,0x0c,0x04,0x00 - -, -/* @3355 (15x15,V)@ [suki software]*/ -0x20,0x10,0xfc,0x03,0xf8,0x10,0x88,0x47,0x2c,0x94,0x2c,0x46,0x44,0x40,0x00 - -, -0x00,0x00,0x3f,0x00,0x2f,0x20,0x2a,0x2a,0x15,0x14,0x0a,0x09,0x04,0x00,0x00 - -, -/* @3356 (15x15,V)@ [suki software]*/ -0x00,0x44,0x54,0x54,0x55,0xd6,0x7c,0x54,0x54,0x56,0x55,0x54,0x44,0x40,0x00 - -, -0x08,0x08,0x24,0x22,0x25,0x25,0x25,0x3f,0x25,0x25,0x25,0x3f,0x20,0x20,0x00 - -, -/* @3357 (15x15,V)@ [suki software]*/ -0x08,0x08,0xc8,0xff,0x48,0x88,0x02,0x42,0x72,0x4e,0x42,0x42,0xe2,0x42,0x00 - -, -0x04,0x03,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x10,0x20,0x10,0x0f,0x00,0x00 - -, -/* @3358 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0x04,0xfc,0x00,0xfe,0xaa,0xab,0xaa,0xaa,0xfe,0x00,0x00,0x00 - -, -0x00,0x07,0x01,0x21,0x23,0x22,0x12,0x0a,0x07,0x0a,0x13,0x12,0x22,0x22,0x00 - -, -/* @3359 (15x15,V)@ [suki software]*/ -0xa0,0xb8,0xe7,0xa4,0xa4,0x00,0xca,0xaa,0x9a,0xfe,0x99,0xa9,0x4c,0x48,0x00 - -, -0x00,0x00,0x1f,0x08,0x04,0x20,0x10,0x0c,0x03,0x10,0x22,0x13,0x0e,0x00,0x00 - -, -/* @3360 (15x15,V)@ [suki software]*/ -0x80,0x88,0x4a,0xca,0xaa,0x9a,0x8a,0xfe,0x99,0xa9,0x29,0x49,0xcc,0x48,0x00 - -, -0x20,0x20,0x10,0x08,0x04,0x03,0x00,0x00,0x12,0x23,0x12,0x0e,0x00,0x00,0x00 - -, -/* @3361 (15x15,V)@ [suki software]*/ -0x08,0x88,0x49,0xee,0x98,0x40,0xf0,0x10,0x10,0xff,0x10,0x10,0xf8,0x10,0x00 - -, -0x01,0x00,0x00,0x3f,0x00,0x01,0x3f,0x11,0x11,0x1f,0x11,0x11,0x3f,0x00,0x00 - -, -/* @3362 (15x15,V)@ [suki software]*/ -0x20,0xb0,0x6c,0x23,0x10,0x48,0xaa,0x9a,0xfe,0x8a,0x99,0xa9,0x48,0x48,0x00 - -, -0x09,0x1b,0x09,0x05,0x25,0x10,0x08,0x07,0x00,0x10,0x23,0x12,0x0e,0x00,0x00 - -, -/* @3363 (15x15,V)@ [suki software]*/ -0x10,0x10,0xff,0x10,0x00,0xf8,0x28,0x28,0x7f,0xaa,0xaa,0xaa,0xda,0x08,0x00 - -, -0x04,0x04,0x03,0x22,0x18,0x27,0x24,0x28,0x3f,0x20,0x3f,0x28,0x24,0x20,0x00 - -, -/* @3364 (15x15,V)@ [suki software]*/ -0x00,0x00,0xf8,0x88,0x88,0x88,0x88,0x7f,0x88,0x08,0x89,0x6e,0x08,0x08,0x00 - -, -0x20,0x18,0x07,0x20,0x20,0x10,0x10,0x08,0x05,0x06,0x09,0x10,0x20,0x3c,0x00 - -, -/* @3365 (15x15,V)@ [suki software]*/ -0x20,0x98,0x8a,0xaa,0xaa,0xaa,0x8a,0xbe,0x8a,0xaa,0xab,0x8a,0xa8,0x98,0x00 - -, -0x00,0x00,0x3e,0x02,0x02,0x3e,0x03,0x02,0x3e,0x02,0x22,0x3e,0x00,0x00,0x00 - -, -/* @3366 (15x15,V)@ [suki software]*/ -0x00,0x00,0xf8,0x08,0x28,0x28,0x7f,0xaa,0xaa,0xaa,0xaa,0x8a,0xd8,0x08,0x00 - -, -0x20,0x18,0x27,0x22,0x2c,0x20,0x3f,0x20,0x20,0x3f,0x28,0x26,0x20,0x20,0x00 - -, -/* @3367 (15x15,V)@ [suki software]*/ -0xfc,0x04,0x04,0xfc,0x00,0xf8,0x28,0x28,0x7f,0xaa,0xaa,0xaa,0xda,0x00,0x00 - -, -0x07,0x01,0x21,0x13,0x2c,0x23,0x22,0x24,0x3f,0x20,0x3f,0x24,0x22,0x20,0x00 - -, -/* @3368 (15x15,V)@ [suki software]*/ -0x10,0x88,0x44,0x22,0x11,0x00,0x02,0xfa,0x0a,0xee,0x0a,0x0a,0xfb,0x02,0x00 - -, -0x11,0x10,0x08,0x04,0x03,0x20,0x20,0x13,0x08,0x07,0x04,0x08,0x13,0x20,0x00 - -, -/* @3369 (15x15,V)@ [suki software]*/ -0x10,0x88,0xc4,0x33,0x20,0x10,0x28,0x24,0xe3,0x24,0x28,0x10,0x20,0x20,0x00 - -, -0x01,0x00,0x3f,0x00,0x11,0x09,0x15,0x21,0x1f,0x01,0x05,0x09,0x11,0x00,0x00 - -, -/* @3370 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x00,0xa0,0x98,0x8f,0x88,0xf8,0x88,0x88,0x8c,0x88,0x00 - -, -0x00,0x00,0x1f,0x08,0x04,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00 - -, -/* @3371 (15x15,V)@ [suki software]*/ -0x10,0x12,0x92,0x92,0xd2,0xb7,0x92,0xda,0xb2,0x97,0xd2,0x92,0x1a,0x12,0x00 - -, -0x00,0x00,0x00,0x3e,0x2a,0x2a,0x2a,0x3e,0x2a,0x2a,0x2a,0x3e,0x01,0x00,0x00 - -, -/* @3372 (15x15,V)@ [suki software]*/ -0x02,0xfa,0x8e,0x7a,0x8e,0xfa,0x02,0xf8,0x04,0x18,0xe0,0x1f,0x00,0xf8,0x00 - -, -0x00,0x3f,0x12,0x12,0x12,0x3f,0x00,0x1f,0x14,0x13,0x10,0x17,0x10,0x3f,0x00 - -, -/* @3373 (15x15,V)@ [suki software]*/ -0x20,0x90,0xac,0xa3,0xe2,0xa4,0xa8,0x04,0x7c,0x84,0x04,0xc4,0x3e,0x04,0x00 - -, -0x10,0x08,0x16,0x20,0x1f,0x00,0x02,0x2c,0x10,0x09,0x06,0x09,0x10,0x20,0x00 - -, -/* @3374 (15x15,V)@ [suki software]*/ -0x10,0x10,0xff,0x10,0x10,0xf0,0x00,0xfc,0x44,0x44,0x44,0xfe,0x04,0x00,0x00 - -, -0x20,0x18,0x07,0x00,0x00,0x1f,0x20,0x27,0x22,0x22,0x22,0x27,0x20,0x38,0x00 - -, -/* @3375 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfc,0x84,0x94,0x94,0x95,0xb6,0xd4,0xb4,0x94,0x94,0x86,0x84,0x00 - -, -0x20,0x18,0x07,0x00,0x00,0x00,0x10,0x20,0x1f,0x00,0x00,0x02,0x01,0x00,0x00 - -, -/* @3376 (15x15,V)@ [suki software]*/ -0x04,0x04,0x44,0x54,0x54,0x5c,0x75,0x56,0x54,0x54,0x6c,0x44,0x86,0x04,0x00 - -, -0x00,0x00,0x00,0x3f,0x15,0x15,0x15,0x1f,0x15,0x15,0x15,0x3f,0x00,0x00,0x00 - -, -/* @3377 (15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x10,0x20,0xf8,0x08,0xfc,0x0b,0xf8,0x08,0x08,0xfc,0x08,0x00 - -, -0x00,0x00,0x3f,0x00,0x10,0x1f,0x10,0x1f,0x10,0x1f,0x10,0x10,0x1f,0x10,0x00 - -, -/* @3378 (15x15,V)@ [suki software]*/ -0x04,0x44,0x5c,0x37,0x94,0x54,0x2c,0x00,0xbe,0x92,0x12,0x12,0x3e,0x00,0x00 - -, -0x00,0x20,0x24,0x15,0x0d,0x07,0x25,0x3d,0x04,0x04,0x0c,0x16,0x24,0x00,0x00 - -, -/* @3379 (15x15,V)@ [suki software]*/ -0x08,0x08,0xf8,0x0f,0x08,0xf8,0x22,0x9a,0xa2,0xbe,0xaa,0xca,0xca,0x46,0x00 - -, -0x20,0x11,0x0a,0x04,0x0a,0x11,0x00,0x3f,0x0a,0x0a,0x0a,0x2a,0x3f,0x00,0x00 - -, -/* @3380 (15x15,V)@ [suki software]*/ -0x20,0x30,0xac,0x63,0x10,0x20,0x24,0xa4,0x7f,0x24,0x34,0xa8,0x26,0x20,0x00 - -, -0x09,0x1b,0x09,0x05,0x05,0x02,0x01,0x3f,0x15,0x15,0x15,0x3f,0x01,0x00,0x00 - -, -/* @3381 (15x15,V)@ [suki software]*/ -0x20,0x38,0xa7,0x60,0x18,0x00,0xb4,0x54,0x14,0xdf,0x14,0x14,0x54,0x30,0x00 - -, -0x09,0x1b,0x09,0x05,0x25,0x22,0x22,0x13,0x0a,0x07,0x0a,0x12,0x32,0x02,0x00 - -, -/* @3382 (15x15,V)@ [suki software]*/ -0x44,0x74,0x4f,0xf4,0x44,0x04,0x40,0x42,0x42,0xfe,0x42,0x43,0x42,0x40,0x00 - -, -0x04,0x04,0x04,0x3f,0x02,0x02,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00 - -, -/* @3383 (15x15,V)@ [suki software]*/ -0xfc,0x04,0x04,0xfc,0x00,0x0c,0xd4,0x54,0x55,0x56,0x54,0xd4,0x0c,0x00,0x00 - -, -0x07,0x01,0x01,0x23,0x20,0x20,0x2f,0x29,0x29,0x29,0x29,0x2f,0x30,0x20,0x00 - -, -/* @3384 (15x15,V)@ [suki software]*/ -0x10,0x0c,0x14,0xd4,0x54,0x54,0x55,0x56,0x54,0x54,0xd4,0x14,0x0c,0x00,0x00 - -, -0x20,0x20,0x20,0x2f,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2f,0x20,0x30,0x20,0x00 - -, -/* @3385 (15x15,V)@ [suki software]*/ -0x80,0x80,0x80,0xfe,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xff,0x82,0x80,0x80,0x00 - -, -0x00,0x10,0x0c,0x02,0x1b,0x22,0x26,0x2a,0x22,0x22,0x3b,0x06,0x18,0x00,0x00 - -, -/* @3386 (15x15,V)@ [suki software]*/ -0x08,0x08,0xf9,0x2e,0x28,0xe8,0x10,0xa8,0x27,0xe4,0x24,0x24,0x66,0x04,0x00 - -, -0x20,0x18,0x07,0x10,0x10,0x2f,0x10,0x0f,0x10,0x1f,0x21,0x21,0x21,0x20,0x00 - -, -/* @3387 (15x15,V)@ [suki software]*/ -0x08,0x08,0x08,0x88,0xc8,0xa8,0x99,0x8e,0x88,0x48,0x28,0x08,0x0c,0x08,0x00 - -, -0x00,0x00,0x10,0x30,0x18,0x14,0x12,0x11,0x10,0x14,0x18,0x30,0x00,0x00,0x00 - -, -}, -//************************************** -{ -/* @3388 ѡ(15x15,V)@ [suki software]*/ -0x20,0x22,0xe4,0x0c,0x40,0x50,0x4e,0xc8,0x7f,0xc8,0x48,0x4c,0x48,0x40,0x00 - -, -0x10,0x08,0x07,0x08,0x10,0x28,0x24,0x23,0x20,0x27,0x28,0x28,0x2e,0x20,0x00 - -, -/* @3389 Ѣ(15x15,V)@ [suki software]*/ -0x10,0xa0,0xfc,0x44,0xe4,0x5c,0xd4,0x75,0xc6,0x2c,0xb4,0xe4,0xbc,0xa4,0x00 - -, -0x21,0x18,0x07,0x10,0x37,0x15,0x17,0x15,0x17,0x04,0x04,0x3f,0x04,0x04,0x00 - -, -/* @3390 ѣ(15x15,V)@ [suki software]*/ -0xfe,0x22,0x22,0xfe,0x00,0x84,0xc4,0xa4,0x95,0x86,0xc4,0x24,0x06,0x04,0x00 - -, -0x1f,0x09,0x09,0x1f,0x00,0x10,0x38,0x14,0x12,0x11,0x10,0x14,0x38,0x00,0x00 - -, -/* @3391 Ѥ(15x15,V)@ [suki software]*/ -0x20,0x38,0xa7,0x60,0x18,0x10,0x08,0xe7,0xa4,0xa4,0xe4,0x04,0xfe,0x04,0x00 - -, -0x09,0x1b,0x09,0x05,0x05,0x00,0x00,0x0f,0x04,0x04,0x17,0x20,0x1f,0x00,0x00 - -, -/* @3392 ѥ(15x15,V)@ [suki software]*/ -0x04,0xc4,0x5f,0xf4,0x5f,0xc4,0x44,0xf8,0x07,0x80,0xff,0x40,0x20,0x10,0x00 - -, -0x04,0x05,0x05,0x3f,0x05,0x05,0x04,0x3f,0x01,0x00,0x1f,0x20,0x20,0x38,0x00 - -, -/* @3393 Ѧ(15x15,V)@ [suki software]*/ -0x04,0xe4,0xb4,0xac,0xa4,0xef,0x04,0x64,0xaf,0x34,0xa4,0x64,0x26,0x04,0x00 - -, -0x00,0x3f,0x12,0x12,0x12,0x3e,0x01,0x05,0x05,0x3f,0x05,0x05,0x05,0x00,0x00 - -, -/* @3394 ѧ(15x15,V)@ [suki software]*/ -0x20,0x18,0x08,0x29,0x2e,0x28,0x29,0xae,0xa8,0x6c,0x2b,0x08,0x28,0x18,0x00 - -, -0x02,0x02,0x02,0x02,0x02,0x12,0x22,0x1f,0x02,0x02,0x02,0x02,0x03,0x02,0x00 - -, -/* @3395 Ѩ(15x15,V)@ [suki software]*/ -0x20,0x18,0x08,0x08,0x08,0xe8,0x09,0x0e,0xe8,0x08,0x08,0x08,0x28,0x18,0x00 - -, -0x20,0x10,0x08,0x04,0x03,0x00,0x00,0x00,0x00,0x03,0x04,0x08,0x30,0x10,0x00 - -, -/* @3396 ѩ(15x15,V)@ [suki software]*/ -0x20,0x18,0x4a,0x5a,0x6a,0x0a,0x7e,0x0a,0x2a,0x5a,0x4b,0x0a,0x18,0x00,0x00 - -, -0x00,0x00,0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x3f,0x00,0x00,0x00 - -, -/* @3397 Ѫ(15x15,V)@ [suki software]*/ -0x00,0x00,0xf8,0x08,0x08,0xfc,0x0b,0x08,0xf8,0x08,0x08,0xf8,0x00,0x00,0x00 - -, -0x10,0x10,0x1f,0x10,0x10,0x1f,0x10,0x10,0x1f,0x10,0x10,0x1f,0x10,0x10,0x00 - -, -/* @3398 ѫ(15x15,V)@ [suki software]*/ -0x00,0xee,0x2a,0xaa,0x2a,0x2a,0xee,0x10,0x10,0xff,0x10,0x10,0xf8,0x10,0x00 - -, -0x20,0x17,0x08,0x07,0x08,0x10,0x27,0x10,0x0c,0x03,0x10,0x20,0x1f,0x00,0x00 - -, -/* @3399 Ѭ(15x15,V)@ [suki software]*/ -0x08,0x08,0xea,0x2a,0x6a,0xaa,0xfe,0x2a,0xa9,0x69,0x29,0xe8,0x08,0x00,0x00 - -, -0x04,0x25,0x15,0x05,0x05,0x35,0x07,0x05,0x35,0x05,0x05,0x15,0x25,0x04,0x00 - -, -/* @3400 ѭ(15x15,V)@ [suki software]*/ -0x10,0x88,0xc4,0x33,0x00,0xfe,0x12,0xd2,0x52,0x7e,0x51,0x51,0xd1,0x10,0x00 - -, -0x01,0x00,0x3f,0x20,0x18,0x07,0x00,0x3f,0x15,0x15,0x15,0x15,0x3f,0x00,0x00 - -, -/* @3401 Ѯ(15x15,V)@ [suki software]*/ -0x20,0x10,0x08,0xe4,0x27,0x24,0x24,0x24,0xe4,0x04,0x04,0x04,0xfe,0x04,0x00 - -, -0x00,0x00,0x00,0x0f,0x05,0x05,0x05,0x05,0x0f,0x10,0x20,0x10,0x0f,0x00,0x00 - -, -/* @3402 ѯ(15x15,V)@ [suki software]*/ -0x20,0x20,0xe1,0x06,0x20,0x10,0xec,0xa7,0xa4,0xa4,0xe4,0x04,0xfe,0x04,0x00 - -, -0x00,0x00,0x1f,0x08,0x04,0x00,0x0f,0x04,0x04,0x04,0x2f,0x20,0x1f,0x00,0x00 - -, -/* @3403 Ѱ(15x15,V)@ [suki software]*/ -0x00,0x00,0x22,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0xaa,0x7f,0x02,0x00,0x00,0x00 - -, -0x01,0x01,0x01,0x03,0x05,0x09,0x01,0x11,0x21,0x1f,0x01,0x01,0x01,0x01,0x00 - -, -/* @3404 ѱ(15x15,V)@ [suki software]*/ -0x02,0x7a,0x42,0x42,0x7f,0xc2,0x00,0x00,0xff,0x00,0xfe,0x00,0xff,0x00,0x00 - -, -0x04,0x04,0x02,0x12,0x10,0x2f,0x10,0x0c,0x03,0x00,0x0f,0x00,0x3f,0x00,0x00 - -, -/* @3405 Ѳ(15x15,V)@ [suki software]*/ -0x40,0x41,0xc6,0x00,0x60,0x98,0x06,0x60,0x98,0x06,0x60,0x98,0x06,0x00,0x00 - -, -0x20,0x10,0x0f,0x08,0x10,0x11,0x26,0x20,0x21,0x26,0x20,0x21,0x26,0x20,0x00 - -, -/* @3406 ѳ(15x15,V)@ [suki software]*/ -0x02,0xc2,0x3e,0x12,0xf2,0x22,0x18,0xe7,0xa4,0xa4,0xe4,0x04,0xfe,0x04,0x00 - -, -0x21,0x10,0x09,0x06,0x01,0x00,0x00,0x0f,0x04,0x04,0x17,0x20,0x1f,0x00,0x00 - -, -/* @3407 Ѵ(15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x42,0x42,0xfa,0x42,0x42,0x42,0xff,0x02,0x00,0x00,0x00 - -, -0x02,0x3e,0x01,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x03,0x0c,0x10,0x3c,0x00 - -, -/* @3408 ѵ(15x15,V)@ [suki software]*/ -0x20,0x21,0xe2,0x06,0x00,0x00,0xff,0x00,0x00,0xfe,0x00,0x00,0xff,0x00,0x00 - -, -0x00,0x00,0x0f,0x24,0x12,0x0c,0x03,0x00,0x00,0x0f,0x00,0x00,0x3f,0x00,0x00 - -, -/* @3409 Ѷ(15x15,V)@ [suki software]*/ -0x20,0x21,0x22,0xe6,0x00,0x42,0x42,0xfa,0x42,0x42,0x42,0xff,0x02,0x00,0x00 - -, -0x00,0x00,0x00,0x1f,0x08,0x04,0x00,0x3f,0x00,0x00,0x00,0x0f,0x10,0x3c,0x00 - -, -/* @3410 ѷ(15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x82,0x42,0xfa,0x26,0xc2,0x20,0xff,0x20,0x40,0x80,0x00 - -, -0x10,0x08,0x07,0x08,0x10,0x28,0x2f,0x21,0x20,0x28,0x2f,0x20,0x20,0x21,0x00 - -, -/* @3411 Ѹ(15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x42,0x42,0x42,0xfe,0x42,0x42,0xff,0x02,0x00,0x00,0x00 - -, -0x10,0x08,0x07,0x08,0x10,0x10,0x20,0x27,0x20,0x20,0x21,0x22,0x24,0x27,0x00 - -, -/* @3412 ѹ(15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x02,0x42,0x42,0x42,0xfa,0x42,0x42,0x42,0x42,0x03,0x02,0x00 - -, -0x20,0x18,0x07,0x10,0x10,0x10,0x10,0x1f,0x10,0x10,0x11,0x16,0x10,0x10,0x00 - -, -/* @3413 Ѻ(15x15,V)@ [suki software]*/ -0x08,0x88,0xff,0x48,0x48,0x00,0xfe,0x22,0x22,0xfe,0x22,0x22,0xff,0x02,0x00 - -, -0x11,0x20,0x1f,0x00,0x00,0x00,0x03,0x01,0x01,0x3f,0x01,0x01,0x03,0x00,0x00 - -, -/* @3414 ѻ(15x15,V)@ [suki software]*/ -0x02,0x3a,0x22,0xa2,0xfe,0x23,0x22,0xfc,0x06,0x0d,0x54,0x44,0x3c,0x00,0x00 - -, -0x08,0x04,0x13,0x20,0x1f,0x00,0x04,0x05,0x05,0x05,0x15,0x25,0x11,0x0f,0x00 - -, -/* @3415 Ѽ(15x15,V)@ [suki software]*/ -0xfe,0x12,0x12,0xfe,0x12,0xfe,0x00,0xfc,0x04,0x0e,0x55,0x44,0x3c,0x00,0x00 - -, -0x01,0x01,0x01,0x3f,0x01,0x01,0x04,0x05,0x05,0x05,0x15,0x21,0x11,0x0f,0x00 - -, -/* @3416 ѽ(15x15,V)@ [suki software]*/ -0xfc,0x04,0x04,0x04,0xfc,0x00,0x7a,0x42,0x42,0xc2,0xfe,0x42,0x43,0x42,0x00 - -, -0x03,0x01,0x01,0x21,0x13,0x08,0x04,0x02,0x11,0x20,0x1f,0x00,0x00,0x00,0x00 - -, -/* @3417 Ѿ(15x15,V)@ [suki software]*/ -0x00,0x00,0x01,0x02,0x04,0x08,0xe0,0x10,0x08,0x04,0x03,0x00,0x00,0x00,0x00 - -, -0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 - -, -/* @3418 ѿ(15x15,V)@ [suki software]*/ -0x04,0x04,0x14,0xd4,0x14,0x1f,0x14,0x14,0x14,0xff,0x14,0x14,0x96,0x04,0x00 - -, -0x20,0x20,0x11,0x11,0x09,0x05,0x03,0x11,0x21,0x1f,0x01,0x01,0x01,0x01,0x00 - -, -/* @3419 (15x15,V)@ [suki software]*/ -0x00,0x02,0x32,0x2a,0x22,0x22,0xa2,0x62,0xfe,0x22,0x22,0x23,0x32,0x20,0x00 - -, -0x10,0x10,0x08,0x04,0x02,0x01,0x10,0x20,0x1f,0x00,0x00,0x00,0x00,0x00,0x00 - -, -/* @3420 (15x15,V)@ [suki software]*/ -0x00,0xf8,0x08,0xff,0x08,0xf8,0x02,0x7a,0x42,0x42,0xc2,0xfe,0x43,0x42,0x00 - -, -0x10,0x11,0x11,0x0f,0x09,0x2d,0x10,0x08,0x04,0x13,0x20,0x1f,0x00,0x00,0x00 - -, -/* @3421 (15x15,V)@ [suki software]*/ -0x00,0x00,0xf6,0x14,0x54,0x54,0x54,0xf7,0x54,0x54,0x54,0x56,0x10,0x00,0x00 - -, -0x20,0x18,0x27,0x21,0x29,0x29,0x29,0x3f,0x29,0x29,0x29,0x29,0x21,0x00,0x00 - -, -/* @3422 (15x15,V)@ [suki software]*/ -0x88,0x44,0xe2,0x11,0x4a,0x7a,0x4e,0x4a,0x7a,0x40,0x24,0xe4,0x24,0x24,0x00 - -, -0x00,0x00,0x3f,0x00,0x1f,0x09,0x09,0x09,0x0f,0x10,0x20,0x1f,0x00,0x00,0x00 - -, -/* @3423 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x00,0xfe,0x82,0x92,0x92,0xfe,0x92,0x92,0x93,0x82,0x00 - -, -0x02,0x3e,0x01,0x20,0x18,0x27,0x20,0x24,0x24,0x3f,0x24,0x24,0x24,0x20,0x00 - -, -/* @3424 (15x15,V)@ [suki software]*/ -0x02,0x3a,0x22,0xa2,0xfe,0x22,0x10,0xff,0x24,0x25,0xfe,0x24,0x24,0x04,0x00 - -, -0x04,0x02,0x11,0x20,0x1f,0x00,0x00,0x3f,0x11,0x11,0x1f,0x11,0x11,0x10,0x00 - -, -/* @3425 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0xfc,0x30,0xc2,0x02,0xfe,0x02,0xfe,0x02,0x82,0x72,0x00,0x00 - -, -0x00,0x07,0x01,0x13,0x10,0x13,0x10,0x1f,0x10,0x1f,0x12,0x11,0x10,0x10,0x00 - -, -/* @3426 (15x15,V)@ [suki software]*/ -0x00,0x12,0x62,0x82,0x02,0xfe,0x02,0x02,0xfe,0x02,0x82,0x73,0x02,0x00,0x00 - -, -0x10,0x10,0x10,0x13,0x10,0x1f,0x10,0x10,0x1f,0x12,0x11,0x10,0x18,0x10,0x00 - -, -/* @3427 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe2,0x06,0x00,0x02,0x3a,0x22,0x22,0xa2,0x62,0xfe,0x23,0x22,0x00 - -, -0x00,0x00,0x1f,0x08,0x14,0x10,0x08,0x04,0x02,0x11,0x20,0x1f,0x00,0x00,0x00 - -, -/* @3428 (15x15,V)@ [suki software]*/ -0x20,0x22,0x22,0xfa,0xa2,0xa2,0xa2,0xbe,0xaa,0xaa,0xaa,0xab,0x22,0x20,0x00 - -, -0x10,0x08,0x00,0x0b,0x12,0x02,0x0a,0x12,0x06,0x0a,0x22,0x22,0x1e,0x00,0x00 - -, -/* @3429 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0xfc,0x00,0xfe,0x02,0x12,0x12,0xfe,0x12,0x12,0xff,0x02,0x00 - -, -0x00,0x07,0x01,0x03,0x00,0x3f,0x08,0x0a,0x09,0x08,0x09,0x0a,0x3f,0x00,0x00 - -, -/* @3430 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x01,0x4a,0xe8,0xb8,0xee,0xaa,0xba,0xea,0x4a,0x02,0xff,0x02,0x00 - -, -0x00,0x3f,0x00,0x00,0x03,0x02,0x0f,0x0a,0x0a,0x0b,0x0c,0x20,0x3f,0x00,0x00 - -, -/* @3431 (15x15,V)@ [suki software]*/ -0x40,0x30,0x00,0xff,0x10,0x08,0xfe,0x22,0x22,0xfe,0x22,0x22,0x02,0xfe,0x00 - -, -0x20,0x18,0x04,0x03,0x04,0x08,0x3f,0x14,0x12,0x11,0x12,0x14,0x10,0x3f,0x00 - -, -/* @3432 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x44,0xe4,0x54,0x4f,0xf4,0x4c,0xd4,0x24,0x46,0x44,0x00 - -, -0x02,0x3e,0x01,0x00,0x00,0x07,0x05,0x05,0x1f,0x25,0x27,0x20,0x38,0x00,0x00 - -, -/* @3433 (15x15,V)@ [suki software]*/ -0x00,0x88,0x88,0x88,0xff,0x48,0x48,0x48,0x00,0xff,0x08,0x10,0x30,0x00,0x00 - -, -0x20,0x20,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3f,0x22,0x20,0x00 - -, -/* @3434 (15x15,V)@ [suki software]*/ -0x00,0x02,0xca,0x52,0x42,0x7e,0x42,0x42,0x7e,0x42,0x52,0x4a,0x43,0x42,0x00 - -, -0x20,0x18,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 - -, -/* @3435 (15x15,V)@ [suki software]*/ -0x82,0xe2,0x3e,0x22,0xe2,0x40,0x42,0x42,0xfe,0x42,0x42,0xfe,0x43,0x42,0x00 - -, -0x00,0x1f,0x04,0x04,0x07,0x20,0x10,0x0c,0x03,0x00,0x00,0x3f,0x00,0x00,0x00 - -, -/* @3436 (15x15,V)@ [suki software]*/ -0xf8,0x88,0xff,0x88,0xf8,0x42,0x72,0xce,0x00,0xf4,0x04,0xfc,0x22,0x22,0x00 - -, -0x11,0x10,0x0f,0x08,0x24,0x13,0x0c,0x0b,0x10,0x17,0x24,0x27,0x24,0x24,0x00 - -, -/* @3437 (15x15,V)@ [suki software]*/ -0x40,0x40,0x5e,0x50,0x50,0xd0,0x50,0x5f,0x50,0x50,0x50,0x5e,0x40,0x40,0x00 - -, -0x08,0x08,0x04,0x02,0x3f,0x12,0x12,0x12,0x12,0x12,0x12,0x3f,0x02,0x00,0x00 - -, -/* @3438 (15x15,V)@ [suki software]*/ -0x04,0x44,0x74,0x4c,0xc4,0x00,0x04,0xe4,0x04,0xfc,0x42,0x43,0x42,0x00,0x00 - -, -0x20,0x11,0x0a,0x04,0x0b,0x10,0x10,0x27,0x24,0x27,0x24,0x24,0x24,0x24,0x00 - -, -/* @3439 (15x15,V)@ [suki software]*/ -0x04,0x04,0x04,0x94,0x94,0x94,0x95,0x96,0x94,0x94,0x94,0x94,0x06,0x04,0x00 - -, -0x00,0x00,0x00,0x3e,0x12,0x12,0x12,0x12,0x12,0x12,0x3e,0x00,0x00,0x00,0x00 - -, -/* @3440 (15x15,V)@ [suki software]*/ -0x00,0xe4,0x2c,0x35,0xa6,0x74,0x2c,0x02,0xfa,0x0a,0xee,0x0a,0x0b,0xfa,0x00 - -, -0x30,0x0f,0x20,0x25,0x12,0x09,0x24,0x20,0x13,0x0c,0x03,0x04,0x08,0x33,0x00 - -, -/* @3441 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x01,0x46,0xa0,0x9a,0x52,0x12,0xb2,0x92,0x02,0x02,0xff,0x02,0x00 - -, -0x00,0x3f,0x00,0x00,0x0f,0x0a,0x0a,0x08,0x0a,0x0f,0x10,0x20,0x1f,0x00,0x00 - -, -/* @3442 (15x15,V)@ [suki software]*/ -0x00,0x80,0x90,0x4c,0x20,0x10,0xcf,0x10,0x18,0x24,0xa2,0x40,0x40,0x00,0x00 - -, -0x20,0x20,0x14,0x13,0x08,0x04,0x03,0x02,0x04,0x0a,0x11,0x20,0x20,0x20,0x00 - -, -/* @3443 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x18,0x40,0x3e,0x02,0x02,0x02,0x1f,0x22,0x20,0x20,0x00 - -, -0x02,0x3e,0x01,0x00,0x00,0x3f,0x11,0x11,0x11,0x11,0x11,0x3f,0x00,0x00,0x00 - -, -/* @3444 (15x15,V)@ [suki software]*/ -0x40,0x44,0x24,0xe4,0x54,0x4c,0x47,0xf4,0x4c,0x54,0xd4,0x24,0x66,0x24,0x00 - -, -0x00,0x00,0x00,0x0f,0x05,0x05,0x05,0x1f,0x25,0x25,0x2f,0x20,0x20,0x38,0x00 - -, -/* @3445 (15x15,V)@ [suki software]*/ -0x08,0x88,0xff,0x48,0x48,0x24,0xd4,0x4c,0xf7,0x4c,0x54,0xe4,0x46,0x44,0x00 - -, -0x11,0x20,0x1f,0x00,0x00,0x00,0x07,0x05,0x1f,0x25,0x25,0x27,0x20,0x38,0x00 - -, -/* @3446 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x12,0x12,0xfe,0x00,0xfe,0x52,0xd2,0x52,0x52,0x7f,0x02,0x00,0x00 - -, -0x00,0x1f,0x09,0x09,0x1f,0x00,0x3f,0x10,0x0b,0x04,0x0a,0x12,0x31,0x10,0x00 - -, -/* @3447 (15x15,V)@ [suki software]*/ -0x90,0x48,0xe4,0x1b,0x00,0x22,0x44,0x80,0x40,0x22,0x22,0xe2,0x33,0x22,0x00 - -, -0x00,0x00,0x3f,0x00,0x02,0x02,0x3f,0x00,0x00,0x10,0x20,0x1f,0x00,0x00,0x00 - -, -/* @3448 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x0c,0xd4,0x54,0x55,0xf6,0x54,0x54,0xd4,0x0c,0x00,0x00 - -, -0x02,0x3e,0x01,0x20,0x20,0x17,0x0d,0x05,0x07,0x05,0x0d,0x17,0x30,0x00,0x00 - -, -/* @3449 (15x15,V)@ [suki software]*/ -0x28,0x28,0xff,0x28,0x28,0x08,0x10,0xec,0x27,0xe4,0x34,0x2c,0xe0,0x00,0x00 - -, -0x01,0x01,0x3f,0x01,0x01,0x01,0x00,0x1f,0x21,0x21,0x21,0x21,0x23,0x38,0x00 - -, -/* @3450 (15x15,V)@ [suki software]*/ -0x10,0x10,0xff,0x10,0x10,0xfe,0x02,0x7a,0x4a,0xda,0x6a,0x4a,0x7b,0x02,0x00 - -, -0x08,0x08,0x0f,0x04,0x04,0x3f,0x21,0x29,0x2b,0x25,0x25,0x2b,0x29,0x21,0x00 - -, -/* @3451 (15x15,V)@ [suki software]*/ -0x44,0x44,0x44,0xf4,0x04,0xdf,0x54,0x54,0xdf,0x04,0xf4,0x44,0x26,0x84,0x00 - -, -0x02,0x22,0x19,0x03,0x08,0x33,0x02,0x02,0x0b,0x30,0x01,0x0a,0x32,0x03,0x00 - -, -/* @3452 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x02,0x42,0x42,0x42,0xfe,0x42,0x42,0x4a,0x72,0x43,0x02,0x00 - -, -0x20,0x1c,0x23,0x20,0x10,0x08,0x06,0x01,0x01,0x06,0x08,0x10,0x20,0x20,0x00 - -, -/* @3453 (15x15,V)@ [suki software]*/ -0x84,0x44,0xfc,0x24,0xe6,0x04,0xfe,0x02,0x02,0xfa,0x02,0x02,0xff,0x02,0x00 - -, -0x00,0x00,0x1f,0x04,0x2f,0x10,0x09,0x04,0x02,0x01,0x1f,0x20,0x21,0x38,0x00 - -, -/* @3454 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x22,0xf2,0x0e,0x22,0xf2,0x9e,0x92,0xf6,0x9a,0x93,0x12,0x00 - -, -0x20,0x18,0x07,0x00,0x3f,0x00,0x00,0x3f,0x12,0x12,0x1f,0x12,0x12,0x10,0x00 - -, -/* @3455 (15x15,V)@ [suki software]*/ -0xfc,0x04,0x04,0xfc,0x00,0x04,0x54,0x54,0x55,0x56,0x54,0x54,0x06,0x04,0x00 - -, -0x07,0x01,0x01,0x03,0x00,0x00,0x3e,0x12,0x12,0x12,0x12,0x3e,0x00,0x00,0x00 - -, -/* @3456 (15x15,V)@ [suki software]*/ -0x00,0x00,0xe4,0x24,0x2c,0x34,0x25,0xa6,0xb4,0x6c,0x24,0x26,0x34,0x20,0x00 - -, -0x20,0x18,0x07,0x28,0x29,0x29,0x25,0x14,0x12,0x12,0x09,0x08,0x04,0x00,0x00 - -, -/* @3457 (15x15,V)@ [suki software]*/ -0x40,0x30,0x00,0xff,0x10,0x28,0x90,0x48,0x47,0x04,0x54,0x4c,0xc4,0x00,0x00 - -, -0x20,0x10,0x0c,0x03,0x04,0x08,0x3f,0x12,0x12,0x10,0x12,0x12,0x3f,0x00,0x00 - -, -/* @3458 (15x15,V)@ [suki software]*/ -0x00,0x08,0x06,0x02,0xfa,0xaa,0xaa,0xab,0xaa,0xaa,0xfa,0x02,0x0a,0x06,0x00 - -, -0x02,0x22,0x22,0x22,0x2a,0x2e,0x1b,0x0a,0x0a,0x16,0x12,0x32,0x22,0x02,0x00 - -, -/* @3459 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x00,0xe4,0x24,0x2c,0x35,0xa6,0xb4,0x6c,0x26,0x24,0x00 - -, -0x00,0x00,0x1f,0x28,0x10,0x0f,0x20,0x29,0x25,0x14,0x12,0x09,0x04,0x00,0x00 - -, -/* @3460 (15x15,V)@ [suki software]*/ -0x02,0xfa,0x82,0x82,0xfe,0x80,0x20,0x50,0x4c,0x43,0x4c,0x50,0x20,0x20,0x00 - -, -0x04,0x04,0x12,0x22,0x10,0x2f,0x21,0x2e,0x21,0x26,0x38,0x27,0x20,0x20,0x00 - -, -/* @3461 (15x15,V)@ [suki software]*/ -0x84,0x44,0xbc,0x24,0xe4,0x04,0xf8,0x08,0x08,0xff,0x08,0x08,0xfc,0x08,0x00 - -, -0x20,0x10,0x0c,0x03,0x20,0x21,0x11,0x09,0x05,0x03,0x05,0x09,0x11,0x21,0x00 - -, -/* @3462 (15x15,V)@ [suki software]*/ -0x00,0x80,0x80,0xf8,0x88,0x88,0x88,0xff,0x88,0x88,0x88,0xfc,0x88,0x80,0x00 - -, -0x00,0x20,0x20,0x10,0x08,0x04,0x02,0x01,0x02,0x04,0x08,0x10,0x30,0x10,0x00 - -, -/* @3463 (15x15,V)@ [suki software]*/ -0x88,0x88,0x48,0xce,0x6a,0xda,0x6f,0x4a,0x5a,0xea,0x2e,0x48,0x48,0x48,0x00 - -, -0x00,0x10,0x10,0x17,0x14,0x14,0x15,0x14,0x15,0x25,0x24,0x1c,0x00,0x00,0x00 - -, -/* @3464 (15x15,V)@ [suki software]*/ -0x24,0x24,0xa4,0xfe,0x23,0xa2,0xf8,0x88,0x88,0xff,0x88,0xfc,0x88,0x80,0x00 - -, -0x04,0x03,0x00,0x3f,0x01,0x22,0x10,0x08,0x06,0x01,0x06,0x08,0x30,0x10,0x00 - -, -/* @3465 (15x15,V)@ [suki software]*/ -0x08,0xc8,0xff,0x48,0x88,0x08,0x42,0x62,0xd2,0x4a,0xc7,0x42,0xe0,0x40,0x00 - -, -0x03,0x00,0x3f,0x00,0x08,0x24,0x12,0x09,0x04,0x13,0x20,0x10,0x0f,0x00,0x00 - -, -/* @3466 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x08,0x42,0x62,0xd2,0x4a,0xc6,0x43,0x42,0xc0,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x28,0x24,0x12,0x09,0x06,0x11,0x20,0x10,0x0f,0x00 - -, -/* @3467 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x08,0x49,0x4a,0x4c,0xf8,0x4c,0x4a,0x49,0x08,0x00,0x00 - -, -0x00,0x00,0x3f,0x00,0x02,0x02,0x02,0x02,0x3f,0x02,0x02,0x02,0x02,0x02,0x00 - -, -/* @3468 (15x15,V)@ [suki software]*/ -0x08,0x30,0x80,0xfc,0x04,0x94,0x94,0xd5,0xb6,0x94,0x94,0x84,0x86,0x04,0x00 - -, -0x21,0x11,0x0c,0x03,0x28,0x24,0x12,0x09,0x04,0x12,0x21,0x10,0x0f,0x00,0x00 - -, -/* @3469 (15x15,V)@ [suki software]*/ -0x00,0x08,0x48,0x49,0x4a,0x4c,0xf8,0x4c,0x4a,0x49,0x48,0x4c,0x08,0x00,0x00 - -, -0x02,0x02,0x02,0x02,0x02,0x02,0x3f,0x02,0x02,0x02,0x02,0x02,0x03,0x02,0x00 - -, -/* @3470 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x08,0x49,0x4a,0x4c,0xf8,0x4c,0x4a,0x49,0x08,0x00,0x00 - -, -0x02,0x3e,0x01,0x02,0x02,0x02,0x02,0x02,0x3f,0x02,0x02,0x02,0x03,0x02,0x00 - -, -/* @3471 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0x32,0xce,0x00,0xfe,0x42,0x42,0x42,0x42,0x42,0xff,0x02,0x00 - -, -0x00,0x3f,0x02,0x04,0x03,0x00,0x3f,0x08,0x08,0x08,0x08,0x08,0x1f,0x00,0x00 - -, -/* @3472 (15x15,V)@ [suki software]*/ -0x10,0x88,0xa4,0xab,0xea,0xaa,0xea,0xaa,0xaa,0x2a,0xea,0x02,0x02,0x00,0x00 - -, -0x00,0x08,0x0a,0x0a,0x0a,0x3f,0x0a,0x0a,0x0a,0x00,0x0f,0x10,0x20,0x3c,0x00 - -, -/* @3473 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x00,0xfc,0x04,0x02,0x02,0xfc,0x04,0x04,0xfc,0x00,0x00 - -, -0x00,0x00,0x3f,0x00,0x00,0x07,0x02,0x01,0x00,0x3f,0x00,0x04,0x07,0x00,0x00 - -, -/* @3474 (15x15,V)@ [suki software]*/ -0x08,0xb0,0x40,0xfc,0x04,0xa4,0xac,0xb5,0xe6,0xb4,0xac,0xa4,0x26,0x04,0x00 - -, -0x21,0x10,0x0c,0x03,0x02,0x02,0x02,0x02,0x3f,0x02,0x02,0x02,0x02,0x02,0x00 - -, -/* @3475 (15x15,V)@ [suki software]*/ -0x40,0x44,0x54,0x54,0xd5,0x76,0x5c,0x54,0x56,0xd5,0x54,0x54,0x44,0x40,0x00 - -, -0x04,0x24,0x22,0x11,0x08,0x07,0x00,0x00,0x3f,0x00,0x01,0x01,0x02,0x02,0x00 - -, -/* @3476 (15x15,V)@ [suki software]*/ -0x08,0x88,0xff,0x48,0x88,0x00,0x49,0x4a,0x4c,0xf8,0x4c,0x4a,0x49,0x08,0x00 - -, -0x06,0x01,0x3f,0x00,0x00,0x02,0x02,0x02,0x02,0x3f,0x02,0x02,0x02,0x02,0x00 - -, -/* @3477 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x04,0x54,0x55,0x56,0xfc,0x56,0x55,0x54,0x54,0x00,0x00 - -, -0x02,0x3e,0x01,0x20,0x14,0x0d,0x15,0x21,0x1f,0x02,0x04,0x0a,0x11,0x10,0x00 - -, -/* @3478 (15x15,V)@ [suki software]*/ -0x20,0x22,0xec,0x00,0x40,0x7c,0xd6,0x55,0x7c,0x10,0x6c,0x8b,0x78,0x08,0x00 - -, -0x10,0x08,0x07,0x08,0x14,0x23,0x29,0x25,0x2b,0x24,0x22,0x21,0x22,0x2c,0x00 - -, -/* @3479 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x92,0x92,0xfe,0x00,0x7a,0x4a,0xfe,0x4a,0x7e,0x4a,0x7b,0x02,0x00 - -, -0x30,0x0f,0x10,0x20,0x1f,0x21,0x21,0x17,0x09,0x09,0x15,0x13,0x21,0x01,0x00 - -, -/* @3480 (15x15,V)@ [suki software]*/ -0x08,0x08,0xf8,0x0f,0x08,0xf8,0x24,0x24,0x24,0xfe,0x22,0x23,0x22,0x20,0x00 - -, -0x20,0x11,0x0a,0x04,0x0a,0x21,0x10,0x0c,0x03,0x00,0x03,0x0c,0x10,0x20,0x00 - -, -/* @3481 (15x15,V)@ [suki software]*/ -0x22,0x22,0xfe,0x22,0x22,0x80,0x5a,0x62,0x46,0xda,0x41,0x51,0x4d,0x00,0x00 - -, -0x08,0x08,0x07,0x04,0x04,0x02,0x3a,0x22,0x22,0x3f,0x22,0x22,0x3a,0x02,0x00 - -, -}, -//************************************** -{ -/* @3482 ҡ(15x15,V)@ [suki software]*/ -0x08,0x08,0xff,0x88,0x48,0x04,0x6c,0x34,0x24,0xea,0x22,0x33,0x2e,0x00,0x00 - -, -0x11,0x21,0x1f,0x00,0x00,0x1d,0x11,0x11,0x11,0x1f,0x11,0x11,0x3d,0x01,0x00 - -, -/* @3483 Ң(15x15,V)@ [suki software]*/ -0x00,0x48,0x48,0x48,0x48,0x2f,0x34,0x24,0x54,0x54,0x4c,0x44,0x70,0x00,0x00 - -, -0x20,0x21,0x21,0x11,0x09,0x07,0x01,0x01,0x1f,0x21,0x21,0x21,0x21,0x38,0x00 - -, -/* @3484 ң(15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x84,0xca,0xb2,0xa6,0xea,0xa2,0xb1,0xad,0x80,0x80,0x00 - -, -0x10,0x08,0x07,0x08,0x10,0x26,0x24,0x24,0x27,0x24,0x24,0x2e,0x20,0x20,0x00 - -, -/* @3485 Ҥ(15x15,V)@ [suki software]*/ -0x10,0x0c,0x24,0x94,0x6c,0x44,0x45,0xc6,0x44,0x4c,0x54,0x24,0x14,0x0c,0x00 - -, -0x02,0x02,0x3b,0x22,0x22,0x22,0x22,0x3f,0x22,0x22,0x22,0x3a,0x03,0x02,0x00 - -, -/* @3486 ҥ(15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x00,0x8a,0x72,0x42,0x46,0xda,0x41,0x51,0x4d,0x00,0x00 - -, -0x00,0x00,0x1f,0x08,0x01,0x1d,0x11,0x11,0x11,0x1f,0x11,0x11,0x3d,0x01,0x00 - -, -/* @3487 Ҧ(15x15,V)@ [suki software]*/ -0x08,0x08,0xf8,0x0f,0x08,0xf8,0x10,0xa0,0xff,0x00,0xff,0xa0,0x10,0x00,0x00 - -, -0x20,0x11,0x0a,0x04,0x0a,0x21,0x11,0x0c,0x03,0x00,0x1f,0x20,0x21,0x3a,0x00 - -, -/* @3488 ҧ(15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0x04,0xfc,0x40,0x24,0xd4,0x05,0x06,0x04,0xd4,0x26,0x44,0x00 - -, -0x00,0x07,0x01,0x01,0x23,0x20,0x10,0x11,0x0a,0x04,0x0b,0x10,0x30,0x10,0x00 - -, -/* @3489 Ҩ(15x15,V)@ [suki software]*/ -0x00,0x02,0xca,0x52,0x42,0x22,0x06,0x5a,0x41,0x61,0x51,0xcd,0x01,0x00,0x00 - -, -0x00,0x00,0x3f,0x12,0x12,0x12,0x12,0x10,0x12,0x12,0x12,0x3f,0x00,0x00,0x00 - -, -/* @3490 ҩ(15x15,V)@ [suki software]*/ -0x04,0xc4,0xa4,0x94,0x84,0x4f,0x04,0x84,0x74,0x4f,0x44,0x44,0xc6,0x04,0x00 - -, -0x00,0x24,0x26,0x15,0x12,0x10,0x01,0x00,0x01,0x16,0x20,0x10,0x0f,0x00,0x00 - -, -/* @3491 Ҫ(15x15,V)@ [suki software]*/ -0x02,0x02,0x7a,0x4a,0x4a,0xfe,0x4a,0x4a,0x7e,0x4a,0x4a,0x7a,0x03,0x02,0x00 - -, -0x01,0x21,0x21,0x25,0x17,0x15,0x09,0x09,0x0d,0x13,0x11,0x31,0x01,0x01,0x00 - -, -/* @3492 ҫ(15x15,V)@ [suki software]*/ -0x4c,0xd0,0x7f,0xd0,0x4c,0x52,0x96,0x6a,0x5e,0xe0,0x56,0x4a,0x5f,0x42,0x00 - -, -0x30,0x0f,0x00,0x1f,0x08,0x02,0x3f,0x15,0x15,0x1f,0x15,0x15,0x15,0x10,0x00 - -, -/* @3493 Ҭ(15x15,V)@ [suki software]*/ -0x08,0xc8,0xff,0x48,0x8a,0xfe,0x92,0x92,0xfe,0x02,0xfe,0x22,0x5a,0x86,0x00 - -, -0x03,0x00,0x3f,0x00,0x04,0x07,0x04,0x02,0x3f,0x02,0x3f,0x04,0x04,0x03,0x00 - -, -/* @3494 ҭ(15x15,V)@ [suki software]*/ -0xfc,0x04,0x04,0xfc,0x00,0xc4,0x54,0x54,0x5f,0x54,0x54,0x56,0xc4,0x00,0x00 - -, -0x07,0x01,0x01,0x23,0x20,0x20,0x2f,0x35,0x25,0x35,0x2d,0x27,0x20,0x20,0x00 - -, -/* @3495 Ү(15x15,V)@ [suki software]*/ -0x02,0x02,0xfe,0x92,0x92,0xfe,0x02,0x00,0xfe,0x02,0x22,0x52,0x8e,0x00,0x00 - -, -0x04,0x04,0x07,0x04,0x04,0x3f,0x02,0x00,0x3f,0x00,0x04,0x08,0x04,0x03,0x00 - -, -/* @3496 ү(15x15,V)@ [suki software]*/ -0x88,0x88,0x44,0xc2,0xa5,0xa8,0x90,0x90,0xa9,0xa5,0xc2,0x42,0x44,0x40,0x00 - -, -0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x00,0x08,0x10,0x0f,0x00,0x00,0x00,0x00 - -, -/* @3497 Ұ(15x15,V)@ [suki software]*/ -0x00,0xfe,0x4a,0xfe,0x4a,0x4a,0xfe,0x20,0x22,0x2a,0xf2,0x2a,0xa7,0x62,0x00 - -, -0x10,0x12,0x12,0x0f,0x0a,0x0a,0x0a,0x00,0x10,0x20,0x1f,0x00,0x00,0x00,0x00 - -, -/* @3498 ұ(15x15,V)@ [suki software]*/ -0x02,0x04,0x0c,0xc0,0x00,0x30,0xa8,0xa4,0xa3,0xa0,0xa0,0xa8,0x30,0x60,0x00 - -, -0x02,0x02,0x3f,0x00,0x00,0x00,0x3f,0x10,0x10,0x10,0x10,0x3f,0x00,0x00,0x00 - -, -/* @3499 Ҳ(15x15,V)@ [suki software]*/ -0x40,0x40,0x40,0xfc,0x20,0x20,0x20,0xff,0x10,0x10,0x08,0xf8,0x00,0x00,0x00 - -, -0x00,0x00,0x00,0x1f,0x20,0x20,0x20,0x27,0x20,0x21,0x22,0x21,0x20,0x3c,0x00 - -, -/* @3500 ҳ(15x15,V)@ [suki software]*/ -0x02,0x02,0x02,0xf2,0x12,0x1a,0xd6,0x12,0x12,0x12,0xfa,0x12,0x03,0x02,0x00 - -, -0x00,0x20,0x20,0x23,0x10,0x08,0x07,0x00,0x04,0x08,0x0b,0x10,0x30,0x00,0x00 - -, -/* @3501 Ҵ(15x15,V)@ [suki software]*/ -0x08,0x88,0xff,0x48,0x88,0xc4,0x34,0x04,0xc5,0x36,0xa4,0x24,0xe6,0x04,0x00 - -, -0x11,0x20,0x1f,0x00,0x00,0x3f,0x20,0x21,0x10,0x0b,0x04,0x0b,0x10,0x20,0x00 - -, -/* @3502 ҵ(15x15,V)@ [suki software]*/ -0x00,0x10,0x60,0x80,0x00,0xff,0x00,0x00,0xff,0x00,0x00,0xc0,0x30,0x00,0x00 - -, -0x10,0x10,0x10,0x13,0x10,0x1f,0x10,0x10,0x1f,0x12,0x11,0x10,0x18,0x10,0x00 - -, -/* @3503 Ҷ(15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0x04,0xfc,0x20,0x20,0x20,0x20,0xff,0x20,0x20,0x30,0x20,0x00 - -, -0x00,0x07,0x02,0x02,0x03,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00 - -, -/* @3504 ҷ(15x15,V)@ [suki software]*/ -0x00,0x00,0xfc,0xa4,0xa4,0xa4,0xff,0xa4,0xa4,0xa4,0xa4,0xfc,0x00,0x00,0x00 - -, -0x20,0x20,0x21,0x20,0x10,0x10,0x0b,0x04,0x0c,0x12,0x11,0x20,0x20,0x38,0x00 - -, -/* @3505 Ҹ(15x15,V)@ [suki software]*/ -0x00,0xfe,0x92,0x92,0xfe,0x84,0xe4,0x1c,0xc5,0x3e,0xd4,0x14,0xf6,0x04,0x00 - -, -0x30,0x0f,0x10,0x20,0x1f,0x00,0x3f,0x21,0x10,0x0b,0x04,0x0b,0x10,0x20,0x00 - -, -/* @3506 ҹ(15x15,V)@ [suki software]*/ -0x04,0x84,0x44,0xe4,0x1c,0x84,0x45,0x7e,0xa4,0x24,0xa4,0x64,0x06,0x04,0x00 - -, -0x01,0x00,0x00,0x3f,0x21,0x20,0x11,0x0a,0x04,0x0a,0x11,0x10,0x20,0x20,0x00 - -, -/* @3507 Һ(15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x84,0xe4,0x1c,0x84,0x45,0x3e,0xa4,0x24,0xe6,0x04,0x00 - -, -0x02,0x3e,0x01,0x00,0x00,0x3f,0x21,0x20,0x11,0x0a,0x04,0x0b,0x10,0x20,0x00 - -, -/* @3508 һ(15x15,V)@ [suki software]*/ -0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x60,0x40,0x00 - -, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 - -, -/* @3509 Ҽ(15x15,V)@ [suki software]*/ -0x00,0x62,0x22,0xaa,0xaa,0xaa,0xaa,0xaf,0xaa,0xaa,0xaa,0xaa,0x62,0x02,0x00 - -, -0x20,0x20,0x20,0x2e,0x2a,0x3a,0x2a,0x2a,0x3a,0x2a,0x2e,0x20,0x30,0x20,0x00 - -, -/* @3510 ҽ(15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0xc2,0xa2,0x9e,0x92,0xf2,0x92,0x92,0x92,0x93,0x82,0x00,0x00 - -, -0x00,0x3f,0x20,0x28,0x28,0x24,0x22,0x21,0x22,0x24,0x24,0x28,0x20,0x20,0x00 - -, -/* @3511 Ҿ(15x15,V)@ [suki software]*/ -0x08,0x08,0xff,0x88,0x48,0x20,0xee,0xaa,0xaa,0xaa,0xaa,0xee,0x20,0x20,0x00 - -, -0x11,0x21,0x1f,0x00,0x08,0x08,0x0f,0x0a,0x0a,0x0a,0x0a,0x3f,0x04,0x04,0x00 - -, -/* @3512 ҿ(15x15,V)@ [suki software]*/ -0x40,0x38,0xe7,0x24,0x24,0x00,0x84,0xc4,0x25,0xfe,0x04,0x84,0x64,0x04,0x00 - -, -0x01,0x01,0x3f,0x11,0x09,0x01,0x00,0x3f,0x10,0x08,0x03,0x0c,0x10,0x20,0x00 - -, -/* @3513 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x04,0x84,0xc4,0x25,0x3e,0xc4,0x84,0x44,0x26,0x04,0x00 - -, -0x00,0x00,0x3f,0x00,0x01,0x00,0x3f,0x10,0x08,0x01,0x06,0x08,0x30,0x10,0x00 - -, -/* @3514 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x20,0x24,0x24,0xfc,0x24,0x24,0x24,0xfe,0x24,0x20,0x00 - -, -0x00,0x00,0x3f,0x00,0x20,0x11,0x09,0x07,0x01,0x01,0x01,0x01,0x00,0x00,0x00 - -, -/* @3515 (15x15,V)@ [suki software]*/ -0x08,0x08,0x08,0x88,0xc8,0x29,0x1e,0xe8,0x08,0x88,0x48,0x28,0x0c,0x08,0x00 - -, -0x02,0x02,0x01,0x00,0x3f,0x20,0x10,0x08,0x03,0x04,0x08,0x10,0x30,0x10,0x00 - -, -/* @3516 (15x15,V)@ [suki software]*/ -0xfe,0x02,0xf2,0x1e,0x12,0xf2,0x00,0xfa,0x0a,0x0e,0xea,0x0a,0xfb,0x02,0x00 - -, -0x1f,0x10,0x11,0x1f,0x11,0x11,0x20,0x27,0x10,0x08,0x07,0x08,0x17,0x20,0x00 - -, -/* @3517 (15x15,V)@ [suki software]*/ -0x04,0x04,0xd4,0x54,0x54,0x54,0xff,0x54,0x54,0x54,0x54,0x74,0x06,0x04,0x00 - -, -0x20,0x20,0x21,0x11,0x09,0x05,0x03,0x05,0x09,0x11,0x15,0x25,0x23,0x20,0x00 - -, -/* @3518 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x20,0xae,0xaa,0xaa,0xbf,0xaa,0xaa,0xae,0x20,0x20,0x00 - -, -0x10,0x08,0x07,0x08,0x10,0x2b,0x28,0x24,0x23,0x24,0x24,0x2b,0x28,0x20,0x00 - -, -/* @3519 (15x15,V)@ [suki software]*/ -0x20,0x24,0xa4,0xfe,0xa3,0x22,0x50,0x48,0x54,0xa7,0x14,0x0c,0x84,0x00,0x00 - -, -0x04,0x03,0x00,0x3f,0x00,0x25,0x24,0x22,0x13,0x15,0x09,0x05,0x03,0x01,0x00 - -, -/* @3520 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x00,0x18,0x60,0x81,0x0e,0x00,0xc0,0x3c,0x00,0x00,0x00 - -, -0x00,0x00,0x3f,0x00,0x20,0x10,0x08,0x05,0x02,0x05,0x08,0x10,0x30,0x10,0x00 - -, -/* @3521 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x92,0x92,0xfe,0x04,0xd4,0x54,0xff,0x54,0x54,0x54,0x76,0x04,0x00 - -, -0x30,0x0f,0x10,0x20,0x1f,0x20,0x11,0x0d,0x03,0x05,0x09,0x15,0x27,0x20,0x00 - -, -/* @3522 (15x15,V)@ [suki software]*/ -0x80,0x6f,0x54,0xd4,0x52,0x5a,0x20,0xa2,0x2a,0xfa,0x26,0x23,0x62,0x00,0x00 - -, -0x22,0x12,0x0a,0x07,0x2a,0x12,0x08,0x07,0x08,0x0f,0x11,0x21,0x21,0x20,0x00 - -, -/* @3523 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x10,0x00,0xfc,0x24,0x24,0x22,0xe2,0x23,0x32,0x20,0x00 - -, -0x02,0x3e,0x01,0x20,0x10,0x08,0x07,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00 - -, -/* @3524 (15x15,V)@ [suki software]*/ -0x00,0x10,0x0c,0x04,0xe4,0x24,0x25,0x26,0x24,0x24,0xe4,0x04,0x14,0x0c,0x00 - -, -0x20,0x20,0x20,0x20,0x3f,0x25,0x25,0x25,0x25,0x25,0x3f,0x20,0x30,0x20,0x00 - -, -/* @3525 (15x15,V)@ [suki software]*/ -0x88,0x78,0x0f,0x08,0xf8,0x04,0xd4,0x54,0x54,0xff,0x54,0x54,0x76,0x04,0x00 - -, -0x20,0x11,0x0a,0x04,0x2b,0x20,0x11,0x09,0x05,0x03,0x0d,0x11,0x27,0x20,0x00 - -, -/* @3526 (15x15,V)@ [suki software]*/ -0x08,0x58,0x68,0xc8,0xfc,0x4b,0x5a,0x0a,0xaa,0xde,0xaa,0xd8,0x88,0x08,0x00 - -, -0x00,0x26,0x25,0x14,0x0f,0x05,0x04,0x06,0x05,0x3e,0x05,0x04,0x05,0x00,0x00 - -, -/* @3527 (15x15,V)@ [suki software]*/ -0x08,0x88,0xff,0x48,0x88,0x54,0x64,0x54,0x4f,0x54,0x54,0xe6,0x44,0x40,0x00 - -, -0x06,0x01,0x3f,0x00,0x00,0x00,0x0f,0x05,0x05,0x0f,0x20,0x3f,0x00,0x00,0x00 - -, -/* @3528 (15x15,V)@ [suki software]*/ -0x00,0xf8,0x08,0xff,0x08,0xf8,0x1c,0x60,0x82,0x0c,0x80,0x60,0x1c,0x00,0x00 - -, -0x10,0x11,0x11,0x0f,0x29,0x2d,0x10,0x08,0x05,0x02,0x05,0x08,0x30,0x10,0x00 - -, -/* @3529 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x40,0x44,0x64,0x54,0x4f,0x54,0x64,0xc6,0x44,0x40,0x00 - -, -0x00,0x00,0x3f,0x00,0x00,0x0f,0x05,0x05,0x07,0x10,0x20,0x1f,0x00,0x00,0x00 - -, -/* @3530 (15x15,V)@ [suki software]*/ -0x00,0x00,0xf2,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x7f,0x02,0x00,0x00 - -, -0x00,0x00,0x0f,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x1c,0x00,0x00 - -, -/* @3531 (15x15,V)@ [suki software]*/ -0x00,0x00,0x02,0x02,0x82,0x42,0x22,0x12,0x0a,0x07,0x02,0x00,0x00,0x00,0x00 - -, -0x00,0x00,0x0e,0x11,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x1e,0x00,0x00 - -, -/* @3532 (15x15,V)@ [suki software]*/ -0x00,0x00,0x88,0x68,0x4c,0x4a,0xc9,0x48,0x48,0x4a,0x4c,0x18,0x00,0x00,0x00 - -, -0x22,0x22,0x22,0x12,0x12,0x0a,0x07,0x02,0x06,0x0a,0x12,0x12,0x23,0x22,0x00 - -, -/* @3533 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x00,0x00,0x04,0x08,0x10,0x00,0x00,0xff,0x00,0x00,0x00,0x00 - -, -0x00,0x00,0x0f,0x24,0x22,0x21,0x10,0x10,0x08,0x04,0x03,0x04,0x18,0x00,0x00 - -, -/* @3534 (15x15,V)@ [suki software]*/ -0x04,0x04,0x24,0x24,0x3f,0x24,0x24,0xa4,0xbf,0x64,0x24,0x04,0x06,0x04,0x00 - -, -0x00,0x00,0x18,0x24,0x22,0x21,0x21,0x20,0x20,0x20,0x20,0x20,0x3c,0x00,0x00 - -, -/* @3535 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x48,0xfc,0x04,0x02,0xfd,0x04,0x04,0xfc,0x00,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x00,0x07,0x02,0x01,0x3f,0x00,0x04,0x07,0x00,0x00 - -, -/* @3536 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x3e,0xaa,0xea,0xaa,0xaa,0xaa,0xaa,0xbf,0x82,0x80,0x00,0x00 - -, -0x00,0x12,0x12,0x09,0x24,0x22,0x11,0x08,0x04,0x13,0x20,0x10,0x0f,0x00,0x00 - -, -/* @3537 (15x15,V)@ [suki software]*/ -0x00,0x00,0xc0,0x5e,0x52,0x52,0x52,0xd2,0x52,0x52,0x5f,0xc2,0x00,0x00,0x00 - -, -0x00,0x00,0x1f,0x22,0x22,0x22,0x22,0x23,0x22,0x22,0x22,0x23,0x38,0x00,0x00 - -, -/* @3538 (15x15,V)@ [suki software]*/ -0x00,0xf8,0x00,0xff,0x00,0xf8,0x20,0x50,0x4f,0x48,0xc8,0x48,0x0c,0x08,0x00 - -, -0x00,0x0f,0x08,0x07,0x04,0x0f,0x00,0x1c,0x22,0x21,0x20,0x20,0x20,0x3c,0x00 - -, -/* @3539 (15x15,V)@ [suki software]*/ -0x40,0x20,0x10,0xfc,0x03,0x04,0x04,0xc4,0x24,0x14,0x0e,0x04,0x00,0x00,0x00 - -, -0x00,0x00,0x00,0x3f,0x00,0x1c,0x23,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x00 - -, -/* @3540 (15x15,V)@ [suki software]*/ -0x10,0x88,0x44,0xe3,0x18,0x20,0x50,0xce,0x42,0x42,0x5f,0xe2,0x20,0x20,0x00 - -, -0x01,0x00,0x00,0x3f,0x00,0x20,0x20,0x11,0x0a,0x04,0x0a,0x11,0x30,0x10,0x00 - -, -/* @3541 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x92,0x92,0xfe,0x10,0xd4,0x5c,0xd5,0x56,0x5c,0xd4,0x14,0x10,0x00 - -, -0x30,0x0f,0x10,0x20,0x1f,0x10,0x0b,0x1e,0x22,0x2b,0x22,0x3b,0x04,0x18,0x00 - -, -/* @3542 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x08,0x7c,0x4b,0x4a,0xfa,0xce,0x4a,0x48,0x78,0x00,0x00 - -, -0x10,0x08,0x07,0x08,0x10,0x28,0x24,0x23,0x20,0x27,0x28,0x2b,0x28,0x2e,0x00 - -, -/* @3543 (15x15,V)@ [suki software]*/ -0x00,0x9f,0x74,0xd4,0x52,0x58,0x00,0x54,0x54,0xff,0x54,0x54,0x7c,0x10,0x00 - -, -0x23,0x12,0x0a,0x07,0x0a,0x12,0x05,0x05,0x05,0x3f,0x05,0x05,0x05,0x04,0x00 - -, -/* @3544 (15x15,V)@ [suki software]*/ -0x08,0xb0,0x40,0xfc,0x84,0x44,0x34,0x15,0x16,0x14,0x74,0x44,0x46,0x04,0x00 - -, -0x21,0x10,0x0c,0x23,0x20,0x21,0x13,0x15,0x09,0x15,0x13,0x20,0x20,0x20,0x00 - -, -/* @3545 (15x15,V)@ [suki software]*/ -0x04,0x04,0x84,0x64,0x04,0xfc,0x05,0x06,0x04,0xfc,0x24,0x44,0x86,0x04,0x00 - -, -0x22,0x21,0x10,0x08,0x06,0x01,0x00,0x10,0x20,0x1f,0x00,0x00,0x00,0x03,0x00 - -, -/* @3546 (15x15,V)@ [suki software]*/ -0x24,0x24,0x94,0x94,0xfc,0xa4,0xa5,0x8e,0x94,0x94,0xac,0xa4,0x46,0x44,0x00 - -, -0x00,0x00,0x3f,0x00,0x02,0x1d,0x14,0x14,0x1d,0x02,0x20,0x3f,0x00,0x00,0x00 - -, -/* @3547 (15x15,V)@ [suki software]*/ -0x10,0x14,0x14,0xd4,0x54,0x5c,0x55,0x56,0x5c,0x54,0xd4,0x16,0x14,0x10,0x00 - -, -0x00,0x20,0x18,0x07,0x1d,0x25,0x2d,0x35,0x25,0x25,0x37,0x08,0x30,0x00,0x00 - -, -/* @3548 (15x15,V)@ [suki software]*/ -0x24,0xac,0x75,0xa6,0x34,0xac,0x24,0x20,0xde,0x42,0x42,0x4f,0xd2,0x10,0x00 - -, -0x15,0x12,0x09,0x24,0x1f,0x02,0x24,0x20,0x11,0x0a,0x04,0x0b,0x10,0x20,0x00 - -, -/* @3549 (15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x08,0x30,0x04,0x04,0xc4,0x24,0x14,0x0e,0x04,0x00,0x00,0x00 - -, -0x00,0x00,0x3f,0x00,0x00,0x0e,0x11,0x10,0x10,0x10,0x10,0x10,0x10,0x1e,0x00 - -, -/* @3550 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x0c,0x30,0xc1,0x02,0x0c,0x80,0x60,0x1e,0x00,0x00,0x00,0x00 - -, -0x20,0x20,0x10,0x10,0x08,0x08,0x05,0x02,0x05,0x08,0x10,0x10,0x30,0x10,0x00 - -, -/* @3551 (15x15,V)@ [suki software]*/ -0x00,0x88,0x88,0x49,0x2a,0x0c,0x08,0x08,0x0c,0x2a,0x29,0x48,0x88,0x00,0x00 - -, -0x20,0x20,0x3f,0x21,0x21,0x3f,0x21,0x21,0x3f,0x21,0x21,0x3f,0x20,0x20,0x00 - -, -/* @3552 (15x15,V)@ [suki software]*/ -0x10,0x21,0x86,0x60,0x88,0x49,0x2e,0x08,0x08,0x0c,0x2b,0x48,0x88,0x08,0x00 - -, -0x02,0x3e,0x01,0x10,0x10,0x1f,0x11,0x1f,0x11,0x1f,0x11,0x1f,0x10,0x10,0x00 - -, -/* @3553 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x00,0x00,0x9f,0xa8,0xa8,0xa4,0xa4,0xa2,0xb8,0x00,0x00 - -, -0x00,0x00,0x1f,0x08,0x04,0x00,0x3f,0x14,0x14,0x14,0x14,0x14,0x3f,0x00,0x00 - -, -/* @3554 (15x15,V)@ [suki software]*/ -0x20,0x20,0xe1,0x06,0x00,0x00,0x38,0xc1,0x0e,0x00,0xc0,0x3c,0x00,0x00,0x00 - -, -0x00,0x00,0x1f,0x08,0x24,0x20,0x10,0x08,0x05,0x02,0x05,0x08,0x30,0x10,0x00 - -, -/* @3555 (15x15,V)@ [suki software]*/ -0x40,0x42,0xcc,0x00,0x10,0x0c,0xe4,0xa4,0xa5,0xa6,0xa4,0xe4,0x14,0x0c,0x00 - -, -0x00,0x00,0x1f,0x08,0x24,0x20,0x3f,0x24,0x24,0x24,0x24,0x3f,0x20,0x20,0x00 - -, -/* @3556 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x40,0x42,0x26,0x2a,0xd2,0x1a,0x26,0x23,0x22,0x20,0x00 - -, -0x00,0x00,0x1f,0x08,0x00,0x05,0x05,0x05,0x3f,0x05,0x05,0x05,0x05,0x04,0x00 - -, -/* @3557 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x3e,0xd2,0x52,0x52,0x52,0x52,0xd2,0x5f,0x42,0x70,0x00,0x00 - -, -0x22,0x22,0x12,0x0a,0x07,0x02,0x02,0x02,0x02,0x3f,0x02,0x02,0x02,0x02,0x00 - -, -/* @3558 (15x15,V)@ [suki software]*/ -0x00,0x12,0x12,0xf6,0xaa,0xaa,0xbe,0xe0,0xaa,0xae,0xaa,0xea,0x1f,0x02,0x00 - -, -0x00,0x28,0x2a,0x2a,0x1a,0x0f,0x0a,0x0a,0x0a,0x0f,0x1a,0x2a,0x2a,0x08,0x00 - -, -/* @3559 (15x15,V)@ [suki software]*/ -0x00,0x22,0x26,0x1a,0x12,0x7e,0x00,0xa2,0x26,0x1a,0x12,0x7f,0x02,0x00,0x00 - -, -0x20,0x21,0x21,0x21,0x27,0x39,0x21,0x21,0x39,0x27,0x21,0x21,0x31,0x20,0x00 - -, -/* @3560 (15x15,V)@ [suki software]*/ -0x20,0x38,0xa7,0x60,0x18,0x42,0x42,0x26,0x2a,0xd2,0x2a,0x27,0x42,0x40,0x00 - -, -0x09,0x1b,0x09,0x05,0x05,0x00,0x05,0x05,0x05,0x3f,0x05,0x05,0x05,0x04,0x00 - -, -/* @3561 (15x15,V)@ [suki software]*/ -0x04,0x04,0xf4,0x94,0x9f,0x94,0xf4,0x94,0x9f,0x94,0x14,0xf4,0x06,0x04,0x00 - -, -0x00,0x00,0x3f,0x18,0x14,0x12,0x11,0x12,0x14,0x18,0x10,0x3f,0x00,0x00,0x00 - -, -/* @3562 (15x15,V)@ [suki software]*/ -0x04,0xf4,0x14,0xd4,0x3f,0x14,0x04,0xf4,0x9f,0x94,0x94,0xf4,0x06,0x04,0x00 - -, -0x00,0x3f,0x04,0x08,0x27,0x10,0x08,0x07,0x02,0x12,0x22,0x1f,0x00,0x00,0x00 - -, -/* @3563 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0x22,0x22,0xa2,0x7e,0xa2,0x22,0x22,0x22,0x02,0xff,0x02,0x00 - -, -0x00,0x3f,0x10,0x14,0x12,0x11,0x10,0x10,0x11,0x16,0x10,0x10,0x3f,0x00,0x00 - -, -/* @3564 (15x15,V)@ [suki software]*/ -0x00,0xfc,0xaa,0xaa,0xaa,0xf9,0x00,0xa0,0x9e,0x82,0x82,0x9f,0xa2,0x20,0x00 - -, -0x30,0x0f,0x02,0x12,0x12,0x0e,0x20,0x20,0x11,0x0a,0x04,0x0a,0x11,0x20,0x00 - -, -/* @3565 (15x15,V)@ [suki software]*/ -0x40,0x44,0x44,0x44,0x4c,0x74,0x45,0x46,0x64,0x5c,0x44,0x46,0x64,0x40,0x00 - -, -0x00,0x00,0x00,0x3f,0x15,0x15,0x15,0x15,0x15,0x15,0x3f,0x00,0x00,0x00,0x00 - -, -/* @3566 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0x32,0x4e,0x82,0x00,0xfe,0x92,0x92,0x92,0x92,0xff,0x02,0x00 - -, -0x00,0x3f,0x00,0x02,0x24,0x13,0x0c,0x03,0x00,0x00,0x10,0x20,0x1f,0x00,0x00 - -, -/* @3567 (15x15,V)@ [suki software]*/ -0x88,0x78,0x0f,0x08,0xf8,0x00,0xfe,0x22,0x22,0xfa,0x22,0x22,0xff,0x02,0x00 - -, -0x20,0x11,0x0a,0x04,0x0b,0x10,0x3f,0x14,0x13,0x10,0x11,0x12,0x3f,0x00,0x00 - -, -/* @3568 (15x15,V)@ [suki software]*/ -0xfc,0x04,0x04,0xfc,0x40,0xa0,0x90,0x8c,0xa3,0xc4,0x88,0x90,0x20,0x20,0x00 - -, -0x07,0x02,0x02,0x03,0x00,0x00,0x00,0x00,0x20,0x18,0x06,0x01,0x00,0x00,0x00 - -, -/* @3569 (15x15,V)@ [suki software]*/ -0x60,0x38,0xe7,0x24,0x24,0x00,0xfe,0x52,0xd2,0x52,0x52,0x7f,0x02,0x00,0x00 - -, -0x01,0x01,0x3f,0x11,0x09,0x00,0x3f,0x10,0x0b,0x04,0x0a,0x12,0x31,0x10,0x00 - -, -/* @3570 (15x15,V)@ [suki software]*/ -0x10,0x21,0x86,0x60,0x04,0x8c,0xb4,0x84,0x8a,0x52,0x42,0x53,0x4a,0x00,0x00 - -, -0x02,0x3e,0x01,0x00,0x22,0x22,0x22,0x22,0x3f,0x22,0x22,0x32,0x22,0x02,0x00 - -, -/* @3571 (15x15,V)@ [suki software]*/ -0x10,0x0c,0xd4,0x54,0x54,0x55,0xf6,0x54,0x54,0x54,0xd4,0x14,0x0c,0x00,0x00 - -, -0x00,0x20,0x27,0x15,0x0d,0x05,0x07,0x05,0x0d,0x15,0x27,0x20,0x00,0x00,0x00 - -, -/* @3572 (15x15,V)@ [suki software]*/ -0x20,0x10,0xef,0x08,0x28,0x18,0x20,0x18,0x0f,0xe8,0x08,0x28,0x18,0x00,0x00 - -, -0x00,0x00,0x1f,0x10,0x08,0x24,0x10,0x08,0x06,0x01,0x06,0x08,0x30,0x10,0x00 - -, -/* @3573 (15x15,V)@ [suki software]*/ -0x10,0x10,0x92,0x92,0x92,0x92,0xfe,0x92,0x92,0x92,0x92,0xff,0x12,0x10,0x00 - -, -0x00,0x20,0x20,0x10,0x08,0x06,0x01,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00 - -, -/* @3574 (15x15,V)@ [suki software]*/ -0x00,0xc2,0xb2,0x92,0x92,0x92,0x92,0x9e,0x00,0x00,0x00,0xff,0x00,0x00,0x00 - -, -0x00,0x00,0x00,0x10,0x10,0x20,0x10,0x0f,0x00,0x00,0x00,0x3f,0x00,0x00,0x00 - -, -/* @3575 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x12,0x2a,0xc6,0x10,0x5c,0x57,0x54,0x54,0x5e,0x54,0xf0,0x00,0x00 - -, -0x00,0x3f,0x02,0x02,0x11,0x08,0x01,0x1d,0x23,0x25,0x21,0x39,0x05,0x18,0x00 - -, -}, -//************************************** -{ -/* @3576 ӡ(15x15,V)@ [suki software]*/ -0x00,0xfc,0x44,0x44,0x42,0x43,0x02,0x00,0xfc,0x04,0x04,0x04,0xfc,0x00,0x00 - -, -0x00,0x0f,0x08,0x04,0x04,0x02,0x02,0x00,0x3f,0x00,0x02,0x04,0x03,0x00,0x00 - -, -/* @3577 Ӣ(15x15,V)@ [suki software]*/ -0x04,0x04,0xe4,0x24,0x2f,0x24,0xf4,0x24,0x24,0x2f,0xe4,0x04,0x06,0x04,0x00 - -, -0x22,0x22,0x23,0x12,0x12,0x0a,0x07,0x02,0x06,0x0a,0x13,0x12,0x22,0x22,0x00 - -, -/* @3578 ӣ(15x15,V)@ [suki software]*/ -0x08,0xc8,0xff,0x48,0x80,0x5e,0x3a,0x22,0x5e,0x80,0x5e,0x22,0x5f,0x82,0x00 - -, -0x03,0x00,0x3f,0x00,0x22,0x22,0x2a,0x2e,0x1b,0x0a,0x16,0x12,0x22,0x02,0x00 - -, -/* @3579 Ӥ(15x15,V)@ [suki software]*/ -0x00,0x80,0x5e,0x22,0x3e,0x42,0x9e,0x80,0x5e,0x3a,0x22,0x5f,0x82,0x00,0x00 - -, -0x02,0x22,0x22,0x22,0x2e,0x2b,0x1a,0x0a,0x0a,0x16,0x12,0x22,0x02,0x02,0x00 - -, -/* @3580 ӥ(15x15,V)@ [suki software]*/ -0x00,0xfe,0x22,0x12,0xfe,0x92,0xfa,0xaf,0xaa,0xfe,0xaa,0xaa,0xaa,0x02,0x00 - -, -0x30,0x0f,0x00,0x10,0x17,0x14,0x15,0x16,0x14,0x14,0x27,0x24,0x1c,0x00,0x00 - -, -/* @3581 Ӧ(15x15,V)@ [suki software]*/ -0x00,0x00,0xfc,0x04,0x44,0x84,0x15,0x26,0xc4,0x04,0x04,0x84,0x66,0x04,0x00 - -, -0x20,0x18,0x07,0x10,0x10,0x11,0x16,0x10,0x11,0x18,0x16,0x11,0x18,0x10,0x00 - -, -/* @3582 ӧ(15x15,V)@ [suki software]*/ -0x20,0xb8,0x67,0x30,0x80,0x5e,0x3a,0x42,0x9e,0x80,0x5e,0x3a,0x42,0x9e,0x00 - -, -0x09,0x1b,0x09,0x05,0x22,0x22,0x2a,0x2f,0x12,0x12,0x1a,0x16,0x22,0x02,0x00 - -, -/* @3583 Ө(15x15,V)@ [suki software]*/ -0x44,0x34,0x94,0x94,0x9f,0x94,0x94,0x94,0x9f,0x94,0x94,0x54,0x36,0x04,0x00 - -, -0x20,0x20,0x20,0x24,0x24,0x24,0x3f,0x24,0x24,0x2c,0x34,0x20,0x20,0x20,0x00 - -, -/* @3584 ө(15x15,V)@ [suki software]*/ -0x44,0x34,0x14,0x94,0x9f,0x94,0xf4,0x94,0x9f,0x94,0x94,0x54,0x36,0x04,0x00 - -, -0x00,0x20,0x20,0x27,0x24,0x24,0x3f,0x24,0x24,0x24,0x2f,0x30,0x20,0x00,0x00 - -, -/* @3585 Ӫ(15x15,V)@ [suki software]*/ -0x44,0x34,0x14,0xd4,0x5f,0x54,0x54,0x54,0x5f,0xd4,0x14,0x56,0x34,0x00,0x00 - -, -0x00,0x00,0x3c,0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x3c,0x00,0x00,0x00,0x00 - -, -/* @3586 ӫ(15x15,V)@ [suki software]*/ -0x44,0x34,0x14,0x94,0x14,0x1f,0xd4,0x14,0x14,0x1f,0x14,0x94,0x36,0x04,0x00 - -, -0x20,0x20,0x12,0x11,0x08,0x04,0x03,0x02,0x04,0x0a,0x11,0x10,0x20,0x20,0x00 - -, -/* @3587 Ӭ(15x15,V)@ [suki software]*/ -0xf0,0x10,0xff,0x10,0xf0,0x00,0xe0,0x2e,0x2a,0xfa,0x2a,0x2a,0xee,0x00,0x00 - -, -0x11,0x11,0x1f,0x09,0x0d,0x18,0x07,0x05,0x05,0x1f,0x25,0x25,0x27,0x38,0x00 - -, -/* @3588 ӭ(15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x00,0xfc,0x02,0x82,0x01,0xfc,0x04,0x04,0xfe,0x04,0x00 - -, -0x10,0x08,0x07,0x08,0x10,0x13,0x21,0x20,0x20,0x2f,0x20,0x22,0x23,0x20,0x00 - -, -/* @3589 Ӯ(15x15,V)@ [suki software]*/ -0x02,0x82,0x8e,0xba,0x2a,0xaa,0xab,0xaa,0x2a,0xaa,0xba,0x8a,0x02,0x02,0x00 - -, -0x20,0x1f,0x2a,0x3f,0x20,0x17,0x0c,0x17,0x20,0x1f,0x02,0x1f,0x20,0x38,0x00 - -, -/* @3590 ӯ(15x15,V)@ [suki software]*/ -0x00,0x82,0x42,0x32,0x8e,0x5a,0x2a,0x5a,0x02,0x4a,0x8f,0x4a,0x38,0x00,0x00 - -, -0x21,0x20,0x3f,0x21,0x21,0x3f,0x21,0x21,0x3f,0x21,0x21,0x3f,0x20,0x20,0x00 - -, -/* @3591 Ӱ(15x15,V)@ [suki software]*/ -0x20,0x20,0xbe,0xaa,0xaa,0xaa,0xaa,0xbf,0x22,0x10,0x88,0x44,0x23,0x00,0x00 - -, -0x20,0x10,0x0b,0x16,0x22,0x1e,0x06,0x2b,0x20,0x11,0x10,0x08,0x04,0x02,0x00 - -, -/* @3592 ӱ(15x15,V)@ [suki software]*/ -0x00,0x4f,0x54,0xd4,0x52,0x5a,0x00,0xfa,0x0a,0x0e,0xea,0x0a,0xfb,0x02,0x00 - -, -0x11,0x09,0x05,0x3f,0x05,0x09,0x20,0x27,0x10,0x08,0x07,0x08,0x17,0x20,0x00 - -, -/* @3593 Ӳ(15x15,V)@ [suki software]*/ -0x82,0xe2,0x3e,0x22,0xe2,0x00,0xfa,0x2a,0x2a,0xfe,0x2a,0x2a,0xfb,0x02,0x00 - -, -0x00,0x1f,0x04,0x04,0x2f,0x20,0x21,0x15,0x09,0x17,0x11,0x21,0x21,0x20,0x00 - -, -/* @3594 ӳ(15x15,V)@ [suki software]*/ -0x00,0xfc,0x44,0x44,0xfc,0x80,0xf8,0x88,0x88,0xff,0x88,0x88,0xf8,0x80,0x00 - -, -0x00,0x0f,0x04,0x04,0x2f,0x20,0x10,0x08,0x06,0x01,0x06,0x08,0x10,0x20,0x00 - -, -/* @3595 Ӵ(15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0xfc,0x20,0x38,0xe7,0x30,0x40,0x30,0x4f,0x88,0x08,0xf8,0x00 - -, -0x00,0x07,0x02,0x03,0x10,0x13,0x12,0x0a,0x09,0x00,0x10,0x21,0x10,0x0f,0x00 - -, -/* @3596 ӵ(15x15,V)@ [suki software]*/ -0x08,0x88,0xff,0x48,0x28,0x00,0xfe,0x22,0x22,0xfe,0x22,0x22,0xff,0x02,0x00 - -, -0x11,0x20,0x1f,0x00,0x20,0x18,0x07,0x01,0x01,0x1f,0x01,0x21,0x3f,0x00,0x00 - -, -/* @3597 Ӷ(15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x00,0xfe,0x22,0x22,0x22,0xfe,0x22,0x22,0xff,0x02,0x00 - -, -0x00,0x00,0x3f,0x20,0x10,0x0f,0x01,0x01,0x01,0x1f,0x21,0x21,0x1f,0x00,0x00 - -, -/* @3598 ӷ(15x15,V)@ [suki software]*/ -0x00,0xfe,0x12,0xfe,0x00,0xb4,0x6c,0x94,0x25,0xfe,0x94,0xfc,0x96,0x94,0x00 - -, -0x30,0x0f,0x11,0x1f,0x20,0x11,0x09,0x07,0x00,0x3f,0x14,0x1f,0x14,0x14,0x00 - -, -/* @3599 Ӹ(15x15,V)@ [suki software]*/ -0x08,0x90,0x40,0xfc,0x04,0xf4,0x54,0x55,0xf6,0x54,0x54,0x54,0xf6,0x04,0x00 - -, -0x21,0x10,0x0c,0x23,0x10,0x0f,0x02,0x02,0x3f,0x02,0x12,0x22,0x1f,0x00,0x00 - -, -/* @3600 ӹ(15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x22,0xaa,0xaa,0xaa,0xff,0xaa,0xaa,0xaa,0xfa,0x22,0x22,0x00 - -, -0x20,0x18,0x07,0x00,0x3f,0x0a,0x0a,0x3f,0x0a,0x0a,0x2a,0x3f,0x00,0x00,0x00 - -, -/* @3601 Ӻ(15x15,V)@ [suki software]*/ -0x00,0x64,0x54,0xcc,0x24,0x44,0xe5,0xbe,0xa4,0xec,0xb4,0xa4,0xa4,0x04,0x00 - -, -0x00,0x22,0x13,0x0a,0x07,0x00,0x3f,0x14,0x14,0x1f,0x14,0x14,0x14,0x10,0x00 - -, -/* @3602 ӻ(15x15,V)@ [suki software]*/ -0x00,0xbe,0x12,0xf2,0x1e,0x00,0xf2,0x52,0x56,0xfa,0x56,0x53,0xf2,0x00,0x00 - -, -0x10,0x1f,0x10,0x0f,0x09,0x00,0x3f,0x02,0x02,0x3f,0x02,0x22,0x3f,0x00,0x00 - -, -/* @3603 Ӽ(15x15,V)@ [suki software]*/ -0x00,0xf8,0x08,0xff,0x08,0xf8,0x02,0xf2,0x56,0xfa,0x56,0x53,0xf2,0x00,0x00 - -, -0x10,0x11,0x11,0x0f,0x09,0x0d,0x00,0x3f,0x02,0x1f,0x02,0x22,0x3f,0x00,0x00 - -, -/* @3604 ӽ(15x15,V)@ [suki software]*/ -0xfc,0x04,0x04,0xfc,0x40,0x48,0xc8,0x09,0xf9,0x82,0x40,0x20,0x10,0x00,0x00 - -, -0x07,0x02,0x12,0x13,0x08,0x06,0x11,0x20,0x1f,0x00,0x03,0x04,0x08,0x10,0x00 - -, -/* @3605 Ӿ(15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x40,0x48,0xc8,0x09,0xf9,0x82,0x40,0x20,0x10,0x00,0x00 - -, -0x02,0x3e,0x01,0x10,0x08,0x06,0x11,0x20,0x1f,0x00,0x03,0x04,0x08,0x10,0x00 - -, -/* @3606 ӿ(15x15,V)@ [suki software]*/ -0x10,0x61,0x06,0xc0,0x00,0xf2,0x92,0x96,0x9a,0xf2,0x9a,0x97,0xf2,0x00,0x00 - -, -0x04,0x04,0x3f,0x00,0x00,0x3f,0x02,0x02,0x02,0x3f,0x02,0x22,0x3f,0x00,0x00 - -, -/* @3607 (15x15,V)@ [suki software]*/ -0x00,0x40,0x40,0x48,0xc8,0x09,0x09,0xfa,0x80,0x40,0x20,0x10,0x00,0x00,0x00 - -, -0x10,0x08,0x04,0x02,0x01,0x10,0x20,0x1f,0x00,0x01,0x02,0x04,0x18,0x08,0x00 - -, -/* @3608 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfa,0xaa,0xaa,0xaa,0xae,0xfa,0xae,0xaa,0xab,0xfa,0x00,0x00,0x00 - -, -0x00,0x10,0x0d,0x00,0x1c,0x20,0x22,0x2d,0x20,0x20,0x3a,0x03,0x08,0x10,0x00 - -, -/* @3609 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfa,0xaa,0xaa,0xaa,0xae,0xfa,0xae,0xaa,0xab,0xfa,0x00,0x00,0x00 - -, -0x20,0x24,0x25,0x24,0x14,0x0c,0x06,0x05,0x14,0x24,0x24,0x1d,0x00,0x00,0x00 - -, -/* @3610 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x12,0x12,0x12,0x12,0xfe,0x12,0x12,0x12,0xff,0x02,0x00,0x00 - -, -0x20,0x18,0x07,0x01,0x01,0x01,0x01,0x3f,0x01,0x11,0x21,0x1f,0x00,0x00,0x00 - -, -/* @3611 (15x15,V)@ [suki software]*/ -0x00,0xf8,0x40,0x70,0xcc,0x20,0xff,0x00,0x60,0x50,0xcc,0x20,0xf8,0x00,0x00 - -, -0x00,0x3f,0x14,0x17,0x14,0x16,0x1f,0x10,0x16,0x15,0x16,0x14,0x3f,0x00,0x00 - -, -/* @3612 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x10,0x10,0x10,0xff,0x10,0xf0,0x12,0x14,0x10,0x10,0x00 - -, -0x00,0x00,0x3f,0x00,0x20,0x10,0x0c,0x03,0x00,0x1f,0x20,0x20,0x20,0x3c,0x00 - -, -/* @3613 (15x15,V)@ [suki software]*/ -0x20,0x10,0xfc,0x03,0xf8,0x00,0x10,0x0c,0xb7,0x44,0xa4,0x9e,0x04,0x00,0x00 - -, -0x20,0x18,0x03,0x00,0x1c,0x20,0x25,0x29,0x20,0x20,0x38,0x04,0x09,0x11,0x00 - -, -/* @3614 (15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x10,0x20,0x10,0x10,0xff,0x10,0xf0,0x12,0x14,0x18,0x10,0x00 - -, -0x00,0x00,0x3f,0x00,0x20,0x18,0x06,0x01,0x00,0x1f,0x20,0x20,0x20,0x3c,0x00 - -, -/* @3615 (15x15,V)@ [suki software]*/ -0x00,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0xf1,0x12,0x14,0x10,0x18,0x10,0x00 - -, -0x20,0x20,0x10,0x08,0x04,0x03,0x00,0x00,0x1f,0x20,0x20,0x20,0x20,0x3c,0x00 - -, -/* @3616 (15x15,V)@ [suki software]*/ -0x00,0x00,0xf0,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0xf8,0x10,0x00 - -, -0x00,0x00,0x3f,0x11,0x11,0x11,0x11,0x1f,0x11,0x11,0x11,0x11,0x3f,0x00,0x00 - -, -/* @3617 (15x15,V)@ [suki software]*/ -0x00,0xf8,0x88,0x88,0xff,0x88,0xf8,0x00,0x00,0xfe,0x02,0x22,0x5a,0x86,0x00 - -, -0x00,0x1f,0x08,0x08,0x0f,0x08,0x1f,0x00,0x00,0x3f,0x04,0x08,0x08,0x07,0x00 - -, -/* @3618 (15x15,V)@ [suki software]*/ -0x60,0x38,0xe7,0x24,0x24,0x04,0xf8,0x88,0x88,0xff,0x88,0x88,0xfc,0x08,0x00 - -, -0x01,0x01,0x3f,0x11,0x09,0x01,0x3f,0x10,0x10,0x1f,0x10,0x10,0x3f,0x00,0x00 - -, -/* @3619 (15x15,V)@ [suki software]*/ -0x22,0x14,0x08,0x94,0xe3,0x10,0x10,0xff,0x10,0xf0,0x12,0x14,0x10,0x10,0x00 - -, -0x04,0x12,0x21,0x10,0x2f,0x10,0x0c,0x03,0x00,0x1f,0x20,0x20,0x20,0x3c,0x00 - -, -/* @3620 (15x15,V)@ [suki software]*/ -0x10,0x62,0x04,0x8c,0x40,0xf8,0x08,0x08,0x08,0xff,0x08,0x08,0xfc,0x08,0x00 - -, -0x04,0x04,0x3e,0x01,0x00,0x3f,0x11,0x11,0x11,0x1f,0x11,0x11,0x3f,0x00,0x00 - -, -/* @3621 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x08,0xf9,0x4e,0xc8,0x08,0x17,0x94,0x54,0x34,0x04,0x00 - -, -0x02,0x3e,0x21,0x10,0x0c,0x13,0x10,0x0f,0x01,0x21,0x3f,0x01,0x01,0x01,0x00 - -, -/* @3622 (15x15,V)@ [suki software]*/ -0x02,0x02,0xf2,0x12,0x92,0x7e,0x12,0x12,0xfe,0x92,0x92,0xfa,0x13,0x02,0x00 - -, -0x00,0x00,0x3f,0x13,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x3f,0x00,0x00,0x00 - -, -/* @3623 (15x15,V)@ [suki software]*/ -0x04,0x84,0x44,0x24,0xf4,0xac,0xa7,0xa4,0xa4,0xa4,0xf4,0x24,0x06,0x04,0x00 - -, -0x01,0x00,0x00,0x00,0x3f,0x02,0x02,0x02,0x02,0x22,0x3f,0x00,0x00,0x00,0x00 - -, -/* @3624 (15x15,V)@ [suki software]*/ -0x00,0x08,0x08,0x08,0x88,0x7f,0xc8,0x48,0x48,0x48,0xe8,0x48,0x0c,0x08,0x00 - -, -0x20,0x10,0x08,0x26,0x21,0x10,0x11,0x0a,0x04,0x0a,0x11,0x10,0x20,0x20,0x00 - -, -/* @3625 (15x15,V)@ [suki software]*/ -0x08,0x08,0x08,0x88,0xc8,0xb8,0x8f,0x88,0x88,0x88,0x88,0xc8,0x8c,0x08,0x00 - -, -0x04,0x02,0x01,0x00,0x3f,0x10,0x10,0x10,0x10,0x10,0x10,0x3f,0x00,0x00,0x00 - -, -/* @3626 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x08,0x08,0xc8,0xb8,0x8f,0x88,0x88,0xc8,0x8c,0x08,0x00 - -, -0x00,0x00,0x3f,0x00,0x02,0x01,0x3f,0x10,0x10,0x10,0x10,0x3f,0x00,0x00,0x00 - -, -/* @3627 (15x15,V)@ [suki software]*/ -0x44,0x4c,0x54,0xfc,0x52,0x4b,0x42,0xf0,0x10,0x10,0xff,0x10,0xf8,0x10,0x00 - -, -0x08,0x06,0x01,0x3f,0x01,0x02,0x00,0x3f,0x11,0x11,0x1f,0x11,0x3f,0x00,0x00 - -, -/* @3628 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x88,0x4a,0xaa,0x9a,0xfe,0x8a,0x99,0x29,0x48,0x48,0x00 - -, -0x00,0x00,0x1f,0x08,0x24,0x10,0x08,0x07,0x00,0x10,0x23,0x12,0x0e,0x00,0x00 - -, -/* @3629 (15x15,V)@ [suki software]*/ -0x00,0x00,0x02,0x02,0x3e,0xc2,0x02,0x02,0x82,0x62,0x1f,0x02,0x00,0x00,0x00 - -, -0x20,0x20,0x20,0x10,0x10,0x08,0x05,0x02,0x05,0x08,0x08,0x10,0x30,0x10,0x00 - -, -/* @3630 (15x15,V)@ [suki software]*/ -0x40,0x60,0x58,0xc7,0x20,0x18,0x00,0x10,0x10,0xff,0x10,0x10,0xf8,0x10,0x00 - -, -0x04,0x0e,0x05,0x04,0x05,0x2e,0x10,0x08,0x06,0x11,0x20,0x10,0x0f,0x00,0x00 - -, -/* @3631 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x20,0x22,0x22,0x22,0xfe,0x22,0x22,0x23,0x32,0x20,0x00 - -, -0x10,0x08,0x07,0x08,0x10,0x10,0x24,0x28,0x27,0x20,0x20,0x20,0x20,0x20,0x00 - -, -/* @3632 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x68,0x09,0xfa,0x4c,0xc8,0x20,0x18,0x87,0x98,0x20,0x40,0x00 - -, -0x02,0x3e,0x21,0x10,0x0c,0x13,0x20,0x1f,0x00,0x04,0x04,0x08,0x11,0x00,0x00 - -, -/* @3633 (15x15,V)@ [suki software]*/ -0x40,0x40,0x42,0x42,0x42,0x42,0x42,0xfe,0x42,0x42,0x42,0x43,0x62,0x40,0x00 - -, -0x00,0x00,0x00,0x00,0x00,0x10,0x20,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00 - -, -/* @3634 (15x15,V)@ [suki software]*/ -0x00,0x10,0x12,0x12,0x12,0x52,0x92,0x7e,0x12,0x12,0x13,0x12,0x10,0x00,0x00 - -, -0x20,0x20,0x3f,0x21,0x21,0x3f,0x21,0x21,0x3f,0x21,0x21,0x3f,0x20,0x20,0x00 - -, -/* @3635 (15x15,V)@ [suki software]*/ -0x08,0xc8,0xff,0x48,0x88,0xd0,0x48,0x54,0xd3,0x12,0xd4,0x08,0xd0,0x10,0x00 - -, -0x03,0x00,0x3f,0x00,0x00,0x3f,0x05,0x25,0x3f,0x00,0x0f,0x20,0x3f,0x00,0x00 - -, -/* @3636 (15x15,V)@ [suki software]*/ -0x00,0xf8,0x08,0x28,0xa8,0xa8,0xff,0xaa,0xaa,0xaa,0xaa,0x0a,0x18,0x08,0x00 - -, -0x30,0x0f,0x28,0x2a,0x2b,0x1a,0x0a,0x0e,0x0a,0x1a,0x2b,0x2a,0x28,0x28,0x00 - -, -/* @3637 (15x15,V)@ [suki software]*/ -0x00,0x00,0xc0,0x7e,0x4a,0x4a,0x4a,0xfe,0x4a,0x4a,0xca,0x7f,0xc2,0x00,0x00 - -, -0x20,0x18,0x07,0x00,0x1d,0x21,0x25,0x29,0x21,0x21,0x35,0x04,0x13,0x20,0x00 - -, -/* @3638 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x92,0x04,0xb4,0xaf,0xf4,0xa4,0x02,0x92,0xfe,0x00,0x00,0x00 - -, -0x22,0x22,0x13,0x0a,0x06,0x02,0x02,0x03,0x02,0x06,0x0a,0x13,0x32,0x02,0x00 - -, -/* @3639 (15x15,V)@ [suki software]*/ -0x40,0x40,0x20,0x10,0x28,0x24,0xe3,0x22,0x24,0x28,0x10,0x20,0x60,0x20,0x00 - -, -0x10,0x10,0x09,0x05,0x11,0x21,0x1f,0x01,0x01,0x01,0x05,0x09,0x10,0x00,0x00 - -, -/* @3640 (15x15,V)@ [suki software]*/ -0x20,0x20,0xd0,0x48,0x54,0x52,0xd1,0x12,0xd4,0x18,0x08,0xd0,0x10,0x10,0x00 - -, -0x00,0x00,0x3f,0x05,0x15,0x25,0x1f,0x00,0x0f,0x10,0x20,0x1f,0x00,0x00,0x00 - -, -/* @3641 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x10,0xe8,0xa4,0xea,0x09,0xea,0x0c,0xe4,0x08,0x08,0x00 - -, -0x10,0x08,0x07,0x08,0x10,0x2f,0x22,0x2f,0x20,0x23,0x28,0x2f,0x20,0x20,0x00 - -, -/* @3642 (15x15,V)@ [suki software]*/ -0x40,0x20,0x10,0xf8,0x94,0x97,0x94,0xf4,0x9e,0x94,0x90,0xf0,0x00,0x00,0x00 - -, -0x20,0x20,0x20,0x2f,0x24,0x24,0x24,0x27,0x24,0x24,0x24,0x2f,0x20,0x20,0x00 - -, -/* @3643 (15x15,V)@ [suki software]*/ -0x78,0x00,0xff,0x08,0x20,0xd0,0x48,0x54,0xd3,0x12,0x94,0x08,0xd0,0x10,0x00 - -, -0x00,0x00,0x3f,0x00,0x00,0x3f,0x05,0x25,0x3f,0x00,0x0f,0x20,0x3f,0x00,0x00 - -, -/* @3644 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x00,0xd0,0x50,0x48,0xd4,0x13,0x94,0x18,0x08,0xd0,0x10,0x00 - -, -0x02,0x3e,0x01,0x00,0x3f,0x05,0x25,0x3f,0x00,0x0f,0x00,0x20,0x3f,0x00,0x00 - -, -/* @3645 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x40,0x20,0xf0,0x9c,0x97,0xf4,0x9c,0x94,0x90,0xf0,0x00,0x00 - -, -0x02,0x3e,0x01,0x10,0x10,0x17,0x14,0x14,0x17,0x14,0x14,0x14,0x17,0x10,0x00 - -, -/* @3646 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x22,0x5a,0x86,0x80,0xbe,0xaa,0xaa,0xfe,0xaa,0xaa,0xbf,0x82,0x00 - -, -0x00,0x3f,0x02,0x04,0x03,0x3f,0x00,0x04,0x04,0x07,0x04,0x16,0x20,0x1f,0x00 - -, -/* @3647 (15x15,V)@ [suki software]*/ -0x20,0x20,0x22,0x22,0x22,0x22,0x2a,0xf2,0x2a,0x26,0x23,0xa2,0x60,0x20,0x00 - -, -0x00,0x00,0x00,0x00,0x00,0x10,0x20,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00 - -, -/* @3648 (15x15,V)@ [suki software]*/ -0x88,0x78,0x0f,0x08,0xf8,0x00,0x5e,0x52,0x52,0xd2,0x52,0x5f,0x42,0x00,0x00 - -, -0x20,0x11,0x0a,0x04,0x0b,0x20,0x12,0x0a,0x06,0x03,0x0e,0x12,0x23,0x22,0x00 - -, -/* @3649 (15x15,V)@ [suki software]*/ -0x02,0xf2,0x12,0x52,0x92,0x12,0xfe,0x12,0x52,0x92,0x12,0xfa,0x13,0x02,0x00 - -, -0x00,0x3f,0x00,0x02,0x04,0x00,0x3f,0x00,0x02,0x14,0x20,0x1f,0x00,0x00,0x00 - -, -/* @3650 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x60,0x5f,0x48,0x48,0x48,0x48,0x48,0x48,0xe8,0x4c,0x08,0x00 - -, -0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x12,0x22,0x10,0x0f,0x00,0x00,0x00 - -, -/* @3651 (15x15,V)@ [suki software]*/ -0x00,0xf8,0x00,0xff,0x00,0xf8,0x00,0x7f,0x48,0x48,0x48,0x48,0xcc,0x08,0x00 - -, -0x00,0x0f,0x08,0x07,0x04,0x07,0x02,0x02,0x02,0x12,0x22,0x12,0x0f,0x00,0x00 - -, -/* @3652 (15x15,V)@ [suki software]*/ -0x00,0x02,0x02,0x7a,0x4a,0x4a,0xfe,0x4a,0x49,0x49,0x79,0x01,0x00,0x00,0x00 - -, -0x00,0x00,0x3f,0x01,0x09,0x09,0x07,0x05,0x05,0x07,0x2d,0x21,0x1f,0x00,0x00 - -, -/* @3653 (15x15,V)@ [suki software]*/ -0x10,0x0c,0x24,0x24,0x24,0x24,0x25,0xe6,0x24,0x24,0x24,0x24,0x8c,0x04,0x00 - -, -0x01,0x01,0x01,0x01,0x01,0x11,0x21,0x1f,0x01,0x01,0x01,0x01,0x01,0x01,0x00 - -, -/* @3654 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x82,0x92,0x92,0xf2,0x9e,0x92,0x92,0xf2,0x83,0x82,0x00 - -, -0x00,0x00,0x1f,0x08,0x04,0x00,0x3e,0x12,0x12,0x12,0x12,0x3e,0x00,0x00,0x00 - -, -/* @3655 (15x15,V)@ [suki software]*/ -0x02,0x0a,0x12,0x22,0x82,0xfe,0x00,0x02,0x0a,0x32,0x82,0x42,0xff,0x02,0x00 - -, -0x02,0x02,0x01,0x11,0x20,0x1f,0x00,0x02,0x01,0x01,0x10,0x20,0x1f,0x00,0x00 - -, -/* @3656 (15x15,V)@ [suki software]*/ -0x00,0x02,0x42,0x42,0x42,0x42,0xfe,0x42,0x42,0x42,0x42,0x43,0x02,0x00,0x00 - -, -0x10,0x10,0x10,0x10,0x10,0x10,0x1f,0x10,0x10,0x11,0x12,0x14,0x10,0x10,0x00 - -, -/* @3657 (15x15,V)@ [suki software]*/ -0x10,0x10,0xff,0x10,0x08,0xe8,0x28,0xe8,0x08,0xff,0x08,0x09,0xea,0x08,0x00 - -, -0x04,0x0c,0x07,0x02,0x0a,0x09,0x29,0x25,0x14,0x09,0x06,0x09,0x10,0x3c,0x00 - -, -/* @3658 (15x15,V)@ [suki software]*/ -0x04,0x04,0x24,0x24,0x24,0x2f,0x24,0xe4,0x24,0x2f,0x24,0x24,0x86,0x04,0x00 - -, -0x01,0x01,0x01,0x01,0x01,0x11,0x21,0x1f,0x01,0x01,0x01,0x01,0x01,0x01,0x00 - -, -/* @3659 (15x15,V)@ [suki software]*/ -0x84,0x44,0xf4,0x9c,0x97,0x94,0xf4,0x04,0x00,0xfc,0x04,0x64,0x9e,0x04,0x00 - -, -0x00,0x00,0x3f,0x02,0x12,0x22,0x1f,0x00,0x00,0x3f,0x04,0x08,0x09,0x06,0x00 - -, -/* @3660 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0x04,0xfc,0x40,0x42,0x42,0x42,0xfe,0x42,0x43,0x62,0x40,0x00 - -, -0x00,0x03,0x01,0x01,0x03,0x00,0x00,0x10,0x20,0x1f,0x00,0x00,0x00,0x00,0x00 - -, -/* @3661 (15x15,V)@ [suki software]*/ -0x20,0x20,0xe2,0x0c,0x00,0x80,0xbe,0xaa,0xfe,0xaa,0xaa,0xbf,0x82,0x00,0x00 - -, -0x10,0x08,0x07,0x08,0x10,0x2f,0x22,0x22,0x23,0x22,0x23,0x28,0x2f,0x20,0x00 - -, -/* @3662 (15x15,V)@ [suki software]*/ -0xfc,0x04,0x04,0xfc,0x20,0xd0,0x48,0x54,0xd3,0x12,0xd4,0x08,0xd0,0x10,0x00 - -, -0x03,0x01,0x01,0x03,0x00,0x3f,0x05,0x25,0x3f,0x00,0x07,0x20,0x3f,0x00,0x00 - -, -/* @3663 (15x15,V)@ [suki software]*/ -0xf0,0x00,0xff,0x00,0xf0,0x00,0x88,0x44,0x23,0x18,0x21,0x42,0x8c,0x80,0x00 - -, -0x0f,0x08,0x07,0x04,0x0f,0x01,0x00,0x3f,0x11,0x11,0x11,0x3f,0x00,0x00,0x00 - -, -/* @3664 (15x15,V)@ [suki software]*/ -0x10,0x88,0xc4,0x33,0x00,0xa8,0x27,0xfc,0x24,0x00,0xfc,0x04,0x04,0xfc,0x00 - -, -0x01,0x00,0x3f,0x00,0x10,0x1f,0x08,0x0f,0x09,0x00,0x3f,0x04,0x08,0x07,0x00 - -, -/* @3665 (15x15,V)@ [suki software]*/ -0x10,0x10,0x10,0xe8,0xa8,0xa4,0xea,0x09,0x0a,0xe4,0x08,0xe8,0x10,0x10,0x00 - -, -0x00,0x20,0x18,0x03,0x1c,0x22,0x23,0x24,0x28,0x21,0x3a,0x03,0x08,0x10,0x00 - -, -/* @3666 (15x15,V)@ [suki software]*/ -0x88,0x44,0x22,0x18,0x20,0x42,0x84,0x20,0x18,0xef,0x08,0x28,0x18,0x08,0x00 - -, -0x00,0x1f,0x09,0x09,0x09,0x2f,0x20,0x10,0x0c,0x03,0x02,0x0c,0x30,0x10,0x00 - -, -/* @3667 (15x15,V)@ [suki software]*/ -0x22,0x14,0x88,0xf6,0x20,0x22,0xe4,0x00,0x20,0xff,0x20,0x22,0x2c,0x20,0x00 - -, -0x02,0x11,0x20,0x1f,0x00,0x00,0x27,0x12,0x0c,0x03,0x02,0x0c,0x10,0x20,0x00 - -, -/* @3668 (15x15,V)@ [suki software]*/ -0x04,0x04,0x14,0xd4,0x5c,0x54,0x55,0x56,0x54,0x5c,0xd4,0x34,0x06,0x04,0x00 - -, -0x00,0x00,0x00,0x3f,0x05,0x05,0x05,0x05,0x15,0x25,0x1f,0x00,0x00,0x00,0x00 - -, -/* @3669 (15x15,V)@ [suki software]*/ -0x88,0x88,0x48,0x69,0x5e,0xc8,0xd9,0x6e,0x48,0x5c,0x6b,0x28,0x48,0x48,0x00 - -, -0x00,0x00,0x00,0x3a,0x2a,0x2a,0x2a,0x2b,0x2a,0x2a,0x3a,0x00,0x00,0x00,0x00 - -, -}, -//************************************** -{ -/* @3670 ԡ(15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x00,0x88,0x44,0x23,0x18,0x10,0x21,0x42,0x84,0x80,0x00 - -, -0x02,0x3e,0x01,0x00,0x01,0x00,0x3f,0x11,0x11,0x11,0x11,0x3f,0x00,0x00,0x00 - -, -/* @3671 Ԣ(15x15,V)@ [suki software]*/ -0x08,0x06,0x02,0xfa,0xaa,0xaa,0xaa,0xfb,0xaa,0xaa,0xfa,0x02,0x0a,0x06,0x00 - -, -0x00,0x00,0x3e,0x02,0x0a,0x0a,0x0a,0x0f,0x0a,0x0e,0x0a,0x22,0x3e,0x00,0x00 - -, -/* @3672 ԣ(15x15,V)@ [suki software]*/ -0x08,0x88,0x49,0xea,0x18,0x80,0x88,0x44,0x23,0x18,0x21,0x42,0x8c,0x80,0x00 - -, -0x01,0x00,0x00,0x3f,0x01,0x02,0x00,0x3f,0x11,0x11,0x11,0x3f,0x00,0x00,0x00 - -, -/* @3673 Ԥ(15x15,V)@ [suki software]*/ -0x22,0x22,0x2a,0xf2,0x2e,0x62,0x00,0xfa,0x0a,0x0e,0xea,0x0a,0xfb,0x02,0x00 - -, -0x00,0x10,0x20,0x1f,0x00,0x00,0x20,0x27,0x10,0x08,0x07,0x08,0x17,0x20,0x00 - -, -/* @3674 ԥ(15x15,V)@ [suki software]*/ -0x22,0x2a,0xf2,0x2a,0x66,0x28,0x3c,0xaa,0xeb,0x3a,0x2e,0x2a,0xb8,0x00,0x00 - -, -0x10,0x20,0x1f,0x00,0x00,0x15,0x15,0x2a,0x25,0x1f,0x02,0x05,0x08,0x10,0x00 - -, -/* @3675 Ԧ(15x15,V)@ [suki software]*/ -0x02,0xfa,0x82,0x82,0xfe,0x80,0x00,0x1e,0xe2,0x02,0x82,0x72,0x0f,0x02,0x00 - -, -0x04,0x04,0x12,0x22,0x10,0x2f,0x10,0x08,0x05,0x02,0x05,0x08,0x10,0x20,0x00 - -, -/* @3676 ԧ(15x15,V)@ [suki software]*/ -0x00,0x48,0x44,0x2b,0xd2,0x4e,0xe0,0x40,0x5e,0x62,0xea,0x2e,0x20,0x38,0x00 - -, -0x00,0x10,0x10,0x10,0x17,0x14,0x14,0x15,0x14,0x16,0x25,0x24,0x1c,0x00,0x00 - -, -/* @3677 Ԩ(15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x00,0xff,0x48,0x50,0xfe,0x50,0x4c,0x40,0xff,0x00,0x00 - -, -0x02,0x3e,0x21,0x10,0x0c,0x03,0x06,0x01,0x1f,0x01,0x02,0x00,0x3f,0x00,0x00 - -, -/* @3678 ԩ(15x15,V)@ [suki software]*/ -0x48,0x46,0xe2,0x32,0x2a,0x2e,0xea,0x2a,0x3a,0x2a,0x22,0xea,0x07,0x02,0x00 - -, -0x20,0x20,0x23,0x11,0x09,0x05,0x03,0x1d,0x21,0x23,0x2d,0x21,0x20,0x38,0x00 - -, -/* @3679 Ԫ(15x15,V)@ [suki software]*/ -0x20,0x20,0x22,0x22,0x22,0xe2,0x22,0x22,0xe2,0x22,0x23,0x22,0x30,0x20,0x00 - -, -0x20,0x20,0x10,0x08,0x04,0x03,0x00,0x00,0x0f,0x10,0x10,0x10,0x10,0x1e,0x00 - -, -/* @3680 ԫ(15x15,V)@ [suki software]*/ -0x10,0x10,0xff,0x10,0x10,0x02,0xfa,0x4a,0x4a,0x4a,0x4a,0xfa,0x03,0x02,0x00 - -, -0x04,0x0c,0x07,0x02,0x12,0x10,0x17,0x14,0x14,0x14,0x14,0x17,0x10,0x10,0x00 - -, -/* @3681 Ԭ(15x15,V)@ [suki software]*/ -0x10,0x10,0x14,0xd4,0x54,0x54,0x54,0x5f,0x54,0x54,0xd6,0x14,0x10,0x10,0x00 - -, -0x10,0x10,0x08,0x09,0x05,0x3f,0x21,0x13,0x05,0x09,0x15,0x12,0x30,0x10,0x00 - -, -/* @3682 ԭ(15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x02,0x02,0xf2,0x52,0x5a,0x56,0x52,0x52,0xf2,0x03,0x02,0x00 - -, -0x20,0x18,0x07,0x10,0x08,0x05,0x11,0x21,0x1f,0x01,0x05,0x09,0x18,0x00,0x00 - -, -/* @3683 Ԯ(15x15,V)@ [suki software]*/ -0x10,0x10,0xff,0x90,0x10,0xa6,0xaa,0xe6,0xaa,0xa2,0xa9,0xa5,0xa1,0x00,0x00 - -, -0x11,0x21,0x1f,0x00,0x10,0x28,0x24,0x23,0x16,0x0a,0x16,0x22,0x20,0x20,0x00 - -, -/* @3684 ԯ(15x15,V)@ [suki software]*/ -0xc8,0xb8,0x8f,0xe8,0x88,0x10,0xd4,0x54,0x54,0x5f,0x54,0xd4,0x14,0x10,0x00 - -, -0x04,0x0c,0x04,0x3f,0x02,0x0a,0x05,0x3f,0x21,0x17,0x09,0x15,0x32,0x10,0x00 - -, -/* @3685 ԰(15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0x22,0x2a,0xea,0x2a,0xea,0x2a,0x2a,0x22,0x02,0xff,0x02,0x00 - -, -0x00,0x3f,0x10,0x14,0x12,0x11,0x10,0x13,0x14,0x14,0x17,0x10,0x3f,0x00,0x00 - -, -/* @3686 Ա(15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0xe0,0x2e,0x2a,0x2a,0xaa,0x2a,0x2a,0x2f,0xe2,0x00,0x00,0x00 - -, -0x00,0x20,0x20,0x27,0x10,0x10,0x08,0x07,0x08,0x08,0x10,0x17,0x20,0x00,0x00 - -, -/* @3687 Բ(15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0x02,0xe2,0x3a,0x2a,0xaa,0x2a,0x3a,0xe2,0x02,0xff,0x02,0x00 - -, -0x00,0x3f,0x10,0x10,0x1b,0x14,0x12,0x11,0x12,0x14,0x1b,0x10,0x3f,0x00,0x00 - -, -/* @3688 Գ(15x15,V)@ [suki software]*/ -0x22,0x14,0x08,0xf4,0x03,0x10,0xd4,0x54,0x5f,0x54,0x54,0xd4,0x10,0x10,0x00 - -, -0x04,0x12,0x21,0x1f,0x08,0x04,0x3d,0x23,0x11,0x07,0x09,0x15,0x32,0x10,0x00 - -, -/* @3689 Դ(15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x00,0xfe,0x02,0xfa,0x4a,0x4e,0x4a,0x4a,0xfb,0x02,0x00 - -, -0x02,0x3e,0x21,0x10,0x0c,0x13,0x08,0x05,0x21,0x3f,0x01,0x05,0x09,0x10,0x00 - -, -/* @3690 Ե(15x15,V)@ [suki software]*/ -0x20,0x38,0xa7,0x60,0x18,0xa0,0xa8,0x6f,0xea,0xaa,0x3a,0xa6,0x60,0x20,0x00 - -, -0x09,0x1b,0x09,0x05,0x05,0x12,0x12,0x09,0x24,0x1f,0x01,0x06,0x08,0x10,0x00 - -, -/* @3691 Զ(15x15,V)@ [suki software]*/ -0x40,0x41,0xc6,0x00,0x10,0x12,0xf2,0x12,0x12,0xf2,0x13,0x12,0x10,0x00,0x00 - -, -0x10,0x08,0x07,0x08,0x14,0x12,0x21,0x20,0x20,0x23,0x24,0x24,0x27,0x20,0x00 - -, -/* @3692 Է(15x15,V)@ [suki software]*/ -0x04,0x04,0xc4,0x34,0x24,0x2f,0xe4,0x04,0xef,0x24,0x24,0xe4,0x06,0x04,0x00 - -, -0x22,0x21,0x10,0x0b,0x04,0x03,0x00,0x00,0x1f,0x22,0x24,0x23,0x20,0x38,0x00 - -, -/* @3693 Ը(15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x02,0x02,0xfa,0xaa,0xae,0xaa,0xaa,0xaa,0xfa,0x03,0x02,0x00 - -, -0x10,0x0c,0x13,0x08,0x02,0x1d,0x20,0x26,0x2b,0x20,0x38,0x01,0x0a,0x10,0x00 - -, -/* @3694 Թ(15x15,V)@ [suki software]*/ -0x20,0x10,0x08,0xb7,0x44,0x24,0x1c,0x00,0xfe,0x02,0x22,0x3e,0x00,0xc0,0x00 - -, -0x00,0x11,0x0d,0x00,0x1e,0x20,0x22,0x24,0x20,0x21,0x39,0x05,0x09,0x01,0x00 - -, -/* @3695 Ժ(15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0x32,0xce,0x90,0xac,0xa4,0xa5,0xa6,0xa4,0xa4,0x8c,0x84,0x00 - -, -0x00,0x3f,0x02,0x04,0x23,0x20,0x10,0x0f,0x00,0x00,0x1f,0x20,0x20,0x3c,0x00 - -, -/* @3696 Ի(15x15,V)@ [suki software]*/ -0x00,0x00,0xfc,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x04,0x04,0xfe,0x04,0x00 - -, -0x00,0x00,0x1f,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x1f,0x00,0x00 - -, -/* @3697 Լ(15x15,V)@ [suki software]*/ -0x20,0x30,0xac,0x63,0x20,0x18,0x40,0x30,0x8f,0x08,0x08,0x08,0xfc,0x08,0x00 - -, -0x11,0x33,0x11,0x09,0x09,0x09,0x00,0x00,0x00,0x13,0x20,0x10,0x0f,0x00,0x00 - -, -/* @3698 Խ(15x15,V)@ [suki software]*/ -0x20,0xa4,0x24,0xff,0x24,0x24,0x20,0xf8,0x08,0x7f,0x88,0x0a,0xec,0x08,0x00 - -, -0x30,0x0f,0x08,0x0f,0x11,0x11,0x20,0x23,0x2a,0x24,0x22,0x23,0x24,0x2e,0x00 - -, -/* @3699 Ծ(15x15,V)@ [suki software]*/ -0x00,0xbe,0x22,0xe2,0x22,0x3e,0x44,0x44,0x44,0xfc,0x42,0x43,0x62,0x40,0x00 - -, -0x10,0x3f,0x10,0x0f,0x29,0x29,0x10,0x0c,0x03,0x00,0x07,0x08,0x30,0x10,0x00 - -, -/* @3700 Կ(15x15,V)@ [suki software]*/ -0x20,0x38,0x27,0xe4,0x24,0x24,0x00,0xfe,0x12,0x12,0x12,0x12,0xff,0x02,0x00 - -, -0x01,0x01,0x01,0x1f,0x29,0x15,0x08,0x07,0x01,0x01,0x11,0x21,0x1f,0x00,0x00 - -, -/* @3701 (15x15,V)@ [suki software]*/ -0x80,0x80,0x80,0xfe,0x92,0x92,0x92,0x92,0xf2,0x91,0x91,0x99,0x90,0x80,0x00 - -, -0x00,0x00,0x1e,0x10,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x3e,0x00,0x00,0x00 - -, -/* @3702 (15x15,V)@ [suki software]*/ -0x00,0x00,0x7e,0x42,0x6e,0x5b,0x7e,0x4a,0x5a,0x6e,0x42,0x7e,0x00,0x00,0x00 - -, -0x01,0x01,0x01,0x05,0x07,0x05,0x05,0x25,0x25,0x25,0x15,0x0d,0x01,0x01,0x00 - -, -/* @3703 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0x00,0xfe,0x12,0x12,0x12,0x12,0x12,0x12,0xfe,0x00,0x00,0x00 - -, -0x00,0x20,0x10,0x0c,0x03,0x01,0x01,0x01,0x01,0x11,0x21,0x1f,0x00,0x00,0x00 - -, -/* @3704 (15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x08,0x30,0x00,0xf9,0x8e,0x88,0x88,0x8c,0xfb,0x00,0x00,0x00 - -, -0x00,0x00,0x3f,0x00,0x20,0x20,0x10,0x0f,0x00,0x00,0x1f,0x20,0x20,0x38,0x00 - -, -/* @3705 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x01,0x02,0xe8,0xb2,0xa2,0xb2,0xaa,0xe2,0x02,0x02,0xff,0x02,0x00 - -, -0x00,0x3f,0x00,0x10,0x08,0x07,0x00,0x07,0x08,0x08,0x0e,0x20,0x3f,0x00,0x00 - -, -/* @3706 (15x15,V)@ [suki software]*/ -0x44,0x54,0x54,0xff,0x54,0x54,0x00,0x44,0x44,0xc4,0x44,0x46,0x64,0x40,0x00 - -, -0x08,0x06,0x01,0x3f,0x01,0x02,0x10,0x18,0x16,0x11,0x08,0x0a,0x0c,0x30,0x00 - -, -/* @3707 (15x15,V)@ [suki software]*/ -0x40,0x40,0x44,0x44,0x44,0x44,0xc4,0x44,0x44,0x44,0x46,0x44,0x60,0x40,0x00 - -, -0x00,0x00,0x10,0x38,0x14,0x12,0x11,0x10,0x10,0x12,0x14,0x18,0x30,0x00,0x00 - -, -/* @3708 (15x15,V)@ [suki software]*/ -0x00,0xee,0x2a,0x2a,0xaa,0x2a,0xee,0x00,0x00,0xfe,0x02,0x62,0x9a,0x06,0x00 - -, -0x20,0x27,0x10,0x08,0x07,0x08,0x17,0x20,0x00,0x3f,0x04,0x08,0x08,0x07,0x00 - -, -/* @3709 (15x15,V)@ [suki software]*/ -0x40,0x20,0x18,0x0f,0x08,0x28,0x48,0x88,0x08,0x08,0x08,0x08,0xfc,0x08,0x00 - -, -0x00,0x00,0x04,0x04,0x04,0x04,0x02,0x02,0x01,0x11,0x20,0x10,0x0f,0x00,0x00 - -, -/* @3710 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0x32,0xce,0x00,0xe0,0x2e,0x2a,0xaa,0x2a,0x2f,0xe2,0x00,0x00 - -, -0x00,0x3f,0x02,0x04,0x03,0x20,0x27,0x10,0x08,0x07,0x08,0x10,0x27,0x00,0x00 - -, -/* @3711 (15x15,V)@ [suki software]*/ -0x00,0x00,0x20,0x30,0x28,0xe4,0x23,0x20,0xe0,0x24,0x28,0x30,0x60,0x00,0x00 - -, -0x20,0x20,0x10,0x08,0x06,0x01,0x00,0x00,0x1f,0x20,0x20,0x20,0x20,0x3c,0x00 - -, -/* @3712 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x10,0x10,0x12,0xd2,0x32,0x12,0x92,0x13,0x12,0x10,0x00 - -, -0x10,0x08,0x07,0x08,0x10,0x12,0x27,0x22,0x22,0x22,0x22,0x23,0x26,0x20,0x00 - -, -/* @3713 (15x15,V)@ [suki software]*/ -0x84,0xc4,0xb4,0x84,0x4f,0x04,0xf4,0x94,0xbf,0xd4,0x94,0xf4,0x06,0x04,0x00 - -, -0x24,0x26,0x15,0x14,0x14,0x20,0x3e,0x22,0x3e,0x22,0x3e,0x22,0x3e,0x20,0x00 - -, -/* @3714 (15x15,V)@ [suki software]*/ -0x02,0xf2,0x9e,0x72,0x9e,0x92,0xf2,0x20,0x24,0x24,0xe4,0x26,0x24,0x20,0x00 - -, -0x00,0x3f,0x12,0x12,0x12,0x12,0x3f,0x10,0x18,0x17,0x10,0x12,0x1c,0x30,0x00 - -, -/* @3715 (15x15,V)@ [suki software]*/ -0x80,0x60,0xa0,0xbe,0xaa,0xea,0xaa,0xaa,0xaa,0xaa,0xbf,0xa2,0x60,0x20,0x00 - -, -0x00,0x08,0x08,0x0a,0x0b,0x0a,0x0a,0x3f,0x0a,0x0a,0x0a,0x0a,0x08,0x08,0x00 - -, -/* @3716 (15x15,V)@ [suki software]*/ -0x24,0xac,0xb5,0xa6,0xb4,0xac,0x24,0x10,0x2c,0xcb,0x08,0x08,0xfc,0x08,0x00 - -, -0x00,0x3f,0x12,0x12,0x12,0x3f,0x00,0x04,0x04,0x12,0x21,0x10,0x0f,0x00,0x00 - -, -/* @3717 (15x15,V)@ [suki software]*/ -0x80,0x82,0x42,0x22,0x1e,0x22,0x22,0xa2,0x62,0x2f,0x8a,0x88,0x78,0x00,0x00 - -, -0x00,0x02,0x02,0x02,0x02,0x12,0x22,0x1f,0x02,0x02,0x02,0x02,0x02,0x02,0x00 - -, -/* @3718 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0xf2,0x12,0x12,0x12,0xfe,0x12,0x12,0xfa,0x13,0x02,0x00,0x00 - -, -0x00,0x3f,0x20,0x27,0x20,0x20,0x20,0x2f,0x22,0x24,0x23,0x20,0x20,0x00,0x00 - -, -/* @3719 (15x15,V)@ [suki software]*/ -0x84,0xe4,0x3c,0x24,0xe6,0x04,0xfe,0x02,0xf2,0x12,0xfe,0x12,0xf3,0x02,0x00 - -, -0x00,0x1f,0x08,0x08,0x1f,0x00,0x3f,0x10,0x17,0x10,0x1f,0x12,0x13,0x10,0x00 - -, -/* @3720 (15x15,V)@ [suki software]*/ -0x40,0x44,0x44,0x24,0x14,0x0f,0xc4,0x04,0x04,0x3e,0x44,0x40,0x40,0x70,0x00 - -, -0x10,0x11,0x09,0x05,0x11,0x21,0x1f,0x01,0x01,0x05,0x05,0x09,0x11,0x00,0x00 - -, -/* @3721 (15x15,V)@ [suki software]*/ -0x20,0x24,0x24,0x24,0xbf,0x24,0x24,0x24,0x20,0xff,0x20,0x22,0xac,0x20,0x00 - -, -0x10,0x09,0x05,0x03,0x3f,0x05,0x09,0x21,0x10,0x0b,0x04,0x0a,0x11,0x3c,0x00 - -, -/* @3722 (15x15,V)@ [suki software]*/ -0x20,0xa4,0xa4,0xa4,0xbf,0xa4,0xa4,0x20,0xff,0x20,0x22,0xa4,0x28,0x20,0x00 - -, -0x00,0x1f,0x08,0x08,0x08,0x28,0x2f,0x10,0x0b,0x04,0x0a,0x11,0x20,0x38,0x00 - -, -/* @3723 (15x15,V)@ [suki software]*/ -0x10,0x0c,0x04,0xc4,0x04,0x04,0xf5,0x06,0x04,0x84,0x44,0x14,0x0c,0x00,0x00 - -, -0x20,0x20,0x11,0x10,0x08,0x06,0x01,0x02,0x05,0x08,0x08,0x10,0x30,0x10,0x00 - -, -/* @3724 (15x15,V)@ [suki software]*/ -0x10,0x0c,0x24,0x24,0x64,0xa4,0x2d,0x36,0xa4,0x64,0x24,0x24,0x14,0x0c,0x00 - -, -0x00,0x01,0x05,0x05,0x05,0x05,0x05,0x3f,0x05,0x05,0x05,0x05,0x01,0x00,0x00 - -, -/* @3725 (15x15,V)@ [suki software]*/ -0x50,0x54,0xd4,0x74,0xdf,0x54,0x54,0x50,0xff,0x10,0x12,0xd4,0x10,0x10,0x00 - -, -0x00,0x09,0x09,0x09,0x3f,0x05,0x25,0x14,0x09,0x06,0x09,0x10,0x20,0x38,0x00 - -, -/* @3726 (15x15,V)@ [suki software]*/ -0x02,0x02,0xfa,0x4a,0x4a,0x4a,0xfe,0x4a,0x4a,0x4a,0xfa,0x03,0x02,0x00,0x00 - -, -0x02,0x02,0x3f,0x02,0x02,0x02,0x03,0x02,0x12,0x22,0x1f,0x02,0x02,0x02,0x00 - -, -/* @3727 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xe8,0x18,0x0c,0x0b,0x08,0xe8,0x08,0x08,0x08,0x0c,0x08,0x00 - -, -0x02,0x01,0x00,0x3f,0x20,0x21,0x21,0x21,0x3f,0x21,0x21,0x21,0x21,0x20,0x00 - -, -/* @3728 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0x04,0xfc,0x00,0xfc,0x24,0x26,0x25,0x24,0x24,0xfe,0x04,0x00 - -, -0x00,0x07,0x02,0x02,0x07,0x00,0x3f,0x12,0x12,0x12,0x12,0x12,0x3f,0x00,0x00 - -, -/* @3729 (15x15,V)@ [suki software]*/ -0x08,0x88,0xff,0x48,0x88,0x76,0x94,0xff,0x94,0xd6,0xb4,0x9f,0xf4,0x54,0x00 - -, -0x11,0x20,0x1f,0x00,0x20,0x20,0x2f,0x10,0x08,0x06,0x08,0x10,0x27,0x20,0x00 - -, -/* @3730 (15x15,V)@ [suki software]*/ -0x84,0x94,0x9c,0x57,0xfc,0x54,0x54,0x80,0x7e,0x14,0x14,0xf2,0x13,0x12,0x00 - -, -0x00,0x00,0x00,0x3f,0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x3f,0x00,0x00,0x00 - -, -/* @3731 (15x15,V)@ [suki software]*/ -0x10,0x98,0x76,0x94,0xff,0xd4,0x94,0x88,0xd6,0xb4,0x9f,0x74,0x54,0x54,0x00 - -, -0x01,0x20,0x20,0x2f,0x10,0x10,0x08,0x06,0x08,0x10,0x1f,0x20,0x20,0x00,0x00 - -, -/* @3732 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0xfa,0x02,0xfe,0x00,0xfc,0x84,0x85,0xf6,0x84,0x84,0x84,0x00 - -, -0x20,0x13,0x0c,0x03,0x04,0x2b,0x10,0x0f,0x10,0x10,0x1f,0x10,0x18,0x10,0x00 - -, -/* @3733 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x12,0x12,0xfe,0x00,0xfc,0x04,0x84,0x85,0xf6,0x84,0x84,0x04,0x00 - -, -0x30,0x0f,0x11,0x21,0x1f,0x20,0x1f,0x20,0x20,0x20,0x3f,0x20,0x20,0x20,0x00 - -, -/* @3734 (15x15,V)@ [suki software]*/ -0x00,0x8a,0x4a,0x6a,0xba,0xaf,0x6a,0x0a,0x7a,0xaf,0xaa,0xaa,0x8a,0xc2,0x00 - -, -0x04,0x04,0x26,0x25,0x14,0x0e,0x04,0x04,0x04,0x3e,0x04,0x04,0x04,0x04,0x00 - -, -/* @3735 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x02,0xfa,0xaa,0xff,0xaa,0xaa,0xff,0xaa,0xfa,0x02,0x00 - -, -0x10,0x08,0x07,0x08,0x10,0x10,0x2f,0x2a,0x2a,0x2a,0x2a,0x2f,0x20,0x20,0x00 - -, -/* @3736 (15x15,V)@ [suki software]*/ -0x24,0xa8,0xff,0xa8,0x24,0x02,0xfa,0xaa,0xff,0xaa,0xaa,0xff,0xaa,0xfa,0x00 - -, -0x06,0x01,0x3f,0x00,0x01,0x00,0x00,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x00,0x00 - -, -/* @3737 (15x15,V)@ [suki software]*/ -0x10,0x10,0xd2,0x14,0xb0,0xdf,0x90,0x90,0xdf,0xb0,0x94,0xd2,0x10,0x10,0x00 - -, -0x00,0x00,0x3f,0x20,0x20,0x22,0x22,0x2f,0x22,0x22,0x20,0x3f,0x00,0x00,0x00 - -, -/* @3738 (15x15,V)@ [suki software]*/ -0x22,0x42,0x0a,0x92,0xc7,0x42,0x7a,0xea,0x2a,0xef,0x7a,0x42,0xc2,0x02,0x00 - -, -0x04,0x3c,0x03,0x20,0x25,0x15,0x0d,0x05,0x3e,0x05,0x0d,0x15,0x35,0x14,0x00 - -, -/* @3739 (15x15,V)@ [suki software]*/ -0x00,0x02,0x02,0x7a,0x8a,0x4a,0x2a,0xff,0x4a,0x8a,0x8a,0x7a,0x02,0x02,0x00 - -, -0x02,0x02,0x01,0x09,0x08,0x08,0x12,0x12,0x14,0x20,0x00,0x01,0x03,0x01,0x00 - -, -/* @3740 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0xfe,0x52,0x52,0x52,0xd2,0x52,0x52,0xff,0x02,0x00,0x00,0x00 - -, -0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x3f,0x02,0x02,0x02,0x02,0x03,0x02,0x00 - -, -/* @3741 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x00,0xe0,0xa0,0xae,0xea,0x0a,0xea,0xaf,0xa2,0xe0,0x00,0x00 - -, -0x02,0x3e,0x01,0x12,0x12,0x0a,0x06,0x02,0x3f,0x02,0x06,0x0a,0x12,0x12,0x00 - -, -/* @3742 (15x15,V)@ [suki software]*/ -0x40,0x40,0x42,0xc2,0xa6,0xaa,0x96,0xd2,0xaa,0xa6,0xc3,0xc2,0x40,0x40,0x00 - -, -0x00,0x10,0x30,0x17,0x14,0x14,0x14,0x1f,0x14,0x14,0x1c,0x17,0x30,0x00,0x00 - -, -/* @3743 (15x15,V)@ [suki software]*/ -0x00,0xbe,0x12,0xf2,0x1e,0xe0,0xa0,0xae,0xea,0x0a,0xea,0xaf,0xe2,0x00,0x00 - -, -0x10,0x1f,0x10,0x0f,0x29,0x12,0x0a,0x06,0x02,0x3f,0x06,0x0a,0x12,0x12,0x00 - -, -/* @3744 (15x15,V)@ [suki software]*/ -0xfc,0x04,0x04,0xfc,0x00,0xe0,0xae,0xea,0x0a,0xea,0xaf,0xa2,0xe0,0x00,0x00 - -, -0x03,0x01,0x01,0x23,0x20,0x12,0x0a,0x06,0x3f,0x06,0x0a,0x12,0x32,0x12,0x00 - -, -/* @3745 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x20,0x28,0xa6,0xa4,0xa4,0xbf,0xa4,0xa4,0x24,0x20,0x00 - -, -0x10,0x08,0x07,0x08,0x10,0x10,0x2f,0x24,0x24,0x24,0x24,0x2f,0x20,0x20,0x00 - -, -/* @3746 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfc,0x54,0x54,0x56,0x55,0x54,0x54,0x54,0x54,0xfe,0x04,0x00,0x00 - -, -0x04,0x04,0x04,0x04,0x04,0x1f,0x22,0x22,0x22,0x22,0x22,0x22,0x3a,0x02,0x00 - -, -/* @3747 (15x15,V)@ [suki software]*/ -0x40,0x30,0x00,0xff,0x10,0x08,0x20,0x20,0x20,0xff,0x20,0x20,0x30,0x20,0x00 - -, -0x20,0x10,0x0c,0x03,0x04,0x28,0x20,0x20,0x20,0x3f,0x20,0x20,0x30,0x20,0x00 - -, -/* @3748 (15x15,V)@ [suki software]*/ -0xe0,0x00,0xff,0x10,0x08,0xe0,0xae,0xea,0x0a,0xea,0xaa,0xaf,0xe2,0x00,0x00 - -, -0x20,0x18,0x07,0x04,0x2a,0x12,0x0a,0x06,0x3f,0x02,0x06,0x0a,0x32,0x12,0x00 - -, -/* @3749 (15x15,V)@ [suki software]*/ -0x00,0x22,0x2a,0xaa,0xaa,0xaa,0xaa,0xbf,0xaa,0xaa,0xaa,0x2a,0x22,0x20,0x00 - -, -0x00,0x20,0x20,0x27,0x10,0x10,0x08,0x06,0x08,0x10,0x17,0x20,0x20,0x00,0x00 - -, -/* @3750 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x08,0x42,0x46,0x2a,0xd2,0x2a,0x27,0x42,0x40,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x04,0x05,0x05,0x05,0x3f,0x05,0x05,0x05,0x04,0x00 - -, -/* @3751 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0x02,0xfa,0x02,0xfe,0x00,0x00,0xfc,0x00,0x00,0xff,0x00,0x00 - -, -0x20,0x23,0x10,0x0c,0x03,0x04,0x0b,0x10,0x00,0x03,0x10,0x20,0x1f,0x00,0x00 - -, -/* @3752 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x40,0xc2,0xa6,0xaa,0xd2,0x9a,0xa6,0xa3,0x62,0x20,0x00 - -, -0x02,0x3e,0x01,0x00,0x04,0x04,0x04,0x04,0x3f,0x04,0x04,0x04,0x04,0x04,0x00 - -, -/* @3753 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0xf4,0x04,0xfc,0x88,0xe8,0x88,0xff,0x08,0x0a,0xec,0x08,0x00 - -, -0x20,0x13,0x0c,0x03,0x2c,0x13,0x08,0x27,0x10,0x0b,0x04,0x0b,0x10,0x3c,0x00 - -, -/* @3754 (15x15,V)@ [suki software]*/ -0x00,0x20,0x10,0x0c,0x07,0xfc,0x94,0x94,0x94,0x94,0x94,0xd4,0x86,0x04,0x00 - -, -0x00,0x10,0x0c,0x00,0x1e,0x21,0x22,0x2c,0x20,0x20,0x38,0x02,0x04,0x08,0x00 - -, -/* @3755 (15x15,V)@ [suki software]*/ -0x10,0x10,0xff,0x10,0x00,0x7c,0x55,0x66,0x44,0x7c,0x66,0x55,0x7c,0x00,0x00 - -, -0x04,0x0c,0x07,0x02,0x02,0x00,0x3f,0x15,0x15,0x15,0x15,0x3f,0x00,0x00,0x00 - -, -/* @3756 (15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x08,0x10,0xf8,0xa9,0xce,0x88,0xf8,0xcc,0xab,0xf8,0x00,0x00 - -, -0x00,0x00,0x3f,0x00,0x00,0x00,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x00,0x00,0x00 - -, -/* @3757 (15x15,V)@ [suki software]*/ -0x00,0x7c,0x44,0x55,0x66,0x44,0x7c,0x44,0x66,0x55,0x44,0x7e,0x04,0x00,0x00 - -, -0x00,0x00,0x00,0x3f,0x15,0x15,0x15,0x15,0x15,0x15,0x3f,0x00,0x00,0x00,0x00 - -, -/* @3758 (15x15,V)@ [suki software]*/ -0xfe,0x02,0xfa,0x02,0xfe,0x00,0x78,0x49,0x6e,0x78,0x4c,0x6b,0x48,0x78,0x00 - -, -0x23,0x18,0x07,0x04,0x1b,0x00,0x00,0x3f,0x15,0x15,0x15,0x15,0x3f,0x00,0x00 - -, -/* @3759 (15x15,V)@ [suki software]*/ -0x08,0x08,0x08,0x88,0xff,0x48,0x48,0x00,0xff,0x00,0x00,0x00,0x00,0x00,0x00 - -, -0x01,0x01,0x11,0x20,0x1f,0x00,0x00,0x00,0x1f,0x20,0x20,0x20,0x20,0x3c,0x00 - -, -/* @3760 (15x15,V)@ [suki software]*/ -0xfc,0x04,0x04,0xfc,0x40,0xa4,0x94,0x8c,0xff,0x84,0x8c,0x94,0x64,0x20,0x00 - -, -0x03,0x01,0x01,0x23,0x20,0x2f,0x2a,0x2a,0x2a,0x2a,0x2a,0x2f,0x20,0x20,0x00 - -, -/* @3761 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x40,0x44,0xa4,0x94,0x8c,0xff,0x8c,0x94,0xa4,0x44,0x40,0x00 - -, -0x02,0x3e,0x01,0x20,0x20,0x2f,0x2a,0x2a,0x2a,0x2a,0x2a,0x2f,0x20,0x20,0x00 - -, -/* @3762 (15x15,V)@ [suki software]*/ -0x08,0x08,0xc8,0xff,0x48,0x88,0x08,0x00,0xff,0x00,0x00,0x00,0x00,0x00,0x00 - -, -0x04,0x03,0x00,0x3f,0x00,0x00,0x01,0x00,0x1f,0x20,0x20,0x20,0x20,0x3c,0x00 - -, -/* @3763 (15x15,V)@ [suki software]*/ -0x08,0xc8,0xb8,0x8f,0xe8,0x88,0x8c,0x88,0x00,0xff,0x00,0x00,0x00,0x00,0x00 - -, -0x04,0x0c,0x04,0x04,0x3f,0x02,0x02,0x02,0x00,0x1f,0x20,0x20,0x20,0x3c,0x00 - -, -}, -//************************************** -{ -/* @3764 ա(15x15,V)@ [suki software]*/ -0x30,0x2c,0xeb,0x28,0x28,0xfe,0x02,0xfa,0x02,0xfe,0x00,0xf8,0x00,0xff,0x00 - -, -0x01,0x01,0x1f,0x09,0x21,0x13,0x08,0x07,0x08,0x13,0x00,0x13,0x20,0x1f,0x00 - -, -/* @3765 բ(15x15,V)@ [suki software]*/ -0x00,0xfc,0x01,0x06,0xf0,0x52,0x52,0xf2,0x52,0xf2,0x02,0x02,0xff,0x02,0x00 - -, -0x00,0x3f,0x00,0x00,0x03,0x01,0x01,0x1f,0x01,0x03,0x10,0x20,0x1f,0x00,0x00 - -, -/* @3766 գ(15x15,V)@ [suki software]*/ -0x00,0xfe,0x22,0x22,0xfe,0x00,0x24,0x24,0x2c,0x32,0xa2,0x63,0x22,0x00,0x00 - -, -0x00,0x1f,0x09,0x09,0x1f,0x10,0x08,0x14,0x12,0x21,0x20,0x20,0x20,0x20,0x00 - -, -/* @3767 դ(15x15,V)@ [suki software]*/ -0x10,0x90,0xff,0x90,0x40,0xfe,0x42,0xfe,0x40,0xfe,0x42,0x42,0xfe,0x40,0x00 - -, -0x06,0x01,0x3f,0x20,0x10,0x0f,0x10,0x1f,0x20,0x1f,0x00,0x20,0x3f,0x00,0x00 - -, -/* @3768 ե(15x15,V)@ [suki software]*/ -0x08,0xc8,0xff,0x28,0x48,0x8c,0x24,0x94,0xed,0x86,0x8c,0x94,0xa4,0x8c,0x00 - -, -0x03,0x00,0x3f,0x00,0x00,0x02,0x01,0x00,0x3f,0x0a,0x0a,0x0a,0x0a,0x08,0x00 - -, -/* @3769 զ(15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0x04,0xfc,0x20,0x10,0x0c,0xfb,0x48,0x48,0x48,0x4c,0x08,0x00 - -, -0x00,0x07,0x01,0x01,0x03,0x00,0x00,0x00,0x3f,0x04,0x04,0x04,0x04,0x04,0x00 - -, -/* @3770 է(15x15,V)@ [suki software]*/ -0x40,0x20,0x10,0x0c,0x0b,0x08,0xf8,0x48,0x48,0x48,0x48,0x48,0x0c,0x08,0x00 - -, -0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x02,0x02,0x02,0x02,0x02,0x02,0x00,0x00 - -, -/* @3771 ը(15x15,V)@ [suki software]*/ -0x40,0x30,0x00,0xff,0x10,0x48,0x30,0x0c,0xfb,0x48,0x48,0x48,0x4c,0x08,0x00 - -, -0x20,0x10,0x0c,0x03,0x04,0x08,0x00,0x00,0x3f,0x04,0x04,0x04,0x06,0x04,0x00 - -, -/* @3772 թ(15x15,V)@ [suki software]*/ -0x20,0x20,0x21,0xe6,0x00,0x20,0x18,0x0f,0xf8,0x48,0x48,0x48,0x4c,0x08,0x00 - -, -0x00,0x00,0x00,0x0f,0x04,0x02,0x00,0x00,0x3f,0x02,0x02,0x02,0x02,0x02,0x00 - -, -/* @3773 ժ(15x15,V)@ [suki software]*/ -0x08,0x88,0xff,0x48,0x04,0xf4,0x54,0x5c,0xf5,0x56,0x5c,0x14,0xf6,0x04,0x00 - -, -0x11,0x20,0x1f,0x00,0x00,0x3f,0x00,0x0f,0x09,0x09,0x2f,0x20,0x1f,0x00,0x00 - -, -/* @3774 ի(15x15,V)@ [suki software]*/ -0x40,0x44,0x44,0xc4,0xa4,0xac,0x95,0x96,0x94,0xac,0xa4,0x24,0x66,0x24,0x00 - -, -0x00,0x00,0x3e,0x02,0x02,0x1f,0x02,0x02,0x1e,0x02,0x22,0x3e,0x00,0x00,0x00 - -, -/* @3775 լ(15x15,V)@ [suki software]*/ -0x10,0x4c,0x44,0x44,0x44,0x44,0xc5,0x26,0x24,0x24,0x24,0x14,0x0c,0x00,0x00 - -, -0x02,0x02,0x02,0x02,0x02,0x02,0x1f,0x21,0x21,0x21,0x21,0x21,0x39,0x00,0x00 - -, -/* @3776 խ(15x15,V)@ [suki software]*/ -0x10,0x2c,0x24,0x94,0x6c,0x44,0xc5,0x46,0x44,0x4c,0x54,0x64,0x4c,0x04,0x00 - -, -0x00,0x02,0x01,0x00,0x00,0x00,0x3f,0x09,0x09,0x09,0x09,0x09,0x08,0x00,0x00 - -, -/* @3777 ծ(15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x20,0xaa,0xaa,0xaa,0xbf,0xaa,0xaa,0xaa,0x2a,0x20,0x00 - -, -0x00,0x00,0x3f,0x00,0x20,0x27,0x10,0x08,0x07,0x08,0x08,0x17,0x30,0x00,0x00 - -, -/* @3778 կ(15x15,V)@ [suki software]*/ -0x88,0x86,0x8a,0xaa,0xaa,0xfe,0xab,0xaa,0xfe,0xaa,0xaa,0xa2,0x8a,0x86,0x00 - -, -0x04,0x24,0x22,0x15,0x0c,0x14,0x24,0x1f,0x04,0x0c,0x15,0x32,0x06,0x02,0x00 - -, -/* @3779 հ(15x15,V)@ [suki software]*/ -0xfe,0x22,0x22,0xfe,0x10,0xf8,0x4c,0x6b,0x5a,0x6a,0x4e,0x5a,0x68,0x48,0x00 - -, -0x1f,0x09,0x09,0x0f,0x30,0x0f,0x00,0x3d,0x15,0x15,0x15,0x3d,0x00,0x00,0x00 - -, -/* @3780 ձ(15x15,V)@ [suki software]*/ -0x24,0x24,0x24,0xfc,0x22,0x22,0x00,0xc0,0x40,0x7f,0x48,0x48,0xcc,0x08,0x00 - -, -0x01,0x01,0x01,0x1f,0x21,0x21,0x20,0x2f,0x24,0x24,0x24,0x24,0x27,0x38,0x00 - -, -/* @3781 ղ(15x15,V)@ [suki software]*/ -0x10,0x10,0xf8,0x4c,0x6a,0x5b,0x4a,0xca,0xee,0x4a,0x48,0x58,0x6c,0x48,0x00 - -, -0x20,0x18,0x07,0x00,0x00,0x3a,0x2a,0x2a,0x2a,0x2b,0x2a,0x3a,0x00,0x00,0x00 - -, -/* @3782 ճ(15x15,V)@ [suki software]*/ -0x24,0x28,0xa0,0xff,0xa0,0x28,0x24,0x80,0x80,0xff,0x90,0x90,0x98,0x10,0x00 - -, -0x04,0x03,0x00,0x3f,0x00,0x01,0x00,0x3f,0x10,0x10,0x10,0x10,0x3f,0x00,0x00 - -, -/* @3783 մ(15x15,V)@ [suki software]*/ -0x10,0x60,0x02,0xcc,0x20,0x80,0x80,0x80,0xff,0x88,0x88,0x88,0x8c,0x08,0x00 - -, -0x04,0x04,0x3f,0x00,0x00,0x3f,0x10,0x10,0x10,0x10,0x10,0x10,0x3f,0x00,0x00 - -, -/* @3784 յ(15x15,V)@ [suki software]*/ -0x00,0x28,0x28,0x28,0xa8,0x9f,0xb4,0x54,0x55,0xb6,0x94,0x14,0xd0,0x00,0x00 - -, -0x20,0x21,0x3f,0x23,0x22,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3f,0x21,0x20,0x00 - -, -/* @3785 ն(15x15,V)@ [suki software]*/ -0x44,0x74,0x4f,0xf4,0x44,0x44,0x44,0x00,0xfc,0x24,0x24,0xe2,0x22,0x20,0x00 - -, -0x04,0x0c,0x04,0x3f,0x02,0x22,0x12,0x0c,0x03,0x00,0x00,0x3f,0x00,0x00,0x00 - -, -/* @3786 շ(15x15,V)@ [suki software]*/ -0x44,0x74,0x4f,0xf4,0x44,0x00,0xfe,0x4a,0x4a,0xfa,0x4a,0xfa,0x4f,0x42,0x00 - -, -0x04,0x04,0x02,0x3f,0x22,0x10,0x0f,0x01,0x3f,0x11,0x07,0x09,0x15,0x21,0x00 - -, -/* @3787 ո(15x15,V)@ [suki software]*/ -0x20,0xa0,0x6e,0x38,0xa8,0x28,0x28,0x0f,0xe8,0x28,0x28,0x2e,0x20,0x00,0x00 - -, -0x08,0x09,0x09,0x05,0x3f,0x25,0x15,0x08,0x07,0x01,0x01,0x3f,0x01,0x01,0x00 - -, -/* @3788 չ(15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x0a,0x4a,0x4a,0xfa,0x4a,0x4a,0xfa,0x4a,0x4f,0x42,0x00,0x00 - -, -0x20,0x18,0x07,0x01,0x01,0x3f,0x21,0x13,0x05,0x09,0x15,0x13,0x21,0x21,0x00 - -, -/* @3789 պ(15x15,V)@ [suki software]*/ -0x0a,0xca,0xfa,0x4a,0xfa,0x4f,0xca,0x22,0xfa,0x57,0xfa,0x52,0x52,0x12,0x00 - -, -0x00,0x3f,0x15,0x14,0x15,0x15,0x1f,0x30,0x07,0x35,0x07,0x35,0x05,0x34,0x00 - -, -/* @3790 ջ(15x15,V)@ [suki software]*/ -0x10,0x10,0xd0,0xff,0x90,0x00,0x90,0x90,0xff,0x48,0x4a,0x4c,0x48,0x00,0x00 - -, -0x04,0x03,0x00,0x3f,0x00,0x21,0x20,0x10,0x0b,0x04,0x0a,0x11,0x20,0x38,0x00 - -, -/* @3791 ռ(15x15,V)@ [suki software]*/ -0x00,0x00,0x80,0x80,0x80,0x80,0xff,0x88,0x88,0x88,0xc8,0x88,0x0c,0x08,0x00 - -, -0x00,0x00,0x3f,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x3f,0x00,0x00,0x00,0x00 - -, -/* @3792 ս(15x15,V)@ [suki software]*/ -0x00,0x80,0x80,0xff,0x88,0x88,0xa8,0x20,0x7f,0x90,0x12,0x14,0xd8,0x10,0x00 - -, -0x00,0x1f,0x08,0x08,0x08,0x08,0x2f,0x20,0x10,0x0b,0x0c,0x13,0x20,0x38,0x00 - -, -/* @3793 վ(15x15,V)@ [suki software]*/ -0x10,0x70,0x91,0x16,0xf0,0x18,0x10,0x80,0x80,0xff,0x90,0x90,0x98,0x10,0x00 - -, -0x08,0x18,0x09,0x06,0x05,0x04,0x00,0x3f,0x10,0x10,0x10,0x10,0x3f,0x00,0x00 - -, -/* @3794 տ(15x15,V)@ [suki software]*/ -0x10,0x62,0x8c,0x60,0x04,0x04,0xff,0x54,0x54,0x54,0xff,0x04,0x04,0x04,0x00 - -, -0x02,0x3e,0x01,0x01,0x01,0x3f,0x29,0x27,0x21,0x21,0x23,0x2d,0x21,0x01,0x00 - -, -/* @3795 (15x15,V)@ [suki software]*/ -0x20,0x38,0xa7,0x60,0x18,0x00,0xac,0x24,0x25,0xe6,0x24,0x24,0x2c,0x00,0x00 - -, -0x09,0x1b,0x09,0x25,0x15,0x08,0x07,0x08,0x10,0x1f,0x21,0x21,0x21,0x20,0x00 - -, -/* @3796 (15x15,V)@ [suki software]*/ -0x08,0xc8,0xff,0x48,0x88,0x10,0xd4,0x5c,0xd5,0x56,0x54,0x5c,0xd4,0x10,0x00 - -, -0x03,0x00,0x3f,0x00,0x00,0x08,0x0b,0x0a,0x0a,0x3f,0x0b,0x0a,0x0b,0x08,0x00 - -, -/* @3797 (15x15,V)@ [suki software]*/ -0x10,0x12,0x12,0xd2,0x56,0xda,0x53,0x52,0x5a,0x56,0xd2,0x12,0x12,0x10,0x00 - -, -0x00,0x08,0x08,0x0b,0x0a,0x0a,0x3f,0x0b,0x0a,0x0a,0x0b,0x08,0x08,0x00,0x00 - -, -/* @3798 (15x15,V)@ [suki software]*/ -0x10,0xd4,0x5c,0xd5,0x56,0x5c,0xd4,0x14,0x00,0x10,0x88,0x44,0x22,0x00,0x00 - -, -0x08,0x0b,0x0a,0x0a,0x3f,0x0a,0x0b,0x28,0x20,0x11,0x08,0x04,0x02,0x01,0x00 - -, -/* @3799 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x10,0xd4,0x54,0xdc,0x55,0x56,0x5c,0xd4,0x14,0x10,0x00 - -, -0x02,0x3e,0x01,0x00,0x08,0x0b,0x0a,0x0a,0x3f,0x0b,0x0a,0x0b,0x08,0x08,0x00 - -, -/* @3800 (15x15,V)@ [suki software]*/ -0x02,0xf2,0x92,0x92,0x9e,0x40,0x40,0xff,0x40,0xd0,0x48,0x44,0x46,0x40,0x00 - -, -0x00,0x10,0x20,0x10,0x0f,0x00,0x00,0x3f,0x10,0x09,0x06,0x08,0x30,0x10,0x00 - -, -/* @3801 (15x15,V)@ [suki software]*/ -0x10,0x0c,0x04,0x05,0x76,0x54,0x54,0xd7,0x54,0x76,0x05,0x14,0x0c,0x00,0x00 - -, -0x00,0x04,0x05,0x05,0x05,0x15,0x25,0x1f,0x05,0x05,0x05,0x04,0x04,0x00,0x00 - -, -/* @3802 (15x15,V)@ [suki software]*/ -0x10,0x21,0xc6,0x00,0xf2,0x12,0x1e,0x40,0xff,0x60,0xd0,0x48,0x46,0x40,0x00 - -, -0x02,0x3f,0x00,0x10,0x21,0x11,0x0f,0x00,0x3f,0x10,0x09,0x06,0x08,0x10,0x00 - -, -/* @3803 (15x15,V)@ [suki software]*/ -0x08,0x88,0x48,0xff,0x48,0x88,0x10,0xd0,0x10,0x10,0xff,0x10,0x18,0x10,0x00 - -, -0x02,0x01,0x00,0x3f,0x00,0x20,0x20,0x11,0x0a,0x04,0x0b,0x10,0x20,0x20,0x00 - -, -/* @3804 (15x15,V)@ [suki software]*/ -0x08,0x08,0x48,0x88,0x08,0x08,0x08,0xff,0x08,0x08,0x08,0x0c,0x08,0x00,0x00 - -, -0x20,0x20,0x10,0x11,0x0a,0x04,0x0b,0x08,0x10,0x10,0x10,0x30,0x10,0x00,0x00 - -, -/* @3805 (15x15,V)@ [suki software]*/ -0xf8,0x08,0xff,0x08,0x08,0xf8,0x80,0xff,0xa0,0x90,0x88,0x86,0x80,0x00,0x00 - -, -0x07,0x00,0x3f,0x02,0x04,0x03,0x00,0x3f,0x10,0x0b,0x04,0x08,0x30,0x10,0x00 - -, -/* @3806 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0xfa,0x02,0xfe,0x80,0xff,0xa0,0x90,0x88,0x84,0xc6,0x80,0x00 - -, -0x20,0x13,0x0c,0x03,0x04,0x1b,0x00,0x3f,0x10,0x0b,0x04,0x08,0x30,0x10,0x00 - -, -/* @3807 (15x15,V)@ [suki software]*/ -0x40,0x20,0x10,0xfc,0x03,0x10,0xd0,0x10,0x10,0xff,0x10,0x10,0x18,0x10,0x00 - -, -0x00,0x00,0x00,0x3f,0x20,0x20,0x10,0x0b,0x04,0x0b,0x10,0x10,0x20,0x20,0x00 - -, -/* @3808 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x92,0x92,0xfe,0x00,0x40,0xff,0x40,0xd0,0x48,0x44,0x46,0x40,0x00 - -, -0x30,0x0f,0x10,0x20,0x1f,0x00,0x00,0x3f,0x10,0x09,0x06,0x08,0x30,0x10,0x00 - -, -/* @3809 (15x15,V)@ [suki software]*/ -0x08,0x90,0xfe,0x02,0x22,0xea,0xaa,0xba,0xaf,0xaa,0xba,0xea,0x2a,0x22,0x00 - -, -0x21,0x10,0x0f,0x00,0x08,0x0b,0x0a,0x0a,0x3e,0x0a,0x0a,0x0b,0x08,0x08,0x00 - -, -/* @3810 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x22,0x5a,0x96,0x14,0xd4,0x5c,0xd5,0x56,0x5c,0xd4,0x14,0x10,0x00 - -, -0x00,0x3f,0x02,0x04,0x0b,0x08,0x0b,0x0a,0x3e,0x0b,0x0a,0x0b,0x08,0x08,0x00 - -, -/* @3811 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x88,0x42,0x22,0x1e,0x22,0x42,0x42,0x3f,0x02,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x00,0x3f,0x11,0x11,0x11,0x11,0x11,0x3f,0x00,0x00 - -, -/* @3812 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x44,0x44,0xfc,0x80,0x42,0x22,0x1e,0x02,0x22,0x42,0x3f,0x02,0x00 - -, -0x00,0x0f,0x04,0x04,0x0f,0x00,0x00,0x3f,0x11,0x11,0x11,0x11,0x3f,0x00,0x00 - -, -/* @3813 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x48,0x20,0x20,0xff,0x10,0x12,0x14,0xd0,0x10,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x00,0x10,0x10,0x0b,0x04,0x0a,0x11,0x20,0x3c,0x00 - -, -/* @3814 (15x15,V)@ [suki software]*/ -0x10,0x61,0x02,0x86,0x60,0x82,0x42,0x22,0x1e,0x02,0x22,0x42,0x3f,0x02,0x00 - -, -0x04,0x04,0x3e,0x01,0x00,0x00,0x3f,0x11,0x11,0x11,0x11,0x3f,0x00,0x00,0x00 - -, -/* @3815 (15x15,V)@ [suki software]*/ -0x20,0x24,0xa4,0x24,0xff,0x24,0x24,0x20,0x04,0x98,0x60,0x98,0x06,0x00,0x00 - -, -0x20,0x18,0x07,0x08,0x0f,0x11,0x11,0x25,0x22,0x21,0x20,0x21,0x26,0x20,0x00 - -, -/* @3816 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x12,0x12,0x12,0xfe,0x20,0xd2,0x4e,0x42,0x52,0x52,0xcf,0x02,0x00 - -, -0x20,0x1b,0x01,0x01,0x09,0x33,0x00,0x03,0x0a,0x32,0x02,0x02,0x0b,0x30,0x00 - -, -/* @3817 (15x15,V)@ [suki software]*/ -0x00,0x00,0x0e,0xca,0x4a,0x4e,0xca,0x7a,0x6e,0x6a,0x6a,0xea,0x2f,0x02,0x00 - -, -0x08,0x08,0x08,0x0b,0x0a,0x0a,0x0a,0x3f,0x0b,0x0a,0x0a,0x0b,0x08,0x08,0x00 - -, -/* @3818 (15x15,V)@ [suki software]*/ -0x00,0x04,0x08,0xb0,0x80,0xff,0x00,0x00,0xff,0xa0,0x90,0x08,0x0c,0x00,0x00 - -, -0x21,0x23,0x11,0x08,0x04,0x03,0x00,0x00,0x1f,0x20,0x20,0x21,0x23,0x38,0x00 - -, -/* @3819 (15x15,V)@ [suki software]*/ -0x40,0x3e,0x0a,0x4a,0x4b,0x4e,0xe0,0x54,0x57,0x4a,0xca,0x16,0x22,0x20,0x00 - -, -0x10,0x11,0x15,0x15,0x15,0x15,0x3f,0x15,0x15,0x15,0x17,0x15,0x11,0x11,0x00 - -, -/* @3820 (15x15,V)@ [suki software]*/ -0x00,0x82,0x82,0x42,0x22,0x12,0x0e,0x02,0x22,0x42,0x42,0x3f,0x02,0x00,0x00 - -, -0x00,0x00,0x00,0x00,0x3f,0x11,0x11,0x11,0x11,0x11,0x11,0x3f,0x00,0x00,0x00 - -, -/* @3821 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x00,0xfc,0x14,0xfc,0x95,0x96,0xfc,0x14,0x14,0x04,0x00 - -, -0x10,0x08,0x07,0x08,0x12,0x29,0x26,0x20,0x26,0x20,0x26,0x20,0x22,0x2c,0x00 - -, -/* @3822 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x48,0x00,0xfe,0x24,0x24,0x22,0xe2,0x33,0x22,0x00 - -, -0x01,0x11,0x20,0x1f,0x20,0x10,0x0c,0x03,0x00,0x00,0x00,0x3f,0x00,0x00,0x00 - -, -/* @3823 (15x15,V)@ [suki software]*/ -0x00,0x24,0xa4,0xa4,0x7f,0x94,0x40,0x3e,0x0a,0x0a,0xfa,0x09,0x09,0x08,0x00 - -, -0x00,0x00,0x00,0x3e,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x3e,0x00,0x00,0x00 - -, -/* @3824 (15x15,V)@ [suki software]*/ -0x24,0x24,0xa4,0x7f,0x14,0x14,0xc0,0x24,0x1f,0x24,0x04,0x3c,0x40,0xf0,0x00 - -, -0x00,0x20,0x27,0x25,0x25,0x25,0x3f,0x15,0x15,0x15,0x1d,0x17,0x20,0x00,0x00 - -, -/* @3825 (15x15,V)@ [suki software]*/ -0x44,0x74,0x4f,0xf4,0x44,0xd4,0x5d,0x56,0xdc,0x24,0xf8,0x17,0xf0,0x10,0x00 - -, -0x04,0x04,0x02,0x3f,0x02,0x3f,0x05,0x25,0x3f,0x20,0x19,0x06,0x19,0x20,0x00 - -, -/* @3826 (15x15,V)@ [suki software]*/ -0x20,0x20,0x24,0x24,0xa4,0xa4,0xff,0xa4,0xb4,0xac,0xa4,0x22,0x30,0x20,0x00 - -, -0x04,0x04,0x02,0x01,0x3f,0x14,0x14,0x14,0x14,0x14,0x3f,0x00,0x00,0x00,0x00 - -, -/* @3827 (15x15,V)@ [suki software]*/ -0x60,0x38,0xe7,0x24,0x24,0x00,0x24,0x24,0xbf,0x64,0x34,0xa8,0x26,0x20,0x00 - -, -0x01,0x01,0x3f,0x11,0x01,0x04,0x02,0x3f,0x15,0x15,0x15,0x3f,0x01,0x00,0x00 - -, -/* @3828 (15x15,V)@ [suki software]*/ -0x02,0x02,0xf2,0x92,0x92,0x97,0xf2,0x9a,0x92,0xf7,0x92,0x92,0x92,0x02,0x00 - -, -0x20,0x18,0x07,0x20,0x18,0x00,0x0b,0x32,0x02,0x0b,0x30,0x00,0x08,0x30,0x00 - -, -/* @3829 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x08,0x08,0x28,0x49,0x8e,0x48,0x38,0x08,0x0c,0x08,0x00 - -, -0x10,0x08,0x07,0x08,0x10,0x14,0x22,0x21,0x20,0x21,0x22,0x24,0x20,0x20,0x00 - -, -/* @3830 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x88,0xff,0x48,0x08,0xfc,0x24,0x24,0xe2,0x32,0x20,0x00 - -, -0x02,0x3e,0x01,0x11,0x20,0x1f,0x20,0x10,0x0f,0x00,0x00,0x3f,0x00,0x00,0x00 - -, -/* @3831 (15x15,V)@ [suki software]*/ -0x22,0x22,0xfe,0x22,0x02,0x20,0x10,0x8c,0x43,0x24,0x88,0x10,0x20,0x20,0x00 - -, -0x08,0x08,0x07,0x04,0x24,0x21,0x25,0x14,0x12,0x09,0x08,0x04,0x02,0x00,0x00 - -, -/* @3832 (15x15,V)@ [suki software]*/ -0x04,0x04,0xff,0x54,0x54,0x54,0xff,0x04,0x22,0x44,0x00,0xff,0x00,0x00,0x00 - -, -0x01,0x1f,0x15,0x13,0x11,0x13,0x15,0x11,0x02,0x02,0x02,0x3f,0x01,0x01,0x00 - -, -/* @3833 (15x15,V)@ [suki software]*/ -0x00,0x04,0x04,0xf4,0x54,0x54,0x5f,0x54,0x54,0xf4,0x04,0x06,0x04,0x00,0x00 - -, -0x04,0x24,0x24,0x17,0x0d,0x05,0x05,0x05,0x05,0x0f,0x14,0x24,0x04,0x04,0x00 - -, -/* @3834 (15x15,V)@ [suki software]*/ -0x7a,0x4a,0x7e,0xca,0x7e,0x4a,0x7a,0x02,0xfe,0x92,0x12,0xfa,0x13,0x02,0x00 - -, -0x12,0x32,0x12,0x1f,0x0a,0x0a,0x0a,0x00,0x3f,0x10,0x01,0x1f,0x20,0x38,0x00 - -, -/* @3835 (15x15,V)@ [suki software]*/ -0x84,0xe4,0x5c,0x44,0xc6,0x04,0x00,0x80,0x80,0xff,0x88,0x88,0x8c,0x08,0x00 - -, -0x00,0x1f,0x08,0x08,0x1f,0x00,0x00,0x3f,0x10,0x10,0x10,0x10,0x3f,0x00,0x00 - -, -/* @3836 (15x15,V)@ [suki software]*/ -0x24,0x34,0xec,0x24,0x34,0x00,0x54,0xd4,0x74,0x5f,0x54,0x54,0xd4,0x40,0x00 - -, -0x11,0x11,0x0f,0x09,0x29,0x22,0x15,0x0c,0x05,0x3f,0x05,0x0c,0x14,0x21,0x00 - -, -/* @3837 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0xf0,0x10,0x10,0x1f,0xd4,0x14,0x14,0x14,0xf6,0x04,0x00,0x00 - -, -0x00,0x20,0x20,0x27,0x10,0x08,0x04,0x03,0x08,0x08,0x08,0x17,0x30,0x00,0x00 - -, -/* @3838 (15x15,V)@ [suki software]*/ -0x60,0x38,0xe7,0x24,0x24,0x04,0x20,0x20,0x20,0xff,0x20,0x20,0x30,0x20,0x00 - -, -0x01,0x01,0x3f,0x11,0x09,0x01,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00 - -, -/* @3839 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x00,0xf0,0x10,0x10,0xdf,0x14,0x14,0xf4,0x06,0x04,0x00 - -, -0x00,0x00,0x3f,0x00,0x20,0x27,0x10,0x08,0x07,0x00,0x08,0x17,0x30,0x00,0x00 - -, -/* @3840 (15x15,V)@ [suki software]*/ -0x08,0xc8,0xff,0x48,0x88,0x20,0x18,0x08,0xff,0x88,0x08,0x28,0x18,0x00,0x00 - -, -0x03,0x00,0x3f,0x00,0x20,0x10,0x08,0x06,0x01,0x1f,0x20,0x20,0x20,0x3c,0x00 - -, -/* @3841 (15x15,V)@ [suki software]*/ -0x04,0x98,0x40,0xfc,0x84,0x44,0x24,0x95,0x8e,0x54,0x24,0x24,0x46,0x44,0x00 - -, -0x21,0x10,0x0c,0x03,0x20,0x29,0x29,0x24,0x14,0x12,0x09,0x04,0x00,0x00,0x00 - -, -/* @3842 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe2,0x06,0x40,0x20,0x10,0x8c,0x43,0x24,0x08,0x10,0x20,0x20,0x00 - -, -0x00,0x00,0x1f,0x08,0x04,0x29,0x29,0x24,0x14,0x12,0x09,0x08,0x04,0x00,0x00 - -, -/* @3843 (15x15,V)@ [suki software]*/ -0x10,0x18,0x8a,0xaa,0xaa,0xaa,0x8a,0xbe,0x8a,0xaa,0xaa,0xab,0x9a,0x08,0x00 - -, -0x20,0x10,0x0f,0x02,0x3e,0x22,0x12,0x16,0x0a,0x0a,0x16,0x22,0x22,0x20,0x00 - -, -/* @3844 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x00,0xfe,0xc2,0x4a,0xca,0x4a,0x4a,0x4b,0x42,0x00 - -, -0x01,0x11,0x20,0x1f,0x10,0x0e,0x01,0x3f,0x10,0x0b,0x04,0x0a,0x31,0x10,0x00 - -, -/* @3845 (15x15,V)@ [suki software]*/ -0x40,0x38,0xef,0x28,0x28,0x04,0xf4,0x54,0x54,0x5f,0x54,0xf4,0x06,0x04,0x00 - -, -0x01,0x01,0x3f,0x11,0x29,0x24,0x17,0x0d,0x05,0x05,0x05,0x0f,0x14,0x24,0x00 - -, -/* @3846 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0x32,0xce,0x00,0x64,0x5c,0x47,0xf4,0x44,0x44,0x44,0x00,0x00 - -, -0x00,0x3f,0x02,0x04,0x03,0x02,0x02,0x02,0x02,0x3f,0x02,0x02,0x02,0x02,0x00 - -, -/* @3847 (15x15,V)@ [suki software]*/ -0x04,0x44,0x54,0xd4,0x5f,0x14,0xd4,0x34,0x5f,0x94,0x44,0x24,0x06,0x04,0x00 - -, -0x02,0x22,0x15,0x04,0x14,0x26,0x07,0x04,0x14,0x24,0x05,0x12,0x22,0x00,0x00 - -, -/* @3848 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0xa0,0x98,0x94,0x97,0xf4,0x9c,0x94,0xf0,0x80,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x00,0x02,0x12,0x22,0x1f,0x02,0x02,0x07,0x00,0x00 - -, -/* @3849 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x22,0x22,0xfe,0x50,0x48,0x57,0x54,0xf4,0x5e,0x54,0xf0,0x40,0x00 - -, -0x00,0x1f,0x09,0x09,0x0f,0x00,0x02,0x12,0x22,0x1f,0x02,0x02,0x07,0x00,0x00 - -, -/* @3850 (15x15,V)@ [suki software]*/ -0x10,0x88,0xc4,0x23,0x18,0x02,0xe2,0x02,0x02,0xfe,0x42,0x42,0x43,0x02,0x00 - -, -0x01,0x00,0x3f,0x00,0x10,0x10,0x1f,0x10,0x10,0x1f,0x10,0x10,0x10,0x10,0x00 - -, -/* @3851 (15x15,V)@ [suki software]*/ -0x22,0x14,0x88,0x74,0xc3,0xa0,0x98,0x97,0x94,0xf4,0x9e,0x94,0xf0,0x80,0x00 - -, -0x04,0x12,0x21,0x10,0x0f,0x00,0x02,0x12,0x22,0x1f,0x02,0x02,0x07,0x00,0x00 - -, -/* @3852 (15x15,V)@ [suki software]*/ -0x00,0x50,0x48,0x54,0x53,0x52,0x52,0xfa,0x56,0x52,0x50,0xf0,0x40,0x40,0x00 - -, -0x00,0x00,0x02,0x02,0x02,0x12,0x22,0x1f,0x02,0x02,0x02,0x07,0x00,0x00,0x00 - -, -/* @3853 (15x15,V)@ [suki software]*/ -0x60,0x10,0xff,0x08,0x30,0x02,0xe2,0x02,0x02,0xfe,0x42,0x42,0x43,0x02,0x00 - -, -0x00,0x00,0x3f,0x00,0x10,0x10,0x1f,0x10,0x10,0x1f,0x10,0x10,0x10,0x10,0x00 - -, -/* @3854 (15x15,V)@ [suki software]*/ -0x04,0x74,0xd4,0x54,0xff,0xd4,0x74,0x14,0x08,0xb7,0x44,0xb4,0x8c,0x84,0x00 - -, -0x21,0x21,0x22,0x22,0x3b,0x22,0x23,0x3e,0x2b,0x2a,0x2a,0x22,0x21,0x20,0x00 - -, -/* @3855 (15x15,V)@ [suki software]*/ -0x08,0x08,0xff,0x88,0x48,0x22,0x22,0xe2,0x02,0xf2,0x8a,0x47,0x22,0x00,0x00 - -, -0x11,0x21,0x1f,0x00,0x04,0x22,0x21,0x24,0x28,0x27,0x20,0x21,0x22,0x04,0x00 - -, -/* @3856 (15x15,V)@ [suki software]*/ -0x00,0x04,0x04,0xe4,0x04,0x04,0x04,0xfc,0x84,0x84,0x84,0xc4,0x86,0x04,0x00 - -, -0x20,0x20,0x20,0x3f,0x20,0x20,0x20,0x3f,0x20,0x20,0x20,0x20,0x30,0x20,0x00 - -, -/* @3857 (15x15,V)@ [suki software]*/ -0x04,0xe4,0x04,0x04,0xfc,0x44,0x46,0x24,0xf8,0x0f,0x08,0x88,0x7c,0x08,0x00 - -, -0x08,0x1f,0x08,0x08,0x07,0x24,0x24,0x10,0x10,0x09,0x06,0x09,0x30,0x10,0x00 - -, -}, -//************************************** -{ -/* @3858 ֡(15x15,V)@ [suki software]*/ -0xf8,0x08,0xff,0x08,0x08,0xf8,0x00,0xf0,0x10,0xdf,0x14,0x14,0xf4,0x04,0x00 - -, -0x07,0x00,0x3f,0x02,0x04,0x23,0x20,0x17,0x08,0x07,0x08,0x08,0x17,0x20,0x00 - -, -/* @3859 ֢(15x15,V)@ [suki software]*/ -0x08,0x30,0x80,0xfc,0x04,0x94,0x14,0x15,0xf6,0x14,0x14,0x14,0x16,0x04,0x00 - -, -0x21,0x11,0x0c,0x23,0x20,0x3f,0x20,0x20,0x3f,0x21,0x21,0x21,0x31,0x20,0x00 - -, -/* @3860 ֣(15x15,V)@ [suki software]*/ -0x48,0x49,0x4a,0x4c,0xf8,0x4c,0x4b,0x48,0x00,0xfe,0x02,0x62,0x9a,0x06,0x00 - -, -0x20,0x10,0x08,0x06,0x01,0x02,0x04,0x08,0x00,0x3f,0x04,0x08,0x08,0x07,0x00 - -, -/* @3861 ֤(15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x00,0x02,0xe2,0x02,0x02,0xfe,0x42,0x42,0x43,0x02,0x00 - -, -0x00,0x00,0x1f,0x08,0x24,0x20,0x3f,0x20,0x20,0x3f,0x20,0x20,0x30,0x20,0x00 - -, -/* @3862 ֥(15x15,V)@ [suki software]*/ -0x04,0x04,0x44,0x44,0x4f,0x44,0x54,0x64,0x44,0xcf,0x64,0x44,0x06,0x04,0x00 - -, -0x00,0x10,0x08,0x08,0x14,0x12,0x22,0x21,0x21,0x20,0x20,0x20,0x20,0x20,0x00 - -, -/* @3863 ֦(15x15,V)@ [suki software]*/ -0x08,0x88,0x48,0xff,0x48,0x80,0x48,0xc8,0x48,0x7f,0x48,0xe8,0x4c,0x08,0x00 - -, -0x02,0x01,0x00,0x3f,0x00,0x20,0x20,0x11,0x0a,0x04,0x0a,0x11,0x30,0x10,0x00 - -, -/* @3864 ֧(15x15,V)@ [suki software]*/ -0x04,0x04,0x24,0xe4,0x24,0x24,0x3f,0x24,0x24,0xa4,0x64,0x06,0x04,0x00,0x00 - -, -0x20,0x20,0x20,0x10,0x11,0x0a,0x04,0x0a,0x09,0x10,0x10,0x20,0x20,0x20,0x00 - -, -/* @3865 ֨(15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0x04,0xfc,0x48,0xc8,0x48,0x7f,0x48,0x48,0xc8,0x0c,0x08,0x00 - -, -0x00,0x07,0x01,0x21,0x23,0x10,0x11,0x0a,0x04,0x0a,0x11,0x10,0x20,0x20,0x00 - -, -/* @3866 ֩(15x15,V)@ [suki software]*/ -0xf8,0x08,0xff,0x08,0xf8,0x90,0x8f,0xf8,0x88,0x88,0xfc,0x04,0x04,0xfc,0x00 - -, -0x11,0x11,0x0f,0x09,0x2d,0x10,0x0c,0x03,0x04,0x08,0x1f,0x08,0x08,0x1f,0x00 - -, -/* @3867 ֪(15x15,V)@ [suki software]*/ -0xa0,0x90,0x8c,0x8b,0xf8,0x88,0x88,0x00,0xf8,0x08,0x08,0x08,0xfc,0x08,0x00 - -, -0x20,0x10,0x08,0x04,0x03,0x04,0x18,0x00,0x1f,0x08,0x08,0x08,0x1f,0x00,0x00 - -, -/* @3868 ֫(15x15,V)@ [suki software]*/ -0x00,0xfe,0x92,0x92,0xfe,0x00,0x48,0xc8,0x48,0x7f,0x48,0xc8,0x0c,0x08,0x00 - -, -0x30,0x0f,0x10,0x20,0x1f,0x20,0x20,0x11,0x0a,0x04,0x0a,0x11,0x30,0x10,0x00 - -, -/* @3869 ֬(15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x92,0x92,0xfe,0x00,0x9f,0xa8,0xa4,0xa4,0xa2,0xa2,0x38,0x00 - -, -0x20,0x18,0x07,0x10,0x20,0x1f,0x00,0x3f,0x14,0x14,0x14,0x14,0x3f,0x00,0x00 - -, -/* @3870 ֭(15x15,V)@ [suki software]*/ -0x10,0x61,0x06,0xc0,0x30,0x00,0x20,0x20,0x20,0xff,0x20,0x20,0x30,0x20,0x00 - -, -0x02,0x02,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00 - -, -/* @3871 ֮(15x15,V)@ [suki software]*/ -0x00,0x08,0x08,0x08,0x08,0x09,0x8e,0x48,0x28,0x18,0x0c,0x08,0x00,0x00,0x00 - -, -0x10,0x10,0x08,0x04,0x0a,0x11,0x10,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x00 - -, -/* @3872 ֯(15x15,V)@ [suki software]*/ -0x20,0x30,0xac,0x63,0x10,0x08,0x00,0x7e,0x42,0x42,0x42,0x42,0x7f,0x02,0x00 - -, -0x09,0x1b,0x09,0x05,0x05,0x25,0x10,0x08,0x06,0x00,0x00,0x02,0x0c,0x30,0x00 - -, -/* @3873 ְ(15x15,V)@ [suki software]*/ -0x02,0xfe,0x92,0x92,0xfe,0x02,0x00,0xfe,0x42,0x42,0x42,0x42,0xff,0x02,0x00 - -, -0x08,0x0f,0x04,0x04,0x3f,0x02,0x22,0x18,0x06,0x00,0x00,0x02,0x0c,0x30,0x00 - -, -/* @3874 ֱ(15x15,V)@ [suki software]*/ -0x00,0x04,0x04,0xf4,0x54,0x54,0x5f,0x54,0x54,0x54,0xf4,0x04,0x06,0x04,0x00 - -, -0x20,0x20,0x20,0x3f,0x29,0x29,0x29,0x29,0x29,0x29,0x3f,0x20,0x30,0x20,0x00 - -, -/* @3875 ֲ(15x15,V)@ [suki software]*/ -0x08,0xc8,0xff,0x28,0xc8,0x04,0xf4,0x54,0x54,0x5f,0x54,0xf4,0x06,0x04,0x00 - -, -0x03,0x00,0x3f,0x00,0x20,0x20,0x3f,0x25,0x25,0x25,0x25,0x3f,0x20,0x20,0x00 - -, -/* @3876 ֳ(15x15,V)@ [suki software]*/ -0x02,0xc2,0x3e,0x12,0xf2,0x04,0xf4,0x54,0x54,0x5f,0x54,0xf4,0x06,0x04,0x00 - -, -0x21,0x10,0x09,0x06,0x21,0x20,0x3f,0x25,0x25,0x25,0x25,0x3f,0x20,0x20,0x00 - -, -/* @3877 ִ(15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x00,0x90,0x90,0xff,0x10,0x10,0xf8,0x10,0x00,0x00 - -, -0x01,0x11,0x20,0x1f,0x20,0x10,0x08,0x06,0x01,0x02,0x00,0x0f,0x10,0x3c,0x00 - -, -/* @3878 ֵ(15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x04,0x04,0xf4,0x54,0x5f,0x54,0x54,0xf4,0x06,0x04,0x00 - -, -0x00,0x00,0x3f,0x00,0x20,0x20,0x3f,0x2a,0x2a,0x2a,0x2a,0x3f,0x20,0x20,0x00 - -, -/* @3879 ֶ(15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x00,0x22,0x32,0x2a,0xe6,0x22,0x2a,0x32,0x63,0x02,0x00 - -, -0x00,0x00,0x3f,0x00,0x20,0x22,0x22,0x22,0x3f,0x22,0x22,0x22,0x32,0x20,0x00 - -, -/* @3880 ַ(15x15,V)@ [suki software]*/ -0x20,0x20,0xff,0x20,0x20,0x00,0xf8,0x00,0x00,0xff,0x40,0x40,0x60,0x40,0x00 - -, -0x08,0x18,0x0f,0x04,0x24,0x20,0x3f,0x20,0x20,0x3f,0x20,0x20,0x30,0x20,0x00 - -, -/* @3881 ָ(15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x08,0x00,0x9f,0xa8,0xa4,0xa4,0xa2,0xa2,0x38,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x00,0x00,0x3f,0x14,0x14,0x14,0x14,0x3f,0x00,0x00 - -, -/* @3882 ֹ(15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0xf0,0x00,0x00,0x00,0xff,0x20,0x20,0x20,0x30,0x20,0x00,0x00 - -, -0x20,0x20,0x20,0x3f,0x20,0x20,0x20,0x3f,0x20,0x20,0x20,0x20,0x30,0x20,0x00 - -, -/* @3883 ֺ(15x15,V)@ [suki software]*/ -0x00,0xbe,0x22,0xe2,0x22,0x3e,0x00,0xf0,0x00,0x00,0xff,0x40,0x60,0x40,0x00 - -, -0x10,0x3f,0x10,0x0f,0x09,0x29,0x20,0x3f,0x20,0x20,0x3f,0x20,0x30,0x20,0x00 - -, -/* @3884 ֻ(15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0xfe,0x82,0x82,0x82,0x82,0x82,0x82,0xff,0x02,0x00,0x00,0x00 - -, -0x20,0x20,0x10,0x08,0x06,0x00,0x00,0x00,0x00,0x02,0x04,0x08,0x30,0x00,0x00 - -, -/* @3885 ּ(15x15,V)@ [suki software]*/ -0x00,0x00,0x9f,0xa4,0xa4,0xa4,0xa4,0xa4,0xa2,0xa3,0xa2,0x38,0x00,0x00,0x00 - -, -0x00,0x00,0x3f,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x3f,0x00,0x00,0x00,0x00 - -, -/* @3886 ֽ(15x15,V)@ [suki software]*/ -0x20,0x30,0xac,0x63,0x10,0x00,0xfc,0x44,0x44,0xfe,0x42,0x43,0x62,0x40,0x00 - -, -0x09,0x1b,0x09,0x05,0x05,0x00,0x3f,0x10,0x08,0x01,0x06,0x08,0x10,0x3c,0x00 - -, -/* @3887 ־(15x15,V)@ [suki software]*/ -0x08,0x48,0x48,0x48,0x48,0x48,0x48,0x7f,0x48,0x48,0x48,0x48,0x4c,0x08,0x00 - -, -0x00,0x18,0x06,0x00,0x1f,0x20,0x21,0x26,0x20,0x20,0x39,0x02,0x0c,0x00,0x00 - -, -/* @3888 ֿ(15x15,V)@ [suki software]*/ -0x00,0x14,0x94,0xd4,0xff,0x94,0xc0,0xb4,0x9f,0xa4,0x84,0x3e,0x44,0x60,0x00 - -, -0x08,0x08,0x08,0x0a,0x0a,0x0a,0x2a,0x3f,0x0a,0x0a,0x0a,0x0a,0x08,0x08,0x00 - -, -/* @3889 (15x15,V)@ [suki software]*/ -0x08,0x08,0xff,0x48,0x92,0x94,0xf8,0x94,0x92,0x80,0xfe,0x22,0xda,0x06,0x00 - -, -0x11,0x21,0x1f,0x00,0x10,0x0c,0x03,0x04,0x08,0x00,0x3f,0x04,0x08,0x07,0x00 - -, -/* @3890 (15x15,V)@ [suki software]*/ -0x00,0x02,0x22,0x72,0x2a,0x26,0x22,0xe2,0x22,0x2a,0x32,0x22,0x43,0x02,0x00 - -, -0x20,0x20,0x22,0x22,0x22,0x22,0x22,0x3f,0x22,0x22,0x22,0x22,0x20,0x20,0x00 - -, -/* @3891 (15x15,V)@ [suki software]*/ -0x22,0x32,0x2a,0xe6,0x22,0x2a,0x32,0x20,0xf8,0x0f,0x08,0xf8,0x0c,0x08,0x00 - -, -0x11,0x11,0x11,0x0f,0x09,0x09,0x29,0x20,0x10,0x0b,0x04,0x0b,0x10,0x20,0x00 - -, -/* @3892 (15x15,V)@ [suki software]*/ -0x00,0x20,0x2e,0xaa,0xaa,0xae,0xfa,0xaa,0xae,0xaa,0xaa,0x2f,0x22,0x20,0x00 - -, -0x20,0x20,0x20,0x3f,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x3f,0x20,0x20,0x20,0x00 - -, -/* @3893 (15x15,V)@ [suki software]*/ -0xf8,0x08,0xff,0x08,0x08,0xf8,0x00,0xfe,0x82,0x82,0x82,0x82,0xff,0x02,0x00 - -, -0x07,0x00,0x3f,0x02,0x24,0x13,0x08,0x04,0x02,0x00,0x02,0x04,0x08,0x30,0x00 - -, -/* @3894 (15x15,V)@ [suki software]*/ -0x00,0xf8,0x00,0xff,0x00,0xf8,0x24,0x24,0x24,0x3f,0x24,0xe4,0x24,0x20,0x00 - -, -0x00,0x0f,0x04,0x07,0x04,0x0f,0x01,0x03,0x05,0x11,0x21,0x1f,0x01,0x01,0x00 - -, -/* @3895 (15x15,V)@ [suki software]*/ -0x00,0x30,0x2e,0x28,0x28,0xff,0x28,0x28,0x28,0x00,0xfc,0x00,0x00,0xff,0x00 - -, -0x00,0x00,0x1f,0x01,0x01,0x3f,0x01,0x11,0x1f,0x00,0x03,0x10,0x20,0x1f,0x00 - -, -/* @3896 (15x15,V)@ [suki software]*/ -0x10,0x98,0x57,0x32,0x1e,0x32,0x52,0x90,0x7e,0x22,0x22,0x22,0x7e,0x00,0x00 - -, -0x01,0x00,0x00,0x3f,0x15,0x15,0x15,0x15,0x15,0x15,0x3f,0x00,0x00,0x00,0x00 - -, -/* @3897 (15x15,V)@ [suki software]*/ -0x14,0x14,0x94,0xfe,0x92,0x12,0xa0,0x9e,0x90,0xff,0x90,0x98,0xd0,0x80,0x00 - -, -0x04,0x03,0x00,0x3f,0x00,0x23,0x10,0x08,0x04,0x03,0x04,0x08,0x10,0x20,0x00 - -, -/* @3898 (15x15,V)@ [suki software]*/ -0x14,0x14,0x94,0xfe,0x93,0x22,0x10,0xfc,0x4b,0x48,0xfe,0x48,0x48,0x08,0x00 - -, -0x04,0x03,0x00,0x3f,0x00,0x01,0x00,0x3f,0x12,0x12,0x1f,0x12,0x12,0x10,0x00 - -, -/* @3899 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x02,0x0a,0xca,0x4a,0x4a,0x7e,0x4a,0x49,0xc9,0x09,0x08,0x00 - -, -0x20,0x18,0x07,0x20,0x20,0x17,0x10,0x08,0x07,0x08,0x08,0x17,0x10,0x20,0x00 - -, -/* @3900 (15x15,V)@ [suki software]*/ -0x80,0x90,0x90,0x88,0x54,0x46,0xad,0x24,0x14,0x0c,0x86,0x04,0x00,0x00,0x00 - -, -0x20,0x20,0x24,0x12,0x08,0x06,0x01,0x02,0x04,0x0a,0x11,0x20,0x20,0x20,0x00 - -, -/* @3901 (15x15,V)@ [suki software]*/ -0x08,0x30,0x80,0xfc,0x04,0x54,0x54,0x55,0x7e,0x54,0xd4,0x54,0x46,0x04,0x00 - -, -0x21,0x11,0x0c,0x03,0x02,0x02,0x06,0x0a,0x22,0x22,0x1f,0x02,0x02,0x02,0x00 - -, -/* @3902 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0xc4,0x44,0x5f,0x44,0xdf,0x44,0x44,0x5f,0x44,0xc4,0x00 - -, -0x02,0x3e,0x01,0x00,0x00,0x1f,0x01,0x01,0x3f,0x01,0x11,0x1f,0x00,0x00,0x00 - -, -/* @3903 (15x15,V)@ [suki software]*/ -0x10,0x60,0x02,0xcc,0x00,0x20,0xb0,0xac,0xa3,0xa0,0xa0,0xa8,0x30,0x60,0x00 - -, -0x02,0x02,0x3f,0x00,0x00,0x00,0x3f,0x10,0x10,0x10,0x10,0x3f,0x00,0x00,0x00 - -, -/* @3904 (15x15,V)@ [suki software]*/ -0x00,0x2c,0x24,0x34,0xac,0x64,0x25,0x26,0x24,0x6c,0xb4,0x24,0x2c,0x00,0x00 - -, -0x00,0x20,0x25,0x25,0x25,0x25,0x25,0x3f,0x25,0x25,0x25,0x25,0x20,0x20,0x00 - -, -/* @3905 (15x15,V)@ [suki software]*/ -0x00,0xf8,0x08,0x08,0x08,0x08,0xff,0x08,0x08,0x08,0x08,0xfc,0x08,0x00,0x00 - -, -0x00,0x01,0x01,0x01,0x01,0x01,0x3f,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00 - -, -/* @3906 (15x15,V)@ [suki software]*/ -0x00,0x00,0x7c,0x24,0x24,0x24,0x24,0xff,0x24,0x24,0x24,0x7e,0x04,0x00,0x00 - -, -0x20,0x20,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3e,0x20,0x20,0x00 - -, -/* @3907 (15x15,V)@ [suki software]*/ -0x00,0x00,0x7c,0x44,0x44,0x44,0xff,0x44,0x44,0x44,0x44,0x7c,0x00,0x00,0x00 - -, -0x10,0x0c,0x00,0x00,0x1e,0x20,0x21,0x26,0x20,0x20,0x38,0x02,0x04,0x08,0x00 - -, -/* @3908 (15x15,V)@ [suki software]*/ -0x60,0x38,0xe7,0x24,0x24,0x04,0x00,0xf8,0x88,0x88,0xff,0x88,0x88,0xf8,0x00 - -, -0x01,0x01,0x3f,0x11,0x09,0x01,0x00,0x01,0x00,0x00,0x3f,0x00,0x00,0x01,0x00 - -, -/* @3909 (15x15,V)@ [suki software]*/ -0x04,0x04,0x74,0x54,0x54,0x55,0xfe,0x54,0x54,0x54,0x74,0x04,0x04,0x00,0x00 - -, -0x10,0x10,0x08,0x04,0x3e,0x21,0x10,0x13,0x04,0x0a,0x11,0x10,0x30,0x10,0x00 - -, -/* @3910 (15x15,V)@ [suki software]*/ -0x20,0x30,0xac,0x63,0x10,0x00,0x10,0x8f,0x54,0x24,0x54,0x8e,0x04,0x00,0x00 - -, -0x09,0x1b,0x09,0x05,0x05,0x00,0x01,0x08,0x09,0x12,0x34,0x00,0x01,0x01,0x00 - -, -/* @3911 (15x15,V)@ [suki software]*/ -0x14,0x14,0x94,0xfe,0x53,0x92,0x00,0xf0,0x10,0xff,0x10,0x10,0xf8,0x10,0x00 - -, -0x04,0x03,0x00,0x3f,0x00,0x01,0x00,0x03,0x01,0x3f,0x01,0x01,0x03,0x00,0x00 - -, -/* @3912 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x92,0x92,0xfe,0x00,0xf8,0x88,0x88,0xff,0x88,0x88,0xf8,0x00,0x00 - -, -0x30,0x0f,0x10,0x20,0x1f,0x00,0x01,0x00,0x00,0x3f,0x00,0x00,0x01,0x00,0x00 - -, -/* @3913 (15x15,V)@ [suki software]*/ -0x08,0x08,0x0a,0xea,0xaa,0xaa,0xaa,0xfe,0xaa,0xa9,0xe9,0x09,0x08,0x08,0x00 - -, -0x20,0x20,0x28,0x2b,0x2a,0x2a,0x2a,0x3f,0x2a,0x2a,0x2b,0x28,0x20,0x20,0x00 - -, -/* @3914 (15x15,V)@ [suki software]*/ -0x80,0x40,0x30,0xec,0x03,0xf8,0x88,0x88,0x88,0xff,0x88,0x88,0xfc,0x08,0x00 - -, -0x00,0x00,0x00,0x3f,0x00,0x01,0x00,0x00,0x00,0x3f,0x00,0x00,0x01,0x00,0x00 - -, -/* @3915 (15x15,V)@ [suki software]*/ -0x40,0x40,0x20,0xd0,0x08,0x04,0x03,0x04,0x08,0xd0,0x20,0x20,0x40,0x40,0x00 - -, -0x20,0x10,0x0c,0x03,0x02,0x2c,0x20,0x10,0x0c,0x03,0x04,0x08,0x10,0x20,0x00 - -, -/* @3916 (15x15,V)@ [suki software]*/ -0x80,0x80,0x80,0xfc,0x84,0x84,0x97,0xa4,0x84,0x84,0xfe,0x84,0x80,0x80,0x00 - -, -0x20,0x10,0x08,0x07,0x00,0x00,0x02,0x04,0x10,0x20,0x1f,0x00,0x00,0x00,0x00 - -, -/* @3917 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x02,0x22,0xaa,0xaa,0xbe,0xaa,0xaa,0x22,0x02,0xff,0x02,0x00 - -, -0x20,0x18,0x07,0x00,0x00,0x0f,0x04,0x04,0x04,0x0f,0x10,0x20,0x1f,0x00,0x00 - -, -/* @3918 (15x15,V)@ [suki software]*/ -0x00,0x80,0x60,0x00,0xff,0x20,0xc0,0x00,0xfe,0x20,0xc0,0x00,0xfe,0x00,0x00 - -, -0x20,0x10,0x08,0x06,0x01,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x3f,0x00,0x00 - -, -/* @3919 (15x15,V)@ [suki software]*/ -0x10,0x21,0x86,0x60,0x98,0x40,0xff,0x20,0x40,0xfe,0x20,0x40,0xff,0x00,0x00 - -, -0x02,0x02,0x3f,0x20,0x10,0x0c,0x03,0x00,0x00,0x1f,0x00,0x00,0x3f,0x00,0x00 - -, -/* @3920 (15x15,V)@ [suki software]*/ -0x20,0x22,0xe4,0x0c,0x20,0x50,0x48,0x47,0x44,0x64,0x54,0x4c,0xe0,0x40,0x00 - -, -0x00,0x00,0x1f,0x08,0x04,0x10,0x12,0x12,0x12,0x12,0x12,0x12,0x3f,0x00,0x00 - -, -/* @3921 (15x15,V)@ [suki software]*/ -0x00,0xf2,0x12,0x12,0x5e,0x48,0x50,0xff,0x50,0x4a,0xf2,0x12,0x1f,0x02,0x00 - -, -0x00,0x11,0x21,0x1f,0x08,0x04,0x02,0x3f,0x02,0x04,0x11,0x21,0x1f,0x00,0x00 - -, -/* @3922 (15x15,V)@ [suki software]*/ -0x44,0x74,0x4f,0xf4,0x44,0x44,0xf8,0x88,0x88,0xff,0x88,0x88,0xfc,0x08,0x00 - -, -0x04,0x04,0x04,0x3f,0x02,0x02,0x3f,0x10,0x10,0x1f,0x10,0x10,0x3f,0x00,0x00 - -, -/* @3923 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfe,0x92,0x92,0xfe,0x00,0x50,0x90,0x10,0x10,0xff,0x10,0x10,0x00 - -, -0x20,0x10,0x0f,0x10,0x20,0x1f,0x00,0x00,0x01,0x10,0x20,0x1f,0x00,0x00,0x00 - -, -/* @3924 (15x15,V)@ [suki software]*/ -0x00,0xc0,0x51,0x55,0x55,0x55,0xd5,0x55,0x55,0x55,0x5f,0x40,0xc0,0x00,0x00 - -, -0x01,0x00,0x00,0x1f,0x01,0x01,0x3f,0x01,0x09,0x11,0x0f,0x01,0x00,0x00,0x00 - -, -/* @3925 (15x15,V)@ [suki software]*/ -0x00,0x00,0x3e,0x12,0x92,0xbe,0x80,0x80,0xbe,0x92,0x12,0x3f,0x02,0x00,0x00 - -, -0x20,0x20,0x20,0x10,0x0f,0x00,0x00,0x00,0x00,0x1f,0x20,0x20,0x20,0x3c,0x00 - -, -/* @3926 (15x15,V)@ [suki software]*/ -0x10,0x28,0x27,0x34,0x2c,0xe4,0x00,0xfc,0x44,0xc4,0x7f,0x44,0xd4,0x0c,0x00 - -, -0x08,0x09,0x09,0x09,0x09,0x2f,0x10,0x2f,0x10,0x0b,0x04,0x0a,0x11,0x20,0x00 - -, -/* @3927 (15x15,V)@ [suki software]*/ -0x10,0x0c,0xc4,0x44,0x44,0x44,0xf5,0x46,0x44,0x44,0x44,0xd4,0x0c,0x00,0x00 - -, -0x00,0x00,0x3f,0x12,0x12,0x12,0x1f,0x12,0x12,0x12,0x12,0x3f,0x00,0x00,0x00 - -, -/* @3928 (15x15,V)@ [suki software]*/ -0x00,0x00,0xc0,0xbe,0x8a,0x8a,0x8a,0x8a,0x9a,0xaa,0xca,0x4f,0x82,0x80,0x00 - -, -0x02,0x21,0x20,0x2f,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2f,0x20,0x30,0x20,0x00 - -, -/* @3929 (15x15,V)@ [suki software]*/ -0x02,0xfa,0x82,0xfe,0x80,0x41,0x7f,0x55,0xff,0xa1,0x96,0x8a,0x96,0x22,0x00 - -, -0x04,0x14,0x22,0x12,0x0f,0x14,0x15,0x0b,0x00,0x3f,0x04,0x0a,0x11,0x10,0x00 - -, -/* @3930 (15x15,V)@ [suki software]*/ -0x44,0x44,0xfc,0x44,0x44,0x10,0x4e,0x48,0x48,0xff,0x48,0x48,0x48,0x40,0x00 - -, -0x08,0x08,0x0f,0x04,0x14,0x08,0x04,0x02,0x01,0x3f,0x01,0x02,0x0c,0x08,0x00 - -, -/* @3931 (15x15,V)@ [suki software]*/ -0x08,0xc8,0xff,0x48,0x88,0x50,0x4e,0x48,0x48,0xff,0x48,0x48,0x48,0x40,0x00 - -, -0x03,0x00,0x3f,0x00,0x10,0x08,0x04,0x02,0x01,0x3f,0x02,0x04,0x18,0x08,0x00 - -, -/* @3932 (15x15,V)@ [suki software]*/ -0xf8,0x08,0xff,0x08,0xf8,0x40,0x50,0x4e,0x48,0xff,0x48,0x48,0x48,0x40,0x00 - -, -0x11,0x11,0x0f,0x09,0x0d,0x10,0x08,0x06,0x01,0x3f,0x01,0x06,0x08,0x10,0x00 - -, -/* @3933 (15x15,V)@ [suki software]*/ -0x00,0x40,0x50,0x4e,0x48,0x48,0xc8,0xff,0x48,0x48,0x48,0x4c,0x48,0x40,0x00 - -, -0x10,0x10,0x08,0x04,0x02,0x01,0x00,0x3f,0x01,0x02,0x04,0x08,0x18,0x08,0x00 - -, -/* @3934 (15x15,V)@ [suki software]*/ -0x22,0x14,0x88,0xf4,0x03,0x20,0xa4,0xa4,0xff,0xa4,0xb4,0xa8,0x26,0x20,0x00 - -, -0x02,0x11,0x20,0x1f,0x00,0x02,0x3f,0x14,0x14,0x14,0x14,0x3f,0x00,0x00,0x00 - -, -/* @3935 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x20,0x24,0xa4,0xff,0xa4,0xb4,0xa8,0xa4,0x22,0x20,0x00 - -, -0x00,0x00,0x1f,0x08,0x04,0x01,0x3f,0x14,0x14,0x14,0x14,0x3f,0x00,0x00,0x00 - -, -/* @3936 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x00,0x50,0x4e,0x48,0xff,0x48,0x48,0x4c,0x48,0x40,0x00 - -, -0x00,0x00,0x1f,0x08,0x14,0x08,0x06,0x01,0x3f,0x01,0x02,0x04,0x08,0x08,0x00 - -, -/* @3937 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0xa2,0x92,0x4a,0x2e,0x92,0xe2,0xa2,0x92,0x0b,0x02,0x00 - -, -0x10,0x08,0x07,0x08,0x14,0x14,0x22,0x25,0x28,0x27,0x20,0x20,0x23,0x20,0x00 - -, -/* @3938 (15x15,V)@ [suki software]*/ -0x20,0x10,0x1c,0xf3,0x10,0x10,0x20,0x10,0x1c,0x13,0xf0,0x10,0x18,0x10,0x00 - -, -0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x10,0x20,0x1f,0x00,0x00,0x00,0x00 - -, -/* @3939 (15x15,V)@ [suki software]*/ -0x70,0x00,0xff,0x20,0x10,0x00,0xf8,0x08,0x08,0xff,0x08,0x08,0xfc,0x08,0x00 - -, -0x20,0x18,0x07,0x02,0x04,0x10,0x31,0x11,0x11,0x1f,0x11,0x11,0x15,0x38,0x00 - -, -/* @3940 (15x15,V)@ [suki software]*/ -0x00,0x10,0x90,0x94,0xd4,0x54,0x7f,0x54,0x54,0x5c,0xd4,0x12,0x10,0x10,0x00 - -, -0x01,0x21,0x10,0x00,0x07,0x15,0x25,0x05,0x15,0x25,0x07,0x10,0x20,0x00,0x00 - -, -/* @3941 (15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x00,0x08,0x08,0x09,0xfe,0x08,0x08,0x08,0x08,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x20,0x21,0x21,0x21,0x3f,0x21,0x21,0x31,0x20,0x00 - -, -/* @3942 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x92,0xfe,0x00,0xfe,0x0a,0xea,0xaa,0xfa,0xaa,0xaa,0xef,0x02,0x00 - -, -0x00,0x0f,0x04,0x27,0x18,0x07,0x3e,0x02,0x0a,0x0f,0x0a,0x0e,0x2a,0x3e,0x00 - -, -/* @3943 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x04,0xfc,0x00,0xfe,0x0a,0xea,0xaa,0xfa,0xaa,0xaa,0xef,0x02,0x00 - -, -0x00,0x03,0x21,0x13,0x0c,0x03,0x3e,0x02,0x0a,0x0f,0x0a,0x0e,0x22,0x3e,0x00 - -, -/* @3944 (15x15,V)@ [suki software]*/ -0x00,0x08,0x08,0x08,0x08,0x09,0x0a,0xfe,0x08,0x08,0x08,0x0c,0x08,0x00,0x00 - -, -0x20,0x20,0x21,0x21,0x21,0x21,0x21,0x3f,0x21,0x21,0x21,0x21,0x30,0x20,0x00 - -, -/* @3945 (15x15,V)@ [suki software]*/ -0x00,0x42,0x42,0x52,0x52,0x57,0xfa,0x52,0x52,0x57,0x62,0x52,0x42,0x02,0x00 - -, -0x00,0x04,0x04,0x02,0x3f,0x15,0x15,0x15,0x15,0x15,0x3f,0x00,0x00,0x00,0x00 - -, -/* @3946 (15x15,V)@ [suki software]*/ -0x10,0x90,0x50,0xff,0x50,0x90,0x08,0x08,0x09,0xfe,0x08,0x08,0x08,0x00,0x00 - -, -0x02,0x01,0x00,0x3f,0x00,0x20,0x21,0x21,0x21,0x3f,0x21,0x21,0x31,0x20,0x00 - -, -/* @3947 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x92,0x92,0x92,0xff,0x02,0x10,0x10,0xff,0x10,0x10,0xf8,0x10,0x00 - -, -0x08,0x1f,0x08,0x08,0x04,0x27,0x14,0x08,0x06,0x11,0x20,0x10,0x0f,0x00,0x00 - -, -/* @3948 (15x15,V)@ [suki software]*/ -0x00,0xf8,0x08,0xff,0x08,0xf8,0x08,0x88,0x89,0xfe,0x88,0x88,0x8c,0x08,0x00 - -, -0x10,0x13,0x11,0x0f,0x09,0x2d,0x20,0x20,0x20,0x3f,0x20,0x20,0x30,0x20,0x00 - -, -/* @3949 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0xf2,0x02,0xfe,0x20,0x18,0x08,0x09,0x0e,0x08,0x28,0x18,0x00 - -, -0x20,0x13,0x0c,0x03,0x04,0x1b,0x00,0x10,0x10,0x10,0x10,0x10,0x18,0x10,0x00 - -, -/* @3950 (15x15,V)@ [suki software]*/ -0x40,0x30,0xef,0x24,0x24,0x20,0x54,0xd4,0x7c,0x57,0x54,0xd4,0x54,0x44,0x00 - -, -0x01,0x01,0x1f,0x11,0x09,0x02,0x01,0x06,0x0a,0x12,0x22,0x1f,0x02,0x02,0x00 - -, -/* @3951 (15x15,V)@ [suki software]*/ -0x10,0x48,0x44,0xcf,0x54,0x44,0x14,0xc8,0x44,0x47,0x4c,0xd4,0x04,0x04,0x00 - -, -0x08,0x18,0x08,0x27,0x24,0x14,0x08,0x07,0x01,0x06,0x00,0x1f,0x20,0x38,0x00 -, -}, -//************************************** -{ -/* @3952 ס(15x15,V)@ [suki software]*/ -0x40,0x20,0x10,0xfc,0x03,0x08,0x08,0x09,0xfe,0x08,0x08,0x08,0x08,0x08,0x00 - -, -0x00,0x00,0x00,0x3f,0x20,0x21,0x21,0x21,0x3f,0x21,0x21,0x21,0x31,0x20,0x00 - -, -/* @3953 ע(15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x08,0x08,0x08,0x09,0xfe,0x08,0x08,0x0c,0x08,0x00,0x00 - -, -0x02,0x3e,0x01,0x00,0x20,0x21,0x21,0x21,0x3f,0x21,0x21,0x21,0x31,0x20,0x00 - -, -/* @3954 ף(15x15,V)@ [suki software]*/ -0x08,0x88,0xc9,0x6e,0x98,0x00,0x7e,0x42,0xc2,0x42,0xc2,0x42,0x7f,0x02,0x00 - -, -0x01,0x00,0x3f,0x00,0x20,0x21,0x10,0x0c,0x03,0x00,0x1f,0x20,0x20,0x38,0x00 - -, -/* @3955 פ(15x15,V)@ [suki software]*/ -0x02,0xfa,0x82,0x82,0xfe,0x80,0x08,0x88,0x89,0xfe,0x88,0x88,0x88,0x08,0x00 - -, -0x04,0x04,0x12,0x22,0x10,0x2f,0x20,0x20,0x20,0x3f,0x20,0x20,0x30,0x20,0x00 - -, -/* @3956 ץ(15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x08,0xfc,0x04,0xfc,0x02,0x3e,0xc3,0x02,0x00,0x00 - -, -0x01,0x11,0x20,0x3f,0x10,0x0c,0x03,0x00,0x3f,0x00,0x00,0x03,0x0c,0x30,0x00 - -, -/* @3957 צ(15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0xfc,0x04,0x04,0xfc,0x04,0x02,0x7e,0x83,0x02,0x00,0x00,0x00 - -, -0x20,0x10,0x0c,0x03,0x00,0x00,0x3f,0x00,0x00,0x00,0x01,0x06,0x18,0x10,0x00 - -, -/* @3958 ק(15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x00,0xfc,0xa4,0xa4,0xff,0xa4,0xa4,0xfe,0x04,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x10,0x11,0x08,0x08,0x07,0x0c,0x12,0x22,0x38,0x00 - -, -/* @3959 ר(15x15,V)@ [suki software]*/ -0x20,0x20,0x24,0x24,0xa4,0x7c,0x27,0x24,0x24,0x24,0xa6,0x24,0x30,0x20,0x00 - -, -0x00,0x00,0x00,0x00,0x01,0x09,0x09,0x11,0x29,0x05,0x03,0x01,0x00,0x00,0x00 - -, -/* @3960 ש(15x15,V)@ [suki software]*/ -0x04,0x84,0xfc,0x44,0x44,0xc4,0x20,0x24,0xe4,0x3f,0x24,0x24,0x24,0x20,0x00 - -, -0x01,0x00,0x1f,0x08,0x08,0x0f,0x00,0x09,0x09,0x09,0x15,0x23,0x01,0x00,0x00 - -, -/* @3961 ת(15x15,V)@ [suki software]*/ -0x44,0x74,0x4f,0xf4,0x44,0x44,0x20,0x24,0xe4,0x3f,0x24,0x24,0x24,0x20,0x00 - -, -0x04,0x0c,0x04,0x3f,0x02,0x02,0x00,0x05,0x05,0x09,0x15,0x23,0x01,0x00,0x00 - -, -/* @3962 ׫(15x15,V)@ [suki software]*/ -0x10,0x10,0xff,0x90,0x40,0x9e,0xaa,0xea,0xae,0x80,0xfe,0xaa,0xaf,0x32,0x00 - -, -0x12,0x21,0x1f,0x00,0x24,0x14,0x0c,0x07,0x04,0x04,0x07,0x0c,0x14,0x24,0x00 - -, -/* @3963 ׬(15x15,V)@ [suki software]*/ -0xfe,0x02,0xfa,0x02,0xfe,0x44,0x55,0xfe,0x54,0xfc,0x56,0xf5,0x44,0x40,0x00 - -, -0x23,0x18,0x07,0x22,0x15,0x08,0x05,0x3f,0x01,0x3f,0x05,0x09,0x10,0x10,0x00 - -, -/* @3964 ׭(15x15,V)@ [suki software]*/ -0x10,0x88,0x84,0xa3,0xbe,0xaa,0xaa,0xac,0xaa,0xfb,0x86,0x8a,0x82,0x82,0x00 - -, -0x00,0x2a,0x2a,0x15,0x15,0x0a,0x25,0x3e,0x04,0x0a,0x09,0x10,0x10,0x10,0x00 - -, -/* @3965 ׮(15x15,V)@ [suki software]*/ -0x08,0xc8,0xff,0x48,0x88,0x00,0xf8,0x08,0x88,0x89,0xea,0x88,0x88,0x08,0x00 - -, -0x03,0x00,0x3f,0x00,0x20,0x18,0x27,0x20,0x20,0x20,0x3f,0x20,0x20,0x20,0x00 - -, -/* @3966 ׯ(15x15,V)@ [suki software]*/ -0x00,0x00,0xfc,0x04,0x84,0x84,0x85,0xf6,0x84,0x84,0x84,0xc4,0x86,0x04,0x00 - -, -0x20,0x18,0x07,0x20,0x20,0x20,0x20,0x3f,0x20,0x20,0x20,0x20,0x30,0x20,0x00 - -, -/* @3967 װ(15x15,V)@ [suki software]*/ -0x20,0x22,0x14,0x10,0x7f,0x00,0x44,0xa4,0x24,0x3f,0x24,0x24,0x26,0x04,0x00 - -, -0x09,0x09,0x09,0x05,0x3d,0x23,0x11,0x13,0x05,0x09,0x15,0x13,0x21,0x21,0x00 - -, -/* @3968 ױ(15x15,V)@ [suki software]*/ -0x08,0x10,0x20,0xff,0x00,0x20,0x20,0xe0,0x3f,0x20,0x20,0xe0,0x30,0x20,0x00 - -, -0x04,0x02,0x01,0x3f,0x00,0x20,0x21,0x12,0x0a,0x04,0x0b,0x10,0x30,0x00,0x00 - -, -/* @3969 ײ(15x15,V)@ [suki software]*/ -0x08,0x08,0xff,0x88,0x88,0x20,0xe4,0xac,0xb5,0xe6,0xb4,0xec,0x24,0x20,0x00 - -, -0x11,0x21,0x1f,0x00,0x20,0x28,0x2b,0x2a,0x2a,0x3f,0x2a,0x2b,0x28,0x20,0x00 - -, -/* @3970 ׳(15x15,V)@ [suki software]*/ -0x04,0x08,0x30,0x80,0xff,0x20,0x20,0x20,0x20,0xff,0x20,0x20,0x30,0x20,0x00 - -, -0x04,0x02,0x01,0x00,0x3f,0x00,0x10,0x10,0x10,0x1f,0x10,0x10,0x18,0x10,0x00 - -, -/* @3971 ״(15x15,V)@ [suki software]*/ -0x08,0x10,0xa0,0xff,0x00,0x20,0x20,0x20,0xff,0x20,0x24,0x28,0x20,0x20,0x00 - -, -0x02,0x03,0x00,0x3f,0x20,0x10,0x0c,0x03,0x00,0x03,0x04,0x08,0x10,0x20,0x00 - -, -/* @3972 ׵(15x15,V)@ [suki software]*/ -0x08,0xc8,0xff,0x48,0x88,0x10,0xfc,0x4b,0x48,0xf9,0x4e,0x48,0x4c,0x08,0x00 - -, -0x03,0x00,0x3f,0x00,0x00,0x00,0x3f,0x12,0x12,0x1f,0x12,0x12,0x1a,0x10,0x00 - -, -/* @3973 ׶(15x15,V)@ [suki software]*/ -0x40,0x30,0xef,0x24,0x24,0x10,0x08,0xff,0x24,0x25,0xfe,0x24,0x24,0x04,0x00 - -, -0x01,0x01,0x3f,0x11,0x09,0x01,0x00,0x3f,0x11,0x11,0x1f,0x11,0x19,0x10,0x00 - -, -/* @3974 ׷(15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x00,0xfc,0xa4,0xa4,0xa7,0xa4,0xa4,0xbc,0x00,0x00,0x00 - -, -0x10,0x08,0x07,0x08,0x10,0x2f,0x24,0x24,0x24,0x24,0x24,0x2f,0x20,0x20,0x00 - -, -/* @3975 ׸(15x15,V)@ [suki software]*/ -0x88,0x4a,0x2a,0xba,0xaf,0xea,0x8a,0x88,0xc4,0xaf,0x94,0x2c,0x46,0x44,0x00 - -, -0x00,0x20,0x20,0x27,0x10,0x08,0x06,0x00,0x08,0x10,0x17,0x20,0x20,0x00,0x00 - -, -/* @3976 ׹(15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0x9a,0xe7,0x02,0x80,0x60,0x1f,0x10,0x60,0x80,0x00,0x00,0x00 - -, -0x20,0x23,0x24,0x24,0x26,0x25,0x24,0x3e,0x24,0x24,0x24,0x24,0x31,0x21,0x00 - -, -/* @3977 ׺(15x15,V)@ [suki software]*/ -0x10,0x9c,0x53,0x30,0x4a,0xa6,0x9a,0xa6,0x40,0xaa,0x92,0xaa,0x86,0x00,0x00 - -, -0x09,0x09,0x09,0x25,0x10,0x09,0x06,0x29,0x20,0x17,0x08,0x14,0x23,0x20,0x00 - -, -/* @3978 ׻(15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x04,0x04,0x74,0x54,0x55,0x56,0x54,0x74,0x06,0x04,0x00 - -, -0x00,0x00,0x1f,0x08,0x04,0x04,0x05,0x15,0x25,0x1d,0x07,0x05,0x04,0x04,0x00 - -, -/* @3979 ׼(15x15,V)@ [suki software]*/ -0x02,0x84,0x6c,0x00,0x20,0x10,0xfc,0x4b,0x48,0xfe,0x48,0x48,0x4c,0x08,0x00 - -, -0x01,0x1f,0x00,0x00,0x00,0x00,0x3f,0x12,0x12,0x1f,0x12,0x12,0x1a,0x10,0x00 - -, -/* @3980 ׽(15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x00,0xbe,0x22,0x22,0xe2,0x22,0x22,0x3f,0x02,0x00 - -, -0x01,0x11,0x20,0x1f,0x20,0x18,0x07,0x08,0x10,0x1f,0x21,0x21,0x21,0x20,0x00 - -, -/* @3981 ׾(15x15,V)@ [suki software]*/ -0x08,0x08,0x88,0xff,0x48,0x00,0x7c,0x20,0x20,0xff,0x20,0x20,0x7c,0x00,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x00,0x1f,0x10,0x10,0x1f,0x10,0x10,0x3f,0x00,0x00 - -, -/* @3982 ׿(15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0xf0,0x50,0x50,0x50,0x5f,0x54,0x54,0x54,0xf6,0x04,0x00,0x00 - -, -0x04,0x04,0x04,0x05,0x05,0x05,0x05,0x3f,0x05,0x05,0x05,0x05,0x06,0x04,0x00 - -, -/* @3983 (15x15,V)@ [suki software]*/ -0x00,0x00,0xf8,0xa8,0xa8,0xa8,0xaf,0xaa,0xaa,0xaa,0xfa,0x02,0x02,0x00,0x00 - -, -0x22,0x22,0x12,0x12,0x0a,0x06,0x3f,0x02,0x06,0x0a,0x0a,0x12,0x33,0x12,0x00 - -, -/* @3984 (15x15,V)@ [suki software]*/ -0x22,0x22,0xfe,0x22,0x02,0xa0,0x52,0xca,0x36,0xe2,0x22,0xd2,0x0b,0x02,0x00 - -, -0x08,0x08,0x07,0x04,0x15,0x08,0x04,0x12,0x21,0x1f,0x00,0x01,0x06,0x08,0x00 - -, -/* @3985 (15x15,V)@ [suki software]*/ -0x04,0x04,0xe4,0x04,0x0f,0x04,0xf4,0x04,0x0f,0x04,0x04,0xe4,0x06,0x04,0x00 - -, -0x00,0x00,0x3d,0x21,0x21,0x21,0x3f,0x21,0x21,0x21,0x21,0x3d,0x00,0x00,0x00 - -, -/* @3986 (15x15,V)@ [suki software]*/ -0x02,0xf2,0x9e,0x72,0x9e,0x92,0xf2,0x40,0x30,0x4f,0x88,0x08,0x08,0xf8,0x00 - -, -0x00,0x3f,0x12,0x12,0x12,0x12,0x3f,0x00,0x00,0x00,0x11,0x20,0x10,0x0f,0x00 - -, -/* @3987 (15x15,V)@ [suki software]*/ -0xfc,0x04,0x04,0xfc,0x00,0xa2,0xd2,0x2a,0x36,0xc2,0x42,0x23,0x12,0x00,0x00 - -, -0x03,0x01,0x01,0x13,0x11,0x08,0x15,0x22,0x21,0x1f,0x01,0x06,0x08,0x08,0x00 - -, -/* @3988 (15x15,V)@ [suki software]*/ -0x40,0x44,0x54,0x54,0xd5,0x76,0x5c,0x54,0x56,0x55,0x54,0x54,0x44,0x40,0x00 - -, -0x04,0x04,0x02,0x01,0x3f,0x29,0x2b,0x2d,0x2d,0x29,0x3f,0x00,0x00,0x00,0x00 - -, -/* @3989 (15x15,V)@ [suki software]*/ -0x40,0x30,0x00,0xff,0x10,0x48,0x20,0x18,0x4f,0x88,0x08,0x08,0xfc,0x08,0x00 - -, -0x20,0x10,0x0c,0x03,0x04,0x08,0x00,0x00,0x00,0x11,0x20,0x10,0x0f,0x00,0x00 - -, -/* @3990 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x60,0x00,0xf0,0x10,0x10,0xff,0x10,0x10,0x10,0xf8,0x10,0x00 - -, -0x02,0x3e,0x01,0x00,0x10,0x31,0x11,0x11,0x1f,0x11,0x11,0x15,0x19,0x30,0x00 - -, -/* @3991 (15x15,V)@ [suki software]*/ -0x08,0x88,0x48,0x38,0x09,0xce,0x08,0x88,0x4c,0x3b,0x08,0xc8,0x0c,0x08,0x00 - -, -0x00,0x11,0x19,0x15,0x13,0x14,0x38,0x01,0x19,0x15,0x13,0x14,0x38,0x00,0x00 - -, -/* @3992 (15x15,V)@ [suki software]*/ -0x20,0x21,0xf6,0x08,0x14,0x88,0x47,0x24,0x1c,0x24,0x44,0x94,0x8c,0x80,0x00 - -, -0x00,0x00,0x01,0x3f,0x11,0x11,0x11,0x11,0x11,0x11,0x3f,0x00,0x01,0x00,0x00 - -, -/* @3993 (15x15,V)@ [suki software]*/ -0x10,0x11,0x72,0x88,0x84,0xc8,0xa4,0x97,0x8c,0x94,0xa4,0x4c,0x44,0x40,0x00 - -, -0x00,0x20,0x20,0x2f,0x10,0x10,0x08,0x06,0x08,0x10,0x17,0x20,0x20,0x00,0x00 - -, -/* @3994 (15x15,V)@ [suki software]*/ -0x10,0x11,0x76,0x88,0x94,0x48,0xa7,0x14,0x0c,0x14,0x24,0x4c,0x44,0x40,0x00 - -, -0x02,0x22,0x22,0x22,0x2e,0x1b,0x0a,0x0a,0x16,0x12,0x22,0x22,0x03,0x02,0x00 - -, -/* @3995 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x68,0x88,0x68,0x19,0xce,0x08,0xcc,0x3b,0x88,0x48,0x08,0x00 - -, -0x02,0x3e,0x01,0x00,0x19,0x15,0x13,0x38,0x01,0x19,0x17,0x11,0x38,0x00,0x00 - -, -/* @3996 (15x15,V)@ [suki software]*/ -0x10,0x61,0x06,0xc0,0x00,0x8c,0xb3,0x80,0x8c,0xb3,0x80,0x8c,0xb3,0x00,0x00 - -, -0x02,0x02,0x3f,0x00,0x00,0x3f,0x14,0x14,0x1f,0x14,0x14,0x14,0x3f,0x00,0x00 - -, -/* @3997 (15x15,V)@ [suki software]*/ -0x02,0x02,0x82,0xfa,0x4a,0x86,0x40,0x78,0x8f,0x08,0x88,0x78,0x0c,0x08,0x00 - -, -0x01,0x11,0x20,0x1f,0x00,0x20,0x20,0x10,0x09,0x06,0x09,0x10,0x20,0x20,0x00 - -, -/* @3998 (15x15,V)@ [suki software]*/ -0x20,0x20,0x3e,0xa0,0x9f,0xd4,0xb4,0x80,0x9f,0x64,0x24,0x22,0x22,0x38,0x00 - -, -0x00,0x20,0x12,0x0a,0x02,0x12,0x23,0x1e,0x02,0x0b,0x12,0x26,0x00,0x00,0x00 - -, -/* @3999 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x80,0x82,0x82,0x82,0x82,0xf2,0x8a,0x86,0x82,0x80,0x00 - -, -0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x10,0x20,0x1f,0x00,0x00,0x00,0x00,0x00 - -, -/* @4000 (15x15,V)@ [suki software]*/ -0x24,0x28,0xa0,0xff,0xa8,0x24,0x20,0x42,0x42,0x42,0xf2,0x4a,0x47,0x42,0x00 - -, -0x04,0x03,0x00,0x3f,0x00,0x03,0x00,0x00,0x10,0x20,0x1f,0x00,0x00,0x00,0x00 - -, -/* @4001 (15x15,V)@ [suki software]*/ -0x10,0x61,0x06,0xc0,0x08,0x2c,0x64,0xa5,0x36,0xa4,0x64,0x24,0x2c,0x04,0x00 - -, -0x02,0x02,0x3f,0x00,0x01,0x05,0x05,0x05,0x3f,0x05,0x05,0x05,0x05,0x01,0x00 - -, -/* @4002 (15x15,V)@ [suki software]*/ -0x40,0x40,0x42,0x42,0x42,0x42,0x42,0xf2,0x52,0x4a,0x46,0x43,0x62,0x40,0x00 - -, -0x00,0x00,0x00,0x00,0x00,0x10,0x20,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00 - -, -/* @4003 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0xfc,0x24,0x26,0x25,0x24,0x24,0x24,0x24,0xfc,0x00,0x00,0x00 - -, -0x00,0x00,0x00,0x3f,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x3f,0x00,0x00,0x00 - -, -/* @4004 (15x15,V)@ [suki software]*/ -0x10,0x61,0x86,0x70,0x22,0xaa,0xaa,0xaa,0xbf,0xaa,0xaa,0xaa,0x22,0x20,0x00 - -, -0x02,0x3e,0x01,0x00,0x20,0x2f,0x20,0x10,0x0e,0x08,0x10,0x17,0x20,0x00,0x00 - -, -/* @4005 (15x15,V)@ [suki software]*/ -0x00,0x10,0x0c,0x14,0x14,0x14,0x15,0xd6,0x54,0x34,0x14,0x14,0x8c,0x00,0x00 - -, -0x01,0x01,0x01,0x01,0x01,0x11,0x21,0x1f,0x01,0x01,0x01,0x01,0x01,0x01,0x00 - -, -/* @4006 (15x15,V)@ [suki software]*/ -0x10,0x50,0xff,0xd5,0xd5,0xb5,0x95,0xd1,0x84,0xd4,0xaa,0xaa,0x95,0x00,0x00 - -, -0x00,0x2a,0x29,0x18,0x0a,0x0a,0x2a,0x3a,0x0a,0x0a,0x18,0x2a,0x29,0x08,0x00 - -, -/* @4007 (15x15,V)@ [suki software]*/ -0x08,0xc8,0xff,0x28,0x48,0x0c,0xa4,0xa4,0xa5,0xa6,0xa4,0xa4,0xa4,0x8c,0x00 - -, -0x03,0x00,0x3f,0x00,0x10,0x08,0x06,0x10,0x20,0x1f,0x00,0x02,0x04,0x18,0x00 - -, -/* @4008 (15x15,V)@ [suki software]*/ -0x00,0xbe,0x22,0xe2,0x3e,0x00,0x8c,0xa4,0xa5,0xa6,0xa4,0xa4,0x84,0x8c,0x00 - -, -0x10,0x1f,0x10,0x0f,0x09,0x08,0x04,0x12,0x20,0x1f,0x00,0x02,0x04,0x08,0x00 - -, -/* @4009 (15x15,V)@ [suki software]*/ -0x10,0x8c,0x84,0xa4,0xa4,0xa4,0xa5,0xa6,0xa4,0xa4,0xa4,0x94,0x8c,0x00,0x00 - -, -0x00,0x10,0x08,0x04,0x02,0x10,0x20,0x1f,0x00,0x02,0x04,0x08,0x18,0x00,0x00 - -, -/* @4010 (15x15,V)@ [suki software]*/ -0x20,0x30,0xac,0x63,0x10,0x00,0x8c,0xa4,0xa5,0xa6,0xa4,0xa4,0x84,0x8c,0x00 - -, -0x09,0x1b,0x09,0x05,0x05,0x08,0x04,0x12,0x20,0x1f,0x00,0x02,0x04,0x18,0x00 - -, -/* @4011 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0xf8,0x89,0x8e,0x88,0x88,0x8c,0x8b,0x88,0xf8,0x00,0x00,0x00 - -, -0x00,0x10,0x0c,0x00,0x1e,0x20,0x21,0x26,0x20,0x20,0x38,0x02,0x0c,0x00,0x00 - -, -/* @4012 (15x15,V)@ [suki software]*/ -0x20,0x30,0xac,0x63,0x30,0x08,0x00,0xfe,0x00,0x00,0xfe,0x00,0x00,0x00,0x00 - -, -0x09,0x1b,0x09,0x25,0x15,0x08,0x27,0x10,0x09,0x06,0x01,0x06,0x18,0x20,0x00 - -, -/* @4013 (15x15,V)@ [suki software]*/ -0x20,0x30,0x2c,0x27,0x34,0x2c,0xe4,0x00,0x00,0xfe,0x02,0x62,0x9a,0x06,0x00 - -, -0x08,0x09,0x09,0x09,0x09,0x09,0x1f,0x00,0x00,0x3f,0x04,0x08,0x08,0x07,0x00 - -, -/* @4014 (15x15,V)@ [suki software]*/ -0x20,0x20,0x24,0xa4,0x24,0x24,0x24,0xff,0x24,0x24,0x26,0x24,0x20,0x20,0x00 - -, -0x20,0x10,0x08,0x07,0x08,0x10,0x10,0x3f,0x22,0x22,0x22,0x23,0x22,0x20,0x00 - -, -/* @4015 (15x15,V)@ [suki software]*/ -0x40,0x54,0x54,0xd4,0x54,0x74,0x5f,0x54,0x54,0xd4,0x54,0x56,0x44,0x40,0x00 - -, -0x02,0x22,0x25,0x24,0x15,0x0d,0x07,0x05,0x0d,0x14,0x25,0x21,0x02,0x02,0x00 - -, -/* @4016 (15x15,V)@ [suki software]*/ -0x08,0x88,0xff,0x48,0x48,0x54,0xd4,0x74,0x5f,0x54,0x54,0xd6,0x54,0x40,0x00 - -, -0x11,0x20,0x1f,0x00,0x22,0x25,0x14,0x0d,0x07,0x0d,0x15,0x24,0x21,0x02,0x00 - -, -/* @4017 (15x15,V)@ [suki software]*/ -0x14,0x14,0x94,0xfe,0x93,0x12,0x00,0xfe,0x22,0x22,0x22,0xff,0x02,0x00,0x00 - -, -0x04,0x03,0x00,0x3f,0x00,0x11,0x10,0x1f,0x11,0x11,0x11,0x1f,0x10,0x10,0x00 - -, -/* @4018 (15x15,V)@ [suki software]*/ -0x00,0x00,0x00,0xbe,0x22,0x22,0x22,0xe2,0x22,0x22,0x3f,0x02,0x00,0x00,0x00 - -, -0x20,0x10,0x0c,0x07,0x08,0x08,0x10,0x1f,0x21,0x21,0x21,0x21,0x21,0x20,0x00 - -, -/* @4019 (15x15,V)@ [suki software]*/ -0x00,0x84,0x44,0x24,0x1c,0x24,0x45,0xc6,0x24,0x1c,0x24,0x46,0x04,0x00,0x00 - -, -0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x3f,0x02,0x02,0x02,0x02,0x03,0x02,0x00 - -, -/* @4020 (15x15,V)@ [suki software]*/ -0x08,0x08,0xf9,0x2e,0xe8,0x08,0x90,0x48,0x37,0xe4,0x24,0x24,0x26,0x04,0x00 - -, -0x20,0x18,0x07,0x20,0x1f,0x20,0x21,0x11,0x0d,0x03,0x05,0x09,0x11,0x21,0x00 - -, -/* @4021 (15x15,V)@ [suki software]*/ -0x08,0x88,0xe9,0x5e,0x88,0x00,0xfe,0x22,0x22,0x22,0x22,0xff,0x02,0x00,0x00 - -, -0x01,0x00,0x3f,0x00,0x11,0x10,0x1f,0x11,0x11,0x11,0x11,0x1f,0x10,0x10,0x00 - -, -/* @4022 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x00,0x00,0xfe,0x22,0x22,0x22,0x22,0xff,0x02,0x00,0x00 - -, -0x00,0x00,0x1f,0x08,0x24,0x20,0x3f,0x22,0x22,0x22,0x22,0x3f,0x20,0x20,0x00 - -, -/* @4023 (15x15,V)@ [suki software]*/ -0x00,0xfe,0x02,0x32,0xce,0x00,0xfe,0x22,0x22,0x22,0x22,0xff,0x02,0x00,0x00 - -, -0x00,0x3f,0x00,0x02,0x13,0x10,0x1f,0x11,0x11,0x11,0x11,0x1f,0x10,0x10,0x00 - -, -/* @4024 (15x15,V)@ [suki software]*/ -0x20,0x30,0xac,0x63,0x10,0x00,0xfe,0x22,0x22,0x22,0x22,0xff,0x02,0x00,0x00 - -, -0x09,0x1b,0x09,0x05,0x25,0x20,0x3f,0x22,0x22,0x22,0x22,0x3f,0x20,0x20,0x00 - -, -/* @4025 (15x15,V)@ [suki software]*/ -0x40,0x30,0xef,0x24,0x24,0x24,0x00,0x80,0x80,0xff,0x88,0x88,0x88,0x08,0x00 - -, -0x01,0x01,0x3f,0x11,0x09,0x01,0x00,0x3f,0x10,0x10,0x10,0x10,0x3f,0x00,0x00 - -, -/* @4026 (15x15,V)@ [suki software]*/ -0x80,0x88,0x84,0xfb,0xae,0xaa,0xaa,0xac,0xaa,0xab,0xfa,0x86,0x82,0x82,0x00 - -, -0x04,0x24,0x22,0x2a,0x19,0x0a,0x2d,0x3a,0x09,0x1c,0x29,0x2a,0x04,0x04,0x00 - -, -/* @4027 (15x15,V)@ [suki software]*/ -0xfe,0x02,0x02,0xfe,0x10,0x9e,0xd0,0xbf,0xb4,0xa0,0xff,0x94,0x92,0x1a,0x00 - -, -0x07,0x01,0x01,0x03,0x20,0x10,0x0f,0x0a,0x0a,0x3f,0x0a,0x2a,0x3f,0x00,0x00 - -, -/* @4028 (15x15,V)@ [suki software]*/ -0x02,0xf2,0x9e,0x72,0x9e,0xf2,0x84,0x64,0x1c,0x25,0xc6,0x3c,0x24,0x44,0x00 - -, -0x00,0x3f,0x12,0x12,0x12,0x1f,0x00,0x02,0x02,0x02,0x3f,0x02,0x02,0x02,0x00 - -, -/* @4029 (15x15,V)@ [suki software]*/ -0x40,0x40,0xc0,0x5f,0x55,0x55,0xd5,0x55,0x55,0x55,0x5f,0x40,0x40,0x40,0x00 - -, -0x10,0x10,0x1f,0x09,0x0b,0x0a,0x3f,0x24,0x21,0x17,0x09,0x15,0x23,0x20,0x00 - -, -/* @4030 (15x15,V)@ [suki software]*/ -0x00,0x40,0x5e,0x52,0x52,0xfe,0x12,0x12,0xfe,0x52,0x52,0x5f,0x42,0x00,0x00 - -, -0x04,0x05,0x05,0x05,0x05,0x3f,0x00,0x00,0x3f,0x05,0x05,0x05,0x05,0x00,0x00 - -, -/* @4031 (15x15,V)@ [suki software]*/ -0x04,0x04,0xf4,0x54,0x55,0x76,0x5c,0x54,0x7e,0x55,0x54,0xf4,0x06,0x04,0x00 - -, -0x04,0x04,0x05,0x05,0x0d,0x15,0x05,0x15,0x25,0x1f,0x05,0x05,0x04,0x04,0x00 - -, -/* @4032 (15x15,V)@ [suki software]*/ -0x20,0x21,0xe6,0x00,0x04,0xf4,0xd5,0xbe,0x94,0xbe,0xd5,0xf4,0x06,0x04,0x00 - -, -0x10,0x08,0x07,0x08,0x12,0x22,0x26,0x2a,0x22,0x2a,0x2f,0x22,0x22,0x22,0x00 - -, -/* @4033 (15x15,V)@ [suki software]*/ -0x00,0xfc,0x44,0x44,0xfc,0x20,0x10,0x0f,0xf8,0x48,0x48,0x48,0x4c,0x08,0x00 - -, -0x00,0x1f,0x08,0x08,0x0f,0x00,0x00,0x00,0x3f,0x02,0x02,0x02,0x02,0x02,0x00 - -, -/* @4034 (15x15,V)@ [suki software]*/ -0x00,0x08,0x08,0x88,0x68,0x9f,0x88,0x88,0x88,0x88,0x88,0xc8,0x8c,0x08,0x00 - -, -0x08,0x04,0x22,0x21,0x20,0x20,0x20,0x20,0x3f,0x20,0x20,0x20,0x30,0x20,0x00 - -, -/* @4035 (15x15,V)@ [suki software]*/ -0x40,0x20,0xf8,0x07,0x08,0x08,0xc8,0xb8,0x8f,0x88,0x88,0x88,0x8c,0x08,0x00 - -, -0x00,0x00,0x3f,0x04,0x02,0x21,0x20,0x20,0x20,0x3f,0x20,0x20,0x30,0x20,0x00 - -, -/* @4036 (15x15,V)@ [suki software]*/ -0x08,0xc8,0xff,0x28,0x48,0xa0,0x10,0x0c,0x0b,0xf8,0x48,0x48,0x4c,0x08,0x00 - -, -0x03,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x02,0x02,0x03,0x02,0x00 - -, -/* @4037 (15x15,V)@ [suki software]*/ -0x20,0x10,0xfc,0x03,0x90,0x90,0xff,0x90,0x20,0xf8,0x17,0x90,0x78,0x10,0x00 - -, -0x00,0x00,0x3f,0x00,0x1f,0x08,0x08,0x2f,0x10,0x09,0x06,0x09,0x10,0x20,0x00 - -, -/* @4038 (15x15,V)@ [suki software]*/ -0x40,0x20,0x10,0xfc,0x03,0x20,0x10,0x0c,0xfb,0x48,0x48,0x48,0x4c,0x08,0x00 - -, -0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x3f,0x04,0x04,0x04,0x06,0x04,0x00 - -, -/* @4039 (15x15,V)@ [suki software]*/ -0x80,0x40,0x20,0x1e,0x20,0x40,0xff,0x00,0x80,0x60,0x1e,0x20,0xc0,0x00,0x00 - -, -0x20,0x20,0x22,0x22,0x22,0x22,0x3f,0x22,0x22,0x22,0x22,0x22,0x20,0x20,0x00 - -, -/* @4040 (15x15,V)@ [suki software]*/ -0x00,0x00,0xfc,0x84,0x64,0x84,0x05,0xf6,0x04,0x84,0x64,0x84,0x04,0x00,0x00 - -, -0x20,0x1c,0x23,0x24,0x24,0x24,0x25,0x3f,0x25,0x24,0x24,0x24,0x31,0x20,0x00 - -, -}, - - -}; - -#ifdef __cplusplus -} -#endif /* extern "C" */ - - -#endif // end of CHIN_LIB_H definition - -//=========================================================================== -// End of file. -//=========================================================================== - diff --git a/Drivers/BSP/160160D/FONT5_7.C b/Drivers/BSP/160160D/FONT5_7.C deleted file mode 100644 index f0e12cd..0000000 --- a/Drivers/BSP/160160D/FONT5_7.C +++ /dev/null @@ -1,1181 +0,0 @@ -/**************************************************************************************** -* ļFONT5_7.C -* ܣ5*7 ASCII弰ʾ -* ߣܱ -* ڣ2004.02.26 -* עʹGUI_SetColor()ǰɫɫ -****************************************************************************************/ -#include "FONT_MACRO.H" -#define FONT5x7_EN 1 - -#define GUI_LCM_XMAX 160 -#define GUI_LCM_YMAX 160 - -typedef unsigned char INT8U; // ޷8λͱ // -typedef signed char INT8S; // з8λͱ // -typedef unsigned int INT16U; // ޷16λͱ // -typedef signed int INT16S; // з16λͱ // - -#if FONT5x7_EN==1 - -/* 5*7嶨 */ - unsigned char FONT5x7ASCII[][8] = { -/* ո */ - { - ________, - ________, - ________, - ________, - ________, - ________, - ________, - ________} - -/* ! */ - ,{ - X_______, - X_______, - X_______, - X_______, - X_______, - ________, - X_______, - ________} - - -/* " */ - ,{ - X_X_____, - X_X_____, - X_X_____, - ________, - ________, - ________, - ________, - ________} - -/* # */ - ,{ - _X_X____, - _X_X____, - XXXXX___, - _X_X____, - XXXXX___, - _X_X____, - _X_X____, - ________} - -/* $ */ - ,{ - __X_____, - _XXXX___, - X_X_____, - _XXX____, - __X_X___, - XXXX____, - __X_____} - -/* % */ - ,{ - XX______, - XX__X___, - ___X____, - __X_____, - _X______, - X__XX___, - ___XX___, - ________} - -/* & */ - ,{ - _XX_____, - X__X____, - X_X_____, - _X______, - X_X_X___, - X__X____, - _XX_X___, - ________} - -/* ' */ - ,{ - XX______, - _X______, - X_______, - ________, - ________, - ________, - ________, - ________} - -/* ( */ - ,{ - __X_____, - _X______, - X_______, - X_______, - X_______, - _X______, - __X_____, - ________} - -/* ) */ - ,{ - X_______, - _X______, - __X_____, - __X_____, - __X_____, - _X______, - X_______, - ________} - -/* * */ - ,{ - ________, - _X_X____, - __X_____, - XXXXX___, - __X_____, - _X_X____, - ________, - ________} - - ,{ - ________, - __X_____, - __X_____, - XXXXX___, - __X_____, - __X_____, - ________, - ________} - - ,{ - ________, - ________, - ________, - ________, - ________, - XX______, - _X______, - X_______} - - ,{ - ________, - ________, - ________, - XXXXX___, - ________, - ________, - ________, - ________} - - ,{ - ________, - ________, - ________, - ________, - ________, - XX______, - XX______, - ________} - - ,{ - ________, - ____X___, - ___X____, - __X_____, - _X______, - X_______, - ________, - ________} - -/* 0 */ - ,{ - _XXX____, - X___X___, - X__XX___, - X_X_X___, - XX__X___, - X___X___, - _XXX____, - ________} - -/* 1 */ - ,{ - __X_____, - _XX_____, - __X_____, - __X_____, - __X_____, - __X_____, - _XXX____, - ________} - -/* 2 */ - ,{ - _XXX____, - X___X___, - ____X___, - __XX____, - _X______, - X_______, - XXXXX___, - ________} - -/* 3 */ - ,{ - _XXX____, - X___X___, - ____X___, - __XX____, - ____X___, - X___X___, - _XXX____, - ________} - -/* 4 */ - ,{ - ___X____, - __XX____, - _X_X____, - X__X____, - XXXXX___, - ___X____, - ___X____, - ________} - -/* 5 */ - ,{ - XXXXX___, - X_______, - XXXX____, - ____X___, - ____X___, - X___X___, - _XXX____, - ________} - -/* 6 */ - ,{ - __XX____, - _X______, - X_______, - XXXX____, - X___X___, - X___X___, - _XXX____, - ________} - -/* 7 */ - ,{ - XXXXX___, - ____X___, - ___X____, - __X_____, - _X______, - _X______, - _X______, - ________} - -/* 8 */ - ,{ - _XXX____, - X___X___, - X___X___, - _XXX____, - X___X___, - X___X___, - _XXX____, - ________} - -/* 9 */ - ,{ - _XXX____, - X___X___, - X___X___, - _XXXX___, - ____X___, - ___X____, - _XX_____, - ________} - -/* ':' 3a */ - ,{ - ________, - XX______, - XX______, - ________, - XX______, - XX______, - ________, - ________} - -/* ';' 3b */ - ,{ - ________, - ________, - XX______, - XX______, - ________, - XX______, - _X______, - X_______} - - -/* '<' 3c */ - ,{ - ___X____, - __X_____, - _X______, - X_______, - _X______, - __X_____, - ___X____, - ________} - -/* '=' 3d */ - ,{ - ________, - ________, - XXXXX___, - ________, - XXXXX___, - ________, - ________, - ________} - -/* '>' */ - ,{ - X_______, - _X______, - __X_____, - ___X____, - __X_____, - _X______, - X_______, - ________} - -/* '?' */ - ,{ - _XXX____, - X___X___, - ____X___, - ___X____, - __X_____, - ________, - __X_____, - ________} - -/* @ */ - ,{ - _XXX____, - X___X___, - ____X___, - _XX_X___, - X_X_X___, - X_X_X___, - _XXX____, - ________} - -/* A */ - ,{ - _XXX____, - X___X___, - X___X___, - XXXXX___, - X___X___, - X___X___, - X___X___, - ________} - -/* B */ - ,{ - XXXX____, - X___X___, - X___X___, - XXXX____, - X___X___, - X___X___, - XXXX____, - ________} - -/* C */ - ,{ - _XXX____, - X___X___, - X_______, - X_______, - X_______, - X___X___, - _XXX____, - ________} - -/* D */ - ,{ - XXX_____, - X__X____, - X___X___, - X___X___, - X___X___, - X__X____, - XXX_____, - ________} - -/* E */ - ,{ - XXXXX___, - X_______, - X_______, - XXXX____, - X_______, - X_______, - XXXXX___, - ________} - -/* F */ - ,{ - XXXXX___, - X_______, - X_______, - XXXX____, - X_______, - X_______, - X_______, - ________} - -/* G */ - ,{ - _XXX____, - X___X___, - X_______, - X_______, - X__XX___, - X___X___, - _XXXX___, - ________} - -/* H */ - ,{ - X___X___, - X___X___, - X___X___, - XXXXX___, - X___X___, - X___X___, - X___X___, - ________} - -/* I */ - ,{ - XXX_____, - _X______, - _X______, - _X______, - _X______, - _X______, - XXX_____, - ________} - -/* J */ - ,{ - __XXX___, - ___X____, - ___X____, - ___X____, - ___X____, - X__X____, - _XX_____, - ________} - -/* K */ - ,{ - X___X___, - X__X____, - X_X_____, - XX______, - X_X_____, - X__X____, - X___X___, - ________} - -/* L */ - ,{ - X_______, - X_______, - X_______, - X_______, - X_______, - X_______, - XXXXX___, - ________} - -/* M */ - ,{ - X___X___, - XX_XX___, - X_X_X___, - X_X_X___, - X___X___, - X___X___, - X___X___, - ________} - -/* N */ - ,{ - X___X___, - X___X___, - XX__X___, - X_X_X___, - X__XX___, - X___X___, - X___X___, - ________} - -/* O */ - ,{ - _XXX____, - X___X___, - X___X___, - X___X___, - X___X___, - X___X___, - _XXX____, - ________} - -/* P */ - ,{ - XXXX____, - X___X___, - X___X___, - XXXX____, - X_______, - X_______, - X_______, - ________} - -/* Q */ - ,{ - _XXX____, - X___X___, - X___X___, - X___X___, - X_X_X___, - X__X____, - _XX_X___, - ________} - -/* R */ - ,{ - XXXX____, - X___X___, - X___X___, - XXXX____, - X_X_____, - X__X____, - X___X___, - ________} - -/* S */ - ,{ - _XXX____, - X___X___, - X_______, - _XXX____, - ____X___, - X___X___, - _XXX____, - ________} - -/* T */ - ,{ - XXXXX___, - __X_____, - __X_____, - __X_____, - __X_____, - __X_____, - __X_____, - ________} - -/* U */ - ,{ - X___X___, - X___X___, - X___X___, - X___X___, - X___X___, - X___X___, - _XXX____, - ________} - -/* V */ - ,{ - X___X___, - X___X___, - X___X___, - X___X___, - X___X___, - _X_X____, - __X_____, - ________} - -/* W */ - ,{ - X___X___, - X___X___, - X___X___, - X_X_X___, - X_X_X___, - X_X_X___, - _X_X____, - ________} - -/* X */ - ,{ - X___X___, - X___X___, - _X_X____, - __X_____, - _X_X____, - X___X___, - X___X___, - ________} - -/* Y */ - ,{ - X___X___, - X___X___, - _X_X____, - __X_____, - __X_____, - __X_____, - __X_____, - ________} - -/* Z */ - ,{ - XXXXX___, - ____X___, - ___X____, - __X_____, - _X______, - X_______, - XXXXX___, - ________} - -/* 5b */ - ,{ - XXX_____, - X_______, - X_______, - X_______, - X_______, - X_______, - XXX_____, - ________} - -/* 5c */ - ,{ - ________, - X_______, - _X______, - __X_____, - ___X____, - ____X___, - ________, - ________} - -/* 5d */ - ,{ - XXX_____, - __X_____, - __X_____, - __X_____, - __X_____, - __X_____, - XXX_____, - ________} - -/* 5e */ - ,{ - __X_____, - _X_X____, - X___X___, - ________, - ________, - ________, - ________, - ________} - -/* 5f */ - ,{ - ________, - ________, - ________, - ________, - ________, - ________, - ________, - XXXXX___} - -/* 60 */ - ,{ - X_______, - _X______, - __X_____, - ________, - ________, - ________, - ________, - ________} - -/* a */ - ,{ - ________, - ________, - _XXX____, - ____X___, - _XXXX___, - X___X___, - _XXXX___, - ________} - -/* b */ - ,{ - X_______, - X_______, - X_XX____, - XX__X___, - X___X___, - X___X___, - XXXX____, - ________} - -/* c */ - ,{ - ________, - ________, - _XX_____, - X__X____, - X_______, - X__X____, - _XX_____, - ________} - -/* d */ - ,{ - ____X___, - ____X___, - _XX_X___, - X__XX___, - X___X___, - X___X___, - _XXXX___, - ________} - -/* e */ - ,{ - ________, - ________, - _XXX____, - X___X___, - XXXXX___, - X_______, - _XXX____, - ________} - -/* f */ - ,{ - __X_____, - _X_X____, - _X______, - XXX_____, - _X______, - _X______, - _X______, - ________} - -/* g */ - ,{ - ________, - ________, - _XXXX___, - X___X___, - X___X___, - _XXXX___, - ____X___, - _XXX____} - -/* h */ - ,{ - X_______, - X_______, - X_XX____, - XX__X___, - X___X___, - X___X___, - X___X___, - ________} - -/* i */ - ,{ - _X______, - ________, - _X______, - _X______, - _X______, - _X______, - _X______, - ________} - -/* j */ - ,{ - __X_____, - ________, - _XX_____, - __X_____, - __X_____, - __X_____, - __X_____, - XX______} - -/* k */ - ,{ - X_______, - X_______, - X__X____, - X_X_____, - XX______, - X_X_____, - X__X____, - ________} - -/* l */ - ,{ - XX______, - _X______, - _X______, - _X______, - _X______, - _X______, - XXX_____, - ________} - -/* m */ - ,{ - ________, - ________, - XX_X____, - X_X_X___, - X_X_X___, - X___X___, - X___X___, - ________} - -/* n */ - ,{ - ________, - ________, - X_XX____, - XX_X____, - X__X____, - X__X____, - X__X____, - ________} - -/* o */ - ,{ - ________, - ________, - _XX_____, - X__X____, - X__X____, - X__X____, - _XX_____, - ________} - -/* p */ - ,{ - ________, - ________, - XXX_____, - X__X____, - X__X____, - XXX_____, - X_______, - X_______} - -/* q */ - ,{ - ________, - ________, - _XXX____, - X__X____, - X__X____, - _XXX____, - ___X____, - ___X____} - -/* r */ - ,{ - ________, - ________, - _X_X____, - _XX_____, - _X______, - _X______, - _X______, - ________} - -/* s */ - ,{ - ________, - ________, - _XXX____, - X_______, - _XX_____, - ___X____, - XXX_____, - ________} - -/* t */ - ,{ - _X______, - _X______, - XXX_____, - _X______, - _X______, - _X______, - _XX_____, - ________} - -/* u */ - ,{ - ________, - ________, - X__X____, - X__X____, - X__X____, - X__X____, - _XXX____, - ________} - -/* v */ - ,{ - ________, - ________, - X___X___, - X___X___, - X___X___, - _X_X____, - __X_____, - ________} - -/* w */ - ,{ - ________, - ________, - X___X___, - X___X___, - X_X_X___, - X_X_X___, - _X_X____, - ________} - -/* X */ - ,{ - ________, - ________, - X___X___, - _X_X____, - __X_____, - _X_X____, - X___X___, - ________} - -/* y */ - ,{ - ________, - ________, - X__X____, - X__X____, - X__X____, - _XXX____, - ___X____, - _XX_____} - -/* z */ - ,{ - ________, - ________, - XXXXX___, - ___X____, - __X_____, - _X______, - XXXXX___, - ________} - -/* 0x7b */ - ,{ - __X_____, - _X______, - _X______, - X_______, - _X______, - _X______, - __X_____, - ________} - -/* 0x7c */ - ,{ - _X______, - _X______, - _X______, - _X______, - _X______, - _X______, - _X______, - ________} - -/* 0x7d */ - ,{ - X_______, - _X______, - _X______, - __X_____, - _X______, - _X______, - X_______, - ________} - -/* 0x7e */ - ,{ - _XX_X___, - X__X____, - ________, - ________, - ________, - ________, - ________, - ________} - -/* 0x7f */ - ,{ - XXXXX___, - XXXXX___, - XXXXX___, - XXXXX___, - XXXXX___, - XXXXX___, - XXXXX___, - ________} - -}; -extern void DrawDots(INT8U x, INT8U y, INT8U color); //xyΪ д - -INT8U DCB_HEX_TAB[8] = {0x80, 0x40, 0x20, 0x10, 0x08, 0x04, 0x02, 0x01}; - -#define back_color 0 -#define disp_color 31 - -/**************************************************************************** -* ƣGUI_PutChar() -* ܣʾASCII룬ʾֵΪ20H-7FH(Ϊֵʾ' ') -* ڲ x ָʾλãx -* y ָʾλãy -* ch ҪʾASCIIֵ -* ڲֵΪ1ʱʾɹΪ0ʱʾʧܡ -* ˵ʧԭַָЧΧ(ʾʽΪ6*8) -****************************************************************************/ -unsigned char GUI_PutChar(unsigned int x, unsigned int y, unsigned char ch) -{ unsigned char font_dat; - unsigned char i, j; - - /* */ - if( x>=(GUI_LCM_XMAX-8) ) return(0); - if( y>=(GUI_LCM_YMAX-8) ) return(0); - if( (ch<0x20) || (ch>0x7f) ) ch = 0x20; - - ch -= 0x20; - for(i=0; i<8; i++) - { /* ȡ */ - font_dat = FONT5x7ASCII[ch][i]; - - for(j=0; j<6; j++) - { /* ӦĵΪcolorΪback_color */ - if( (font_dat&DCB_HEX_TAB[j])==0 ) DrawDots(x,y, back_color); - else DrawDots(x,y,disp_color); - x++; - } - - y++; // ָһ - x -= 6; // ָxֵ - } - - return(1); -} -/**************************************************************************** -* ƣGUI_PutHex() -* ܣʾHEX룬ʾֵΪ00H-FFH(Ϊֵʾ' ') -* ڲ x ָʾλãx -* y ָʾλãy -* v ҪʾHEX -*ڲ -****************************************************************************/ -extern void GUI_PutHex(unsigned char x, unsigned char y,unsigned char v) -{ - unsigned char i; - unsigned char HexData; -#define LEN 2 - for(i = 0; i < LEN; i++){ - HexData = v&0x0F; - v = v >>4; - if(HexData < 0x0A){ - GUI_PutChar(x+6*(LEN-1-i),y,HexData+'0'); - }else{ - GUI_PutChar(x+6*(LEN-1-i),y,HexData-0x0A+'A'); - } - } -} - - -/**************************************************************************** -* ƣGUI_PutString() -* ܣʾַ(ûԶй) -* ڲ x ָʾλãx -* y ָʾλãy -* str ҪʾASCIIַ -* ڲ -* ˵ʧԭַָЧΧ -****************************************************************************/ -void GUI_PutString(unsigned int x, unsigned int y, char *str) -{ while(1) - { if( (*str)=='\0' ) break; - if( GUI_PutChar(x, y, *str++)==0 ) break; - x += 6; // һַʾλãy() - } -} - - -/**************************************************************************** -* ƣGUI_PutNoStr() -* ܣʾַ(ûԶй)ʾֱַָ˳ -* ڲ x ָʾλãx -* y ָʾλãy -* str ҪʾASCIIַ -* no ʾַĸ -* ڲ -* ˵ʧԭַָЧΧ -****************************************************************************/ -void GUI_PutNoStr(unsigned int x, unsigned int y, char *str, unsigned char no) -{ if(no==0) return; - for(; no>0; no--) - { if( (*str)=='\0' ) break; - if( GUI_PutChar(x, y, *str++)==0 ) break; - x += 6; // һַʾλãy() - } -} - -#endif diff --git a/Drivers/BSP/160160D/FONT5_7.H b/Drivers/BSP/160160D/FONT5_7.H deleted file mode 100644 index 5b15f72..0000000 --- a/Drivers/BSP/160160D/FONT5_7.H +++ /dev/null @@ -1,57 +0,0 @@ -/**************************************************************************************** -* ļFONT5_7.H -* ܣ5*7 ASCIIʾ(ͷļ) -* ߣܱ -* ڣ2004.02.26 -* עʹGUI_SetColor()ǰɫɫ -****************************************************************************************/ -#ifndef FONT5_7_H -#define FONT5_7_H - - -/**************************************************************************** -* ƣGUI_PutChar() -* ܣʾASCII룬ʾֵΪ20H-7FH(Ϊֵʾ' ') -* ڲ x ָʾλãx -* y ָʾλãy -* ch ҪʾASCIIֵ -* ڲֵΪ1ʱʾɹΪ0ʱʾʧܡ -* ˵ʧԭַָЧΧ -****************************************************************************/ -extern unsigned char GUI_PutChar(unsigned int x, unsigned int y, unsigned char ch); - - -/**************************************************************************** -* ƣGUI_PutString() -* ܣʾַ(ûԶй) -* ڲ x ָʾλãx -* y ָʾλãy -* str ҪʾASCIIַ -* ڲ -* ˵ʧԭַָЧΧ -****************************************************************************/ -extern void GUI_PutString(unsigned int x, unsigned int y, char *str); - - -/**************************************************************************** -* ƣGUI_PutNoStr() -* ܣʾַ(ûԶй)ʾֱַָ˳ -* ڲ x ָʾλãx -* y ָʾλãy -* str ҪʾASCIIַ -* no ʾַĸ -* ڲ -* ˵ʧԭַָЧΧ -****************************************************************************/ -extern void GUI_PutNoStr(unsigned int x, unsigned int y, char *str, unsigned char no); - -/**************************************************************************** -* ƣGUI_PutHex() -* ܣʾHEX룬ʾֵΪ00H-FFH(Ϊֵʾ' ') -* ڲ x ָʾλãx -* y ָʾλãy -* v ҪʾHEX -*ڲ -****************************************************************************/ -extern void GUI_PutHex(unsigned char x, unsigned char y,unsigned char v); -#endif \ No newline at end of file diff --git a/Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f103xb.h b/Drivers/BSP/CMSIS/Device/ST/STM32F1xx/Include/stm32f103xb.h similarity index 100% rename from Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f103xb.h rename to Drivers/BSP/CMSIS/Device/ST/STM32F1xx/Include/stm32f103xb.h diff --git a/Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f103xe.h b/Drivers/BSP/CMSIS/Device/ST/STM32F1xx/Include/stm32f103xe.h similarity index 100% rename from Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f103xe.h rename to Drivers/BSP/CMSIS/Device/ST/STM32F1xx/Include/stm32f103xe.h diff --git a/Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f1xx.h b/Drivers/BSP/CMSIS/Device/ST/STM32F1xx/Include/stm32f1xx.h similarity index 100% rename from Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f1xx.h rename to Drivers/BSP/CMSIS/Device/ST/STM32F1xx/Include/stm32f1xx.h diff --git a/Drivers/CMSIS/Device/ST/STM32F1xx/Include/system_stm32f1xx.h b/Drivers/BSP/CMSIS/Device/ST/STM32F1xx/Include/system_stm32f1xx.h similarity index 100% rename from Drivers/CMSIS/Device/ST/STM32F1xx/Include/system_stm32f1xx.h rename to Drivers/BSP/CMSIS/Device/ST/STM32F1xx/Include/system_stm32f1xx.h diff --git a/Drivers/CMSIS/Device/ST/STM32F1xx/Source/Templates/arm/startup_stm32f103xb.s b/Drivers/BSP/CMSIS/Device/ST/STM32F1xx/Source/Templates/arm/startup_stm32f103xb.s similarity index 100% rename from Drivers/CMSIS/Device/ST/STM32F1xx/Source/Templates/arm/startup_stm32f103xb.s rename to Drivers/BSP/CMSIS/Device/ST/STM32F1xx/Source/Templates/arm/startup_stm32f103xb.s diff --git a/Drivers/CMSIS/Device/ST/STM32F1xx/Source/Templates/arm/startup_stm32f103xe.s b/Drivers/BSP/CMSIS/Device/ST/STM32F1xx/Source/Templates/arm/startup_stm32f103xe.s similarity index 100% rename from Drivers/CMSIS/Device/ST/STM32F1xx/Source/Templates/arm/startup_stm32f103xe.s rename to Drivers/BSP/CMSIS/Device/ST/STM32F1xx/Source/Templates/arm/startup_stm32f103xe.s diff --git a/Drivers/CMSIS/Device/ST/STM32F1xx/Source/Templates/system_stm32f1xx.c b/Drivers/BSP/CMSIS/Device/ST/STM32F1xx/Source/Templates/system_stm32f1xx.c similarity index 100% rename from Drivers/CMSIS/Device/ST/STM32F1xx/Source/Templates/system_stm32f1xx.c rename to Drivers/BSP/CMSIS/Device/ST/STM32F1xx/Source/Templates/system_stm32f1xx.c diff --git a/Drivers/CMSIS/Include/cmsis_armcc.h b/Drivers/BSP/CMSIS/Include/cmsis_armcc.h similarity index 100% rename from Drivers/CMSIS/Include/cmsis_armcc.h rename to Drivers/BSP/CMSIS/Include/cmsis_armcc.h diff --git a/Drivers/CMSIS/Include/cmsis_armclang.h b/Drivers/BSP/CMSIS/Include/cmsis_armclang.h similarity index 100% rename from Drivers/CMSIS/Include/cmsis_armclang.h rename to Drivers/BSP/CMSIS/Include/cmsis_armclang.h diff --git a/Drivers/CMSIS/Include/cmsis_compiler.h b/Drivers/BSP/CMSIS/Include/cmsis_compiler.h similarity index 100% rename from Drivers/CMSIS/Include/cmsis_compiler.h rename to Drivers/BSP/CMSIS/Include/cmsis_compiler.h diff --git a/Drivers/CMSIS/Include/cmsis_version.h b/Drivers/BSP/CMSIS/Include/cmsis_version.h similarity index 100% rename from Drivers/CMSIS/Include/cmsis_version.h rename to Drivers/BSP/CMSIS/Include/cmsis_version.h diff --git a/Drivers/CMSIS/Include/core_cm3.h b/Drivers/BSP/CMSIS/Include/core_cm3.h similarity index 100% rename from Drivers/CMSIS/Include/core_cm3.h rename to Drivers/BSP/CMSIS/Include/core_cm3.h diff --git a/Drivers/CMSIS/Include/core_cm7.h b/Drivers/BSP/CMSIS/Include/core_cm7.h similarity index 100% rename from Drivers/CMSIS/Include/core_cm7.h rename to Drivers/BSP/CMSIS/Include/core_cm7.h diff --git a/Drivers/CMSIS/Include/mpu_armv7.h b/Drivers/BSP/CMSIS/Include/mpu_armv7.h similarity index 100% rename from Drivers/CMSIS/Include/mpu_armv7.h rename to Drivers/BSP/CMSIS/Include/mpu_armv7.h diff --git a/Drivers/BSP/KEY/key.c b/Drivers/BSP/KEY/key.c index 0c0185f..befb7c9 100644 --- a/Drivers/BSP/KEY/key.c +++ b/Drivers/BSP/KEY/key.c @@ -1,63 +1,82 @@ -/** - ****************************************************************************** - * @文件 key.c - * @作者 阜阳师范大学物电学院 - * @版本 V0.1 - * @日期 2026-01-15 - * @简介 按键驱动 - 基于 MultiButton 的高可移植性实现 - * @说明 - * - **** - */ - +/****************************************************************************** + * @file key.c + * @brief 按键驱动模块 - 基于 MultiButton 库的高可移植性实现 + * @details 本文件实现了基于 MultiButton 库的按键驱动功能,支持多按键配置、 + * 按键状态检测、按键事件回调等功能。采用配置表方式管理按键, + * 便于扩展和维护。支持单次点击事件检测。 + * @author 阜阳师范大学物电学院 + * @version V0.1 + * @date 2026.1.19 + * @note 依赖库: MultiButton + * 支持按键: ENTER, UP, DOWN, LEFT, RIGHT, ESC, ADD, DEC, RESET + * 按键模式: 输入模式,无上拉/下拉 + * 特殊处理: PB3 需要禁用 JTAG 才能作为普通 GPIO 使用 + ******************************************************************************/ + #include "key.h" #include "160160D.h" -// 按键配置结构体 +/* ============================================================================ + * 按键配置结构体定义 + * ============================================================================ */ +/** + * @brief 按键配置结构体 + * @details 用于存储每个按键的硬件配置信息,包括 GPIO 端口、引脚和按键类型 + */ typedef struct { - uint16_t pin; // GPIO引脚 - GPIO_TypeDef* port; // GPIO端口 - KEY_TYPE key_type; // 按键ID + uint16_t pin; /**< GPIO 引脚编号(如 GPIO_PIN_12) */ + GPIO_TypeDef* port; /**< GPIO 端口(如 GPIOD) */ + KEY_TYPE key_type; /**< 按键类型标识(如 KEY_ENTER) */ } KeyConfig_t; -/* -*******************详细引脚映射***************************** -| 按键名称 | 端口 | 引脚 | 位定义 | 功能说明 | -|---------|------|------|--------|----------| -| KEY_ENTER | GPIOB | PB15 | KEY_ENTER_BIT | 确认键 | -| KEY_UP | GPIOD | PD11 | KEY_UP_BIT | 上键 | -| KEY_DOWN | GPIOD | PD10 | KET_DOWN_BIT | 下键 | -| KEY_LEFT | GPIOD | PD13 | KET_LEFT_BIT | 左键 | -| KEY_RIGHT | GPIOD | PD8 | KET_RIGHT_BIT | 右键 | -| KEY_ESC | GPIOD | PD12 | KET_ESC_BIT | 取消键 | -| KEY_ADD | GPIOD | PD14 | KET_ADD_BIT | 加键 | -| KEY_DEC | GPIOD | PD9 | KET_DEC_BIT | 减键 | -| KEY_RESET | GPIOD | PD15 | KET_RESET_BIT | 复位键 | -*************************************************************** -*/ -// 按键配置表 +/* ============================================================================ + * 按键硬件引脚映射表 + * ============================================================================ */ +/** + * @brief 按键硬件引脚映射表 + * @details 详细引脚映射关系如下: + * | 按键名称 | 端口 | 引脚 | 按键类型 | 功能说明 | + * |---------|------|------|----------|----------| + * | KEY_ENTER | GPIOD | PD12 | KEY_ENTER | 确认键 | + * | KEY_UP | GPIOD | PD11 | KEY_UP | 上键 | + * | KEY_DOWN | GPIOD | PD10 | KEY_DOWN | 下键 | + * | KEY_LEFT | GPIOD | PD13 | KEY_LEFT | 左键 | + * | KEY_RIGHT | GPIOD | PD8 | KEY_RIGHT | 右键 | + * | KEY_ESC | GPIOB | PB15 | KEY_ESC | 取消键 | + * | KEY_ADD | GPIOB | PB3 | KEY_ADD | 加键(需禁用 JTAG) | + * | KEY_RESET | GPIOD | PD15 | KEY_RESET | 复位键 | + * @note PB3 引脚默认被 JTAG 占用,需要禁用 JTAG 才能作为普通 GPIO 使用 + */ static const KeyConfig_t key_configs[] = { - {GPIO_PIN_12, GPIOD, KEY_ENTER}, - {GPIO_PIN_11, GPIOD, KEY_UP}, - {GPIO_PIN_10, GPIOD, KEY_DOWN}, - {GPIO_PIN_13, GPIOD, KEY_LEFT}, - {GPIO_PIN_8, GPIOD, KEY_RIGHT}, - {GPIO_PIN_15, GPIOB, KEY_ESC}, - {GPIO_PIN_3, GPIOB, KEY_ADD}, - {GPIO_PIN_15, GPIOD, KEY_RESET}, + {GPIO_PIN_12, GPIOD, KEY_ENTER}, /**< 确认键:PD12 */ + {GPIO_PIN_11, GPIOD, KEY_UP}, /**< 上键:PD11 */ + {GPIO_PIN_10, GPIOD, KEY_DOWN}, /**< 下键:PD10 */ + {GPIO_PIN_13, GPIOD, KEY_LEFT}, /**< 左键:PD13 */ + {GPIO_PIN_8, GPIOD, KEY_RIGHT}, /**< 右键:PD8 */ + {GPIO_PIN_15, GPIOB, KEY_ESC}, /**< 取消键:PB15 */ + {GPIO_PIN_3, GPIOB, KEY_ADD}, /**< 加键:PB3(需禁用 JTAG) */ + {GPIO_PIN_15, GPIOD, KEY_RESET}, /**< 复位键:PD15 */ }; -#define KEY_COUNT (sizeof(key_configs) / sizeof(key_configs[0])) -// 按键句柄数组 -static Button btn_handles[KEY_COUNT]; -// 业务逻辑回调函数指针(由main.c注册) -static KeyCallback key_callback = NULL; +#define KEY_COUNT (sizeof(key_configs) / sizeof(key_configs[0])) /**< 按键总数 */ +/* ============================================================================ + * 全局变量定义 + * ============================================================================ */ +static Button btn_handles[KEY_COUNT]; /**< MultiButton 按键句柄数组 */ +static KeyCallback key_callback = NULL; /**< 业务逻辑层注册的回调函数指针 */ + +/* ============================================================================ + * 内部函数实现 + * ============================================================================ */ /** - * @brief 读取按键GPIO电平 - * @param button_id 按键ID - * @retval 0:按下, 1:释放 + * @brief 读取按键 GPIO 电平状态 + * @param button_id 按键 ID(对应 key_configs 数组索引,0 到 KEY_COUNT-1) + * @note 该函数由 MultiButton 库调用,用于读取按键的硬件状态 + * 返回值:0 表示按下(低电平),1 表示释放(高电平) + * @retval 0: 按键按下(低电平) + * @retval 1: 按键释放(高电平) */ static uint8_t button_read_level(uint8_t button_id) { @@ -66,82 +85,117 @@ static uint8_t button_read_level(uint8_t button_id) } /** - * @brief 统一的按键回调函数(内部使用,调用业务逻辑回调) -* @param btn 按键句柄指针 + * @brief 统一的按键事件回调函数(内部使用) + * @param btn MultiButton 库的按键句柄指针 + * @note 当 MultiButton 库检测到按键事件时,会调用此函数 + * 此函数将按键事件转换为业务逻辑层的按键类型,并调用注册的回调函数 + * 处理流程: + * 1. 检查按键句柄和回调函数是否有效 + * 2. 从按键句柄中获取 button_id + * 3. 通过 button_id 查找对应的按键类型 + * 4. 调用业务逻辑层注册的回调函数 + * @retval 无 */ static void button_callback(Button* btn) { if (btn != NULL && key_callback != NULL) { - // 通过button_id获取对应的按键类型 + /* 通过 button_id 获取对应的按键类型 */ uint8_t button_id = btn->button_id; if (button_id < KEY_COUNT) { - // 调用业务逻辑层注册的回调函数 + /* 调用业务逻辑层注册的回调函数 */ key_callback(key_configs[button_id].key_type); } } } + /** - * @brief 注册按键回调函数(供业务逻辑层调用) - * @param callback 回调函数指针 + * @brief 使能指定 GPIO 端口的时钟 + * @param port GPIO 端口指针(如 GPIOA, GPIOB, GPIOD 等) + * @note 使用 switch-case 结构实现,代码简洁清晰 + * 支持所有 GPIO 端口(A-G) + * 在初始化 GPIO 之前必须使能对应的时钟 + * @retval 无 + */ +static void KEY_GPIO_ClockEnable(GPIO_TypeDef *port) +{ + switch ((uint32_t)port) { + case (uint32_t)GPIOA: __HAL_RCC_GPIOA_CLK_ENABLE(); break; /**< 使能 GPIOA 时钟 */ + case (uint32_t)GPIOB: __HAL_RCC_GPIOB_CLK_ENABLE(); break; /**< 使能 GPIOB 时钟 */ + case (uint32_t)GPIOC: __HAL_RCC_GPIOC_CLK_ENABLE(); break; /**< 使能 GPIOC 时钟 */ + case (uint32_t)GPIOD: __HAL_RCC_GPIOD_CLK_ENABLE(); break; /**< 使能 GPIOD 时钟 */ + case (uint32_t)GPIOE: __HAL_RCC_GPIOE_CLK_ENABLE(); break; /**< 使能 GPIOE 时钟 */ + case (uint32_t)GPIOF: __HAL_RCC_GPIOF_CLK_ENABLE(); break; /**< 使能 GPIOF 时钟 */ + case (uint32_t)GPIOG: __HAL_RCC_GPIOG_CLK_ENABLE(); break; /**< 使能 GPIOG 时钟 */ + default: break; + } +} + +/* ============================================================================ + * 外部接口函数实现 + * ============================================================================ */ + +/** + * @brief 按键硬件初始化函数 + * @note 初始化流程: + * 1. 使能 AFIO 时钟(修改 AFIO 寄存器前必须) + * 2. 禁用 JTAG,保留 SWD(释放 PA15、PB3、PB4 作为普通 GPIO) + * 3. 遍历按键配置表,对每个按键进行初始化: + * a. 使能对应 GPIO 端口时钟 + * b. 配置 GPIO 为输入模式,无上拉/下拉,高速模式 + * c. 初始化 MultiButton 按键句柄 + * d. 绑定单次点击事件到回调函数 + * e. 启动按键检测 + * @note 特殊处理:由于使用了 PB3 引脚,需要禁用 JTAG 功能 + * JTAG 禁用后,PA13、PA14 仍可用于 SWD 调试 + * @retval 无 + */ +void Key_Init(void) +{ + /* ========== AFIO 和 JTAG 配置 ========== */ + __HAL_RCC_AFIO_CLK_ENABLE(); /**< 使能 AFIO 时钟(修改 AFIO 寄存器前必须) */ + + /* 禁用 JTAG,保留 SWD(PA13、PA14 仍可用于调试) */ + /* 这会释放 PA15、PB3、PB4 作为普通 GPIO */ + __HAL_AFIO_REMAP_SWJ_NOJTAG(); + + /* ========== GPIO 和按键初始化 ========== */ + GPIO_InitTypeDef gpio_init_struct = {0}; + + /* 批量初始化所有按键 */ + for (uint8_t button_id = 0; button_id < KEY_COUNT; button_id++) + { + /* 使能对应 GPIO 端口时钟 */ + KEY_GPIO_ClockEnable(key_configs[button_id].port); + + /* 配置 GPIO 为输入模式 */ + gpio_init_struct.Pin = key_configs[button_id].pin; + gpio_init_struct.Mode = GPIO_MODE_INPUT; /**< 输入模式 */ + gpio_init_struct.Pull = GPIO_NOPULL; /**< 无上拉/下拉(外部电路处理) */ + gpio_init_struct.Speed = GPIO_SPEED_HIGH; /**< 高速模式,提高响应速度 */ + HAL_GPIO_Init(key_configs[button_id].port, &gpio_init_struct); + + /* 初始化 MultiButton 按键句柄 */ + button_init(&btn_handles[button_id], button_read_level, 0, button_id); + + /* 绑定单次点击事件到回调函数 */ + button_attach(&btn_handles[button_id], BTN_SINGLE_CLICK, button_callback); + + /* 启动按键检测 */ + button_start(&btn_handles[button_id]); + } +} + +/** + * @brief 注册按键回调函数(供业务逻辑层调用) + * @param callback 按键回调函数指针,当检测到按键事件时会调用此函数 + * @note 业务逻辑层通过此函数注册按键处理回调 + * 回调函数参数为 KEY_TYPE 类型,表示被按下的按键类型 + * 如果传入 NULL,则取消已注册的回调函数 + * @retval 无 */ void Key_RegisterCallback(KeyCallback callback) { key_callback = callback; } -/** - * @brief 使能GPIO时钟 - * @param port: GPIO端口 - * @retval 无 - * @note 使用switch-case结构,代码更简洁清晰,支持所有GPIO端口(A-G) - */ -static void KEY_GPIO_ClockEnable(GPIO_TypeDef *port) -{ - switch ((uint32_t)port) { - case (uint32_t)GPIOA: __HAL_RCC_GPIOA_CLK_ENABLE(); break; - case (uint32_t)GPIOB: __HAL_RCC_GPIOB_CLK_ENABLE(); break; - case (uint32_t)GPIOC: __HAL_RCC_GPIOC_CLK_ENABLE(); break; - case (uint32_t)GPIOD: __HAL_RCC_GPIOD_CLK_ENABLE(); break; - case (uint32_t)GPIOE: __HAL_RCC_GPIOE_CLK_ENABLE(); break; - case (uint32_t)GPIOF: __HAL_RCC_GPIOF_CLK_ENABLE(); break; - case (uint32_t)GPIOG: __HAL_RCC_GPIOG_CLK_ENABLE(); break; - default: break; - } -} -/************************************************************************************** -* FunctionName : Key_Init() -* Description : 按键硬件初始化(使用MultiButton库) -* EntryParameter : none -* ReturnValue : none -**************************************************************************************/ -void Key_Init(void) -{ - /*由于使用了 PB3 才需要特殊加的*/ - __HAL_RCC_AFIO_CLK_ENABLE(); // AFIO时钟(修改AFIO寄存器前必须) - - /* 禁用JTAG,保留SWD(PA13、PA14仍可用于调试)*/ - /* 这会释放 PA15、PB3、PB4 作为普通GPIO */ - __HAL_AFIO_REMAP_SWJ_NOJTAG(); - - - GPIO_InitTypeDef gpio_init_struct = {0}; - // 批量初始化GPIO - for (uint8_t button_id = 0; button_id < KEY_COUNT; button_id++) - { - /* 使能对应GPIO时钟 */ - KEY_GPIO_ClockEnable(key_configs[button_id].port); - - // 配置并初始化引脚 - gpio_init_struct.Pin = key_configs[button_id].pin; - gpio_init_struct.Mode = GPIO_MODE_INPUT; - gpio_init_struct.Pull = GPIO_NOPULL; - gpio_init_struct.Speed = GPIO_SPEED_HIGH; - HAL_GPIO_Init(key_configs[button_id].port, &gpio_init_struct); - - button_init(&btn_handles[button_id], button_read_level, 0, button_id); - button_attach(&btn_handles[button_id], BTN_SINGLE_CLICK, button_callback); - button_start(&btn_handles[button_id]); - } -} - diff --git a/Drivers/BSP/KEY/key.h b/Drivers/BSP/KEY/key.h index 6ae3768..aae80f1 100644 --- a/Drivers/BSP/KEY/key.h +++ b/Drivers/BSP/KEY/key.h @@ -1,35 +1,86 @@ +/****************************************************************************** + * @file key.h + * @brief 按键驱动模块头文件 + * @details 本文件定义了按键驱动的接口和数据结构,包括按键类型枚举、 + * 按键回调函数类型定义以及外部接口函数声明。 + * @author 阜阳师范大学物电学院 + * @version V0.1 + * @date 2026.1.19 + * @note 依赖库: MultiButton + * 使用方式: + * 1. 调用 Key_Init() 初始化按键硬件 + * 2. 调用 Key_RegisterCallback() 注册按键回调函数 + * 3. 在定时器中调用 Button_Ticks() 进行按键扫描 + ******************************************************************************/ + #ifndef __KEY_H__ #define __KEY_H__ - - #include "./SYSTEM/sys/sys.h" #include "MultiButton.h" +/* ============================================================================ + * 按键类型枚举定义 + * ============================================================================ */ +/** + * @brief 按键类型枚举 + * @details 定义了系统中所有支持的按键类型 + */ typedef enum { - KEY_NONE = 0, // 没有按键 - - KEY_ENTER, // 确认 - KEY_UP, // 向上 - KEY_DOWN, // 向下 - KEY_ESC, //取消 - KEY_ADD, //加 - KEY_DEC, //减 - KEY_LEFT, //左 - KEY_RIGHT, //右 - KEY_RESET, //复位 - KEY_FACTORY, //工厂 + KEY_NONE = 0, /**< 无按键按下 */ + KEY_ENTER, /**< 确认键 */ + KEY_UP, /**< 向上键 */ + KEY_DOWN, /**< 向下键 */ + KEY_ESC, /**< 取消键 */ + KEY_ADD, /**< 加键 */ + KEY_DEC, /**< 减键 */ + KEY_LEFT, /**< 向左键 */ + KEY_RIGHT, /**< 向右键 */ + KEY_RESET, /**< 复位键 */ + KEY_FACTORY, /**< 工厂模式键 */ } KEY_TYPE; -// 按键回调函数类型定义(业务逻辑层使用) -// 参数: key_type - 按键类型 +/* ============================================================================ + * 回调函数类型定义 + * ============================================================================ */ +/** + * @brief 按键回调函数类型定义 + * @param key_type 按键类型(KEY_TYPE 枚举值) + * @note 业务逻辑层需要实现此类型的回调函数,用于处理按键事件 + * 当检测到按键按下时,会调用注册的回调函数 + * @retval 无 + */ typedef void (*KeyCallback)(KEY_TYPE key_type); +/* ============================================================================ + * 外部接口函数声明 + * ============================================================================ */ +/** + * @brief 按键硬件初始化函数 + * @note 初始化所有按键的 GPIO 配置和 MultiButton 库 + * 特殊处理:禁用 JTAG 以释放 PB3 等引脚 + * 必须在系统初始化时调用一次 + * @retval 无 + */ +void Key_Init(void); -// 按键驱动函数(在key.c中实现,使用MultiButton库) -void Key_Init(void); // 按键初始化 -void Key_RegisterCallback(KeyCallback callback); // 注册按键回调函数(业务逻辑层调用) -#define Button_Ticks() button_ticks() -#endif +/** + * @brief 注册按键回调函数(供业务逻辑层调用) + * @param callback 按键回调函数指针,当检测到按键事件时会调用此函数 + * @note 业务逻辑层通过此函数注册按键处理回调 + * 如果传入 NULL,则取消已注册的回调函数 + * @retval 无 + */ +void Key_RegisterCallback(KeyCallback callback); + +/** + * @brief MultiButton 库的按键扫描函数宏定义 + * @note 需要在定时器中周期性调用此函数(建议 5-10ms 调用一次) + * 用于 MultiButton 库进行按键状态扫描和事件检测 + * @retval 无 + */ +#define Button_Ticks() button_ticks() + +#endif /* __KEY_H__ */ diff --git a/Drivers/BSP/RS485/rs485.c b/Drivers/BSP/RS485/rs485.c index 3ca7801..0c13331 100644 --- a/Drivers/BSP/RS485/rs485.c +++ b/Drivers/BSP/RS485/rs485.c @@ -1,127 +1,134 @@ /****************************************************************************** * @file rs485.c - * @brief rs485串口配置,主要配置两种模式 中断接收模式 和 DMA 接收模式 - * @details - * 1. DMA模式是主要工作模式 - * 2. 中断模式用于错误恢复和接收第一个短帧 - * 3. 中断处理完后自动切换回DMA模式 - * 4. 中断接收主要用于异常情况处理 + * @brief RS485 串口驱动 - DMA 与中断接收 + * @details 本文件实现 RS485 串口通信驱动,支持两种模式: + * 1. DMA 模式:主工作模式,使用 ReceiveToIdle 接收不定长帧 + * 2. 中断模式:用于错误恢复或短帧接收,RXNE 逐字节接收 + * 收发通过 DE 引脚(PA1)切换:低电平发送,高电平接收。 * @author 阜阳师范大学物电学院 * @version V0.01 * @date 2026.1.24 - * @note 通信协议:Modbus RTU - * 通信接口:RS485 - * 主站地址:0x01 + * @note USART2,TX=PA2,RX=PA3,DE=PA1;波特率 700000 ******************************************************************************/ #include "rs485.h" +/* ============================================================================ + * USART 与引脚宏定义 + * ============================================================================ */ #define RS485_UX USART2 #define RS485_UX_IRQn USART2_IRQn #define RS485_UX_IRQHandler USART2_IRQHandler -#define RS485_UX_CLK_ENABLE() do{ __HAL_RCC_USART2_CLK_ENABLE(); }while(0) /* 时钟使能 */ +#define RS485_UX_CLK_ENABLE() do{ __HAL_RCC_USART2_CLK_ENABLE(); }while(0) /**< USART2 时钟使能 */ -#define RS485_SEND_ENABLE() do{HAL_GPIO_WritePin(GPIOA, GPIO_PIN_1, GPIO_PIN_RESET);}while(0) -#define RS485_RECEIVE_ENABLE() do{HAL_GPIO_WritePin(GPIOA, GPIO_PIN_1, GPIO_PIN_SET);}while(0) +#define RS485_SEND_ENABLE() do{HAL_GPIO_WritePin(GPIOA, GPIO_PIN_1, GPIO_PIN_RESET);}while(0) /**< DE 低:发送 */ +#define RS485_RECEIVE_ENABLE() do{HAL_GPIO_WritePin(GPIOA, GPIO_PIN_1, GPIO_PIN_SET);}while(0) /**< DE 高:接收 */ #define RS485_ENABLE_GPIO_PORT GPIOA #define RS485_ENABLE_GPIO_PIN GPIO_PIN_1 -#define RS485_ENABLE_GPIO_CLK_ENABLE() do{ __HAL_RCC_GPIOA_CLK_ENABLE(); }while(0) /* PA口时钟使能 */ +#define RS485_ENABLE_GPIO_CLK_ENABLE() do{ __HAL_RCC_GPIOA_CLK_ENABLE(); }while(0) #define RS485_TX_GPIO_PORT GPIOA #define RS485_TX_GPIO_PIN GPIO_PIN_2 -#define RS485_TX_GPIO_CLK_ENABLE() do{ __HAL_RCC_GPIOA_CLK_ENABLE(); }while(0) /* PA口时钟使能 */ +#define RS485_TX_GPIO_CLK_ENABLE() do{ __HAL_RCC_GPIOA_CLK_ENABLE(); }while(0) #define RS485_RX_GPIO_PORT GPIOA #define RS485_RX_GPIO_PIN GPIO_PIN_3 -#define RS485_RX_GPIO_CLK_ENABLE() do{ __HAL_RCC_GPIOA_CLK_ENABLE(); }while(0) /* PA口时钟使能 */ +#define RS485_RX_GPIO_CLK_ENABLE() do{ __HAL_RCC_GPIOA_CLK_ENABLE(); }while(0) -RS485_REGISTER_TYPE RS485REG = {RESET, {0}, {0}}; /* 零初始化定义 */ +#define BAUDRATE (700000) /**< 波特率 */ -// HAL库UART句柄 -UART_HandleTypeDef rs485_handle; /* UART句柄 */ -// HAL库DMA句柄(接收) -DMA_HandleTypeDef hdma_rs485_rx; -// HAL库DMA句柄(发送) -DMA_HandleTypeDef hdma_rs485_tx; +/* ============================================================================ + * 全局变量定义 + * ============================================================================ */ +RS485_REGISTER_TYPE RS485REG = {RESET, {0}, {0}}; /**< RS485 收发寄存器,零初始化 */ +UART_HandleTypeDef rs485_handle; /**< HAL UART 句柄 */ +DMA_HandleTypeDef hdma_rs485_rx; /**< HAL DMA 接收句柄(DMA1 Channel6) */ +DMA_HandleTypeDef hdma_rs485_tx; /**< HAL DMA 发送句柄(未使用,保留) */ -#define BAUDRATE (700000) +/* ============================================================================ + * 初始化函数 + * ============================================================================ */ /** - * @brief 串口X初始化函数 - * @param baudrate: 波特率, 根据自己需要设置波特率值 - * @note 注意: 必须设置正确的时钟源, 否则串口波特率就会设置异常. - * 这里的USART的时钟源在sys_stm32_clock_init()函数中已经设置过了. - * @retval 无 + * @brief RS485 初始化(DMA 接收模式) + * @note 配置流程: + * 1. 使能 GPIO、USART 时钟 + * 2. 配置 TX(PA2)、RX(PA3)、DE(PA1) + * 3. 配置 DMA1 Channel6 接收,关联 UART + * 4. 使能 DMA、USART 中断 + * 5. 初始化 UART(8N1,无流控,波特率 BAUDRATE) + * 6. 切换为接收,启动 ReceiveToIdle DMA + * USART 时钟源需在 sys_stm32_clock_init 中已配置。 + * @retval 无 */ -void RS485_DMA_init() +void RS485_DMA_init(void) { - /* 开启时钟 */ - RS485_TX_GPIO_CLK_ENABLE(); /* 使能串口TX脚时钟 */ - RS485_RX_GPIO_CLK_ENABLE(); /* 使能串口RX脚时钟 */ - RS485_ENABLE_GPIO_CLK_ENABLE(); /* 使能串口RX脚时钟 */ - RS485_UX_CLK_ENABLE(); /* 使能串口时钟 */ + /* 使能时钟 */ + RS485_TX_GPIO_CLK_ENABLE(); + RS485_RX_GPIO_CLK_ENABLE(); + RS485_ENABLE_GPIO_CLK_ENABLE(); + RS485_UX_CLK_ENABLE(); - /*GPIO 初始化设置*/ + /* GPIO 初始化 */ GPIO_InitTypeDef gpio_init_struct = {0}; - gpio_init_struct.Pin = RS485_TX_GPIO_PIN; /* 串口发送引脚号 */ - gpio_init_struct.Mode = GPIO_MODE_AF_PP; /* 复用推挽输出 */ - gpio_init_struct.Pull = GPIO_PULLUP; /* 上拉 */ - gpio_init_struct.Speed = GPIO_SPEED_FREQ_HIGH; /* IO速度设置为高速 */ + gpio_init_struct.Pin = RS485_TX_GPIO_PIN; + gpio_init_struct.Mode = GPIO_MODE_AF_PP; + gpio_init_struct.Pull = GPIO_PULLUP; + gpio_init_struct.Speed = GPIO_SPEED_FREQ_HIGH; HAL_GPIO_Init(RS485_TX_GPIO_PORT, &gpio_init_struct); - - gpio_init_struct.Pin = RS485_RX_GPIO_PIN; /* 串口RX脚 模式设置 */ - gpio_init_struct.Mode = GPIO_MODE_AF_INPUT; - HAL_GPIO_Init(RS485_RX_GPIO_PORT, &gpio_init_struct); /* 串口RX脚 必须设置成输入模式 */ - gpio_init_struct.Pin = RS485_ENABLE_GPIO_PIN; - gpio_init_struct.Mode = GPIO_MODE_OUTPUT_PP; - HAL_GPIO_Init(RS485_ENABLE_GPIO_PORT, &gpio_init_struct); + gpio_init_struct.Pin = RS485_RX_GPIO_PIN; + gpio_init_struct.Mode = GPIO_MODE_AF_INPUT; + HAL_GPIO_Init(RS485_RX_GPIO_PORT, &gpio_init_struct); - /* 配置DMA接收句柄 */ + gpio_init_struct.Pin = RS485_ENABLE_GPIO_PIN; + gpio_init_struct.Mode = GPIO_MODE_OUTPUT_PP; + HAL_GPIO_Init(RS485_ENABLE_GPIO_PORT, &gpio_init_struct); + + /* DMA 接收配置 */ hdma_rs485_rx.Instance = DMA1_Channel6; - hdma_rs485_rx.Init.Direction = DMA_PERIPH_TO_MEMORY; // 外设到内存 - hdma_rs485_rx.Init.PeriphInc = DMA_PINC_DISABLE; // 外设地址不递增 - hdma_rs485_rx.Init.MemInc = DMA_MINC_ENABLE; // 内存地址递增 - hdma_rs485_rx.Init.PeriphDataAlignment = DMA_PDATAALIGN_BYTE; // 外设数据对齐:字节 - hdma_rs485_rx.Init.MemDataAlignment = DMA_MDATAALIGN_BYTE; // 内存数据对齐:字节 - hdma_rs485_rx.Init.Mode = DMA_NORMAL; // 正常模式 - hdma_rs485_rx.Init.Priority = DMA_PRIORITY_VERY_HIGH; // 最高优先级 - HAL_DMA_Init(&hdma_rs485_rx); /*初始化DMA 接收*/ + hdma_rs485_rx.Init.Direction = DMA_PERIPH_TO_MEMORY; + hdma_rs485_rx.Init.PeriphInc = DMA_PINC_DISABLE; + hdma_rs485_rx.Init.MemInc = DMA_MINC_ENABLE; + hdma_rs485_rx.Init.PeriphDataAlignment = DMA_PDATAALIGN_BYTE; + hdma_rs485_rx.Init.MemDataAlignment = DMA_MDATAALIGN_BYTE; + hdma_rs485_rx.Init.Mode = DMA_NORMAL; + hdma_rs485_rx.Init.Priority = DMA_PRIORITY_VERY_HIGH; + HAL_DMA_Init(&hdma_rs485_rx); - /* 关联 DMA 到 UART(重要!)*/ __HAL_LINKDMA(&rs485_handle, hdmarx, hdma_rs485_rx); - /* 使能DMA传输完成中断 */ HAL_NVIC_EnableIRQ(DMA1_Channel6_IRQn); HAL_NVIC_SetPriority(DMA1_Channel6_IRQn, 0, 0); - /* UART 初始化设置 */ - rs485_handle.Instance = RS485_UX; /* USART_UX */ - rs485_handle.Init.BaudRate = BAUDRATE; /* 波特率 */ - rs485_handle.Init.WordLength = UART_WORDLENGTH_8B; /* 字长为8位数据格式 */ - rs485_handle.Init.StopBits = UART_STOPBITS_1; /* 一个停止位 */ - rs485_handle.Init.Parity = UART_PARITY_NONE; /* 无奇偶校验位 */ - rs485_handle.Init.HwFlowCtl = UART_HWCONTROL_NONE; /* 无硬件流控 */ - rs485_handle.Init.Mode = UART_MODE_TX_RX; /* 收发模式 */ + /* UART 初始化 */ + rs485_handle.Instance = RS485_UX; + rs485_handle.Init.BaudRate = BAUDRATE; + rs485_handle.Init.WordLength = UART_WORDLENGTH_8B; + rs485_handle.Init.StopBits = UART_STOPBITS_1; + rs485_handle.Init.Parity = UART_PARITY_NONE; + rs485_handle.Init.HwFlowCtl = UART_HWCONTROL_NONE; + rs485_handle.Init.Mode = UART_MODE_TX_RX; rs485_handle.Init.OverSampling = UART_OVERSAMPLING_16; - HAL_UART_Init(&rs485_handle); /* 初始化UART */ + HAL_UART_Init(&rs485_handle); - HAL_NVIC_EnableIRQ(RS485_UX_IRQn); /* 使能USART中断通道 */ - HAL_NVIC_SetPriority(RS485_UX_IRQn, 1, 0); /* 组2,抢占优先级1,子优先级0 */ - - /* 启动DMA接收 */ - RS485_RECEIVE_ENABLE(); + HAL_NVIC_EnableIRQ(RS485_UX_IRQn); + HAL_NVIC_SetPriority(RS485_UX_IRQn, 1, 0); + + /* 启动 DMA 接收 */ + RS485_RECEIVE_ENABLE(); HAL_UARTEx_ReceiveToIdle_DMA(&rs485_handle, (uint8_t *)RS485REG.DR, UART_RX_LEN); } + /** - * @brief 串口X初始化函数 - * @note 注意: 必须设置正确的时钟源, 否则串口波特率就会设置异常. - * - * @retval 无 + * @brief RS485 初始化(中断接收模式) + * @note 配置 GPIO、UART,使能 RXNE 中断。不启用 DMA。 + * 用于错误恢复或接收短帧。USART 时钟源需已配置。 + * @retval 无 */ -void RS485_init() +void RS485_init(void) { /* 开启时钟 */ RS485_TX_GPIO_CLK_ENABLE(); /* 使能串口TX脚时钟 */ @@ -129,80 +136,94 @@ void RS485_init() RS485_ENABLE_GPIO_CLK_ENABLE(); /* 使能串口RX脚时钟 */ RS485_UX_CLK_ENABLE(); /* 使能串口时钟 */ - /*GPIO 初始化设置*/ - GPIO_InitTypeDef gpio_init_struct; - gpio_init_struct.Pin = RS485_TX_GPIO_PIN; /* 串口发送引脚号 */ - gpio_init_struct.Mode = GPIO_MODE_AF_PP; /* 复用推挽输出 */ - gpio_init_struct.Pull = GPIO_PULLUP; /* 上拉 */ - gpio_init_struct.Speed = GPIO_SPEED_FREQ_HIGH; /* IO速度设置为高速 */ + /* GPIO 初始化 */ + GPIO_InitTypeDef gpio_init_struct = {0}; + gpio_init_struct.Pin = RS485_TX_GPIO_PIN; + gpio_init_struct.Mode = GPIO_MODE_AF_PP; + gpio_init_struct.Pull = GPIO_PULLUP; + gpio_init_struct.Speed = GPIO_SPEED_FREQ_HIGH; HAL_GPIO_Init(RS485_TX_GPIO_PORT, &gpio_init_struct); - - gpio_init_struct.Pin = RS485_RX_GPIO_PIN; /* 串口RX脚 模式设置 */ - gpio_init_struct.Mode = GPIO_MODE_AF_INPUT; - HAL_GPIO_Init(RS485_RX_GPIO_PORT, &gpio_init_struct); /* 串口RX脚 必须设置成输入模式 */ - gpio_init_struct.Pin = RS485_ENABLE_GPIO_PIN; - gpio_init_struct.Mode = GPIO_MODE_OUTPUT_PP; - HAL_GPIO_Init(RS485_ENABLE_GPIO_PORT, &gpio_init_struct); + gpio_init_struct.Pin = RS485_RX_GPIO_PIN; + gpio_init_struct.Mode = GPIO_MODE_AF_INPUT; + HAL_GPIO_Init(RS485_RX_GPIO_PORT, &gpio_init_struct); + gpio_init_struct.Pin = RS485_ENABLE_GPIO_PIN; + gpio_init_struct.Mode = GPIO_MODE_OUTPUT_PP; + HAL_GPIO_Init(RS485_ENABLE_GPIO_PORT, &gpio_init_struct); - /*UART 初始化设置*/ - rs485_handle.Instance = RS485_UX; /* USART_UX */ - rs485_handle.Init.BaudRate = BAUDRATE; /* 波特率 */ - rs485_handle.Init.WordLength = UART_WORDLENGTH_8B; /* 字长为8位数据格式 */ - rs485_handle.Init.StopBits = UART_STOPBITS_1; /* 一个停止位 */ - rs485_handle.Init.Parity = UART_PARITY_NONE; /* 无奇偶校验位 */ - rs485_handle.Init.HwFlowCtl = UART_HWCONTROL_NONE; /* 无硬件流控 */ - rs485_handle.Init.Mode = UART_MODE_TX_RX; /* 收发模式 */ - HAL_UART_Init(&rs485_handle); /* 使能UART */ + /* UART 初始化 */ + rs485_handle.Instance = RS485_UX; + rs485_handle.Init.BaudRate = BAUDRATE; + rs485_handle.Init.WordLength = UART_WORDLENGTH_8B; + rs485_handle.Init.StopBits = UART_STOPBITS_1; + rs485_handle.Init.Parity = UART_PARITY_NONE; + rs485_handle.Init.HwFlowCtl = UART_HWCONTROL_NONE; + rs485_handle.Init.Mode = UART_MODE_TX_RX; + rs485_handle.Init.OverSampling = UART_OVERSAMPLING_16; + HAL_UART_Init(&rs485_handle); - /* 该函数会开启接收中断:标志位UART_IT_RXNE,并且设置接收缓冲以及接收缓冲接收最大数据量 */ - __HAL_UART_ENABLE_IT(&rs485_handle, UART_IT_RXNE); - HAL_NVIC_EnableIRQ(RS485_UX_IRQn); /* 使能USART中断通道 */ - HAL_NVIC_SetPriority(RS485_UX_IRQn, 1, 0); /* 组2,抢占优先级1,子优先级0 */ + __HAL_UART_ENABLE_IT(&rs485_handle, UART_IT_RXNE); + HAL_NVIC_EnableIRQ(RS485_UX_IRQn); + HAL_NVIC_SetPriority(RS485_UX_IRQn, 1, 0); RS485_RECEIVE_ENABLE(); } +/* ============================================================================ + * 回调与中断服务函数 + * ============================================================================ */ + +/** + * @brief UART 接收事件回调(ReceiveToIdle 完成时由 HAL 调用) + * @param huart UART 句柄 + * @param Size 本帧接收到的字节数 + * @note 当为 RS485 所用 UART 时:置位 NewMessageFlag,并重新启动 ReceiveToIdle DMA。 + * @retval 无 + */ void HAL_UARTEx_RxEventCallback(UART_HandleTypeDef *huart, uint16_t Size) { - if(huart->Instance == RS485_UX) + if (huart->Instance == RS485_UX) { RS485REG.NewMessageFlag = SET; HAL_UARTEx_ReceiveToIdle_DMA(&rs485_handle, (uint8_t *)RS485REG.DR, UART_RX_LEN); } } + /** - * @brief 485串口中断服务函数 - * @param 无 - * @retval 无 + * @brief RS485 所用 USART 中断服务函数 + * @note 调用 HAL_UART_IRQHandler 处理 UART 及关联 DMA 中断。 + * @retval 无 */ void RS485_UX_IRQHandler(void) { HAL_UART_IRQHandler(&rs485_handle); } -/******************************************************************************* -* FunctionName : DMA1_Channel6_IRQHandler() -* Description : 串口接收中断 -* EntryParameter : none -* ReturnValue : none -********************************************************************************/ +/** + * @brief DMA1 Channel6 中断服务函数(RS485 接收 DMA) + * @note 调用 HAL_DMA_IRQHandler,在 ReceiveToIdle 完成等事件时触发。 + * @retval 无 + */ void DMA1_Channel6_IRQHandler(void) { - HAL_DMA_IRQHandler(&hdma_rs485_rx); + HAL_DMA_IRQHandler(&hdma_rs485_rx); } -/*********************************************************************** -* FunctionName : RS485_SendBuff() -* Description : 485发送数组 -* EntryParameter : *ptr:待发送的字符串, len:待发送的数据个数 -* ReturnValue : ptrLen:发送的数据个数 -**************************************************************************/ + +/* ============================================================================ + * 发送接口 + * ============================================================================ */ + +/** + * @brief RS485 发送数据 + * @param ptr 待发送数据指针 + * @param len 待发送字节数 + * @note 切换为发送(DE 低)→ 阻塞发送 → 切换回接收(DE 高)。超时 1000ms。 + * @retval 无 + */ void RS485_SendBuff(uint8_t *ptr, uint32_t len) { RS485_SEND_ENABLE(); - - HAL_UART_Transmit(&rs485_handle, ptr,len, 1000); - + HAL_UART_Transmit(&rs485_handle, ptr, len, 1000); RS485_RECEIVE_ENABLE(); } diff --git a/Drivers/BSP/RS485/rs485.h b/Drivers/BSP/RS485/rs485.h index bd6b37e..7edecc7 100644 --- a/Drivers/BSP/RS485/rs485.h +++ b/Drivers/BSP/RS485/rs485.h @@ -1,29 +1,70 @@ +/****************************************************************************** + * @file rs485.h + * @brief RS485 串口通信驱动头文件 + * @details 本文件声明 RS485 通信相关接口与数据结构,支持 DMA 接收与中断接收两种模式。 + * 使用 USART2,收发切换通过 DE 引脚(PA1)控制。 + * @author 阜阳师范大学物电学院 + * @version V0.01 + * @date 2026.1.24 + * @note USART:USART2 + * TX:PA2,RX:PA3,DE:PA1 + * 波特率:700000 + ******************************************************************************/ + #ifndef __RS485_H__ #define __RS485_H__ - - #include "./SYSTEM/sys/sys.h" #include "./SYSTEM/delay/delay.h" -#define UART_RX_LEN (3208) -#define UART_TX_LEN (8) +/* ============================================================================ + * 宏定义 + * ============================================================================ */ +#define UART_RX_LEN (3208) /**< 接收缓冲区长度(字节),与 Modbus 数据帧长度一致 */ +#define UART_TX_LEN (8) /**< 发送缓冲区长度(字节) */ +/* ============================================================================ + * 数据结构定义 + * ============================================================================ */ + +/** + * @brief RS485 收发寄存器结构体 + * @note 用于存放一帧接收数据及发送缓存,与 Modbus 处理模块配合使用 + */ typedef struct -{ - volatile FlagStatus NewMessageFlag; //一帧数据接收完整 - volatile uint8_t DR[UART_RX_LEN]; //接收缓存 - volatile uint8_t TDR[UART_TX_LEN]; //发送缓存 +{ + volatile FlagStatus NewMessageFlag; /**< 新消息标志:一帧数据接收完成时置位 */ + volatile uint8_t DR[UART_RX_LEN]; /**< 接收缓存 */ + volatile uint8_t TDR[UART_TX_LEN]; /**< 发送缓存 */ } RS485_REGISTER_TYPE; -extern RS485_REGISTER_TYPE RS485REG; +extern RS485_REGISTER_TYPE RS485REG; /**< 全局 RS485 收发寄存器 */ +/* ============================================================================ + * 函数声明 + * ============================================================================ */ - - -void USART2_Init(void); +/** + * @brief RS485 初始化(DMA 接收模式) + * @note 配置 GPIO、UART、DMA,启动 ReceiveToIdle DMA 接收。为主工作模式。 + * @retval 无 + */ void RS485_DMA_init(void); + +/** + * @brief RS485 初始化(中断接收模式) + * @note 配置 GPIO、UART,使能 RXNE 中断接收。用于异常恢复或短帧接收。 + * @retval 无 + */ +void RS485_init(void); + +/** + * @brief RS485 发送数据 + * @param ptr 待发送数据指针 + * @param len 待发送字节数 + * @note 先切换为发送(DE 高),发送完成后切回接收(DE 低)。使用阻塞方式发送。 + * @retval 无 + */ void RS485_SendBuff(uint8_t *ptr, uint32_t len); - -#endif +#endif /* __RS485_H__ */ diff --git a/Middlewares/Modbus/MODBUS.c b/Middlewares/Modbus/MODBUS.c index 090be2c..8f05c53 100644 --- a/Middlewares/Modbus/MODBUS.c +++ b/Middlewares/Modbus/MODBUS.c @@ -28,48 +28,61 @@ #define KEY_CMD (0) /**< 按键事件命令类型 */ /* ============================================================================ - * 图片宏定义 + * 图片与 Flash 宏定义 * ============================================================================ */ -#define BMP_ADDR (0x0803F000) /**< BMP数据在Flash中的存储地址(扇区126) */ -#define BMP_LEN (3208) /**< BMP数据长度,单位:字节 */ +#define BMP_ADDR (0x0803F000) /**< BMP 在 Flash 中的存储地址(扇区 126) */ +#define BMP_LEN (3208) /**< BMP 数据长度(字节) */ +/* ============================================================================ + * 轮询与超时常量 + * ============================================================================ */ +#define RS485_RT_COUNT_MAX (55) /**< 实时轮询计数上限,约 275ms(55×5ms) */ +#define RS485_ACK_COUNT_MAX (40) /**< 应答超时计数上限,约 200ms(40×5ms) */ +#define RS485_ACK_OVERTIME_MAX (5) /**< 连续应答超时次数上限,超过则重初始化 RS485 */ +/* ============================================================================ + * 数据结构定义 + * ============================================================================ */ + +/** + * @brief LOGO 图片数据结构体 + * @note 用于存储从 138 端下发的 BMP 数据及尺寸,或从 Flash 读取的 LOGO + */ typedef struct { - uint8_t bmpdata[3200]; - uint32_t biWidth; - uint32_t biHeight; + uint8_t bmpdata[3200]; /**< BMP 点阵数据,最大 3200 字节 */ + uint32_t biWidth; /**< 图片宽度(像素) */ + uint32_t biHeight; /**< 图片高度(像素) */ } logo_type; +/** + * @brief RS485 轮询与应答状态结构体 + * @note 用于 Modbus 主站轮询、应答超时检测及命令应答标志管理 + */ typedef struct -{ - volatile uint8_t RT_count; /* 实时命令计数器 */ - volatile uint16_t CMD_ACK; /* 普通命令接收完成标志位 */ - volatile uint8_t ACK_COUNT_ABLE; //命令发出后计时使能 - volatile uint8_t ACK_count; /* 应答计时计数器 */ - volatile uint8_t ACK_OverTime; /* 超时标志位 */ - volatile uint8_t ACK_OverTimeCnt; /* 超时次数技术器 */ +{ + volatile uint8_t RT_count; /**< 实时命令计数,用于定时发送刷新命令 */ + volatile uint16_t CMD_ACK; /**< 命令接收完成标志(SET=可发下一帧) */ + volatile uint8_t ACK_COUNT_ABLE; /**< 应答计时使能(发令后置位) */ + volatile uint8_t ACK_count; /**< 应答等待计数,超 RS485_ACK_COUNT_MAX 即超时 */ + volatile uint8_t ACK_OverTime; /**< 本次应答超时标志 */ + volatile uint8_t ACK_OverTimeCnt; /**< 连续应答超时次数,超 RS485_ACK_OVERTIME_MAX 则重初始 */ } RS485_POLL_TYPE; -RS485_POLL_TYPE RS485POLL = {0}; - -#define RS485_RT_COUNT_MAX (55) //轮询限值 275ms -#define RS485_ACK_COUNT_MAX (40) //应答超时限值 200ms -#define RS485_ACK_OVERTIME_MAX (5) // 75ms 应答超时计数最大次数,超过该次数显示通讯异常 - - +RS485_POLL_TYPE RS485POLL = {0}; /**< 全局轮询状态 */ /* ============================================================================ * 私有变量定义 * ============================================================================ */ -static logo_type logo; /**< LOGO图片数据结构体,包含BMP图片数据和尺寸信息 */ -static uint8_t Picture[3200]; +static logo_type logo = {0}; /**< LOGO 图片数据(BMP + 宽高) */ +static uint8_t Picture[3200] = {0}; /**< 接收图片缓冲,前 3200 字节为点阵数据 */ + /* ============================================================================ - * MODBUS协议处理部分 + * Modbus 命令与屏幕刷新 * ============================================================================ */ /** - * @brief 发送屏幕刷新命令(特殊格式的Modbus命令) - * @param func 功能码(通常为READ_RIGISTER = 0x03) + * @brief 发送屏幕刷新命令(特殊格式的 Modbus 命令) + * @param func 功能码(通常为读寄存器 READ_REGISTER = 0x03) * @param type 命令类型:RT_CMD(1)=实时刷新,KEY_CMD(0)=按键事件 * @param key 按键值(当type=KEY_CMD时有效) * @note 命令帧格式(6字节): @@ -100,19 +113,12 @@ void RS485_RefreshScreenCMD(uint8_t func, uint8_t type, uint8_t key) } -///* ============================================================================ -// * 屏幕刷新处理 远程处理图片 -// * ============================================================================ */ /** - * @brief 发送屏幕刷新命令 + * @brief 发送屏幕刷新命令并重置轮询状态 * @param type 命令类型:RT_CMD(1)=实时刷新,KEY_CMD(0)=按键事件 - * @param key 按键值(当type=KEY_CMD时有效) - * @note 发送屏幕刷新命令到138端,请求更新屏幕显示 - * 命令发送后: - * - 重置命令应答标志 - * - 重置实时数据计数 - * - 使能应答计数 - * - 重置应答计数值 + * @param key 按键值(type=KEY_CMD 时有效) + * @note 向 138 端发送屏幕刷新命令;发送后重置 CMD_ACK、RT_count, + * 使能 ACK_COUNT_ABLE 并清零 ACK_count。 * @retval 无 */ void RefreshScreen(uint8_t type, uint8_t key) @@ -125,8 +131,13 @@ void RefreshScreen(uint8_t type, uint8_t key) RS485POLL.ACK_COUNT_ABLE = SET; /* 使能应答计数 */ RS485POLL.ACK_count = 0; /* 重置应答计数值 */ } + +/* ============================================================================ + * LOGO 与 BMP 处理 + * ============================================================================ */ + /** - * @brief 在LCD屏幕上显示LOGO图片 + * @brief 在 LCD 屏幕上显示 LOGO 图片 * @note 调用Display_BMP函数将全局变量logo中的BMP图片数据显示在LCD屏幕上 * 显示位置:屏幕居中(由Display_BMP函数自动计算) * 图片尺寸:使用logo结构体中的biWidth和biHeight @@ -185,6 +196,12 @@ void BMP_Get(void) logo.biHeight = ptr->biHeight; } +/** + * @brief 从 Flash 读取 LOGO 并显示,延时约 2 秒 + * @note 调用 BMP_Get 从 Flash 读取 LOGO,再 LOGO_Printf 显示; + * 每次显示后 delay 4×500ms = 2s + * @retval 无 + */ void NL_LOGO_Printf(void) { BMP_Get(); @@ -193,9 +210,14 @@ void NL_LOGO_Printf(void) delay_ms(500); delay_ms(500); delay_ms(500); -} +} + +/* ============================================================================ + * Modbus 主处理与轮询 + * ============================================================================ */ + /** - * @brief Modbus通信主处理函数-远程处理图片 + * @brief Modbus 通信主处理函数(远程处理图片) * @param key 按键值(KEY_TYPE类型) * @note 采用138端处理图片,整体传上来显示的方式刷图 * 处理流程: @@ -338,17 +360,30 @@ uint8_t RS485_Process(KEY_TYPE key, uint8_t flag) return ConnectFlg; } +/** + * @brief 轮询计数处理(需在 5ms 周期定时器中调用) + * @note RT_count 递增,用于定时发实时刷新命令;若 ACK_COUNT_ABLE 置位, + * 则 ACK_count 递增,用于应答超时判断。 + * @retval 无 + */ void Process_Count(void) { RS485POLL.RT_count++; if(RS485POLL.ACK_COUNT_ABLE) { RS485POLL.ACK_count++; - } + } } + +/** + * @brief Modbus 轮询与应答相关变量初始化 + * @note 清零 ACK_OverTime、ACK_count、ACK_OverTimeCnt,关闭 ACK_COUNT_ABLE, + * 置位 CMD_ACK 表示可发送。上电或通信异常恢复后调用。 + * @retval 无 + */ void Process_Init(void) { - /* 清除控制字和应答相关标志 */ + /* 清除超时与应答相关标志 */ RS485POLL.ACK_OverTime = RESET; /* 重置应答超时标志 */ RS485POLL.ACK_COUNT_ABLE = RESET; /* 禁用应答计数 */ RS485POLL.ACK_count = 0; /* 重置应答计数 */ diff --git a/Middlewares/Modbus/MODBUS.h b/Middlewares/Modbus/MODBUS.h index 413dd47..809e802 100644 --- a/Middlewares/Modbus/MODBUS.h +++ b/Middlewares/Modbus/MODBUS.h @@ -1,16 +1,56 @@ +/****************************************************************************** + * @file MODBUS.h + * @brief Modbus RTU 协议通信处理模块头文件 + * @details 本文件声明了 Modbus RTU 通信相关的接口函数,包括主处理、LOGO 显示、 + * 轮询计数与初始化等。配合 MODBUS.c 使用,通过 RS485 与从站通信。 + * @author 阜阳师范大学物电学院 + * @version V0.01 + * @date 2026.1.23 + * @note 通信协议:Modbus RTU + * 通信接口:RS485 + * 主站地址:0x01 + ******************************************************************************/ + #ifndef MODBUS_H__ #define MODBUS_H__ + #include "./SYSTEM/sys/sys.h" #include "./SYSTEM/delay/delay.h" #include "key.h" +/* ============================================================================ + * 函数声明 + * ============================================================================ */ - - - +/** + * @brief Modbus 通信主处理函数(远程图片处理) + * @param key 按键值(KEY_TYPE),用于上报按键事件 + * @param flag 连接标志(传入当前连接状态,用于更新) + * @note 处理接收帧、按键上报、定时刷新、应答超时等;采用 138 端处理图片、 + * 整体上传显示的方式刷图。需在周期任务中调用。 + * @retval 更新后的连接标志(1=已连接,0=未连接/超时) + */ uint8_t RS485_Process(KEY_TYPE key, uint8_t flag); -void NL_LOGO_Printf(void); -void Process_Count(void); -void Process_Init(void); -#endif // end of ADC_H definition +/** + * @brief 从 Flash 读取 LOGO 并显示 + * @note 调用 BMP_Get 读 Flash,再 LOGO_Printf 显示,合计延时约 2s + * @retval 无 + */ +void NL_LOGO_Printf(void); + +/** + * @brief 轮询计数处理(需在 5ms 周期定时器中调用) + * @note 递增 RT_count;若 ACK_COUNT_ABLE 置位则递增 ACK_count,用于超时检测 + * @retval 无 + */ +void Process_Count(void); + +/** + * @brief Modbus 轮询与应答相关变量初始化 + * @note 清零超时、应答计数等标志,置位 CMD_ACK 允许发送。上电或重新建立通信前调用 + * @retval 无 + */ +void Process_Init(void); + +#endif /* MODBUS_H__ */ diff --git a/Output/DTU.hex b/Output/DTU.hex index 4c660e1..c0b6dc4 100644 --- a/Output/DTU.hex +++ b/Output/DTU.hex @@ -1,8 +1,8 @@ :020000040800F2 -:1000000008300020CD010008312B00082B24000807 -:10001000012B000881040008693700080000000077 -:10002000000000000000000000000000652F000834 -:100030007D05000800000000352B0008393000085D +:1000000010300020CD010008B12B00082B2400087F +:10001000812B000881040008ED3700080000000073 +:10002000000000000000000000000000E52F0008B4 +:100030007D05000800000000B52B0008B93000085D :10004000E7010008E7010008E7010008E7010008F0 :10005000E7010008E7010008E7010008E7010008E0 :10006000E7010008E7010008E7010008E7010008D0 @@ -10,9 +10,9 @@ :1000800041050008E7010008E7010008E701000852 :10009000E7010008E7010008E7010008E7010008A0 :1000A000E7010008E7010008E7010008E701000890 -:1000B00045300008E7010008E7010008E7010008F3 +:1000B000C5300008E7010008E7010008E701000873 :1000C000E7010008E7010008E7010008E701000870 -:1000D000E70100084937000859370008E701000820 +:1000D000E7010008CD370008DD370008E701000818 :1000E000E7010008E7010008E7010008E701000850 :1000F000E7010008E7010008E7010008E701000840 :10010000E7010008E7010008E7010008E70100082F @@ -21,17 +21,17 @@ :1001300000F002F800F03AF80AA090E8000C8244BF :100140008344AAF10107DA4501D100F02FF8AFF29C :10015000090EBAE80F0013F0010F18BFFB1A43F0A5 -:10016000010318473C5200005C520000103A24BFC3 +:10016000010318470053000020530000103A24BF39 :1001700078C878C1FAD8520724BF30C830C144BF0C :1001800004680C607047000000230024002500264E :10019000103A28BF78C1FBD8520728BF30C148BFEA :1001A0000B6070471FB51FBD10B510BD00F0E8F81B -:1001B0001146FFF7F7FF03F0A3FD00F006F903B4C3 -:1001C000FFF7F2FF03BC03F079FB0000094880470A +:1001B0001146FFF7F7FF03F0E5FD00F006F903B481 +:1001C000FFF7F2FF03BC03F0BBFB000009488047C8 :1001D00009480047FEE7FEE7FEE7FEE7FEE7FEE729 :1001E000FEE7FEE7FEE7FEE704480549054A064B41 -:1001F000704700004130000831010008082A002043 -:1002000008300020082C0020082C00207047B2F194 +:1001F00070470000C130000831010008102A0020BB +:1002000010300020102C0020102C00207047B2F17C :1002100020030AD5C2F1200320FA02F001FA03F309 :1002200021FA02F140EA0300704721FA03F04FF08F :1002300000017047032A40F2308010F0030C00F0F8 @@ -54,7 +54,7 @@ :10034000F7AF090728BFA0E80C5048BF0CC05DF804 :1003500004EB890028BF40F8042B08BF704748BF52 :1003600020F8022B11F0804F18BF00F8012B7047C6 -:10037000704770477047704700487047A8290020B1 +:10037000704770477047704700487047B0290020A9 :100380007546FFF7F9FFAE4605006946534620F073 :100390000700854618B020B5FFF726FFBDE82040CE :1003A0004FF000064FF000074FF000084FF0000B31 @@ -63,50 +63,50 @@ :1003D00000802046BDE81040FFF7F1BE00200A492A :1003E00000BF03E00A5C094B1A54401CB0F5486F8B :1003F000F8D3D1F8802C054BC3F8802CD1F8842C8D -:10040000C3F8842C7047000000F00308A0100020FF +:10040000C3F8842C7047000000F00308A8100020F7 :1004100010B540F244620249024800F0CBF910BD29 -:10042000A010002000F0030810B50B480068401C25 +:10042000A810002000F0030810B50B480068401C1D :10043000094908600846006844F62061884209D3EB :1004400008460549086000BF00220121034801F069 -:1004500009F800BF10BD000028000020000C01407A +:1004500009F800BF10BD00002C000020000C014076 :1004600010B500BF01221146034800F0FBFF00BF9A -:1004700000200249086010BD000C01402800002047 +:1004700000200249086010BD000C01402C00002043 :1004800000BFFEE7F0B502460C46FF21FF2509E05C :1004900012F8016B86EA0103084EF65C86EA050154 :1004A000074EF55C261EA4F10107BCB2F0D1084648 -:1004B0004FF6FF7606EA00202843F0BDA051000861 -:1004C000A0520008F0B505460C46A01E2E5C4FF663 +:1004B0004FF6FF7606EA00202843F0BD645200089C +:1004C00064530008F0B505460C46A01E2E5C4FF69E :1004D000FF7000EA0626601E285C0643A01E81B25B :1004E0002846FFF7CFFF0746BE4201D10120F0BDED -:1004F0000020FCE770B500BFD52003F059F900BF1C -:100500000021084602F07CFD002416E000250DE0E5 -:10051000002003F083F9002003F080F9002003F0AD -:100520007DF9002003F07AF9681C85B2142DEFDB09 -:10053000002003F073F9601C84B2A02CE6DB70BDD0 -:1005400010B5024800F0AAFA10BD000018100020F3 +:1004F0000020FCE770B500BFD52003F09BF900BFDA +:100500000021084602F0BCFD002416E000250DE0A5 +:10051000002003F0C5F9002003F0C2F9002003F029 +:10052000BFF9002003F0BCF9681C85B2142DEFDB85 +:10053000002003F0B5F9601C84B2A02CE6DB70BD8E +:1005400010B5024800F0AAFA10BD000020100020EB :1005500030B590F840500124AC40C56B6C60046825 :1005600063604468102C04D10468A2600468E160F0 :1005700003E00468A1600468E26030BD70470000D9 :100580002DE9F84F81460F46904630A00068009054 -:1005900000BFD52003F00CF900BFB9F1A00F01D8BE +:1005900000BFD52003F04EF900BFB9F1A00F01D87C :1005A000A02F01D9BDE8F88FC9F1A00040080321B0 :1005B000B0FBF1F000F0FF0AC7F1A00007EB50001C :1005C00000F0FF0B4FEAD90600243BE0ABEB040040 -:1005D000C1B2504602F014FD00252CE004FB065188 +:1005D000C1B2504602F054FD00252CE004FB065148 :1005E00018F80110C943C1F381111DF8010003F08F -:1005F00015F904FB065118F80110C943C1F30111A4 -:100600001DF8010003F00AF904FB065118F8011067 -:10061000C943C1F381011DF8010003F0FFF804FB99 +:1005F00057F904FB065118F80110C943C1F3011162 +:100600001DF8010003F04CF904FB065118F8011025 +:10061000C943C1F381011DF8010003F041F904FB56 :10062000065118F80120032191431DF8010003F041 -:10063000F5F8681CC5B2B542D0D3002003F0EEF83F +:1006300037F9681CC5B2B542D0D3002003F030F9B9 :10064000601CC4B2BC42C1D300BFABE7000FF0FFD7 :100650000021074AD1610749096941F00401054AAF :1006600011611146096941F04001116170470000B4 -:1006700060010020002002400021074AD1610749A3 +:1006700068010020002002400021074AD16107499B :10068000096941F00201054A116111464861096991 -:1006900041F04001116170476001002000200240DC +:1006900041F04001116170476801002000200240D4 :1006A0000022054BDA61054A126942F00102034B50 -:1006B0001A610180704700006001002000200240A4 +:1006B0001A6101807047000068010020002002409C :1006C00000201E49C96801F0100139B11C49C969EF :1006D00041F002011A4AD16140F010001749C9687F :1006E00001F0040139B11649C96941F00101144A08 @@ -115,7 +115,7 @@ :10071000C96921F00101094AD16100BF00BF40F25F :100720000111884206D10549C96921F00101034A36 :10073000D16101E00149C86000BF7047002002405C -:100740006001002070B5044600F092FE054609E005 +:100740006801002070B5044600F092FE054609E0FD :10075000601C38B124B100F08BFE401BA04201D9CF :10076000032070BD1248C06800F001000028EFD1DE :100770000F48C06800F0200020B100BF20200C49C5 @@ -255,7 +255,7 @@ :100FD00007460D48006920F002000B4908610FB177 :100FE000356007E005F50065D4E9021001EBC0208B :100FF000A842E6D800BF00BF00200249087600BF23 -:101000003846B7E76001002000200240034800692D +:101000003846B7E768010020002002400348006925 :1010100040F0800001490861002070470020024034 :101020002DE9FE4F05468B461746984601260024BB :101030000020029000BF2448007E012802D1022037 @@ -267,7 +267,7 @@ :10109000FFF706FB4CF25030FFF754FB06460B48B7 :1010A000006920F001000949086106B104E0601CF4 :1010B000C4B202988442DDDB00BF00BF00200249B9 -:1010C000087600BF3046BBE76001002000200240E8 +:1010C000087600BF3046BBE76801002000200240E0 :1010D00000200849096901F0800151B10649054A1B :1010E0005160064951601146096901F0800101B162 :1010F000012070470020024023016745AB89EFCDF6 @@ -326,26 +326,26 @@ :10144000024693680B400BB1012000E0002070477A :1014500010B5C26821EA020302EA010443EA044328 :10146000036110BD0AB1016101E00B040361704723 -:101470000148006870470000180000200348006819 -:1014800003490978084401490860704718000020A2 -:101490002000002010B50848006840F01000064900 +:1014700001480068704700001C0000200348006815 +:101480000349097808440149086070471C0000209E +:101490002400002010B50848006840F010000649FC :1014A0000860032000F080F80F2000F007F800F03B :1014B0002BF8002010BD00000020024070B504464B :1014C0000E4800784FF47A71B1FBF0F00C490968CE :1014D000B1FBF0F5284600F0F3FB08B1012070BD28 :1014E000102C07D200222146501E00F01EF805489D -:1014F000046001E00120F2E70020F0E72000002076 -:10150000080000201C000020704701460846002803 +:1014F000046001E00120F2E70020F0E72400002072 +:101500000C000020200000207047014608460028FB :1015100009DB00F01F0301229A4043099B0003F1FD :10152000E023C3F8002100BF70472DE9F05F80463B -:101530000D461646002702F0A5F9074639462A4609 +:101530000D461646002702F0E7F9074639462A46C7 :10154000334601F00700C0F1070ABAF1040F02D9CF :101550004FF0040A01E0C0F1070AD14600F1040A85 :10156000BAF1070F02D24FF0000A01E0A0F1030A1E :10157000D4464FF0010A0AFA09FAAAF1010A0AEA66 :10158000020A0AFA0CFA4FF0010B0BFA0CFBABF152 :10159000010B0BEA030B4AEA0B042146404602F01A -:1015A00079F9BDE8F09F000000BF00F00702064B8C +:1015A000BBF9BDE8F09F000000BF00F00702064B4A :1015B00019684FF6FF031940044B0B4343EA02211D :1015C000014B196000BF70470CED00E00000FA0508 :1015D00000BF00BF00BF00BF00BFBFF34F8F00BF01 @@ -376,19 +376,19 @@ :10176000216940EAC1000A49486000F03FF8084991 :101770004968C1F30311074A515CC8400649086033 :1017800006480068FFF79AFE002048E70020024064 -:1017900000100240063E0008080000201C00002047 -:1017A00001480068704700000800002000B5FFF7FE +:1017900000100240C83E00080C000020200000207D +:1017A00001480068704700000C00002000B5FFF7FA :1017B000F7FF04494968C1F30221034A515CC8405C -:1017C00000BD000000100240163E000800B5FFF703 +:1017C00000BD000000100240D83E000800B5FFF741 :1017D000E7FF04494968C1F3C221034A515CC8408C -:1017E00000BD000000100240163E000870B5002148 +:1017E00000BD000000100240D83E000870B5002186 :1017F0000022002400230020134D696801F00C052D :10180000F5B1042D02D0082D19D101E00F4819E0DF :101810000F4DC1F38346AB5D01F4803555B10A4DE0 :101820006D68C5F340450B4E725D084D5D43B5FBD9 :10183000F2F402E0084D03FB05F4204602E000BF8D :10184000024800BF00BF70BD0010024000127A00C5 -:101850001E3E00082E3E000800093D00F8B5044673 +:10185000E03E0008F03E000800093D00F8B50446EF :101860000CB90120F8BD207800F00100002878D0E4 :10187000F848406800F00C0004280CD0F548406897 :1018800000F00C00082811D1F248406800F48030C4 @@ -420,7 +420,7 @@ :101A2000080008282DD1A069B8B101208B490860B1 :101A3000FFF71EFD054606E0FFF71AFD401B0228D2 :101A400001D903200EE78348406A00F00200002815 -:101A5000F2D0012001F08CF813E000207F490860EB +:101A5000F2D0012001F0CCF813E000207F490860AB :101A6000FFF706FD054606E0FFF702FD401B0228D2 :101A700001D90320F6E67748406A00F0020000280A :101A8000F2D1207800F00400042873D100277148B7 @@ -461,10 +461,10 @@ :101CB000D8E50020D6E500000000424200100240B6 :101CC00070B504462546681EB0F1807F01D301201F :101CD0000FE0681E4FF0E02148610F214FF0FF3008 -:101CE00001F0D8FD00204FF0E02188610720086155 +:101CE00001F01AFE00204FF0E02188610720086112 :101CF000002070BD10B504460CB9012010BD94F849 :101D00003D0028B9002084F83C00204600F025F86A -:101D1000022084F83D00211D206801F0C5F9012052 +:101D1000022084F83D00211D206801F007FA01200F :101D200084F8460000BF84F83E0001213F200155A1 :101D3000402001554120015500BF00BF012084F81B :101D4000420043200155442001554520015500BF64 @@ -480,18 +480,18 @@ :101DE0000004004000080040000C0040F8B5044624 :101DF0000D46164694F8420020282DD105B10EB9A3 :101E00000120F8BD0120206300206063324629468E -:101E1000204601F093FB0746206B012819D100BF33 +:101E1000204601F0D5FB0746206B012819D100BFF1 :101E200000200090206800680090206840680090C2 :101E300000BF00BF00BF00BF21680C3151E8001F88 :101E400041F0100021680C3141E80002002AF3D172 :101E500000E001273846D4E70220D2E770B50446F7 :101E60000D4607492068884208D1012005490870BD :101E700040F68842491C0448FFF7B8FF70BD0000D7 -:101E8000004400403C030020D00F002070470000B9 +:101E80000044004044030020D80F002070470000A9 :101E90002DE9F84F0446206805682068C668206868 :101EA00047694FF00009CA4605F00F09B9F1000F64 :101EB0000AD105F0200038B106F0200020B12046FC -:101EC00001F03FFABDE8F88FB9F1000F7BD007F0C1 +:101EC00001F081FABDE8F88FB9F1000F7BD007F07F :101ED000010018B906F49070002874D005F00100D4 :101EE00030B106F4807018B1606C40F0010060649D :101EF00005F0040030B107F0010018B1606C40F04B @@ -499,9 +499,9 @@ :101F1000606C40F00400606405F0080048B106F011 :101F2000200010B907F0010018B1606C40F0080003 :101F30006064606C002845D005F0200028B106F0F0 -:101F4000200010B1204601F0FCF920684069C0F380 +:101F4000200010B1204601F03EFA20684069C0F33D :101F5000801A606C00F0080010B9BAF1000F2CD0A4 -:101F6000204601F095F92068406900F0400000B378 +:101F6000204601F0D7F92068406900F0400000B336 :101F700000BF00BF2168143151E8001F21F040006C :101F80002168143141E80002002AF3D100BFE06B60 :101F900050B17748E16B4863E06BFEF7ABFC88B16A @@ -532,12 +532,12 @@ :1021200051E8001F21F0100021680C3141E8000245 :10213000002AF3D100BF0220606341462046FFF72A :102140008DFEBFE605F0800030B106F0800018B1CA -:10215000204601F077FAB5E605F0400030B106F010 -:10216000400018B1204601F0C9F8ABE600BFA9E66F -:102170005531000810B504460CB9012010BDA06906 +:10215000204601F0B9FAB5E605F0400030B106F0CE +:10216000400018B1204601F00BF9ABE600BFA9E62C +:10217000D931000810B504460CB9012010BDA06982 :1021800000B100E000BF94F8410028B9002084F8B5 :102190004000204600F02AF8242084F841002068FE -:1021A000C06820F400502168C860204601F048F95A +:1021A000C06820F400502168C860204601F08AF918 :1021B0002068006920F49040216808612068406927 :1021C00020F02A00216848612068C06840F400506F :1021D0002168C86000206064202084F8410084F8F1 @@ -555,7 +555,7 @@ :1022900006B010BD003801400010024000080140A7 :1022A00070B504460D46164694F8420020280BD11E :1022B00005B10EB9012070BD0020206332462946C9 -:1022C000204601F09FF9F6E70220F4E710B5044636 +:1022C000204601F0E1F9F6E70220F4E710B50446F4 :1022D0002049206888423BD11F48008800F4004014 :1022E00088BB1D48008800F4804070B11B4800780E :1022F0000A2803D000201849088024E016480088E6 @@ -564,18 +564,18 @@ :102320000E4800780C490988C1F30D010C4A50543D :1023300009480088401C0849088008460088C728CA :1023400001DD00200880012204490648FFF7A8FFAC -:1023500010BD0000003801401400002016000020CD -:10236000500000201801002070472DE9F84F044666 +:1023500010BD000000380140180000201A000020C5 +:10236000540000201C01002070472DE9F84F04465E :102370000E46174699464FF0000A94F8410020286F :1023800050D106B117B90120BDE8F88F0020606474 :10239000212084F84100FFF76BF88246A784E78488 :1023A000A068B0F5805F04D1206910B90025B0465F :1023B00002E035464FF000081EE05346002280211F -:1023C0002046CDF8009001F06DF920B1202084F86E +:1023C0002046CDF8009001F0AFF920B1202084F82C :1023D00041000320D8E745B9B8F80000C0F3080071 :1023E0002168486008F1020803E028782168486005 :1023F0006D1CE08C401EE084E08C0028DDD153464B -:10240000002240212046CDF8009001F04BF920B188 +:10240000002240212046CDF8009001F08DF920B146 :10241000202084F841000320B6E7202084F8410002 :102420000020B1E70220AFE7704700BFFEE70000E1 :1024300008B5434A811A904241D009DC4149014420 @@ -595,754 +595,767 @@ :10251000009100BF00BF10E000BF0B49896941F482 :102520008071094A91611146896901F480710091B5 :1025300000BF00BF01E0FFE700BF00BF08BD000013 -:102540000014014000F8FEBF0010024010B586B034 -:1025500000BF2F48806940F001002D49886108467E -:10256000806900F00100019000BF00BF00BF294951 -:10257000486820F0E06040F00070486000BF002034 -:10258000029003900490059000243DE004EB440188 -:10259000214A02EB81014868FFF74AFF04EB44003F -:1025A0001D4931F820000290002003900490032080 -:1025B000059004EB4401184A02EB8101486802A926 -:1025C000FEF79EFD04EB440101EBC401134A02EB4C -:1025D000810023460022124901F0CCFA04EB4401A9 -:1025E00001EBC4010D4A02EB81000E4A032101F008 -:1025F00067F904EB440101EBC401084A02EB8100D6 -:1026000001F0F4FA601CC4B2082CBFD306B010BDB0 -:10261000001002400000014040510008DC01002091 -:10262000C53B0008D538000810B50446FDF718FF73 -:102630000148047010BD0000050000200149086039 -:10264000704700002400002000B585B000BF1A4884 -:10265000806940F00800184988610846806900F0E8 -:102660000800009000BF00BF00BF0846806940F02E -:10267000400088610846806900F04000009000BF7B -:1026800000BF47F601400190012002900390032013 -:10269000049001A90948FEF733FD4FF47F400190F3 -:1026A0000120029003900320049001A90448FEF742 -:1026B00027FD05B000BD000000100240000C0140E5 -:1026C0000018014010B5E92001F072F82B2001F04C -:1026D0006FF8242001F06CF8812001F069F8BE2029 -:1026E00001F066F8A42001F063F8A62001F060F87C -:1026F000C02001F05DF8A32001F05AF8D12001F0CC -:1027000057F8D52001F054F8DA2001F051F8F42000 -:1027100001F04EF8252001F04BF8F62001F048F8C2 -:102720005A2001F045F8F52001F042F8002001F0B0 -:102730003FF8F72001F03CF89F2001F039F8F8202D -:1027400001F036F8892001F033F8AD2001F030F8BF -:10275000402001F02DF8502001F02AF8C42001F0AB -:1027600027F8902001F024F8FF2001F021F88420C0 -:1027700001F01EF8F12001F01BF89F2001F018F87D -:1027800010BD000010B500BF012291020E48FEF7F7 -:1027900069FE00BF0A2001F057FA00BF00224FF483 -:1027A00080610948FEF75EFE00BF022001F04CFA8E -:1027B00000BF012291020448FEF754FE00BF96209C -:1027C00001F042FA10BD0000000C014008B5434A78 -:1027D000811A904241D009DC4149014481B1B1F5EF -:1027E000806F1CD0B1F5006F74D127E0B1F5806F18 -:1027F00042D0B1F5006F4ED0B1F5406F6AD159E0CB -:1028000000BF3849896941F00401364A9161114697 -:10281000896901F00401009100BF00BF5BE000BFC7 -:102820003049896941F008012E4A91611146896950 -:1028300001F00801009100BF00BF4CE000BF294932 -:10284000896941F01001274A91611146896901F0B7 -:102850001001009100BF00BF3DE000BF2149896920 -:1028600041F020011F4A91611146896901F0200160 -:10287000009100BF00BF2EE000BF1A49896941F0F6 -:102880004001184A91611146896901F040010091A7 -:1028900000BF00BF1FE000BF1249896941F08001FD -:1028A000104A91611146896901F08001009100BFD1 -:1028B00000BF10E000BF0B49896941F48071094AEB -:1028C00091611146896901F48071009100BF00BFD8 -:1028D00001E0FFE700BF00BF08BD00000014014099 -:1028E00000F8FEBF001002401FB5002447E0274952 -:1028F00001EB04110868FFF769FF244800EB04109E -:102900008088009001200190204800EB041080682E -:1029100003901E4800EB0410C06802901B4901EBB5 -:10292000041108686946FEF7EBFB184B03EB041330 -:10293000DA79164B03EB04139988144B03EB041359 -:102940001868FEF78FFD114800EB0410807950B92C -:102950000E4800EB0410C07908B9012000E0002007 -:102960000B49085509E0094800EB0410C07901281B -:1029700000D100E0002006490855601CC4B2142CA8 -:10298000B5DB0121002000F06FF81FBD303E0008CC -:102990008001002070B50446142C00DB70BD0C488B -:1029A00000EB0410807908B9012500E00025084AF1 -:1029B00002EB04129188064A02EB041210682A46C0 -:1029C000FEF750FD00200349085500BFE6E7000070 -:1029D000303E00088001002070B50446142C00DB56 -:1029E00070BD0C4800EB0410807908B9002500E0A8 -:1029F0000125084A02EB04129188064A02EB0412F0 -:102A000010682A46FEF72EFD01200349085500BF35 -:102A1000E6E70000303E0008800100202DE9F0418B -:102A20000446E0780006A17840EA0140617840EA77 -:102A30000120217840EA010600250121002000F054 -:102A400013F801250CE00120A840304008B1012016 -:102A500000E000200746E8B2394600F005F86D1C9A -:102A6000142DF0D3BDE8F08170B505460C46012C5D -:102A700003D12846FFF7B0FF02E02846FFF78AFFA0 -:102A800070BD000010B50446142C00DB10BD0A4ACE -:102A900002EB04129188084A02EB04121068FEF758 -:102AA000D7FC0648005D012801D0012000E000208D -:102AB0000249085500BFE9E7303E000880010020C8 -:102AC00010B5044AD2F8841CD2F8800CFDF758FDEA -:102AD00010BD0000A010002010B5FFF7B5FD00BF2D -:102AE000012211460548FEF7BDFC00BFFFF74AFE74 -:102AF000FFF7E8FDFDF7FEFC10BD0000000C0140F3 -:102B000000BFFEE710B5FDF769FCFFF7D9FF4FF4F2 -:102B1000FA7001F099F84FF4FA7001F095F84FF45B -:102B2000FA7001F091F84FF4FA7001F08DF810BDD1 -:102B300000BFFEE77047000006480078401C0549CA -:102B400008700846007918B108464079401C487161 -:102B5000704700003400002000200449887108718B -:102B60004871C8710120488070470000340000207F -:102B700008B508490968C9084FF47A72B1FBF2F147 -:102B80004143009100BF00BF00994A1E00920029F6 -:102B9000F9D108BD0800002000B585B000BF00BF16 -:102BA0005348806940F004005149886108468069B3 -:102BB00000F00400009000BF00BF00BF00BF00BFD6 -:102BC0000846806940F0040088610846806900F08A -:102BD0000400009000BF00BF00BF00BF00BF084658 -:102BE000806940F0040088610846806900F00400B4 -:102BF000009000BF00BF00BF00BF00BF0846C06913 -:102C000040F40030C8610846C06900F4003000900C -:102C100000BF00BF00BF002001900290039004900D -:102C200004200190022002900120039003200490D0 -:102C300001A93048FEF764FA0820019000200290B4 -:102C400001A92C48FEF75CFA0220019001200290B5 -:102C500001A92848FEF754FA2748284908600020AF -:102C600048600021254881608021C1600021016108 -:102C7000416181614FF44051C161FEF7DBF800BF53 -:102C80001E481F49C86308461C49486200BF1020FF -:102C9000FEF73BFC002211461020FEF746FC1948C7 -:102CA0001749086018484860002115488160C160D4 -:102CB000016181610C2141610021C161FFF75AFA74 -:102CC0002620FEF722FC002201212620FEF72DFC03 -:102CD00000BF012202210748FEF7C4FB00BF40F6F7 -:102CE00088420A490648FFF781F805B000BD000098 -:102CF00000100240000801406C0002401810002043 -:102D0000D00F00200044004060AE0A003D030020C8 -:102D100070B504460D462E462CB15D480078A042A1 -:102D200001D05B4804705B480078002876D0002012 -:102D300058490870012640F688415648401CFDF766 -:102D4000C1FB012854D10020534908604FF4486268 -:102D50005049491C5148FDF76DFA514951480268E4 -:102D60000A604068486008460079892834D10846DE -:102D70004079452830D14FF4486248494A48FDF728 -:102D80009EFA474840784649097840EA012046497A -:102D9000C1F8800C4248C0784149897840EA012056 -:102DA0004149C1F8840CFDF733FBFDF759FBFDF7F2 -:102DB000A1FBFFF785FE4FF4FA7000F045FF4FF4DA -:102DC000FA7000F041FF4FF4FA7000F03DFF4FF44D -:102DD000FA7000F039FF19E034492E48D0F8810C20 -:102DE00008600846FFF71AFE2C4800F0BDF80DE019 -:102DF00029480068401C28490860084600680328E4 -:102E000004D3FFF7C9FE00202349086000202849A9 -:102E1000887108714871C871012048802448408831 -:102E200010B923488079B0B11948007838B11848F2 -:102E30000178002000F082F80020154908701C4835 -:102E40000078372807DD12480178012000F076F875 -:102E500000200F49087016484079282808DD012015 -:102E600013498871002048710846C079401CC87118 -:102E70000F48C079052808DB002605200C49C871D9 -:102E8000FFF78AFE01200A494880304670BD0000E5 -:102E90003C0000203C0300204C000020281D0020A6 -:102EA00041000020BD0F0020A01000203D000020A8 -:102EB000340000202DE9FC4104460D46164600274B -:102EC00001208DF800008DF801408DF802508DF83A -:102ED000036004216846FDF7D5FA074638128DF8DD -:102EE0000400F8B28DF805000621684600F008F8E5 -:102EF000002002494880BDE8FC8100003400002029 -:102F000070B504460D4600BF002202210948FEF7B5 -:102F1000A9FA00BFAAB24FF47A7321460648FFF718 -:102F200024FA00BF012202210248FEF79BFA00BFEB -:102F300070BD000000080140D00F002070B50446AD -:102F40000D462A4621460320FFF7B4FF002004491E -:102F500048800870012008710020487170BD000091 -:102F60003400002070470000F8B5064600BFD520A9 -:102F700000F01EFC00BF21A0006800900021084660 -:102F800000F03EF8002436E000252DE004EB84013B -:102F900005EB8101715C6A4602EB9111087800F043 -:102FA0003DFC04EB840105EB8101715CC1F301116F -:102FB0001DF8010000F032FC04EB840105EB8101F7 -:102FC000715CC1F381011DF8010000F027FC04EBE6 -:102FD000840105EB8101715C01F003011DF8010022 -:102FE00000F01CFC681C85B2142DCFDB002000F023 -:102FF00015FC601C84B2A02CC6DBF8BD000FF0FFEE -:1030000070B504460D4604F12500C4B204F00F006B -:1030100000F0CEFBC4F3021141F0100000F0C8FB39 -:1030200005F00F0141F0600000F0C2FB702141EAA1 -:10303000151000F0BDFB70BD10B5FEF71FFA10BDF6 -:103040007047000010B514480068006900F00100E6 -:10305000D8B112480068401C104908600846006852 -:10306000C821B0FBF1F201FB120010B901200C499C -:10307000087000F0D5FD00BF01210A48FEF7E8F90D -:1030800000BFFDF7D1F9FFF757FD6FF001000249CE -:103090000968086110BD00009401002000000020B4 -:1030A000040000200008014010B50268244B98423B -:1030B0000ED0244B98420BD0B0F1804F08D0224B59 -:1030C000984205D0214B984202D0214B984203D11F -:1030D00022F070024B681A43194B98420ED0194BDC -:1030E00098420BD0B0F1804F08D0174B984205D0D2 -:1030F000164B984202D0164B984203D122F44072EC -:10310000CB681A4322F080034C6943EA0402026050 -:103110008B68C3620B688362094B984202D0094BEB -:10312000984201D10B69036301234361036903F0F2 -:1031300001031BB1036923F00103036110BD00000B -:10314000002C014000340140000400400008004011 -:10315000000C004070B505466C6A0020E085E084F4 -:103160002046FEF793FE70BD70B506460025746AD2 -:1031700020684069C0F3C01594F84100212805D1AA -:1031800025B10020E084204600F0C8F8206840699E -:10319000C0F3801594F84200222805D125B1002003 -:1031A000E085204600F074F8606C40F01000606428 -:1031B0002046FEF76BFE70BD70B505466C6A286848 -:1031C000006800F02000002842D1E08500BF00BF69 -:1031D00021680C3151E8001F21F4807021680C3106 -:1031E00041E80002002AF3D100BF00BF00BF216800 -:1031F000143151E8001F21F001002168143141E829 -:103200000002002AF3D100BF00BF00BF21681431C3 -:1032100051E8001F21F040002168143141E800020C -:10322000002AF3D100BF202084F84200206B01283F -:103230000ED100BF00BF21680C3151E8001F21F002 -:10324000100021680C3141E80002002AF3D100BFD0 -:1032500000206063206B012804D1A18D2046FEF779 -:10326000FDFD02E02046FFF731F870BD70B5054660 -:103270006C6A01206063206B012805D1A08D410894 -:103280002046FEF7EBFD02E02046FFF76DF870BD2B -:1032900000BF00BF02680C3252E8002F22F4907188 -:1032A00002680C3242E80013002BF3D100BF00BFCC -:1032B00000BF0268143252E8002F22F001010268B8 -:1032C000143242E80013002BF3D100BF016B012937 -:1032D0000ED100BF00BF02680C3252E8002F22F06E -:1032E000100102680C3242E80013002BF3D100BF3A -:1032F000202180F8421000210163704710B5044678 -:103300002068C06820F040002168C860202084F850 -:1033100041002046FFF788F8002010BD00BF00BF25 -:1033200002680C3252E8002F22F0C00102680C3211 -:1033300042E80013002BF3D100BF202180F8411098 -:103340007047F8B5044694F84200222875D1A06869 -:10335000B0F5805F0CD1206950B90025A66A2068BD -:103360004068C0F308003080A06A801CA06215E0AD -:10337000A56A0026A068B0F5805F03D0A06828B9D0 -:10338000206918B920684068287004E02068406807 -:1033900000F07F002870A06A401CA062E08D401EF3 -:1033A00080B2E085002846D12068C06820F0200067 -:1033B0002168C8602068C06820F480702168C860F7 -:1033C0002068406920F0010021684861202084F8CD -:1033D000420000206063206B012826D1002020637A -:1033E00000BF00BF21680C3151E8001F21F0100020 -:1033F00021680C3141E80002002AF3D100BF2068A7 -:10340000006800F0100010280AD100BF00200090D2 -:1034100020680068009020684068009000BF00BFEE -:10342000A18D2046FEF71AFD02E02046FEF74EFF72 -:103430000020F8BD01E00020FBE70220F9E70000D2 -:1034400070B504462168096921F44051E2681143CE -:10345000226811612269A1681143626941EA02058B -:103460002168C96841F20C62914329432268D16006 -:103470002168496921F44071A269114322685161B0 -:103480002D4A2168914202D1FEF7A0F901E0FEF732 -:103490008DF900EBC00101EB001162689200B1FBF5 -:1034A000F2F100EBC00202EB001263689B00B2FB7A -:1034B000F3F26423B2FBF3F202EBC20303EB02125A -:1034C000A1EB8201322202EB01116422B1FBF2F185 -:1034D00001F0F00100EBC00202EB001263689B00F8 -:1034E000B2FBF3F26423B2FBF3F201EB021200EB46 -:1034F000C00101EB001163689B00B1FBF3F100EB2D -:10350000C00303EB00136668B600B3FBF6F3642652 -:10351000B3FBF6F303EBC30606EB0313A1EB830146 -:10352000322303EB01116423B1FBF3F101F00F012E -:1035300011442268916070BD0038014077B581B0B8 -:10354000044615460298A062A585002060642220EA -:1035500084F842002848E16B88622848E16BC86221 -:103560002748E16B08630020E16B486302AE3268D4 -:103570002368191D2B46E06BFDF7A2FC00BF00205D -:10358000009020680068009020684068009000BFAC -:1035900000BF206970B100BF00BF21680C3151E845 -:1035A000001F41F4807021680C3141E80002002ABC -:1035B000F3D100BF00BF00BF2168143151E8001FE4 -:1035C00041F001002168143141E80002002AF3D1E2 -:1035D00000BF00BF00BF2168143151E8001F41F057 -:1035E00040002168143141E80002002AF3D100BFF5 -:1035F000002004B070BD0000B93100086D32000831 -:103600006931000810B5034699629A85DA85002071 -:103610005864222083F84200186928B11868C068ED -:1036200040F480701C68E0601868406940F0010058 -:103630001C6860611868C06840F020001C68E06089 -:10364000002010BD014691F84100212828D188684A -:10365000B0F5805F0BD1086948B90A6A1088C0F3D9 -:1036600008000B685860086A801C086205E00B6A55 -:10367000581C086218780B685860C88C401E80B2CD -:10368000C88458B90868C06820F080000B68D8600A -:103690000868C06840F040000B68D86000207047A0 -:1036A0000220FCE72DE9F84304460D4617469846EC -:1036B000089E31E0701C70B3FDF7DAFEA0EB080045 -:1036C000B04200D816B90320BDE8F8832068C0686E -:1036D00000F00400F8B1802D1ED0402D1CD02068D1 -:1036E0000068C0F3C000B0B100BF002000902068A7 -:1036F0000068009020684068009000BF00BF20462E -:10370000FFF7C6FD0820606400BF002084F8400079 -:1037100000BF0120D8E7FFE7206800682840A842E2 -:1037200001D1012000E00020B842C3D00020CBE747 -:103730000021044A1268D1B241EA0022014B1A600A -:10374000704700000C18014010B50248FEF7A0FBBE -:1037500010BD00001801002010B50248FEF798FBCC -:1037600010BD0000D00F002000BFFEE700B585B0FF -:1037700000BF00BF0C48806940F004000A4988611E -:103780000846806900F00400009000BF00BF00BF41 -:1037900001200190029003900320049001A90348A6 -:1037A000FDF7AEFC05B000BD00100240000801406E -:1037B00010B5044600BF00224FF480411648FDF7C3 -:1037C00051FE00BF00BF012211031348FDF74AFE5E -:1037D00000BF2046FFF7ACFF00BF00224FF400619E -:1037E0000D48FDF73FFE00BF00BF00224FF400511F -:1037F0000948FDF737FE00BF00BF0122510306480C -:10380000FDF730FE00BF00BF0122D1020248FDF7E4 -:1038100029FE00BF10BD0000000C014010B5044699 -:1038200000BF012291031648FDF71CFE00BF00BF38 -:10383000012211031248FDF715FE00BF2046FFF7D5 -:1038400077FF00BF00224FF400610D48FDF70AFE2C -:1038500000BF00BF00224FF400510948FDF702FEEF -:1038600000BF00BF012251030548FDF7FBFD00BF6B -:1038700000BF0122D1020248FDF7F4FD00BF10BDD8 -:10388000000C014002480068C0F3022070470000AD -:103890000CED00E010B5002804DB0A07130E054A02 -:1038A000135406E00A07140E034A00F00F031B1F0F -:1038B000D45410BD00E400E018ED00E000BF7047F4 -:1038C00008B1072900DB704700F10C0343F8212001 -:1038D00000BFF8E770B504467CB10848006860B1E5 -:1038E0002579082D08D205EB4501054A02EB810137 -:1038F000087A02490968884700BF70BD240000208B -:103900004051000870B5044600BF2079A16888477F -:103910000546E07800F00700002802DD2088401C02 -:103920002080E078B5EBD01F13D0E078C008401CB1 -:10393000E17860F3C501E170C1F3C20003280CDB3C -:10394000E07865F3C710E070E07820F03800E070B0 -:1039500003E0E07820F03800E070E07800F0070045 -:1039600005287DD2DFE800F0032858AFDB00E078BF -:10397000C0F38010E178B0EBD11F17D1A07820F010 -:10398000F000A07000BFE06810B12046E1688847F1 -:1039900000BF00202080A07820F00F00401CA07005 -:1039A000E07820F00700401CE07004E0A07820F0F0 -:1039B000F0008030A070DBE0E078C0F38010E178A8 -:1039C000B0EBD11F13D0A07820F0F0001030A07021 -:1039D00000BF206910B120462169884700BF002040 -:1039E0002080E07820F00700801CE07013E0208841 -:1039F000C82810DDA07820F0F0005030A07000BF83 -:103A0000206A10B12046216A884700BFE07820F084 -:103A10000700001DE070ABE0E078C0F38010E178B3 -:103A2000B0EBD11F25D1A07820F0F000A07000BF2E -:103A3000E06810B12046E168884700BFA07800F038 -:103A40000F000F2804DAA078411C61F30300A07076 -:103A500000BF606910B120466169884700BF00E07F -:103A600081E000202080E07820F00700C01CE0709A -:103A700028E020883C2825DDA07800F00F000128F0 -:103A80000BD1A07820F0F0003030A07000BFA0690A -:103A900010B12046A169884710E0A07800F00F001F -:103AA00002280BD1A07820F0F0004030A07000BFB9 -:103AB000E06910B12046E169884700BFE07820F056 -:103AC0000700E07054E0E078C0F38010E178B0EBDC -:103AD000D11F1BD0A07820F0F0001030A07000BFE4 -:103AE000206910B120462169884700BF20883C2802 -:103AF00007DA00202080E07820F00700801CE070CA -:103B00000CE0E07820F00700E07007E020883C2817 -:103B100004DDE07820F00700401CE07028E0E07849 -:103B2000C0F38010E178B0EBD11F0BD1A07820F06A -:103B3000F0006030A07000BF606A10B12046616A7A -:103B400088470FE0A07820F0F0001030A07000BF90 -:103B5000206910B120462169884700BFE07820F035 -:103B60000700E07004E0E07820F00700E07000BF9C -:103B700000BF70BD2DE9F04104460D4616461F46B4 -:103B800004B10DB9BDE8F0812C212046FCF7C9FB3A -:103B9000A07820F0F0008030A070A5600EB9012060 -:103BA00000E00020E17860F3C711E170E07866F38F -:103BB0008610E0702771E07820F00700E07000BF09 -:103BC000E0E7000070B5044604EB4402064B33F80E -:103BD000221004EB440203EB82025068FDF730FC34 -:103BE0000546284670BD000040510008014611B945 -:103BF0006FF0010070470948026805E08A4202D16F -:103C00004FF0FF30F6E7926A002AF7D103480068C8 -:103C10008862024801600020ECE7000030000020CC -:103C200010B50548046803E02046FFF76BFEA46A60 -:103C3000002CF9D110BD00003000002001490860BF -:103C4000704700000C00002010B504464FF47A7154 -:103C500004FB01F000F002F810BD000070B503464F -:103C600000224FF0E02675690D4E366803FB06F41E -:103C70004FF0E026B16910E04FF0E026B0698842CD -:103C80000BD0884202D20E1A324402E02E1A0E44A1 -:103C900032440146A24200D300E0EDE700BF70BD10 -:103CA0000C00002038B504460D4600BF00BF124886 -:103CB000C06940F001001049C8610846C06900F0C1 -:103CC0000100009000BF00BF00BF88040B490860DE -:103CD0000846456000218160C460FEF70BF80022B1 -:103CE00002211C20FDF721FC1C20FDF70EFC0348DF -:103CF000FEF734F838BD00000010024094010020A7 -:103D0000FDF7C8FB4FF4E01000F04AF84820FFF739 -:103D100095FFFEF7E9FDFEF719FCFFF727FDFEF71B -:103D20003BFFFEF7D9FEFEF717FFFEF7EBFE41F66D -:103D30001F413120FFF7B6FF1348FEF77FFC22E05A -:103D400012480078012809D111480078012805D1CE -:103D500000200F4908700120FEF794FE0B480178FF -:103D60000C480078FEF7D4FF084908700020094984 -:103D70000870094800680949884204D9FDF728FC01 -:103D8000002005490860DBE729260008060000201E -:103D900004000020050000200000002040420F0029 -:103DA00030B58FB005460124282105A8FCF7B9FAE3 -:103DB00014216846FCF7B5FA01200590000406902E -:103DC0000020079002200C90C1030D910E9505A8CC -:103DD000FDF744FD04460CB100BFFEE70F20009044 -:103DE00002200190002002904FF480600390002098 -:103DF000049002216846FDF70DFC04460CB100BF9B -:103E0000FEE70FB030BD000000000000000001021E -:103E1000030406070809000000000102030402036E -:103E20000405060708090A0B0C0D0E0F10100102FD -:103E3000001001400001000103000000010000002B -:103E4000001001400002000103000000010000001A -:103E50000008014000020001030000000100000012 -:103E600000080140000800010300000001000000FC -:103E70000008014000800001030000000100000074 -:103E800000100140000800010300000001000000D4 -:103E900000140140010000010300000001000000C7 -:103EA00000140140040000010300000001000000B4 -:103EB0000014014010000001030000000100000098 -:103EC0000014014040000001030000000100000058 -:103ED000001001408000000103000000010000000C -:103EE0000008014000010001030000000100000083 -:103EF0000008014000040001030000000100000070 -:103F00000008014000100001030000000100000053 -:103F10000010014000040001030000000100000047 -:103F2000001001400010000103000000010000002B -:103F30000014014002000001030000000100000025 -:103F4000001401400800000103000000010000000F -:103F500000140140200000010300000001000000E7 -:103F60000014014080000001030000000100000077 -:103F70000000000000000000000000000000202001 -:103F800020202020002000000028505000000000C9 -:103F90000000000000002828FC2850FC50500000C1 -:103FA000002078A8A0603028A8F02000000048A8D1 -:103FB000B050283454480000000020505078A8A881 -:103FC000906C0000004040800000000000000000F5 -:103FD00000040810101010101008040000402010F9 -:103FE000101010101020400000000020A87070A8D1 -:103FF000200000000000202020F8202020000000E9 -:1040000000000000000000000040408000000000B0 -:1040100000F80000000000000000000000000000A8 -:104020006060000000081010102020404040800018 -:1040300000007088888888888870000000002060F0 -:104040002020202020700000000070888810204070 -:1040500080F80000000070880830080888700000B0 -:104060000000103050509078101800000000F880C8 -:1040700080F00808887000000000709080F0888848 -:10408000887000000000F890102020202020000000 -:104090000000708888708888887000000000708830 -:1040A0008888780848700000000000606000000008 -:1040B00000606000000000000020000000202000E0 -:1040C0000004081020402010080400000000000038 -:1040D000F80000F80000000000402010080408105C -:1040E0002040000000007088881020200020000080 -:1040F0000000708898A8A8B88078000000002020F0 -:104100003050507848CC00000000F04848704848D3 -:1041100048F000000000788880808080887000006F -:104120000000F0484848484848F000000000F848BF -:104130005070504048F800000000F848507050405F -:1041400040E000000000384880809C884830000033 -:104150000000CC484878484848CC00000000F820CF -:104160002020202020F8000000007C1010101010EB -:104170001090E0000000EC485060505048EC000007 -:104180000000E0404040404044FC00000000D8D81F -:10419000D8D8A8A8A8A800000000DC48686858582B -:1041A00048E80000000070888888888888700000CF -:1041B0000000F0484870404040E000000000708877 -:1041C000888888E8987018000000F04848705048C7 -:1041D00048EC0000000078888060100888F000003B -:1041E0000000F8A820202020207000000000CC480B -:1041F00048484848483000000000CC4848505030FB -:10420000202000000000A8A8A870505050500000C6 -:104210000000D8505020205050D800000000D85046 -:1042200050202020207000000000F8901020204036 -:1042300048F80000003820202020202020203800CE -:1042400000404040202010101008000000701010A6 -:10425000101010101010700000205000000000001E -:10426000000000000000000000000000000000FC52 -:10427000002000000000000000000000000000001E -:1042800000304838483C00000000C04040704848BA -:10429000487000000000000000384840403800002E -:1042A0000000180808384848483C0000000000009A -:1042B000003048784038000000001C202078202082 -:1042C0002078000000000000003C4830407844386E -:1042D0000000C0404070484848EC0000000020004A -:1042E000006020202070000000001000003010103E -:1042F000101010E00000C040405C507048EC00001E -:104300000000E0202020202020F800000000000015 -:1043100000F0A8A8A8A800000000000000F048488D -:1043200048EC000000000000003048484830000021 -:104330000000000000F04848487040E00000000025 -:10434000003848484838081C0000000000D8604089 -:1043500040E00000000000000078403008780000D5 -:104360000000002020702020201800000000000025 -:1043700000D84848483C00000000000000EC4850CD -:10438000302000000000000000A8A870505000007D -:104390000000000000D8502050D8000000000000AD -:1043A00000EC4850302020C00000000000781020B1 -:1043B00020780000001810101020101010101800A5 -:1043C000101010101010101010101010006020208D -:1043D000201020202020600040A4180000000000D1 -:1043E00000000000000000000000000000000000CD -:1043F00000001010101010100018000000122448C7 -:10440000000000000000000000002424FE4848FED8 -:104410004848000000103C545030181454781000E4 -:104420000000E4A4A8F01E2A2A4E00000000304834 -:10443000487EA494887700000060204000000000BF -:104440000000000000020C08101010100808060000 -:10445000004020100808080810204000000000104C -:10446000927C7C92100000000000101010FE1010D2 -:10447000100000000000000000000000006020406C -:1044800000000000007F00000000000000000000AD -:10449000000000000060000000010206040808108F -:1044A0002020400000003C2442424242243C0000C4 -:1044B0000000107010101010107C000000003C4232 -:1044C00042040810627E000000003C42021C02020E -:1044D000423C000000000C142444443C040C000046 -:1044E00000007E40407C0202423C000000001C2490 -:1044F000405C6242623C000000007E4408081010EC -:104500001010000000003C4242342C42423C0000AB -:104510000000186442463A02243C000000000000FB -:10452000180000000018000000000000001000004B -:104530000010100000020418204020100C0200009F -:1045400000000000FE0000FE0000000000402018F7 -:10455000040204083040000000003C4262020C08E3 -:104560000018000000003C469AAAAABC403E000089 -:10457000000010182824247C42E700000000F844C2 -:104580004478464242FC000000003E428080808029 -:10459000423C00000000F8444242424244F800001D -:1045A0000000FC424878484042FC00000000FC4209 -:1045B0004878484040E0000000003C4480808E8401 -:1045C000443800000000E742427E424242E70000D9 -:1045D00000007C1010101010107C000000003E083D -:1045E000080808080888F0000000EE4448705048A9 -:1045F00044EE00000000E0404040404042FE000029 -:104600000000EE6C6C6C545454D600000000C7627D -:1046100052524A4646E2000000003C4482828282B6 -:10462000443800000000FC42427C404040E0000072 -:1046300000003844828282B24C3806000000FC42FE -:10464000427C484446E3000000003E4240380402F9 -:10465000427C00000000FE92101010101038000084 -:104660000000E74242424242423C00000000E74272 -:1046700044242C28181000000000D69292929A6CC4 -:10468000644400000000E7662418182466E7000070 -:104690000000EE44283810101038000000007E841E -:1046A0000810102042FC0000001E10101010101006 -:1046B00010101E0000402020101008080404020002 -:1046C000007808080808080808087800001C22007C -:1046D00000000000000000000000000000000000DA -:1046E000000000FF002000000000000000000000AB -:1046F00000000000003C423E423F00000000C0407D -:10470000405C6242427C000000000000003C6240CD -:10471000423C000000000602021E6242423F0000CE -:1047200000000000003C427E403E000000000F10F0 -:10473000107E1010107C000000000000003E443885 -:10474000407C423C0000C040405C624242E70000C6 -:104750000000300000701010107C000000000C0001 -:10476000001C0404040404780000C040404E58704B -:1047700048EE00000000701010101010107C0000B7 -:104780000000000000FF494949ED00000000000062 -:1047900000D8664242E7000000000000003C4242B0 -:1047A000423C00000000000000F84642427C40E02D -:1047B00000000000003E4242423E020700000000AE -:1047C00000EE302020F8000000000000003E403CD9 -:1047D000427C000000000010107C1010100C000043 -:1047E0000000000000C64242423F000000000000FE -:1047F00000E74624281000000000000000D7929A2D -:104800006A44000000000000006E3C183C76000086 -:104810000000000000E74624181810E00000000027 -:10482000007E4418327E00000007040404080404DB -:10483000040403000808080808080808080808080D -:10484000007010101008101010106000304C0300A1 -:104850000000000000000000000000000000000058 -:104860000000000000000000000000000000000048 -:10487000000000000700070007000200020002001D -:104880000000070000000000000006600CC03300BC -:104890000000000000000000000000000000000018 -:1048A00000000000104010407FE0104020807FE0BA -:1048B0002080208000000000000002001F8032C025 -:1048C00032000E00038002C032C01F8002000000D0 -:1048D00000000000708089808900720005C00A20F5 -:1048E000122021C000000000000000001C00260073 -:1048F000240019C07880CD00C6007DE000000000D3 -:104900000000380008003000000000000000000037 -:1049100000000000000000000000004000800300D4 -:1049200006000600060006000300018000400000AB -:104930000000200018000C0006000600060006001B -:104940000C00180020000000000000000000030020 -:1049500062301AC01FC06230060000000000000074 -:10496000000000000200020002007FF002000200CE -:104970000200000000000000000000000000000035 -:1049800000000000000000000000380008003000B7 -:10499000000000000000000000007FE000000000B8 -:1049A0000000000000000000000000000000000007 -:1049B00000000000000000000000380000000000BF -:1049C00000000020004000800100020004000800F8 -:1049D0001000200040000000000000001F8030C0D8 -:1049E000606060606060606030C01F800000000038 -:1049F0000000000002003E0006000600060006005F -:104A000006003FC000000000000000001F8061C0E1 -:104A100060C0018002000C0030407FC00000000038 -:104A2000000000003F00618001800E00018000C096 -:104A300061C03F000000000000000000018007800E -:104A40000980118061801FC0018003C00000000048 -:104A5000000000003FC0200020002F8010C000C0D8 -:104A600061C03F0000000000000000000F8030C067 -:104A700060006FC07060606030601F8000000000E8 -:104A8000000000003FE02040008001000200020022 -:104A90000600060000000000000000003FC060E0CB -:104AA00060601F8031C0606070601F800000000087 -:104AB000000000001F8070C0606070E03F6000E098 -:104AC00031C01F00000000000000000000000000D6 -:104AD00007000000000000000000070000000000C8 -:104AE00000000000000000000000060000000000C0 -:104AF00000000600060000000000006000800300C7 -:104B00000C0030000800060001800060000000007A -:104B100000000000000000007FE0000000007FE0D7 -:104B20000000000000000000000030000800060047 -:104B300001800060008003000C00300000000000D5 -:104B4000000000001F8060E0606000C007000400FB -:104B500000000E0000000000000000000FC0382020 -:104B600063D0649069906FE038000FE000000000AF -:104B70000000000006000F000B00118011803FC0F4 -:104B800060C0F1F00000000000000000FF8060C085 -:104B900060C07F0060C0606060E0FF8000000000D7 -:104BA000000000000FE0382060006000600060003E -:104BB00030201FC00000000000000000FF0060C0A7 -:104BC000606060606060606060C0FF0000000000C6 -:104BD00000000000FFC0602061007F0061006000F5 -:104BE0006020FFC00000000000000000FFC0602047 -:104BF00061007F00610060006000F00000000000C4 -:104C00000000000007C038406000600063F060C032 -:104C100030C00F000000000000000000F0F06060F5 -:104C200060607FE0606060606060F0F00000000045 -:104C3000000000003FC00600060006000600060057 -:104C400006003FC000000000000000000FF00180DF -:104C50000180018001800180018061803F000000AF -:104C600000000000F1E0608067007C0062006100ED -:104C700060C0F0F00000000000000000F0006000E4 -:104C800060006000600060006020FFC00000000065 -:104C900000000000F0F070E0796059605E604E60E6 -:104CA0004C60E4F00000000000000000E0707020A4 -:104CB00058204620432041E04060E02000000000F2 -:104CC000000000001F8030C0606060606060606055 -:104CD00030C01F800000000000000000FFC06060C6 -:104CE00060607FC0600060006000F00000000000B5 -:104CF000000000001F8030C06060606060606E6017 -:104D000031C01F0000E0000000000000FFC0606034 -:104D100060607F806300618060C0F0700000000010 -:104D2000000000001FE0602060001F0001C0006064 -:104D300040E07F8000000000000000007FE086105F -:104D4000060006000600060006000F000000000036 -:104D500000000000F0706020602060206020602073 -:104D600060603FC00000000000000000F8F030402C -:104D70003040188018800D000F0006000000000071 -:104D800000000000F77066206240334037803F80AB -:104D900019801100000000000000000079E0188078 -:104DA0000D00060007000980104078E000000000B8 -:104DB00000000000F1F0204010800900060006000D -:104DC00006001F8000000000000000003FC060805F -:104DD000010002000400080010203FC00000000095 -:104DE000000007E0040004000400040004000400C4 -:104DF0000400040007E0000000002000100008008C -:104E00000800040002000100008000800040000053 -:104E100000003F000100010001000100010001004D -:104E2000010001003F0000000000070018C0000062 -:104E30000000000000000000000000000000000072 -:104E40000000000000000000000000000000000062 -:104E5000000000000000FFF000001C000000000047 -:104E60000000000000000000000000000000000042 -:104E7000000000000000000000001F8030C01FC0C4 -:104E800060C03FF000000000000000007000300033 -:104E9000300037C03860306030603F800000000074 -:104EA000000000000000000000001F007180600092 -:104EB00070401F80000000000000000001C000C022 -:104EC00000C01FC070C060C060C03FE000000000B4 -:104ED000000000000000000000000F8030603FE094 -:104EE00030000FC0000000000000000007E00C00D0 -:104EF0000C007FC00C000C000C003F800000000084 -:104F0000000000000000000000000FF030C01F8013 -:104F100030003F8060603FC0000000007000300043 -:104F20003000378038C030C030C079E00000000069 -:104F3000000000000600000000003E000600060021 -:104F400006003FC0000000000000000001800000DB -:104F500000000F80018001800180018001803F00FE -:104F60000000000070003000300033C033003E000D -:104F7000310079E000000000000000003E00060063 -:104F8000060006000600060006003FC00000000004 -:104F900000000000000000000000FFE066606660A6 -:104FA0006660F770000000000000000000000000D4 -:104FB0000000770038C030C030C079E00000000049 -:104FC000000000000000000000001F8070E0606032 -:104FD00070E01F80000000000000000000000000E2 -:104FE000000077C03860306030E03F8030007C00E7 -:104FF000000000000000000000001FC070C060C082 -:1050000060C03FC000C003E00000000000000000DE -:105010000000F9E01E0018001800FF00000000006A -:10502000000000000000000000001FE030000F80C2 -:1050300020603FC0000000000000000000000400ED -:105040000C007F800C000C000C400380000000006E -:105050000000000000000000000071C030C030C03F -:1050600030C01FE000000000000000000000000051 -:10507000000078F0104008800500020000000000E9 -:1050800000000000000000000000F7B0632037E0DF -:105090003DC018800000000000000000000000007B -:1050A00000007FE01D80060019807FE00000000006 -:1050B0000000000000000000000079E010801900EE -:1050C0000F0006000400380000000000000000008F -:1050D00000003FC02300060018203FE00000000051 -:1050E000000001C0010001000100060001000100F4 -:1050F0000100010000C000000200020002000200E6 -:10510000020002000200020002000200020002008F -:105110000000380008000800080006000800080029 -:1051200008000800300000003C00471001E00000CB -:10513000000000000000000000000000000000006F -:1051400000100000001401400100000000080000F1 -:10515000001401400200000000040000001401409F -:1051600003000000002000000014014007000000C0 -:105170000001000000140140080000000080000051 -:10518000000C01400400000008000000000C014079 -:10519000050000000080000000140140090000002C -:1051A00000C1814001C0804101C0804100C18140F7 -:1051B00001C0804100C1814000C1814001C08041E7 -:1051C00001C0804100C1814000C1814001C08041D7 -:1051D00000C1814001C0804101C0804100C18140C7 -:1051E00001C0804100C1814000C1814001C08041B7 -:1051F00000C1814001C0804101C0804100C18140A7 -:1052000000C1814001C0804101C0804100C1814096 -:1052100001C0804100C1814000C1814001C0804186 -:1052200001C0804100C1814000C1814001C0804176 -:1052300000C1814001C0804101C0804100C1814066 -:1052400000C1814001C0804101C0804100C1814056 -:1052500001C0804100C1814000C1814001C0804146 -:1052600000C1814001C0804101C0804100C1814036 -:1052700001C0804100C1814000C1814001C0804126 -:1052800001C0804100C1814000C1814001C0804116 -:1052900000C1814001C0804101C0804100C1814006 -:1052A00000C0C101C30302C2C60607C705C5C404C6 -:1052B000CC0C0DCD0FCFCE0E0ACACB0BC90908C836 -:1052C000D81819D91BDBDA1A1EDEDF1FDD1D1CDC26 -:1052D00014D4D515D71716D6D21213D311D1D01096 -:1052E000F03031F133F3F23236F6F737F53534F486 -:1052F0003CFCFD3DFF3F3EFEFA3A3BFB39F9F838F6 -:1053000028E8E929EB2B2AEAEE2E2FEF2DEDEC2CE5 -:10531000E42425E527E7E62622E2E323E12120E055 -:10532000A06061A163A3A26266A6A767A56564A445 -:105330006CACAD6DAF6F6EAEAA6A6BAB69A9A868B5 -:1053400078B8B979BB7B7ABABE7E7FBF7DBDBC7CA5 -:10535000B47475B577B7B67672B2B373B17170B015 -:105360005090915193535292965657975595945405 -:105370009C5C5D9D5F9F9E5E5A9A9B5B9959589875 -:10538000884849894B8B8A4A4E8E8F4F8D4D4C8C65 -:1053900044848545874746868242438341818040D5 -:1053A000C053000800000020500000006C010008FD -:1053B0001054000850000020B82F00008801000899 -:1053C00000000000000000000024F40000000000C5 -:1053D00000000000000000000000000010000000BD -:1053E00001000000000000000000000000000000BC -:1053F00000000000000000000000000000000000AD -:10540000000000000000000000000000000000009C +:102540000014014000F8FEBF0010024070B50446C0 +:10255000002500267CB180220021084601F096FC6F +:1025600080220121002001F091FC80220321002023 +:1025700001F08CFC0EE000221146104601F086FCB2 +:1025800000220121104601F081FC002203211046A7 +:1025900001F07CFC70BD000010B507480068401CCD +:1025A00005490860084600680F2804D30F2008601A +:1025B0000020FFF7CBFF10BD0800002010B586B04B +:1025C00000BF2F48806940F001002D49886108460E +:1025D000806900F00100019000BF00BF00BF2949E1 +:1025E000486820F0E06040F00070486000BF0020C4 +:1025F000029003900490059000243DE004EB440118 +:10260000214A02EB81014868FFF712FF04EB440006 +:102610001D4931F82000029000200390049003200F +:10262000059004EB4401184A02EB8101486802A9B5 +:10263000FEF766FD04EB440101EBC401134A02EB13 +:10264000810023460022124901F0D6FA04EB44012E +:1026500001EBC4010D4A02EB81000E4A032101F097 +:1026600071F904EB440101EBC401084A02EB81005B +:1026700001F0FEFA601CC4B2082CBFD306B010BD36 +:10268000001002400000014004520008E401002054 +:10269000493C00085939000810B50446FDF7E0FE32 +:1026A0000120FFF753FF0020024908600248047030 +:1026B00010BD00000800002005000020014908604E +:1026C000704700002800002000B585B000BF1A4800 +:1026D000806940F00800184988610846806900F068 +:1026E0000800009000BF00BF00BF0846806940F0AE +:1026F000400088610846806900F04000009000BFFB +:1027000000BF47F601400190012002900390032092 +:10271000049001A90948FEF7F3FC4FF47F400190B3 +:102720000120029003900320049001A90448FEF7C1 +:10273000E7FC05B000BD000000100240000C0140A5 +:102740000018014010B5E92001F074F82B2001F0C9 +:1027500071F8242001F06EF8812001F06BF8BE20A2 +:1027600001F068F8A42001F065F8A62001F062F8F5 +:10277000C02001F05FF8A32001F05CF8D12001F047 +:1027800059F8D52001F056F8DA2001F053F8F4207A +:1027900001F050F8252001F04DF8F62001F04AF83C +:1027A0005A2001F047F8F52001F044F8002001F02C +:1027B00041F8F72001F03EF89F2001F03BF8F820A7 +:1027C00001F038F8892001F035F8AD2001F032F839 +:1027D000402001F02FF8502001F02CF8C42001F027 +:1027E00029F8902001F026F8FF2001F023F884203A +:1027F00001F020F8F12001F01DF89F2001F01AF8F7 +:1028000010BD000010B500BF012291020E48FEF776 +:1028100029FE00BF0A2001F059FA00BF00224FF440 +:1028200080610948FEF71EFE00BF022001F04EFA4B +:1028300000BF012291020448FEF714FE00BF96205B +:1028400001F044FA10BD0000000C014008B5434AF5 +:10285000811A904241D009DC4149014481B1B1F56E +:10286000806F1CD0B1F5006F74D127E0B1F5806F97 +:1028700042D0B1F5006F4ED0B1F5406F6AD159E04A +:1028800000BF3849896941F00401364A9161114617 +:10289000896901F00401009100BF00BF5BE000BF47 +:1028A0003049896941F008012E4A916111468969D0 +:1028B00001F00801009100BF00BF4CE000BF2949B2 +:1028C000896941F01001274A91611146896901F037 +:1028D0001001009100BF00BF3DE000BF21498969A0 +:1028E00041F020011F4A91611146896901F02001E0 +:1028F000009100BF00BF2EE000BF1A49896941F076 +:102900004001184A91611146896901F04001009126 +:1029100000BF00BF1FE000BF1249896941F080017C +:10292000104A91611146896901F08001009100BF50 +:1029300000BF10E000BF0B49896941F48071094A6A +:1029400091611146896901F48071009100BF00BF57 +:1029500001E0FFE700BF00BF08BD00000014014018 +:1029600000F8FEBF001002401FB5002447E02749D1 +:1029700001EB04110868FFF769FF244800EB04101D +:102980008088009001200190204800EB04108068AE +:1029900003901E4800EB0410C06802901B4901EB35 +:1029A000041108686946FEF7ABFB184B03EB0413F0 +:1029B000DA79164B03EB04139988144B03EB0413D9 +:1029C0001868FEF74FFD114800EB0410807950B9EC +:1029D0000E4800EB0410C07908B9012000E0002087 +:1029E0000B49085509E0094800EB0410C07901289B +:1029F00000D100E0002006490855601CC4B2142C28 +:102A0000B5DB0121002000F06FF81FBDF43E000887 +:102A10008801002070B50446142C00DB70BD0C4802 +:102A200000EB0410807908B9012500E00025084A70 +:102A300002EB04129188064A02EB041210682A463F +:102A4000FEF710FD00200349085500BFE6E700002F +:102A5000F43E00088801002070B50446142C00DB09 +:102A600070BD0C4800EB0410807908B9002500E027 +:102A70000125084A02EB04129188064A02EB04126F +:102A800010682A46FEF7EEFC01200349085500BFF6 +:102A9000E6E70000F43E0008880100202DE9F0413F +:102AA0000446E0780006A17840EA0140617840EAF7 +:102AB0000120217840EA010600250121002000F0D4 +:102AC00013F801250CE00120A840304008B1012096 +:102AD00000E000200746E8B2394600F005F86D1C1A +:102AE000142DF0D3BDE8F08170B505460C46012CDD +:102AF00003D12846FFF7B0FF02E02846FFF78AFF20 +:102B000070BD000010B50446142C00DB10BD0A4A4D +:102B100002EB04129188084A02EB04121068FEF7D7 +:102B200097FC0648005D012801D0012000E000204C +:102B30000249085500BFE9E7F43E0008880100207B +:102B400010B5044AD2F8841CD2F8800CFDF718FDA9 +:102B500010BD0000A810002010B5FFF7B5FD00BFA4 +:102B6000012211460548FEF77DFC00BFFFF74AFE33 +:102B7000FFF7E8FDFDF7BEFC10BD0000000C0140B2 +:102B800000BFFEE710B5FDF729FCFFF7D9FF4FF4B2 +:102B9000FA7001F09BF84FF4FA7001F097F84FF4D7 +:102BA000FA7001F093F84FF4FA7001F08FF810BD4D +:102BB00000BFFEE77047000006480078401C05494A +:102BC00008700846007918B108464079401C4871E1 +:102BD0007047000038000020002004498871087107 +:102BE0004871C871012048807047000038000020FB +:102BF00008B508490968C9084FF47A72B1FBF2F1C7 +:102C00004143009100BF00BF00994A1E0092002975 +:102C1000F9D108BD0C00002000B585B000BF00BF91 +:102C20005348806940F00400514988610846806932 +:102C300000F00400009000BF00BF00BF00BF00BF55 +:102C40000846806940F0040088610846806900F009 +:102C50000400009000BF00BF00BF00BF00BF0846D7 +:102C6000806940F0040088610846806900F0040033 +:102C7000009000BF00BF00BF00BF00BF0846C06992 +:102C800040F40030C8610846C06900F4003000908C +:102C900000BF00BF00BF002001900290039004908D +:102CA0000420019002200290012003900320049050 +:102CB00001A93048FEF724FA082001900020029074 +:102CC00001A92C48FEF71CFA022001900120029075 +:102CD00001A92848FEF714FA27482849086000206F +:102CE00048600021254881608021C1600021016188 +:102CF000416181614FF44051C161FEF79BF800BF13 +:102D00001E481F49C86308461C49486200BF10207E +:102D1000FEF7FBFB002211461020FEF706FC1948C7 +:102D20001749086018484860002115488160C16053 +:102D3000016181610C2141610021C161FFF71AFA33 +:102D40002620FEF7E2FB002201212620FEF7EDFB04 +:102D500000BF012202210748FEF784FB00BF40F6B6 +:102D600088420A490648FFF741F805B000BD000057 +:102D700000100240000801406C00024020100020BA +:102D8000D80F00200044004060AE0A004503002038 +:102D900070B504460D462E462CB15D480078A04221 +:102DA00001D05B4804705B480078002876D0002092 +:102DB00058490870012640F688415648401CFDF7E6 +:102DC00081FB012854D10020534908604FF4486228 +:102DD0005049491C5148FDF72DFA514951480268A4 +:102DE0000A604068486008460079892834D108465E +:102DF0004079452830D14FF4486248494A48FDF7A8 +:102E00005EFA474840784649097840EA0120464939 +:102E1000C1F8800C4248C0784149897840EA0120D5 +:102E20004149C1F8840CFDF7F3FAFDF719FBFDF7F2 +:102E300061FBFFF785FE4FF4FA7000F047FF4FF497 +:102E4000FA7000F043FF4FF4FA7000F03FFF4FF4C8 +:102E5000FA7000F03BFF19E034492E48D0F8810C9D +:102E600008600846FFF71AFE2C4800F0BDF80DE098 +:102E700029480068401C2849086008460068032863 +:102E800004D3FFF7C9FE0020234908600020284929 +:102E9000887108714871C8710120488024484088B1 +:102EA00010B923488079B0B11948007838B1184872 +:102EB0000178002000F082F80020154908701C48B5 +:102EC0000078372807DD12480178012000F076F8F5 +:102ED00000200F49087016484079282808DD012095 +:102EE00013498871002048710846C079401CC87198 +:102EF0000F48C079052808DB002605200C49C87159 +:102F0000FFF78AFE01200A494880304670BD000064 +:102F1000400000204403002050000020301D00200D +:102F200045000020C50F0020A8100020410000200F +:102F3000380000202DE9FC4104460D4616460027C6 +:102F400001208DF800008DF801408DF802508DF8B9 +:102F5000036004216846FDF795FA074638128DF89C +:102F60000400F8B28DF805000621684600F008F864 +:102F7000002002494880BDE8FC81000038000020A4 +:102F800070B504460D4600BF002202210948FEF735 +:102F900069FA00BFAAB24FF47A7321460648FFF7D8 +:102FA000E4F900BF012202210248FEF75BFA00BFEC +:102FB00070BD000000080140D80F002070B5044625 +:102FC0000D462A4621460320FFF7B4FF002004499E +:102FD00048800870012008710020487170BD000011 +:102FE0003800002070470000F8B5064600BFD52025 +:102FF00000F020FC00BF21A00068009000210846DE +:1030000000F03EF8002436E000252DE004EB8401BA +:1030100005EB8101715C6A4602EB9111087800F0C2 +:103020003FFC04EB840105EB8101715CC1F30111EC +:103030001DF8010000F034FC04EB840105EB810174 +:10304000715CC1F381011DF8010000F029FC04EB63 +:10305000840105EB8101715C01F003011DF80100A1 +:1030600000F01EFC681C85B2142DCFDB002000F0A0 +:1030700017FC601C84B2A02CC6DBF8BD000FF0FF6B +:1030800070B504460D4604F12500C4B204F00F00EB +:1030900000F0D0FBC4F3021141F0100000F0CAFBB5 +:1030A00005F00F0141F0600000F0C4FB702141EA1F +:1030B000151000F0BFFB70BD10B5FEF7DFF910BDB5 +:1030C0007047000010B515480068006900F0010065 +:1030D00010B313480068401C114908600846006896 +:1030E000C821B0FBF1F201FB120010B901200D491B +:1030F000087000F0D7FD00BF01210B48FEF7A8F9CA +:1031000000BFFDF791F9FFF757FDFFF745FA6FF0A4 +:10311000010002490968086110BD00009C010020FF +:1031200000000020040000200008014010B50268E3 +:10313000244B98420ED0244B98420BD0B0F1804FD4 +:1031400008D0224B984205D0214B984202D0214B07 +:10315000984203D122F070024B681A43194B9842EF +:103160000ED0194B98420BD0B0F1804F08D0174BBE +:10317000984205D0164B984202D0164B984203D184 +:1031800022F44072CB681A4322F080034C6943EA70 +:10319000040202608B68C3620B688362094B984229 +:1031A00002D0094B984201D10B69036301234361AB +:1031B000036903F001031BB1036923F001030361F9 +:1031C00010BD0000002C014000340140000400400C +:1031D00000080040000C004070B505466C6A0020F5 +:1031E000E085E0842046FEF751FE70BD70B50646CE +:1031F0000025746A20684069C0F3C01594F8410046 +:10320000212805D125B10020E084204600F0C8F82F +:1032100020684069C0F3801594F84200222805D147 +:1032200025B10020E085204600F074F8606C40F085 +:10323000100060642046FEF729FE70BD70B505469B +:103240006C6A2868006800F02000002842D1E08500 +:1032500000BF00BF21680C3151E8001F21F48070CD +:1032600021680C3141E80002002AF3D100BF00BF01 +:1032700000BF2168143151E8001F21F001002168CE +:10328000143141E80002002AF3D100BF00BF00BFA3 +:103290002168143151E8001F21F0400021681431E9 +:1032A00041E80002002AF3D100BF202084F8420048 +:1032B000206B01280ED100BF00BF21680C3151E8FE +:1032C000001F21F0100021680C3141E80002002AA3 +:1032D000F3D100BF00206063206B012804D1A18DD1 +:1032E0002046FEF7BBFD02E02046FEF7EFFF70BD73 +:1032F00070B505466C6A01206063206B012805D11A +:10330000A08D41082046FEF7A9FD02E02046FFF708 +:103310002BF870BD00BF00BF02680C3252E8002FCE +:1033200022F4907102680C3242E80013002BF3D1B2 +:1033300000BF00BF00BF0268143252E8002F22F025 +:1033400001010268143242E80013002BF3D100BFE0 +:10335000016B01290ED100BF00BF02680C3252E898 +:10336000002F22F0100102680C3242E80013002BFB +:10337000F3D100BF202180F8421000210163704783 +:1033800010B504462068C06820F040002168C8607D +:10339000202084F841002046FFF746F8002010BDA9 +:1033A00000BF00BF02680C3252E8002F22F0C001BB +:1033B00002680C3242E80013002BF3D100BF202139 +:1033C00080F841107047F8B5044694F8420022286E +:1033D00075D1A068B0F5805F0CD1206950B9002587 +:1033E000A66A20684068C0F308003080A06A801C8C +:1033F000A06215E0A56A0026A068B0F5805F03D042 +:10340000A06828B9206918B920684068287004E0CD +:103410002068406800F07F002870A06A401CA0620D +:10342000E08D401E80B2E085002846D12068C0684B +:1034300020F020002168C8602068C06820F48070F7 +:103440002168C8602068406920F001002168486157 +:10345000202084F8420000206063206B012826D1E0 +:103460000020206300BF00BF21680C3151E8001F1D +:1034700021F0100021680C3141E80002002AF3D14C +:1034800000BF2068006800F0100010280AD100BFBB +:10349000002000902068006800902068406800903C +:1034A00000BF00BFA18D2046FEF7D8FC02E02046F9 +:1034B000FEF70CFF0020F8BD01E00020FBE7022032 +:1034C000F9E7000070B504462168096921F440510C +:1034D000E2681143226811612269A168114362699F +:1034E00041EA02052168C96841F20C62914329430F +:1034F0002268D1602168496921F44071A2691143B1 +:10350000226851612D4A2168914202D1FEF75EF98D +:1035100001E0FEF74BF900EBC00101EB001162681E +:103520009200B1FBF2F100EBC00202EB0012636803 +:103530009B00B2FBF3F26423B2FBF3F202EBC20393 +:1035400003EB0212A1EB8201322202EB0111642291 +:10355000B1FBF2F101F0F00100EBC00202EB00124E +:1035600063689B00B2FBF3F26423B2FBF3F201EB5E +:10357000021200EBC00101EB001163689B00B1FB7C +:10358000F3F100EBC00303EB00136668B600B3FB76 +:10359000F6F36426B3FBF6F303EBC30606EB031363 +:1035A000A1EB8301322303EB01116423B1FBF3F19F +:1035B00001F00F0111442268916070BD0038014094 +:1035C00077B581B0044615460298A062A585002013 +:1035D0006064222084F842002848E16B8862284811 +:1035E000E16BC8622748E16B08630020E16B486328 +:1035F00002AE32682368191D2B46E06BFDF760FCB4 +:1036000000BF00200090206800680090206840689B +:10361000009000BF00BF206970B100BF00BF2168EB +:103620000C3151E8001F41F4807021680C3141E8F1 +:103630000002002AF3D100BF00BF00BF216814318F +:1036400051E8001F41F001002168143141E80002F7 +:10365000002AF3D100BF00BF00BF2168143151E838 +:10366000001F41F040002168143141E80002002AA7 +:10367000F3D100BF002004B070BD00003D3200084F +:10368000F1320008ED31000810B5034699629A85C1 +:10369000DA8500205864222083F84200186928B196 +:1036A0001868C06840F480701C68E0601868406961 +:1036B00040F001001C6860611868C06840F020009C +:1036C0001C68E060002010BD014691F841002128EF +:1036D00028D18868B0F5805F0BD1086948B90A6ABB +:1036E0001088C0F308000B685860086A801C0862E4 +:1036F00005E00B6A581C086218780B685860C88C83 +:10370000401E80B2C88458B90868C06820F08000A4 +:103710000B68D8600868C06840F040000B68D8604B +:10372000002070470220FCE72DE9F84304460D46CF +:1037300017469846089E31E0701C70B3FDF798FE5E +:10374000A0EB0800B04200D816B90320BDE8F8830A +:103750002068C06800F00400F8B1802D1ED0402D14 +:103760001CD020680068C0F3C000B0B100BF0020CA +:10377000009020680068009020684068009000BFBA +:1037800000BF2046FFF7C6FD0820606400BF002090 +:1037900084F8400000BF0120D8E7FFE720680068F8 +:1037A0002840A84201D1012000E00020B842C3D047 +:1037B0000020CBE70021044A1268D1B241EA00227E +:1037C000014B1A60704700000C18014010B5024808 +:1037D000FEF75EFB10BD00001C01002010B5024882 +:1037E000FEF756FB10BD0000D80F002000BFFEE71B +:1037F00000B585B000BF00BF0C48806940F00400F0 +:103800000A4988610846806900F00400009000BF02 +:1038100000BF00BF0120019002900390032004909C +:1038200001A90348FDF76CFC05B000BD0010024083 +:103830000008014010B5044600BF00224FF480414B +:103840001648FDF70FFE00BF00BF01221103134809 +:10385000FDF708FE00BF2046FFF7ACFF00BF0022C7 +:103860004FF400610D48FDF7FDFD00BF00BF0022D1 +:103870004FF400510948FDF7F5FD00BF00BF0122DC +:1038800051030648FDF7EEFD00BF00BF0122D10243 +:103890000248FDF7E7FD00BF10BD0000000C01402D +:1038A00010B5044600BF012291031648FDF7DAFD6A +:1038B00000BF00BF012211031248FDF7D3FD00BF76 +:1038C0002046FFF777FF00BF00224FF400610D484C +:1038D000FDF7C8FD00BF00BF00224FF400510948AA +:1038E000FDF7C0FD00BF00BF012251030548FDF7F1 +:1038F000B9FD00BF00BF0122D1020248FDF7B2FDB1 +:1039000000BF10BD000C014002480068C0F3022057 +:10391000704700000CED00E010B5002804DB0A073A +:10392000130E054A135406E00A07140E034A00F06A +:103930000F031B1FD45410BD00E400E018ED00E09D +:1039400000BF704708B1072900DB704700F10C0386 +:1039500043F8212000BFF8E770B504467CB1084861 +:10396000006860B12579082D08D205EB4501054AAC +:1039700002EB8101087A02490968884700BF70BDDF +:10398000280000200452000870B5044600BF2079CA +:10399000A16888470546E07800F00700002802DDAE +:1039A0002088401C2080E078B5EBD01F13D0E07851 +:1039B000C008401CE17860F3C501E170C1F3C200AA +:1039C00003280CDBE07865F3C710E070E07820F0A6 +:1039D0003800E07003E0E07820F03800E070E07834 +:1039E00000F0070005287DD2DFE800F0032858AF7B +:1039F000DB00E078C0F38010E178B0EBD11F17D185 +:103A0000A07820F0F000A07000BFE06810B1204660 +:103A1000E168884700BF00202080A07820F00F00D8 +:103A2000401CA070E07820F00700401CE07004E02B +:103A3000A07820F0F0008030A070DBE0E078C0F3E8 +:103A40008010E178B0EBD11F13D0A07820F0F00007 +:103A50001030A07000BF206910B12046216988474E +:103A600000BF00202080E07820F00700801CE0707C +:103A700013E02088C82810DDA07820F0F000503036 +:103A8000A07000BF206A10B12046216A884700BF9D +:103A9000E07820F00700001DE070ABE0E078C0F3B4 +:103AA0008010E178B0EBD11F25D1A07820F0F00094 +:103AB000A07000BFE06810B12046E168884700BFF1 +:103AC000A07800F00F000F2804DAA078411C61F301 +:103AD0000300A07000BF606910B12046616988478B +:103AE00000BF00E081E000202080E07820F00700A7 +:103AF000C01CE07028E020883C2825DDA07800F07C +:103B00000F0001280BD1A07820F0F0003030A07019 +:103B100000BFA06910B12046A169884710E0A078D5 +:103B200000F00F0002280BD1A07820F0F000403008 +:103B3000A07000BFE06910B12046E169884700BF6E +:103B4000E07820F00700E07054E0E078C0F38010E7 +:103B5000E178B0EBD11F1BD0A07820F0F00010303E +:103B6000A07000BF206910B120462169884700BFBE +:103B700020883C2807DA00202080E07820F0070029 +:103B8000801CE0700CE0E07820F00700E07007E0B7 +:103B900020883C2804DDE07820F00700401CE0701D +:103BA00028E0E078C0F38010E178B0EBD11F0BD1B2 +:103BB000A07820F0F0006030A07000BF606A10B103 +:103BC0002046616A88470FE0A07820F0F0001030AE +:103BD000A07000BF206910B120462169884700BF4E +:103BE000E07820F00700E07004E0E07820F00700C3 +:103BF000E07000BF00BF70BD2DE9F04104460D46E6 +:103C000016461F4604B10DB9BDE8F0812C212046AF +:103C1000FCF787FBA07820F0F0008030A070A56052 +:103C20000EB9012000E00020E17860F3C711E170D7 +:103C3000E07866F38610E0702771E07820F00700E6 +:103C4000E07000BFE0E7000070B5044604EB4402FA +:103C5000064B33F8221004EB440203EB8202506857 +:103C6000FDF7EEFB0546284670BD00000452000833 +:103C7000014611B96FF0010070470948026805E07C +:103C80008A4202D14FF0FF30F6E7926A002AF7D15C +:103C9000034800688862024801600020ECE70000E9 +:103CA0003400002010B50548046803E02046FFF703 +:103CB0006BFEA46A002CF9D110BD00003400002076 +:103CC00001490860704700001000002010B504464C +:103CD0004FF47A7104FB01F000F002F810BD00000F +:103CE00070B5034600224FF0E02675690D4E366828 +:103CF00003FB06F44FF0E026B16910E04FF0E02638 +:103D0000B06988420BD0884202D20E1A324402E0D7 +:103D10002E1A0E4432440146A24200D300E0EDE7E1 +:103D200000BF70BD1000002038B504460D4600BF2E +:103D300000BF1248C06940F001001049C861084640 +:103D4000C06900F00100009000BF00BF00BF880400 +:103D50000B4908600846456000218160C460FDF79A +:103D6000C9FF002202211C20FDF7DFFB1C20FDF70C +:103D7000CCFB0348FDF7F2FF38BD00000010024005 +:103D80009C010020FDF786FB4FF4E01000F04AF89C +:103D90004820FFF795FFFEF7E7FDFEF70FFCFFF762 +:103DA00027FDFEF739FFFEF7D7FEFEF715FFFEF7FA +:103DB000E9FE41F61F413120FFF7B6FF1348FEF739 +:103DC0007DFC22E012480078012809D111480078D2 +:103DD000012805D100200F4908700120FEF792FE4E +:103DE0000B4801780C480078FEF7D2FF08490870AC +:103DF000002009490870094800680949884204D927 +:103E0000FDF7E6FB002005490860DBE7992600087E +:103E10000600002004000020050000200000002013 +:103E200040420F0030B58FB005460124282105A877 +:103E3000FCF777FA14216846FCF773FA0120059025 +:103E4000000406900020079002200C90C1030D9101 +:103E50000E9505A8FDF702FD04460CB100BFFEE774 +:103E60000F20009002200190002002904FF480600B +:103E700003900020049002216846FDF7CBFB044626 +:103E80000CB100BFFEE70FB030BD0000F8B505462D +:103E90000E4614460BA00068009031462846FFF7F6 +:103EA000EFF8694601EB94110878FFF7F9FCC4F3C9 +:103EB00040121DF81200FFF7F3FC9DF80000FFF719 +:103EC000EFFCF8BD000FF0FF000000000000000054 +:103ED00001020304060708090000000001020304B0 +:103EE00002030405060708090A0B0C0D0E0F10103B +:103EF0000102000000100140000100010300000069 +:103F00000100000000100140000200010300000059 +:103F10000100000000080140000200010300000051 +:103F2000010000000008014000080001030000003B +:103F300001000000000801400080000103000000B3 +:103F40000100000000100140000800010300000013 +:103F50000100000000140140010000010300000006 +:103F600001000000001401400400000103000000F3 +:103F700001000000001401401000000103000000D7 +:103F80000100000000140140400000010300000097 +:103F9000010000000010014080000001030000004B +:103FA00001000000000801400001000103000000C2 +:103FB00001000000000801400004000103000000AF +:103FC0000100000000080140001000010300000093 +:103FD0000100000000100140000400010300000087 +:103FE000010000000010014000100001030000006B +:103FF0000100000000140140020000010300000065 +:10400000010000000014014008000001030000004E +:104010000100000000140140200000010300000026 +:1040200001000000001401408000000103000000B6 +:10403000010000000000000000000000000000007F +:1040400000002020202020200020000000285050C8 +:10405000000000000000000000002828FC2850FCA0 +:1040600050500000002078A8A0603028A8F0200060 +:10407000000048A8B05028345448000000002050E8 +:104080005078A8A8906C000000404080000000001C +:1040900000000000000408101010101010080400A8 +:1040A00000402010101010101020400000000020D0 +:1040B000A87070A8200000000000202020F8202018 +:1040C00020000000000000000000000000404080D0 +:1040D0000000000000F800000000000000000000E8 +:1040E0000000000060600000000810101020204058 +:1040F00040408000000070888888888888700000B0 +:104100000000206020202020207000000000708827 +:104110008810204080F800000000708808300808EF +:104120008870000000001030505090781018000087 +:104130000000F88080F0080888700000000070908F +:1041400080F08888887000000000F89010202020FF +:104150002020000000007088887088888870000027 +:1041600000007088888878084870000000000060AF +:1041700060000000006060000000000000200000FF +:104180000020200000040810204020100804000037 +:1041900000000000F80000F80000000000402010BF +:1041A00008040810204000000000708888102020BB +:1041B000002000000000708898A8A8B8807800004F +:1041C000000020203050507848CC00000000F0481B +:1041D0004870484848F0000000007888808080805F +:1041E000887000000000F0484848484848F0000047 +:1041F0000000F8485070504048F800000000F848AF +:104200005070504040E000000000384880809C889A +:10421000483000000000CC484878484848CC0000AE +:104220000000F8202020202020F8000000007C1052 +:10423000101010101090E0000000EC48506050503A +:1042400048EC00000000E0404040404044FC0000DA +:104250000000D8D8D8D8A8A8A8A800000000DC483A +:104260006868585848E80000000070888888888886 +:10427000887000000000F0484870404040E00000B6 +:1042800000007088888888E8987018000000F0485E +:104290004870504848EC00000000788880601008A2 +:1042A00088F000000000F8A82020202020700000E6 +:1042B0000000CC4848484848483000000000CC483E +:1042C00048505030202000000000A8A8A87050508E +:1042D000505000000000D8505020205050D800000E +:1042E0000000D85050202020207000000000F890DE +:1042F0001020204048F800000038202020202020F6 +:1043000020203800004040402020101010080000FD +:1043100000701010101010101010700000205000CD +:10432000000000000000000000000000000000008D +:10433000000000FC00200000000000000000000061 +:104340000000000000304838483C00000000C04039 +:1043500040704848487000000000000000384840A5 +:10436000403800000000180808384848483C000061 +:1043700000000000003048784038000000001C2099 +:10438000207820202078000000000000003C483009 +:10439000407844380000C0404070484848EC000075 +:1043A00000002000006020202070000000001000AD +:1043B00000301010101010E00000C040405C507041 +:1043C00048EC00000000E0202020202020F8000021 +:1043D0000000000000F0A8A8A8A80000000000004D +:1043E00000F0484848EC0000000000000030484859 +:1043F000483000000000000000F04848487040E0ED +:1044000000000000003848484838081C0000000040 +:1044100000D8604040E0000000000000007840301C +:1044200008780000000000202070202020180000E4 +:104430000000000000D84848483C00000000000090 +:1044400000EC4850302000000000000000A8A870D8 +:10445000505000000000000000D8502050D800004C +:104460000000000000EC4850302020C00000000098 +:104470000078102020780000001810101020101074 +:104480001010180010101010101010101010101034 +:1044900000602020201020202020600040A4180070 +:1044A000000000000000000000000000000000000C +:1044B0000000000000001010101010100018000084 +:1044C0000012244800000000000000000000242426 +:1044D000FE4848FE4848000000103C545030181474 +:1044E000547810000000E4A4A8F01E2A2A4E000010 +:1044F00000003048487EA494887700000060204087 +:10450000000000000000000000020C081010101055 +:104510000808060000402010080808081020400085 +:1045200000000010927C7C9210000000000010102F +:1045300010FE10101000000000000000000000003D +:104540000060204000000000007F0000000000002C +:1045500000000000000000000060000000010206F2 +:10456000040808102020400000003C24424242423F +:10457000243C00000000107010101010107C00008F +:1045800000003C4242040810627E000000003C42F1 +:10459000021C0202423C000000000C142444443C73 +:1045A000040C000000007E40407C0202423C0000FF +:1045B00000001C24405C6242623C000000007E441B +:1045C000080810101010000000003C4242342C4239 +:1045D000423C00000000186442463A02243C0000BD +:1045E000000000001800000000180000000000009B +:1045F00000100000001010000002041820402010DD +:104600000C02000000000000FE0000FE00000000A0 +:1046100000402018040204083040000000003C4222 +:1046200062020C080018000000003C469AAAAABCCE +:10463000403E0000000010182824247C42E70000BF +:104640000000F8444478464242FC000000003E422C +:1046500080808080423C00000000F8444242424298 +:1046600044F800000000FC424878484042FC00004A +:104670000000FC424878484040E0000000003C4414 +:1046800080808E84443800000000E742427E42422F +:1046900042E7000000007C1010101010107C000099 +:1046A00000003E08080808080888F0000000EE44F2 +:1046B0004870504844EE00000000E0404040404058 +:1046C00042FE00000000EE6C6C6C545454D60000A6 +:1046D0000000C76252524A4646E2000000003C44D5 +:1046E00082828282443800000000FC42427C4040CA +:1046F00040E0000000003844828282B24C3806005C +:104700000000FC42427C484446E3000000003E4278 +:1047100040380402427C00000000FE92101010108D +:10472000103800000000E74242424242423C000092 +:104730000000E74244242C28181000000000D69204 +:1047400092929A6C644400000000E76624181824D2 +:1047500066E700000000EE44283810101038000012 +:1047600000007E840810102042FC0000001E101083 +:104770001010101010101E0000402020101008080B +:1047800004040200007808080808080808087800EF +:10479000001C2200000000000000000000000000DB +:1047A00000000000000000FF0020000000000000EA +:1047B0000000000000000000003C423E423F0000BC +:1047C0000000C040405C6242427C000000000000EB +:1047D000003C6240423C000000000602021E6242B1 +:1047E000423F000000000000003C427E403E0000CE +:1047F00000000F10107E1010107C00000000000060 +:10480000003E4438407C423C0000C040405C624274 +:1048100042E700000000300000701010107C000023 +:1048200000000C00001C0404040404780000C040D4 +:10483000404E587048EE000000007010101010102C +:10484000107C00000000000000FF494949ED000015 +:104850000000000000D8664242E7000000000000AF +:10486000003C4242423C00000000000000F846428A +:10487000427C40E000000000003E4242423E02070F +:104880000000000000EE302020F8000000000000D2 +:10489000003E403C427C000000000010107C1010E4 +:1048A000100C00000000000000C64242423F000021 +:1048B0000000000000E7462428100000000000006F +:1048C00000D7929A6A44000000000000006E3C1875 +:1048D0003C7600000000000000E74624181810E0B5 +:1048E00000000000007E4418327E0000000704042F +:1048F0000408040404040300080808080808080859 +:10490000080808080070101010081010101060003F +:10491000304C030000000000000000000000000018 +:104920000000000000000000000000000000000087 +:104930000000000000000000070007000700020060 +:1049400002000200000007000000000000000660F6 +:104950000CC0330000000000000000000000000058 +:104960000000000000000000104010407FE01040F8 +:1049700020807FE0208020800000000000000200F6 +:104980001F8032C032000E00038002C032C01F8080 +:104990000200000000000000708089808900720021 +:1049A00005C00A20122021C0000000000000000005 +:1049B0001C002600240019C07880CD00C6007DE0D0 +:1049C0000000000000003800080030000000000077 +:1049D0000000000000000000000000000000004097 +:1049E00000800300060006000600060003000180A8 +:1049F000004000000000200018000C000600060027 +:104A0000060006000C001800200000000000000056 +:104A10000000030062301AC01FC0623006000000B0 +:104A200000000000000000000200020002007FF011 +:104A30000200020002000000000000000000000070 +:104A4000000000000000000000000000000038002E +:104A500008003000000000000000000000007FE0BF +:104A60000000000000000000000000000000000046 +:104A700000000000000000000000000000003800FE +:104A80000000000000000020004000800100020043 +:104A9000040008001000200040000000000000009A +:104AA0001F8030C0606060606060606030C01F80E8 +:104AB000000000000000000002003E0006000600AA +:104AC0000600060006003FC00000000000000000D5 +:104AD0001F8061C060C0018002000C0030407FC0B8 +:104AE00000000000000000003F00618001800E0017 +:104AF000018000C061C03F00000000000000000015 +:104B0000018007800980118061801FC0018003C07F +:104B100000000000000000003FC0200020002F80A7 +:104B200010C000C061C03F00000000000000000095 +:104B30000F8030C060006FC07060606030601F80A8 +:104B400000000000000000003FE020400080010065 +:104B50000200020006000600000000000000000045 +:104B60003FC060E060601F8031C0606070601F8087 +:104B700000000000000000001F8070C0606070E056 +:104B80003F6000E031C01F00000000000000000096 +:104B90000000000007000000000000000000070007 +:104BA00000000000000000000000000000000600FF +:104BB0000000000000000600060000000000006089 +:104BC000008003000C003000080006000180006037 +:104BD0000000000000000000000000007FE0000076 +:104BE00000007FE000000000000000000000300036 +:104BF0000800060001800060008003000C00300007 +:104C000000000000000000001F8060E0606000C045 +:104C10000700040000000E0000000000000000007B +:104C20000FC0382063D0649069906FE038000FE0C7 +:104C3000000000000000000006000F000B001180C3 +:104C400011803FC060C0F1F00000000000000000D3 +:104C5000FF8060C060C07F0060C0606060E0FF8077 +:104C600000000000000000000FE03820600060003D +:104C70006000600030201FC0000000000000000045 +:104C8000FF0060C0606060606060606060C0FF00E6 +:104C90000000000000000000FFC0602061007F00F5 +:104CA000610060006020FFC0000000000000000004 +:104CB000FFC0602061007F00610060006000F000C4 +:104CC000000000000000000007C0384060006000E5 +:104CD00063F060C030C00F00000000000000000062 +:104CE000F0F0606060607FE0606060606060F0F0E5 +:104CF00000000000000000003FC0060006000600A3 +:104D00000600060006003FC0000000000000000092 +:104D10000FF00180018001800180018001806180AD +:104D20003F00000000000000F1E0608067007C00B0 +:104D30006200610060C0F0F00000000000000000B0 +:104D4000F000600060006000600060006020FFC054 +:104D50000000000000000000F0F070E07960596091 +:104D60005E604E604C60E4F0000000000000000057 +:104D7000E070702058204620432041E04060E02051 +:104D800000000000000000001F8030C06060606014 +:104D90006060606030C01F80000000000000000004 +:104DA000FFC0606060607FC0600060006000F00075 +:104DB00000000000000000001F8030C060606060E4 +:104DC00060606E6031C01F0000E000000000000065 +:104DD000FFC0606060607F806300618060C0F070D1 +:104DE00000000000000000001FE0602060001F00C5 +:104DF00001C0006040E07F80000000000000000073 +:104E00007FE08610060006000600060006000F0080 +:104E10000000000000000000F070602060206020B2 +:104E20006020602060603FC00000000000000000C3 +:104E3000F8F030403040188018800D000F00060058 +:104E40000000000000000000F77066206240334060 +:104E500037803F8019801100000000000000000032 +:104E600079E018800D00060007000980104078E006 +:104E70000000000000000000F1F020401080090058 +:104E80000600060006001F80000000000000000071 +:104E90003FC06080010002000400080010203FC0F5 +:104EA00000000000000007E004000400040004000B +:104EB000040004000400040007E0000000002000DB +:104EC00010000800080004000200010000800080BB +:104ED0000040000000003F0001000100010001004F +:104EE00001000100010001003F0000000000070078 +:104EF00018C00000000000000000000000000000DA +:104F000000000000000000000000000000000000A1 +:104F100000000000000000000000FFF000001C0086 +:104F20000000000000000000000000000000000081 +:104F300000000000000000000000000000001F80D2 +:104F400030C01FC060C03FF0000000000000000043 +:104F500070003000300037C03860306030603F8013 +:104F600000000000000000000000000000001F0022 +:104F70007180600070401F80000000000000000091 +:104F800001C000C000C01FC070C060C060C03FE072 +:104F900000000000000000000000000000000F8082 +:104FA00030603FE030000FC0000000000000000053 +:104FB00007E00C000C007FC00C000C000C003F80D0 +:104FC00000000000000000000000000000000FF0E2 +:104FD00030C01F8030003F8060603FC00000000094 +:104FE000700030003000378038C030C030C079E009 +:104FF00000000000000000000600000000003E006D +:105000000600060006003FC000000000000000008F +:105010000180000000000F8001800180018001807C +:1050200001803F000000000070003000300033C0FD +:1050300033003E00310079E0000000000000000075 +:105040003E000600060006000600060006003FC0FF +:105050000000000000000000000000000000FFE071 +:10506000666066606660F770000000000000000087 +:10507000000000000000770038C030C030C079E088 +:1050800000000000000000000000000000001F8081 +:1050900070E0606070E01F80000000000000000011 +:1050A00000000000000077C03860306030E03F80D2 +:1050B00030007C00000000000000000000001FC065 +:1050C00070C060C060C03FC000C003E000000000CE +:1050D000000000000000F9E01E0018001800FF00AA +:1050E00000000000000000000000000000001FE0C1 +:1050F00030000F8020603FC0000000000000000072 +:10510000000004000C007F800C000C000C400380A9 +:10511000000000000000000000000000000071C05E +:1051200030C030C030C01FE00000000000000000B0 +:1051300000000000000078F0104008800500020028 +:105140000000000000000000000000000000F7B0B8 +:10515000632037E03DC01880000000000000000020 +:105160000000000000007FE01D80060019807FE045 +:10517000000000000000000000000000000079E0D6 +:10518000108019000F000600040038000000000025 +:105190000000000000003FC02300060018203FE090 +:1051A00000000000000001C0010001000100060035 +:1051B000010001000100010000C000000200020027 +:1051C00002000200020002000200020002000200CF +:1051D0000200020000003800080008000800060075 +:1051E0000800080008000800300000003C004710DC +:1051F00001E00000000000000000000000000000CE +:105200000000000000100000001401400100000038 +:10521000000800000014014002000000000400002B +:1052200000140140030000000020000000140140B1 +:105230000700000000010000001401400800000009 +:1052400000800000000C0140040000000800000085 +:10525000000C014005000000008000000014014027 +:105260000900000000C1814001C0804101C08041AF +:1052700000C1814001C0804100C1814000C1814026 +:1052800001C0804101C0804100C1814000C1814016 +:1052900001C0804100C1814001C0804101C0804106 +:1052A00000C1814001C0804100C1814000C18140F6 +:1052B00001C0804100C1814001C0804101C08041E6 +:1052C00000C1814000C1814001C0804101C08041D6 +:1052D00000C1814001C0804100C1814000C18140C6 +:1052E00001C0804101C0804100C1814000C18140B6 +:1052F00001C0804100C1814001C0804101C08041A6 +:1053000000C1814000C1814001C0804101C0804195 +:1053100000C1814001C0804100C1814000C1814085 +:1053200001C0804100C1814001C0804101C0804175 +:1053300000C1814001C0804100C1814000C1814065 +:1053400001C0804101C0804100C1814000C1814055 +:1053500001C0804100C1814001C0804101C0804145 +:1053600000C1814000C0C101C30302C2C60607C715 +:1053700005C5C404CC0C0DCD0FCFCE0E0ACACB0B85 +:10538000C90908C8D81819D91BDBDA1A1EDEDF1FB5 +:10539000DD1D1CDC14D4D515D71716D6D21213D3A5 +:1053A00011D1D010F03031F133F3F23236F6F73755 +:1053B000F53534F43CFCFD3DFF3F3EFEFA3A3BFB45 +:1053C00039F9F83828E8E929EB2B2AEAEE2E2FEFF5 +:1053D0002DEDEC2CE42425E527E7E62622E2E32365 +:1053E000E12120E0A06061A163A3A26266A6A76795 +:1053F000A56564A46CACAD6DAF6F6EAEAA6A6BAB05 +:1054000069A9A86878B8B979BB7B7ABABE7E7FBF34 +:105410007DBDBC7CB47475B577B7B67672B2B37324 +:10542000B17170B0509091519353529296565797D4 +:10543000559594549C5C5D9D5F9F9E5E5A9A9B5BC4 +:1054400099595898884849894B8B8A4A4E8E8F4F74 +:105450008D4D4C8C448485458747468682424383E4 +:105460004181804084540008000000205400000066 +:105470006C010008D854000854000020BC2F000024 +:10548000880100080000000000000000000000008B +:105490000024F400000000000000000000000000F4 +:1054A00000000000100000000100000000000000EB +:1054B00000000000000000000000000000000000EC +:1054C00000000000000000000000000000000000DC +:0854D0000000000000000000D4 :0400000508000131BD :00000001FF diff --git a/Users/main.c b/Users/main.c index 60090be..21893b7 100644 --- a/Users/main.c +++ b/Users/main.c @@ -1,95 +1,203 @@ -/** - ****************************************************************************** - * @文件 main.c - * @作者 阜阳师范大学物电学院 - * @版本 V0.1 - * @日期 2026-01-15 - * @简介 DTU 屏幕按键部分的驱动程序 - ****************************************************************************** - **/ +/****************************************************************************** + * @file main.c + * @brief DTU 主程序 - 屏幕与按键控制 + * @details 本文件实现了 DTU 设备的主程序逻辑,包括: + * - 系统初始化(时钟、外设、看门狗等) + * - 按键事件处理与业务逻辑 + * - RS485 Modbus 通信处理 + * - 定时器中断服务(5ms 周期) + * - 系统运行指示灯控制 + * - 看门狗喂狗与系统复位保护 + * @author 阜阳师范大学物电学院 + * @version V0.1 + * @date 2026.1.19 + * @note 定时器周期:5ms + * 系统复位时间:约 5000 秒(1000000 × 5ms) + * 通信协议:Modbus RTU over RS485 + ******************************************************************************/ #include "main.h" -#define TIMER 5 /* 定时器定时时间 */ -#define LED_TOGGLE_TIME 1000 /* 系统运行指示灯闪烁时间,也就是亮的时间*/ +/* ============================================================================ + * 宏定义 + * ============================================================================ */ +#define TIMER 5 /**< 定时器周期(毫秒) */ +#define LED_TOGGLE_TIME 1000 /**< 系统运行指示灯闪烁周期(毫秒),即 LED 点亮持续时间 */ -volatile static uint32_t sysRunTime = 0; /* 系统运行时间计数器 */ -volatile static uint8_t LED_ToggleFlag = 0; /* LED闪烁定时标志位 */ -static KEY_TYPE keyStatus = KEY_NONE; /* 按键状态指示 */ -static uint8_t ConnectFlg = 0; /**< 连接标志:0x01=已连接,0x00=未连接 */ +/* ============================================================================ + * 全局变量定义 + * ============================================================================ */ +volatile static uint32_t sysRunTime = 0; /**< 系统运行时间计数器(单位:5ms) */ +volatile static uint8_t LED_ToggleFlag = 0; /**< LED 闪烁定时标志位(1=需要翻转) */ +static KEY_TYPE keyStatus = KEY_NONE; /**< 按键状态指示(当前按键值) */ +static uint8_t ConnectFlg = 0; /**< 连接标志:1=已连接,0=未连接 */ +volatile static uint32_t KEY_RUN_Count = 0; /**< 按键按下时 LCD 屏幕显示计时计数器(单位:5ms) */ + +/* ============================================================================ + * 内部函数实现 + * ============================================================================ */ /** - * @brief 按键业务逻辑回调函数 - * @param key_type 按键类型 + * @brief 按键业务逻辑回调函数 + * @param key_type 按键类型(KEY_TYPE 枚举值) + * @note 当检测到按键事件时,由按键驱动层调用此函数 + * 处理流程: + * 1. 打开背光(任意按键按下都打开背光) + * 2. 显示按键按下指示(KeyRun_Disp) + * 3. 重置按键显示计时器 + * 4. 更新按键状态(供主循环使用) + * @retval 无 */ static void Key_ProcessCallback(KEY_TYPE key_type) { -// IntValue_Printf(2, 32, key_type, RESET); - BackLight_ON(); /* 任意按键按下,都打开背光 */ - keyStatus = key_type; /* 更新按键状态 */ -} - - -int main(void) -{ - HAL_Init(); /* 初始化HAL库 */ - sys_stm32_clock_init(RCC_PLL_MUL9); /* 设置时钟, 72Mhz */ - delay_init(72); /* 延时初始化 */ - LED_Init(); /* LED灯初始化 */ - Key_Init(); /* 初始化按键驱动 */ - WDog_Init(); /* 看门狗初始化 */ - RS485_DMA_init(); /* Rs485初始化 */ - LcdInit(); - Process_Init(); /* 通信任务初始化 */ - NL_LOGO_Printf(); /* 显示存储的LOGO */ - gtim_timx_int_init(50-1, 7200-1); /* 定时5毫秒 */ - // 注册按键业务逻辑回调函数 - Key_RegisterCallback(Key_ProcessCallback); /* 注册按键回调函数 */ - while(1) - { - if(ConnectFlg == 1) - { - /* 指示灯闪烁 */ - if(LED_ToggleFlag == 1) - { - LED_ToggleFlag = 0; - LED_Toggle(LED_RUN); - } - } - ConnectFlg = RS485_Process(keyStatus, ConnectFlg); - keyStatus = KEY_NONE; - - /*系统运行超过一定时间立即复位重启*/ - if(sysRunTime > 1000000) - { - HAL_NVIC_SystemReset(); /* 系统立即复位 */ - sysRunTime = 0; - } - } + BackLight_ON(); /**< 任意按键按下,都打开背光 */ + + KeyRun_Disp(1); /**< 有按键按下,LCD 显示按键指示 */ + KEY_RUN_Count = 0; /**< 重置按键显示计时器 */ + + keyStatus = key_type; /**< 更新按键状态,供主循环处理 */ } /** -* @brief 定时器中断服务函数 - * @param 无 - * @retval 无 + * @brief 按键显示自动关闭处理 + * @note 在定时器中断中调用,用于自动关闭按键按下后的 LCD 显示指示 + * 处理逻辑: + * - KEY_RUN_Count 递增(每 5ms 一次) + * - 当计数达到 15(约 75ms)时,关闭按键显示 + * - 计数限制在 15,防止溢出 + * @retval 无 + */ +void KeyRun_Disp_Close(void) +{ + KEY_RUN_Count++; + if (KEY_RUN_Count >= 15) + { + KEY_RUN_Count = 15; /**< 限制最大计数,防止溢出 */ + KeyRun_Disp(0); /**< 关闭按键显示指示 */ + } +} + +/* ============================================================================ + * 主程序入口 + * ============================================================================ */ + +/** + * @brief 主函数 + * @note 系统初始化流程: + * 1. HAL 库初始化 + * 2. 系统时钟配置(72MHz) + * 3. 延时函数初始化 + * 4. LED 初始化 + * 5. 按键驱动初始化 + * 6. 看门狗初始化 + * 7. RS485 通信初始化 + * 8. LCD 初始化 + * 9. Modbus 通信任务初始化 + * 10. 显示存储的 LOGO + * 11. 定时器初始化(5ms 周期) + * 12. 注册按键回调函数 + * + * 主循环处理: + * - 连接状态下的 LED 指示灯闪烁 + * - RS485 Modbus 通信处理(包含按键上报) + * - 系统运行时间监控与自动复位保护 + * + * 定时器中断(5ms)处理: + * - 系统运行时间计数 + * - LED 闪烁标志更新 + * - 按键检测扫描 + * - 看门狗喂狗 + * - 背光关闭检测 + * - Modbus 轮询计数 + * - 按键显示自动关闭 + * @retval 无(永不返回) + */ +int main(void) +{ + /* ========== 系统初始化 ========== */ + HAL_Init(); /**< 初始化 HAL 库 */ + sys_stm32_clock_init(RCC_PLL_MUL9); /**< 设置系统时钟,72MHz */ + delay_init(72); /**< 延时函数初始化(基于 72MHz 时钟) */ + + /* ========== 外设初始化 ========== */ + LED_Init(); /**< LED 灯初始化 */ + Key_Init(); /**< 初始化按键驱动 */ + WDog_Init(); /**< 看门狗初始化 */ + RS485_DMA_init(); /**< RS485 初始化(DMA 方式) */ + LcdInit(); /**< LCD 初始化 */ + + /* ========== 通信与显示初始化 ========== */ + Process_Init(); /**< Modbus 通信任务初始化 */ + NL_LOGO_Printf(); /**< 显示存储的 LOGO(从 Flash 读取) */ + + /* ========== 定时器与回调注册 ========== */ + gtim_timx_int_init(50-1, 7200-1); /**< 定时器初始化:5ms 周期(50×0.1ms,7200 分频) */ + Key_RegisterCallback(Key_ProcessCallback); /**< 注册按键回调函数 */ + + /* ========== 主循环 ========== */ + while (1) + { + /* LED 指示灯闪烁控制(仅在已连接状态下闪烁) */ + if (ConnectFlg == 1) + { + if (LED_ToggleFlag == 1) + { + LED_ToggleFlag = 0; /**< 清除闪烁标志 */ + LED_Toggle(LED_RUN); /**< 翻转运行指示灯 */ + } + } + + /* RS485 Modbus 通信处理(包含按键上报) */ + ConnectFlg = RS485_Process(keyStatus, ConnectFlg); + keyStatus = KEY_NONE; /**< 清除按键状态(已处理) */ + + /* 系统运行时间监控与自动复位保护 */ + if (sysRunTime > 1000000) /**< 约 5000 秒(1000000 × 5ms) */ + { + HAL_NVIC_SystemReset(); /**< 系统立即复位(防止长时间运行异常) */ + sysRunTime = 0; + } + } +} + +/* ============================================================================ + * 中断服务函数 + * ============================================================================ */ + +/** + * @brief 定时器中断服务函数(5ms 周期) + * @note 在定时器溢出中断中执行以下任务: + * 1. 系统运行时间计数(sysRunTime++) + * 2. LED 闪烁标志更新(每 200 次中断,即 1 秒) + * 3. 按键检测扫描(Button_Ticks) + * 4. 看门狗喂狗(Clear_Watchdog) + * 5. 背光关闭检测(BackLight_Close) + * 6. Modbus 轮询计数(Process_Count) + * 7. 按键显示自动关闭(KeyRun_Disp_Close) + * + * 定时器配置:5ms 周期 + * 中断标志:TIM_FLAG_UPDATE(定时器溢出标志) + * @retval 无 */ void GTIM_TIMX_INT_IRQHandler(void) { - /*直接通过判断中断标志位来处理中断 */ - if(__HAL_TIM_GET_FLAG(&g_timx_handle, TIM_FLAG_UPDATE) != RESET) + /* 判断定时器溢出中断标志位 */ + if (__HAL_TIM_GET_FLAG(&g_timx_handle, TIM_FLAG_UPDATE) != RESET) { - sysRunTime++; - if(sysRunTime % (LED_TOGGLE_TIME / 5) == 0) + sysRunTime++; /**< 系统运行时间计数递增 */ + + /* LED 闪烁标志更新:每 200 次中断(1 秒)翻转一次 */ + if (sysRunTime % (LED_TOGGLE_TIME / 5) == 0) { - LED_ToggleFlag = 1; + LED_ToggleFlag = 1; /**< 设置 LED 闪烁标志 */ } - Button_Ticks(); /* 按键检测 */ - Clear_Watchdog(); /* 看门狗喂狗 */ - BackLight_Close(); /* 背光关闭检测 */ - Process_Count(); /* 通信任务处理计数器 */ + + Button_Ticks(); /**< 按键检测扫描(MultiButton 库) */ + Clear_Watchdog(); /**< 看门狗喂狗 */ + BackLight_Close(); /**< 背光关闭检测 */ + Process_Count(); /**< Modbus 通信轮询计数 */ + KeyRun_Disp_Close(); /**< LCD 屏幕按键指示自动关闭处理 */ + + __HAL_TIM_CLEAR_IT(&g_timx_handle, TIM_IT_UPDATE); /**< 清除定时器溢出中断标志 */ } - __HAL_TIM_CLEAR_IT(&g_timx_handle, TIM_IT_UPDATE); /* 清楚定时器溢出中断 */ } - - - diff --git a/readme.md b/readme.md index e69de29..c563a76 100644 --- a/readme.md +++ b/readme.md @@ -0,0 +1,553 @@ +# DTU LED 项目 + +基于 STM32F103ZE 的数据传输单元(DTU)项目,集成了 LCD 显示、按键控制、RS485 Modbus 通信等功能。 + +## 📋 项目简介 + +本项目是一个完整的 DTU 设备固件,实现了屏幕显示、按键交互、远程通信等核心功能。设备通过 RS485 接口与上位机进行 Modbus RTU 协议通信,支持图片传输、按键上报、状态监控等功能。 + +## 🎯 主要功能 + +- **LCD 显示**:160×160 像素黑白 LCD,UC1698U 控制器,支持图形和文本显示 +- **按键控制**:基于 MultiButton 库的按键检测,支持多种按键事件 +- **RS485 通信**:Modbus RTU 协议,DMA 接收模式,波特率 700000 +- **LED 指示**:系统运行状态指示灯 +- **看门狗保护**:独立看门狗(IWDG)防止系统死机 +- **Flash 存储**:支持 BMP 图片数据存储到 Flash(扇区 126,地址 0x0803F000) +- **定时器管理**:5ms 周期定时器,用于系统任务调度 + +## 🔧 硬件平台 + +- **MCU**:STM32F103ZE(Cortex-M3,512KB Flash,64KB RAM) +- **系统时钟**:72MHz(PLL 倍频) +- **LCD**:160×160 像素,UC1698U 控制器 +- **通信接口**:RS485(USART2,TX=PA2,RX=PA3,DE=PA1) +- **按键**:支持多按键输入(具体引脚见 `Drivers/BSP/KEY/key.c`) +- **LED**:系统运行指示灯 + +## 📁 项目结构 + +``` +LED/ +├── Drivers/ # 驱动层 +│ ├── BSP/ # 板级支持包 +│ │ ├── 160160D/ # LCD 显示驱动 +│ │ ├── KEY/ # 按键驱动(MultiButton) +│ │ ├── LED/ # LED 驱动 +│ │ ├── RS485/ # RS485 通信驱动 +│ │ ├── WDOG/ # 看门狗驱动 +│ │ └── TIM/ # 定时器驱动 +│ ├── CMSIS/ # CMSIS 核心文件 +│ ├── STM32F1xx_HAL_Driver/ # STM32 HAL 库 +│ └── SYSTEM/ # 系统核心驱动 +│ ├── sys/ # 系统配置(时钟、中断等) +│ ├── delay/ # 延时函数 +│ └── usart/ # 串口驱动(调试用) +├── Middlewares/ # 中间件层 +│ └── Modbus/ # Modbus RTU 协议实现 +│ ├── MODBUS.c/h # Modbus 主处理 +│ └── CRC16.c/h # CRC16 校验 +├── Users/ # 用户应用层 +│ ├── main.c # 主程序入口 +│ ├── File_Handle.c # Flash 文件处理 +│ └── config.h # 配置文件 +├── Projects/ # 工程文件 +│ └── MDK-ARM/ # Keil MDK-ARM 工程 +├── Output/ # 编译输出(仅保留 .hex) +└── readme.md # 本文件 +``` + +## 🚀 快速开始 + +### 开发环境要求 + +- **IDE**:Keil MDK-ARM V5.06 或更高版本 +- **编译器**:ARM Compiler 5/6 +- **调试器**:ST-Link、J-Link 等 +- **Pack**:Keil.STM32F1xx_DFP.2.4.1 或更高版本 + +### 编译步骤 + +1. 打开 `Projects/MDK-ARM/atk_f103.uvprojx` 工程文件 +2. 选择目标设备:`STM32F103ZE` +3. 编译工程(F7 或 Project → Build Target) +4. 编译成功后,`Output/` 目录下会生成 `DTU.hex` 文件 + +### 烧录程序 + +1. 连接 ST-Link 或其他调试器到目标板 +2. 在 Keil 中点击 Download(F8)或使用外部烧录工具 +3. 烧录 `Output/DTU.hex` 文件到 MCU + +## 📡 通信协议 + +### Modbus RTU 配置 + +- **协议**:Modbus RTU +- **主站地址**:0x01 +- **波特率**:700000 +- **数据位**:8 +- **停止位**:1 +- **校验位**:无 +- **接收模式**:DMA ReceiveToIdle(不定长帧接收) + +### 通信功能 + +- **实时数据上报**:定时上报系统状态 +- **按键事件上报**:按键按下时上报按键值 +- **图片传输**:接收并显示远程发送的 BMP 图片数据 +- **屏幕刷新**:支持远程刷新屏幕显示内容 + +## 🔄 工作流程 + +本项目核心功能是**按键检测上报**和**图像接收显示**,主要逻辑在 `MODBUS.c` 文件中实现。 + +### 系统整体架构 + +``` +┌─────────────┐ ┌──────────────┐ ┌─────────────┐ +│ 定时器 │ 5ms中断 │ 按键驱动 │ 检测按键 │ 主循环 │ +│ (5ms周期) │────────>│ (MultiButton)│────────>│ (main.c) │ +└─────────────┘ └──────────────┘ └──────┬──────┘ + │──────────────────────│ + │ RS485_Process + ▼ +┌─────────────┐ ┌──────────────┐ ┌─────────────┐ +│ RS485 │ DMA接收 │ MODBUS.c │ 处理数据 │ LCD显示 │ +│ (USART2) │────────>│ (主处理) │────────>│ (160160D) │ +└─────────────┘ └──────┬───────┘ └─────────────┘ + │ + ┌─────────────┼─────────────┐ + │ 发送命令 │ │ 解析数据控制 + ▼ │ ▼ + ┌─────────────┐ │ ┌─────────────┐ + │ 上位机 │ │ │ LED │ + │ (138端) │ │ │ (状态指示) │ + └─────────────┘ │ └─────────────┘ + │ +``` + +**说明**:`MODBUS.c` 接收 RS485 数据后解析;普通图片帧中的 `info[0..3]` 为 LED 状态,经 `LED_Printf()` 更新灯状态;LOGO 图片不含 LED 控制。 + +### 按键检测与上报流程 + +#### 1. 按键检测流程 + +``` +定时器中断 (5ms) + │ + ├─> Button_Ticks() // MultiButton 库扫描按键 + │ + └─> 检测到按键按下 + │ + ├─> Key_ProcessCallback() // 按键回调函数 + │ │ + │ ├─> BackLight_ON() // 打开背光 + │ ├─> KeyRun_Disp(1) // 显示按键指示 + │ └─> keyStatus = key_type // 更新按键状态 + │ + └─> 主循环检测 keyStatus + │ + └─> RS485_Process(keyStatus, ConnectFlg) +``` + +#### 2. 按键上报流程 + +``` +RS485_Process() 函数 + │ + ├─> 检测到按键 (key != KEY_NONE) + │ │ + │ └─> 保存到 key_bk(静态变量,保持状态) + │ + ├─> 检查发送条件 + │ │ + │ ├─> CMD_ACK == SET // 上次命令已应答 + │ └─> ACK_OverTime == SET // 或应答超时 + │ + └─> 满足条件时发送按键命令 + │ + ├─> RefreshScreen(KEY_CMD, key_bk) + │ │ + │ ├─> RS485_RefreshScreenCMD(0x03, KEY_CMD, key) + │ │ │ + │ │ ├─> 构建命令帧(6字节): + │ │ │ [0] = 0x01 (从站地址) + │ │ │ [1] = 0x03 (功能码) + │ │ │ [2] = 0x00 (KEY_CMD) + │ │ │ [3] = key (按键值) + │ │ │ [4-5] = CRC16校验 + │ │ │ + │ │ └─> RS485_SendBuff() 发送 + │ │ + │ └─> 重置轮询状态 + │ + └─> key_bk = KEY_NONE // 清除按键备份 +``` + +**按键命令帧格式**(6字节): +``` +┌──────┬──────┬──────┬──────┬──────┬──────┐ +│ 0x01 │ 0x03 │ 0x00 │ key │ CRC │ CRC │ +│地址 │功能码 │按键 │按键值 │ 高 │ 低 │ +└──────┴──────┴──────┴──────┴──────┴──────┘ +``` + +### 图像接收与显示流程 + +#### 1. 数据接收流程 + +``` +RS485 DMA 接收 (ReceiveToIdle) + │ + ├─> 接收到一帧数据(3208字节) + │ │ + │ └─> HAL_UARTEx_RxEventCallback() + │ │ + │ ├─> RS485REG.NewMessageFlag = SET + │ └─> 重新启动 DMA 接收 + │ + └─> 主循环检测 NewMessageFlag + │ + └─> RS485_Process() 处理新消息 +``` + +#### 2. 数据解析与显示流程 + +``` +RS485_Process() 检测到新消息 + │ + ├─> NewMessageFlag == SET + │ │ + │ ├─> ConnectFlg = 1 // 设置连接标志 + │ │ + │ ├─> CRC 校验 + │ │ │ + │ │ ├─> 校验通过 + │ │ │ │ + │ │ │ ├─> 提取数据: + │ │ │ │ Picture[3200] = DR[0:3199] // 图片数据 + │ │ │ │ info[8] = DR[3200:3207] // 命令信息 + │ │ │ │ + │ │ │ ├─> 解析 info: + │ │ │ │ + │ │ │ │ info[4-5] = 图片类型标识 + │ │ │ │ + │ │ │ └─> 判断图片类型 + │ │ │ │ + │ │ │ ├─> LOGO 图片 (info[4]==0x89 && info[5]==0x45) + │ │ │ │ │─>info[0-1] = 图片宽度 (16位) + │ │ │ │ │─>info[2-3] = 图片高度 (16位) + │ │ │ │ ├─> 复制到 logo 结构体 + │ │ │ │ ├─> BMP_SAVE2False() // 保存到 Flash + │ │ │ │ ├─> ClearScreen() // 清屏 + │ │ │ │ ├─> LOGO_Printf() // 显示 LOGO + │ │ │ │ └─> delay_ms(2000) // 延时 2 秒 + │ │ │ │ + │ │ │ └─> 普通图片 + │ │ │ │─>info[0-3] = LED 状态 + │ │ │ ├─> LED_Printf(LED_BUFF) // 更新 LED 状态 + │ │ │ └─> ScreenPrintf(Picture) // 显示图片 + │ │ │ + │ │ └─> 校验失败 + │ │ │ + │ │ ├─> CRC_ERR_COUNT++ + │ │ └─> 连续 3 次错误 → RS485_DMA_init() 重新初始化 + │ │ + │ └─> 清除标志并设置 CMD_ACK = SET + │ + └─> 继续处理其他任务 +``` + +**接收数据帧格式**(3208字节): +``` +┌─────────────────────┬──────────────────┐ +│ Picture[3200] │ info[8] │ +│ 图片点阵数据 │ 命令信息 │ +└─────────────────────┴──────────────────┘ + │ │ + │ ├─> info[0-1]: 宽度 + │ ├─> info[2-3]: 高度 + │ ├─> info[4-5]: 类型标识 + │ └─> info[6-7]: LED状态(普通图片) + │ + └─> 3200 字节 BMP 点阵数据 +``` + +### 实时数据轮询流程 + +``` +定时器中断 (5ms) + │ + └─> Process_Count() + │ + ├─> RT_count++ // 实时轮询计数递增 + └─> ACK_count++ (如果 ACK_COUNT_ABLE == SET) + │ + └─> 主循环检查 + │ + ├─> RT_count > 55 (约 275ms) + │ │ + │ └─> RefreshScreen(RT_CMD, 0) // 发送实时刷新命令 + │ + └─> ACK_count > 40 (约 200ms) + │ + └─> ACK_OverTime = SET // 应答超时 + │ + └─> 连续 5 次超时 → 重新初始化 RS485 +``` + +### 完整工作流程图 + +``` +┌─────────────────────────────────────────────────────────────┐ +│ 系统初始化 │ +│ - HAL_Init() │ +│ - RS485_DMA_init() // 启动 DMA 接收 │ +│ - Process_Init() // 初始化轮询状态 │ +│ - NL_LOGO_Printf() // 显示 Flash 中的 LOGO │ +└──────────────────────┬──────────────────────────────────────┘ + │ + ▼ + ┌──────────────────────────────┐ + │ 主循环 (while(1)) │ + └──────────────┬───────────────┘ + │ + ┌──────────────┴───────────────┐ + │ │ + ▼ ▼ +┌───────────────┐ ┌───────────────┐ +│ 定时器中断 │ │ RS485_Process│ +│ (5ms周期) │ │ (主处理) │ +└───────┬───────┘ └───────┬───────┘ + │ │ + ├─> Button_Ticks() ├─> 检查新消息 + ├─> Process_Count() │ (NewMessageFlag) + └─> 其他任务 │ + ├─> CRC 校验 + │ + ├─> 解析数据 + │ ├─> LOGO 图片 → 保存 Flash + 显示 + │ └─> 普通图片 → 显示图片 + LED + │ + ├─> 检查按键上报 + │ └─> 发送按键命令 (KEY_CMD) + │ + └─> 检查定时刷新 + └─> 发送实时命令 (RT_CMD) +``` + +### 关键数据结构 + +#### RS485_POLL_TYPE(轮询状态) +```c +typedef struct { + volatile uint8_t RT_count; // 实时命令计数(0-55,约275ms) + volatile uint16_t CMD_ACK; // 命令应答标志(SET=可发送) + volatile uint8_t ACK_COUNT_ABLE; // 应答计时使能 + volatile uint8_t ACK_count; // 应答等待计数(0-40,约200ms) + volatile uint8_t ACK_OverTime; // 本次应答超时标志 + volatile uint8_t ACK_OverTimeCnt; // 连续超时次数(0-5) +} RS485_POLL_TYPE; +``` + +#### logo_type(LOGO 图片数据) +```c +typedef struct { + uint8_t bmpdata[3200]; // BMP 点阵数据 + uint32_t biWidth; // 图片宽度(像素) + uint32_t biHeight; // 图片高度(像素) +} logo_type; +``` + +### 关键时间参数 + +| 参数 | 值 | 说明 | +|------|-----|------| +| 定时器周期 | 5ms | 系统基础时钟周期 | +| 实时轮询周期 | 55×5ms = 275ms | 定时发送实时刷新命令 | +| 应答超时时间 | 40×5ms = 200ms | 等待应答的最大时间 | +| 连续超时上限 | 5 次 | 超过则重新初始化 RS485 | +| CRC 错误上限 | 3 次 | 连续错误则重新初始化 RS485 | +| LOGO 显示时间 | 2000ms | LOGO 图片显示持续时间 | + +### 错误处理机制 + +1. **CRC 校验失败**: + - 累计错误计数 `CRC_ERR_COUNT` + - 连续 3 次错误 → 重新初始化 RS485 DMA 接收 + +2. **应答超时**: + - 发送命令后启动应答计时(`ACK_COUNT_ABLE = SET`) + - 200ms 内未收到应答 → 设置超时标志 + - 连续 5 次超时 → 清除连接标志,重新初始化 RS485 + +3. **通信恢复**: + - 重新初始化后,`CMD_ACK = SET`,允许重新发送命令 + - 系统自动恢复通信流程 + +## 🔌 引脚分配 + +以下引脚定义与 `led.c`、`key.c`、`rs485.c`、`160160D.C` 中的配置一致。 + +### LED 灯(共 20 个) + +所有 LED 均为**低电平有效**(输出低电平点亮,高电平熄灭)。推挽输出,上拉,高速。 + +| LED ID | 宏/用途 | 端口 | 引脚 | 说明 | +|--------|-------------|------|-------|--------------| +| 0 | `LED_POW` | PC | PC8 | 电源指示灯 | +| 1 | `LED_RUN` | PC | PC9 | 运行指示灯 | +| 2 | — | PA | PA9 | 通用 LED | +| 3 | — | PA | PA11 | 通用 LED | +| 4 | — | PA | PA15 | 通用 LED | +| 5 | — | PC | PC11 | 通用 LED | +| 6 | — | PD | PD0 | 通用 LED | +| 7 | — | PD | PD2 | 通用 LED | +| 8 | — | PD | PD4 | 通用 LED | +| 9 | — | PD | PD6 | 通用 LED | +| 10 | — | PC | PC7 | 通用 LED | +| 11 | — | PA | PA8 | 通用 LED | +| 12 | — | PA | PA10 | 通用 LED | +| 13 | — | PA | PA12 | 通用 LED | +| 14 | — | PC | PC10 | 通用 LED | +| 15 | — | PC | PC12 | 通用 LED | +| 16 | — | PD | PD1 | 通用 LED | +| 17 | — | PD | PD3 | 通用 LED | +| 18 | — | PD | PD5 | 通用 LED | +| 19 | — | PD | PD7 | 通用 LED | + +- **代码位置**:`Drivers/BSP/LED/led.c` 中 `led_config[]` 数组。 +- **API**:`LED_On(id)` / `LED_Off(id)` / `LED_Toggle(id)`;电源灯 `LED_POW(x)`,运行灯 `LED_Toggle(LED_RUN)`。 + +### 按键(共 8 个) + +按键为**输入**,无上拉/下拉(由外部电路决定)。按下为低电平,释放为高电平。 + +| 按键类型 | 端口 | 引脚 | 说明 | +|-------------|------|-------|------------------------------| +| `KEY_ENTER` | PD | PD12 | 确认键 | +| `KEY_UP` | PD | PD11 | 上键 | +| `KEY_DOWN` | PD | PD10 | 下键 | +| `KEY_LEFT` | PD | PD13 | 左键 | +| `KEY_RIGHT` | PD | PD8 | 右键 | +| `KEY_ESC` | PB | PB15 | 取消键 | +| `KEY_ADD` | PB | PB3 | 加键(需禁用 JTAG,见下) | +| `KEY_RESET` | PD | PD15 | 复位键 | + +- **代码位置**:`Drivers/BSP/KEY/key.c` 中 `key_configs[]` 数组。 +- **JTAG 说明**:使用 PB3 时,`Key_Init()` 中会调用 `__HAL_AFIO_REMAP_SWJ_NOJTAG()` 禁用 JTAG、保留 SWD,以释放 PA15、PB3、PB4 作 GPIO。调试请使用 SWD(PA13/PA14)。 + +### RS485 通信 + +| 信号 | 端口 | 引脚 | 说明 | +|------|------|-------|-------------------------------------| +| TX | PA | PA2 | USART2_TX | +| RX | PA | PA3 | USART2_RX | +| DE | PA | PA1 | 收发使能,低电平发送、高电平接收 | + +### LCD 显示(160160D / UC1698U) + +| 信号 | 端口 | 引脚 | 说明 | +|----------|------|---------|---------------------| +| 背光 | PB | PB0 | 背光控制 | +| RST | PB | PB10 | 复位 | +| CS | PB | PB11 | 片选 | +| RD | PB | PB12 | 读使能 | +| WR | PB | PB13 | 写使能 | +| CD | PB | PB14 | 命令/数据选择 | +| D0~D7 | PE | PE8~PE15 | 8 位并行数据总线 | + +## ⚙️ 系统配置 + +### 时钟配置 +- **系统时钟**:72MHz +- **AHB 时钟**:72MHz +- **APB1 时钟**:36MHz +- **APB2 时钟**:72MHz + +### 定时器配置 +- **定时器周期**:5ms +- **中断优先级**:组 2,抢占优先级 1,子优先级 0 + +### 看门狗配置 +- **类型**:独立看门狗(IWDG) +- **喂狗周期**:5ms(在定时器中断中喂狗) + +### 系统保护 +- **自动复位**:系统运行时间超过 5000 秒(约 83 分钟)自动复位,防止长时间运行异常 + +## 📝 代码规范 + +本项目遵循以下代码规范: + +- **注释风格**:Doxygen 风格注释(`@file`、`@brief`、`@param`、`@retval` 等) +- **命名规范**:驼峰命名法(函数、变量),宏定义全大写 +- **文件组织**:按功能模块划分,驱动层、中间件层、应用层分离 + +## 🔍 主要模块说明 + +### LCD 显示模块(160160D) +- 驱动 UC1698U 控制器 +- 支持 4K 色(RGB444)和 64K 色(RGB565) +- 提供字符显示、图形显示、LOGO 显示等功能 + +### 按键模块(KEY) +- 基于 MultiButton 库 +- 支持单击、长按、双击等事件 +- 按键事件通过回调函数处理 + +### RS485 通信模块 +- DMA 接收模式(主工作模式) +- 中断接收模式(错误恢复) +- 支持不定长帧接收(ReceiveToIdle) + +### Modbus 模块 +- Modbus RTU 协议实现 +- 支持实时数据上报、按键上报 +- 支持图片数据传输和屏幕刷新 + +### Flash 存储模块 +- BMP 图片数据存储(地址:0x0803F000) +- 扇区大小:2KB +- 支持读取和写入操作 + +## 🐛 调试说明 + +### 调试接口 +- **SWD 接口**:SWDIO、SWCLK(标准 STM32 SWD 接口) +- **串口调试**:可通过 USART1 进行调试输出(如需要) + +### 常见问题 + +1. **编译错误**:检查 Pack 是否安装正确,设备型号是否为 STM32F103ZE +2. **烧录失败**:检查调试器连接,确认目标板供电正常 +3. **通信异常**:检查 RS485 接线,确认波特率配置正确 +4. **显示异常**:检查 LCD 接线,确认背光控制正常 + +## 📄 许可证 + +本项目由阜阳师范大学物电学院开发。 + +## 👥 作者 + +- **开发单位**:阜阳师范大学物电学院 +- **版本**:V0.1 +- **日期**:2026.1.19 + +## 📚 参考资料 + +- [STM32F103 参考手册](https://www.st.com/resource/en/reference_manual/rm0008-stm32f101xx-stm32f102xx-stm32f103xx-stm32f105xx-and-stm32f107xx-advanced-armbased-32bit-mcus-stmicroelectronics.pdf) +- [Modbus RTU 协议规范](https://modbus.org/docs/Modbus_Application_Protocol_V1_1b3.pdf) +- [UC1698U 数据手册](https://www.ultrachip.com.cn/) + +## 🔄 版本历史 + +- **V0.1**(2026.1.19) + - 初始版本 + - 实现 LCD 显示、按键控制、RS485 Modbus 通信等基础功能 + - 添加看门狗保护和系统自动复位功能 + +--- + +**注意**:本项目仅供学习和研究使用。使用前请仔细阅读代码注释,确保硬件连接正确。