【lvgl 学习】怎么让LVGL支持GBK编码

本文介绍如何在LVGL嵌入式图形库中实现GBK编码支持,包括增加GBK转Unicode代码文件,修改lv_txt.h、lv_conf.h和lv_txt.c文件,以及测试流程。适用于需要GBK编码环境的MCU和单片机项目。
摘要由CSDN通过智能技术生成

文章目录

  • 前言
  • 一、前提条件
  • 二、方法
    • 1.增加GBK转Uncode代码文件
    • 2.修改lvgl 的 lv_txt.h、lv_conf.h 和 lv_txt.c文件
    • 3.测试代码
  • 总结


前言

        因项目需要,这几天在学习使用lvgl嵌入式图形GUI,踩过不少坑。从刚开始不知道怎么让lvgl运行起来,怎么把lvgl的绘图结果发送到 LCD,怎么显示中文,怎么使用spi flash 做字库,到后来觉得用UTF-8编码对我来说太麻烦,习惯了GBK的中文环境,用UTF-8要先转换数据,很不方便。因为前面几个坑网络上的教程不少,在这就不详细写了,只分享怎么把文字编码改为GBK(向下兼容GB2312)。

一、前提条件

系统和 lvgl 可以正常运行,可以显示需要的中文的字库。

二、方法

1.增加GBK转Uncode代码文件

代码如下(示例):

/**
 * @file GBK_to_Unicode.c
 *
 */
/** 包含一些基本数据类型 */
#include "font.h"

/* 按GBK编码顺序排列的对应的Unicode字符数据 */
static const uint16_t gbk_to_unicode_buff[] = {
	0x4e02,0x4e04,0x4e05,0x4e06,0x4e0f,0x4e12,0x4e17,0x4e1f,0x4e20,0x4e21,0x4e23,0x4e26,0x4e29,0x4e2e,0x4e2f,0x4e31,
	0x4e33,0x4e35,0x4e37,0x4e3c,0x4e40,0x4e41,0x4e42,0x4e44,0x4e46,0x4e4a,0x4e51,0x4e55,0x4e57,0x4e5a,0x4e5b,0x4e62,
	0x4e63,0x4e64,0x4e65,0x4e67,0x4e68,0x4e6a,0x4e6b,0x4e6c,0x4e6d,0x4e6e,0x4e6f,0x4e72,0x4e74,0x4e75,0x4e76,0x4e77,
	0x4e78,0x4e79,0x4e7a,0x4e7b,0x4e7c,0x4e7d,0x4e7f,0x4e80,0x4e81,0x4e82,0x4e83,0x4e84,0x4e85,0x4e87,0x4e8a,0x4e90,
	0x4e96,0x4e97,0x4e99,0x4e9c,0x4e9d,0x4e9e,0x4ea3,0x4eaa,0x4eaf,0x4eb0,0x4eb1,0x4eb4,0x4eb6,0x4eb7,0x4eb8,0x4eb9,
	0x4ebc,0x4ebd,0x4ebe,0x4ec8,0x4ecc,0x4ecf,0x4ed0,0x4ed2,0x4eda,0x4edb,0x4edc,0x4ee0,0x4ee2,0x4ee6,0x4ee7,0x4ee9,
	0x4eed,0x4eee,0x4eef,0x4ef1,0x4ef4,0x4ef8,0x4ef9,0x4efa,0x4efc,0x4efe,0x4f00,0x4f02,0x4f03,0x4f04,0x4f05,0x4f06,
	0x4f07,0x4f08,0x4f0b,0x4f0c,0x4f12,0x4f13,0x4f14,0x4f15,0x4f16,0x4f1c,0x4f1d,0x4f21,0x4f23,0x4f28,0x4f29,0x4f2c,
	0x4f2d,0x4f2e,0x4f31,0x4f33,0x4f35,0x4f37,0x4f39,0x4f3b,0x4f3e,0x4f3f,0x4f40,0x4f41,0x4f42,0x4f44,0x4f45,0x4f47,
	0x4f48,0x4f49,0x4f4a,0x4f4b,0x4f4c,0x4f52,0x4f54,0x4f56,0x4f61,0x4f62,0x4f66,0x4f68,0x4f6a,0x4f6b,0x4f6d,0x4f6e,
	0x4f71,0x4f72,0x4f75,0x4f77,0x4f78,0x4f79,0x4f7a,0x4f7d,0x4f80,0x4f81,0x4f82,0x4f85,0x4f86,0x4f87,0x4f8a,0x4f8c,
	0x4f8e,0x4f90,0x4f92,0x4f93,0x4f95,0x4f96,0x4f98,0x4f99,0x4f9a,0x4f9c,0x4f9e,0x4f9f,0x4fa1,0x4fa2,0x4fa4,0x4fab,
	0x4fad,0x4fb0,0x4fb1,0x4fb2,0x4fb3,0x4fb4,0x4fb6,0x4fb7,0x4fb8,0x4fb9,0x4fba,0x4fbb,0x4fbc,0x4fbd,0x4fbe,0x4fc0,
	0x4fc1,0x4fc2,0x4fc6,0x4fc7,0x4fc8,0x4fc9,0x4fcb,0x4fcc,0x4fcd,0x4fd2,0x4fd3,0x4fd4,0x4fd5,0x4fd6,0x4fd9,0x4fdb,
	0x4fe0,0x4fe2,0x4fe4,0x4fe5,0x4fe7,0x4feb,0x4fec,0x4ff0,0x4ff2,0x4ff4,0x4ff5,0x4ff6,0x4ff7,0x4ff9,0x4ffb,0x4ffc,
	0x4ffd,0x4fff,0x5000,0x5001,0x5002,0x5003,0x5004,0x5005,0x5006,0x5007,0x5008,0x5009,0x500a,0x500b,0x500e,0x5010,
	0x5011,0x5013,0x5015,0x5016,0x5017,0x501b,0x501d,0x501e,0x5020,0x5022,0x5023,0x5024,0x5027,0x502b,0x502f,0x5030,
	0x5031,0x5032,0x5033,0x5034,0x5035,0x5036,0x5037,0x5038,0x5039,0x503b,0x503d,0x503f,0x5040,0x5041,0x5042,0x5044,
	0x5045,0x5046,0x5049,0x504a,0x504b,0x504d,0x5050,0x5051,0x5052,0x5053,0x5054,0x5056,0x5057,0x5058,0x5059,0x505b,
	0x505d,0x505e,0x505f,0x5060,0x5061,0x5062,0x5063,0x5064,0x5066,0x5067,0x5068,0x5069,0x506a,0x506b,0x506d,0x506e,
	0x506f,0x5070,0x5071,0x5072,0x5073,0x5074,0x5075,0x5078,0x5079,0x507a,0x507c,0x507d,0x5081,0x5082,0x5083,0x5084,
	0x5086,0x5087,0x5089,0x508a,0x508b,0x508c,0x508e,0x508f,0x5090,0x5091,0x5092,0x5093,0x5094,0x5095,0x5096,0x5097,
	0x5098,0x5099,0x509a,0x509b,0x509c,0x509d,0x509e,0x509f,0x50a0,0x50a1,0x50a2,0x50a4,0x50a6,0x50aa,0x50ab,0x50ad,
	0x50ae,0x50af,0x50b0,0x50b1,0x50b3,0x50b4,0x50b5,0x50b6,0x50b7,0x50b8,0x50b9,0x50bc,0x50bd,0x50be,0x50bf,0x50c0,
	0x50c1,0x50c2,0x50c3,0x50c4,0x50c5,0x50c6,0x50c7,0x50c8,0x50c9,0x50ca,0x50cb,0x50cc,0x50cd,0x50ce,0x50d0,0x50d1,
	0x50d2,0x50d3,0x50d4,0x50d5,0x50d7,0x50d8,0x50d9,0x50db,0x50dc,0x50dd,0x50de,0x50df,0x50e0,0x50e1,0x50e2,0x50e3,
	0x50e4,0x50e5,0x50e8,0x50e9,0x50ea,0x50eb,0x50ef,0x50f0,0x50f1,0x50f2,0x50f4,0x50f6,0x50f7,0x50f8,0x50f9,0x50fa,
	0x50fc,0x50fd,0x50fe,0x50ff,0x5100,0x5101,0x5102,0x5103,0x5104,0x5105,0x5108,0x5109,0x510a,0x510c,0x510d,0x510e,
	0x510f,0x5110,0x5111,0x5113,0x5114,0x5115,0x5116,0x5117,0x5118,0x5119,0x511a,0x511b,0x511c,0x511d,0x511e,0x511f,
	0x5120,0x5122,0x5123,0x5124,0x5125,0x5126,0x5127,0x5128,0x5129,0x512a,0x512b,0x512c,0x512d,0x512e,0x512f,0x5130,
	0x5131,0x5132,0x5133,0x5134,0x5135,0x5136,0x5137,0x5138,0x5139,0x513a,0x513b,0x513c,0x513d,0x513e,0x5142,0x5147,
	0x514a,0x514c,0x514e,0x514f,0x5150,0x5152,0x5153,0x5157,0x5158,0x5159,0x515b,0x515d,0x515e,0x515f,0x5160,0x5161,
	0x5163,0x5164,0x5166,0x5167,0x5169,0x516a,0x516f,0x5172,0x517a,0x517e,0x517f,0x5183,0x5184,0x5186,0x5187,0x518a,
	0x518b,0x518e,0x518f,0x5190,0x5191,0x5193,0x5194,0x5198,0x519a,0x519d,0x519e,0x519f,0x51a1,0x51a3,0x51a6,0x51a7,
	0x51a8,0x51a9,0x51aa,0x51ad,0x51ae,0x51b4,0x51b8,0x51b9,0x51ba,0x51be,0x51bf,0x51c1,0x51c2,0x51c3,0x51c5,0x51c8,
	0x51ca,0x51cd,0x51ce,0x51d0,0x51d2,0x51d3,0x51d4,0x51d5,0x51d6,0x51d7,0x51d8,0x51d9,0x51da,0x51dc,0x51de,0x51df,
	0x51e2,0x51e3,0x51e5,0x51e6,0x51e7,0x51e8,0x51e9,0x51ea,0x51ec,0x51ee,0x51f1,0x51f2,0x51f4,0x51f7,0x51fe,0x5204,
	0x5205,0x5209,0x520b,0x520c,0x520f,0x5210,0x5213,0x5214,0x5215,0x521c,0x521e,0x521f,0x5221,0x5222,0x5223,0x5225,
	0x5226,0x5227,0x522a,0x522c,0x522f,0x5231,0x5232,0x5234,0x5235,0x523c,0x523e,0x5244,0x5245,0x5246,0x5247,0x5248,
	0x5249,0x524b,0x524e,0x524f,0x5252,0x5253,0x5255,0x5257,0x5258,0x5259,0x525a,0x525b,0x525d,0x525f,0x5260,0x5262,
	0x5263,0x5264,0x5266,0x5268,0x526b,0x526c,0x526d,0x526e,0x5270,0x5271,0x5273,0x5274,0x5275,0x5276,0x5277,0x5278,
	0x5279,0x527a,0x527b,0x527c,0x527e,0x5280,0x5283,0x5284,0x5285,0x5286,0x5287,0x5289,0x528a,0x528b,0x528c,0x528d,
	0x528e,0x528f,0x5291,0x5292,0x5294,0x5295,0x5296,0x5297,0x5298,0x5299,0x529a,0x529c,0x52a4,0x52a5,0x52a6,0x52a7,
	0x52ae,0x52af,0x52b0,0x52b4,0x52b5,0x52b6,0x52b7,0x52b8,0x52b9,0x52ba,0x52bb,0x52bc,0x52bd,0x52c0,0x52c1,0x52c2,
	0x52c4,0x52c5,0x52c6,0x52c8,0x52ca,0x52cc,0x52cd,0x52ce,0x52cf,0x52d1,0x52d3,0x52d4,0x52d5,0x52d7,0x52d9,0x52da,
	0x52db,0x52dc,0x52dd,0x52de,0x52e0,0x52e1,0x52e2,0x52e3,0x52e5,0x52e6,0x52e7,0x52e8,0x52e9,0x52ea,0x52eb,0x52ec,
	0x52ed,0x52ee,0x52ef,0x52f1,0x52f2,0x52f3,0x52f4,0x52f5,0x52f6,0x52f7,0x52f8,0x52fb,0x52fc,0x52fd,0x5301,0x5302,
	0x5303,0x5304,0x5307,0x5309,0x530a,0x530b,0x530c,0x530e,0x5311,0x5312,0x5313,0x5314,0x5318,0x531b,0x531c,0x531e,
	0x531f,0x5322,0x5324,0x5325,0x5327,0x5328,0x5329,0x532b,0x532c,0x532d,0x532f,0x5330,0x5331,0x5332,0x5333,0x5334,
	0x5335,0x5336,0x5337,0x5338,0x533c,0x533d,0x5340,0x5342,0x5344,0x5346,0x534b,0x534c,0x534d,0x5350,0x5354,0x5358,
	0x5359,0x535b,0x535d,0x5365,0x5368,0x536a,0x536c,0x536d,0x5372,0x5376,0x5379,0x537b,0x537c,0x537d,0x537e,0x5380,
	0x5381,0x5383,0x5387,0x5388,0x538a,0x538e,0x538f,0x5390,0x5391,0x5392,0x5393,0x5394,0x5396,0x5397,0x5399,0x539b,
	0x539c,0x539e,0x53a0,0x53a1,0x53a4,0x53a7,0x53aa,0x53ab,0x53ac,0x53ad,0x53af,0x53b0,0x53b1,0x53b2,0x53b3,0x53b4,
	0x53b5,0x53b7,0x53b8,0x53b9,0x53ba,0x53bc,0x53bd,0x53be,0x53c0,0x53c3,0x53c4,0x53c5,0x53c6,0x53c7,0x53ce,0x53cf,
	0x53d0,0x53d2,0x53d3,0x53d5,0x53da,0x53dc,0x53dd,0x53de,0x53e1,0x53e2,0x53e7,0x53f4,0x53fa,0x53fe,0x53ff,0x5400,
	0x5402,0x5405,0x5407,0x540b,0x5414,0x5418,0x5419,0x541a,0x541c,0x5422,0x5424,0x5425,0x542a,0x5430,0x5433,0x5436,
	0x5437,0x543a,0x543d,0x543f,0x5441,0x5442,0x5444,0x5445,0x5447,0x5449,0x544c,0x544d,0x544e,0x544f,0x5451,0x545a,
	0x545d,0x545e,0x545f,0x5460,0x5461,0x5463,0x5465,0x5467,0x5469,0x546a,0x546b,0x546c,0x546d,0x546e,0x546f,0x5470,
	0x5474,0x5479,0x547a,0x547e,0x547f,0x5481,0x5483,0x5485,0x5487,0x5488,0x5489,0x548a,0x548d,0x5491,0x5493,0x5497,
	0x5498,0x549c,0x549e,0x549f,0x54a0,0x54a1,0x54a2,0x54a5,0x54ae,0x54b0,0x54b2,0x54b5,0x54b6,0x54b7,0x54b9,0x54ba,
	0x54bc,0x54be,0x54c3,0x54c5,0x54ca,0x54cb,0x54d6,0x54d8,0x54db,0x54e0,0x54e1,0x54e2,0x54e3,0x54e4,0x54eb,0x54ec,
	0x54ef,0x54f0,0x54f1,0x54f4,0x54f5,0x54f6,0x54f7,0x54f8,0x54f9,0x54fb,0x54fe,0x5500,0x5502,0x5503,0x5504,0x5505,
	0x5508,0x550a,0x550b,0x550c,0x550d,0x550e,0x5512,0x5513,0x5515,0x5516,0x5517,0x5518,0x5519,0x551a,0x551c,0x551d,
	0x551e,0x551f,0x5521,0x5525,0x5526,0x5528,0x5529,0x552b,0x552d,0x5532,0x5534,0x5535,0x5536,0x5538,0x5539,0x553a,
	0x553b,0x553d,0x5540,0x5542,0x5545,0x5547,0x5548,0x554b,0x554c,0x554d,0x554e,0x554f,0x5551,0x5552,0x5553,0x5554,
	0x5557,0x5558,0x5559,0x555a,0x555b,0x555d,0x555e,0x555f,0x5560,0x5562,0x5563,0x5568,0x5569,0x556b,0x556f,0x5570,
	0x5571,0x5572,0x5573,0x5574,0x5579,0x557a,0x557d,0x557f,0x5585,0x5586,0x558c,0x558d,0x558e,0x5590,0x5592,0x5593,
	0x5595,0x5596,0x5597,0x559a,0x559b,0x559e,0x55a0,0x55a1,0x55a2,0x55a3,0x55a4,0x55a5,0x55a6,0x55a8,0x55a9,0x55aa,
	0x55ab,0x55ac,0x55ad,0x55ae,0x55af,0x55b0,0x55b2,0x55b4,0x55b6,0x55b8,0x55ba,0x55bc,0x55bf,0x55c0,0x55c1,0x55c2,
	0x55c3,0x55c6,0x55c7,0x55c8,0x55ca,0x55cb,0x55ce,0x55cf,0x55d0,0x55d5,0x55d7,0x55d8,0x55d9,0x55da,0x55db,0x55de,
	0x55e0,0x55e2,0x55e7,0x55e9,0x55ed,0x55ee,0x55f0,0x55f1,0x55f4,0x55f6,0x55f8,0x55f9,0x55fa,0x55fb,0x55fc,0x55ff,
	0x5602,0x5603,0x5604,0x5605,0x5606,0x5607,0x560a,0x560b,0x560d,0x5610,0x5611,0x5612,0x5613,0x5614,0x5615,0x5616,
	0x5617,0x5619,0x561a,0x561c,0x561d,0x5620,0x5621,0x5622,0x5625,0x5626,0x5628,0x5629,0x562a,0x562b,0x562e,0x562f,
	0x5630,0x5633,0x5635,0x5637,0x5638,0x563a,0x563c,0x563d,0x563e,0x5640,0x5641,0x5642,0x5643,0x5644,0x5645,0x5646,
	0x5647,0x5648,0x5649,0x564a,0x564b,0x564f,0x5650,0x5651,0x5652,0x5653,0x5655,0x5656,0x565a,0x565b,0x565d,0x565e,
	0x565f,0x5660,0x5661,0x5663,0x5665,0x5666,0x5667,0x566d,0x566e,0x566f,0x5670,0x5672,0x5673,0x5674,0x5675,0x5677,
	0x5678,0x5679,0x567a,0x567d,0x567e,0x567f,0x5680,0x5681,0x5682,0x5683,0x5684,0x5687,0x5688,0x5689,0x568a,0x568b,
	0x568c,0x568d,0x5690,0x5691,0x5692,0x5694,0x5695,0x5696,0x5697,0x5698,0x5699,0x569a,0x569b,0x569c,0x569d,0x569e,
	0x569f,0x56a0,0x56a1,0x56a2,0x56a4,0x56a5,0x56a6,0x56a7,0x56a8,0x56a9,0x56aa,0x56ab,0x56ac,0x56ad,0x56ae,0x56b0,
	0x56b1,0x56b2,0x56b3,0x56b4,0x56b5,0x56b6,0x56b8,0x56b9,0x56ba,0x56bb,0x56bd,0x56be,0x56bf,0x56c0,0x56c1,0x56c2,
	0x56c3,0x56c4,0x56c5,0x56c6,0x56c7,0x56c8,0x56c9,0x56cb,0x56cc,0x56cd,0x56ce,0x56cf,0x56d0,0x56d1,0x56d2,0x56d3,
	0x56d5,0x56d6,0x56d8,0x56d9,0x56dc,0x56e3,0x56e5,0x56e6,0x56e7,0x56e8,0x56e9,0x56ea,0x56ec,0x56ee,0x56ef,0x56f2,
	0x56f3,0x56f6,0x56f7,0x56f8,0x56fb,0x56fc,0x5700,0x5701,0x5702,0x5705,0x5707,0x570b,0x570c,0x570d,0x570e,0x570f,
	0x5710,0x5711,0x5712,0x5713,0x5714,0x5715,0x5716,0x5717,0x5718,0x5719,0x571a,0x571b,0x571d,0x571e,0x5720,0x5721,
	0x5722,0x5724,0x5725,0x5726,0x5727,0x572b,0x5731,0x5732,0x5734,0x5735,0x5736,0x5737,0x5738,0x573c,0x573d,0x573f,
	0x5741,0x5743,0x5744,0x5745,0x5746,0x5748,0x5749,0x574b,0x5752,0x5753,0x5754,0x5755,0x5756,0x5758,0x5759,0x5762,
	0x5763,0x5765,0x5767,0x576c,0x576e,0x5770,0x5771,0x5772,0x5774,0x5775,0x5778,0x5779,0x577a,0x577d,0x577e,0x577f,
	0x5780,0x5781,0x5787,0x5788,0x5789,0x578a,0x578d,0x578e,0x578f,0x5790,0x5791,0x5794,0x5795,0x5796,0x5797,0x5798,
	0x5799,0x579a,0x579c,0x579d,0x579e,0x579f,0x57a5,0x57a8,0x57aa,0x57ac,0x57af,0x57b0,0x57b1,0x57b3,0x57b5,0x57b6,
	0x57b7,0x57b9,0x57ba,0x57bb,0x57bc,0x57bd,0x57be,0x57bf,0x57c0,0x57c1,0x57c4,0x57c5,0x57c6,0x57c7,0x57c8,0x57c9,
	0x57ca,0x57cc,0x57cd,0x57d0,0x57d1,0x57d3,0x57d6,0x57d7,0x57db,0x57dc,0x57de,0x57e1,0x57e2,0x57e3,0x57e5,0x57e6,
	0x57e7,0x57e8,0x57e9,0x57ea,0x57eb,0x57ec,0x57ee,0x57f0,0x57f1,0x57f2,0x57f3,0x57f5,0x57f6,0x57f7,0x57fb,0x57fc,
	0x57fe,0x57ff,0x5801,0x5803,0x5804,0x5805,0x5808,0x5809,0x580a,0x580c,0x580e,0x580f,0x5810,0x5812,0x5813,0x5814,
	0x5816,0x5817,0x5818,0x581a,0x581b,0x581c,0x581d,0x581f,0x5822,0x5823,0x5825,0x5826,0x5827,0x5828,0x5829,0x582b,
	0x582c,0x582d,0x582e,0x582f,0x5831,0x5832,0x5833,0x5834,0x5836,0x5837,0x5838,0x5839,0x583a,0x583b,0x583c,0x583d,
	0x583e,0x583f,0x5840,0x5841,0x5842,0x5843,0x5845,0x5846,0x5847,0x5848,0x5849,0x584a,0x584b,0x584e,0x584f,0x5850,
	0x5852,0x5853,0x5855,0x5856,0x5857,0x5859,0x585a,0x585b,0x585c,0x585d,0x585f,0x5860,0x5861,0x5862,0x5863,0x5864,
	0x5866,0x5867,0x5868,0x5869,0x586a,0x586d,0x586e,0x586f,0x5870,0x5871,0x5872,0x5873,0x5874,0x5875,0x5876,0x5877,
	0x5878,0x5879,0x587a,0x587b,0x587c,0x587d,0x587f,0x5882,0x5884,0x5886,0x5887,0x5888,0x588a,0x588b,0x588c,0x588d,
	0x588e,0x588f,0x5890,0x5891,0x5894,0x5895,0x5896,0x5897,0x5898,0x589b,0x589c,0x589d,0x58a0,0x58a1,0x58a2,0x58a3,
	0x58a4,0x58a5,0x58a6,0x58a7,0x58aa,0x58ab,0x58ac,0x58ad,0x58ae,0x58af,0x58b0,0x58b1,0x58b2,0x58b3,0x58b4,0x58b5,
	0x58b6,0x58b7,0x58b8,0x58b9,0x58ba,0x58bb,0x58bd,0x58be,0x58bf,0x58c0,0x58c2,0x58c3,0x58c4,0x58c6,0x58c7,0x58c8,
	0x58c9,0x58ca,0x58cb,0x58cc,0x58cd,0x58ce,0x58cf,0x58d0,0x58d2,0x58d3,0x58d4,0x58d6,0x58d7,0x58d8,0x58d9,0x58da,
	0x58db,0x58dc,0x58dd,0x58de,0x58df,0x58e0,0x58e1,0x58e2,0x58e3,0x58e5,0x58e6,0x58e7,0x58e8,0x58e9,0x58ea,0x58ed,
	0x58ef,0x58f1,0x58f2,0x58f4,0x58f5,0x58f7,0x58f8,0x58fa,0x58fb,0x58fc,0x58fd,0x58fe,0x58ff,0x5900,0x5901,0x5903,
	0x5905,0x5906,0x5908,0x5909,0x590a,0x590b,0x590c,0x590e,0x5910,0x5911,0x5912,0x5913,0x5917,0x5918,0x591b,0x591d,
	0x591e,0x5920,0x5921,0x5922,0x5923,0x5926,0x5928,0x592c,0x5930,0x5932,0x5933,0x5935,0x5936,0x593b,0x593d,0x593e,
	0x593f,0x5940,0x5943,0x5945,0x5946,0x594a,0x594c,0x594d,0x5950,0x5952,0x5953,0x5959,0x595b,0x595c,0x595d,0x595e,
	0x595f,0x5961,0x5963,0x5964,0x5966,0x5967,0x5968,0x5969,0x596a,0x596b,0x596c,0x596d,0x596e,0x596f,0x5970,0x5971,
	0x5972,0x5975,0x5977,0x597a,0x597b,0x597c,0x597e,0x597f,0x5980,0x5985,0x5989,0x598b,0x598c,0x598e,0x598f,0x5990,
	0x5991,0x5994,0x5995,0x5998,0x599a,0x599b,0x599c,0x599d,0x599f,0x59a0,0x59a1,0x59a2,0x59a6,0x59a7,0x59ac,0x59ad,
	0x59b0,0x59b1,0x59b3,0x59b4,0x59b5,0x59b6,0x59b7,0x59b8,0x59ba,0x59bc,0x59bd,0x59bf,0x59c0,0x59c1,0x59c2,0x59c3,
	0x59c4,0x59c5,0x59c7,0x59c8,0x59c9,0x59cc,0x59cd,0x59ce,0x59cf,0x59d5,0x59d6,0x59d9,0x59db,0x59de,0x59df,0x59e0,
	0x59e1,0x59e2,0x59e4,0x59e6,0x59e7,0x59e9,0x59ea,0x59eb,0x59ed,0x59ee,0x59ef,0x59f0,0x59f1,0x59f2,0x59f3,0x59f4,
	0x59f5,0x59f6,0x59f7,0x59f8,0x59fa,0x59fc,0x59fd,0x59fe,0x5a00,0x5a02,0x5a0a,0x5a0b,0x5a0d,0x5a0e,0x5a0f,0x5a10,
	0x5a12,0x5a14,0x5a15,0x5a16,0x5a17,0x5a19,0x5a1a,0x5a1b,0x5a1d,0x5a1e,0x5a21,0x5a22,0x5a24,0x5a26,0x5a27,0x5a28,
	0x5a2a,0x5a2b,0x5a2c,0x5a2d,0x5a2e,0x5a2f,0x5a30,0x5a33,0x5a35,0x5a37,0x5a38,0x5a39,0x5a3a,0x5a3b,0x5a3d,0x5a3e,
	0x5a3f,0x5a41,0x5a42,0x5a43,0x5a44,0x5a45,0x5a47,0x5a48,0x5a4b,0x5a4c,0x5a4d,0x5a4e,0x5a4f,0x5a50,0x5a51,0x5a52,
	0x5a53,0x5a54,0x5a56,0x5a57,0x5a58,0x5a59,0x5a5b,0x5a5c,0x5a5d,0x5a5e,0x5a5f,0x5a60,0x5a61,0x5a63,0x5a64,0x5a65,
	0x5a66,0x5a68,0x5a69,0x5a6b,0x5a6c,0x5a6d,0x5a6e,0x5a6f,0x5a70,0x5a71,0x5a72,0x5a73,0x5a78,0x5a79,0x5a7b,0x5a7c,
	0x5a7d,0x5a7e,0x5a80,0x5a81,0x5a82,0x5a83,0x5a84,0x5a85,0x5a86,0x5a87,0x5a88,0x5a89,0x5a8a,0x5a8b,0x5a8c,0x5a8d,
	0x5a8e,0x5a8f,0x5a90,0x5a91,0x5a93,0x5a94,0x5a95,0x5a96,0x5a97,0x5a98,0x5a99,0x5a9c,0x5a9d,0x5a9e,0x5a9f,0x5aa0,
	0x5aa1,0x5aa2,0x5aa3,0x5aa4,0x5aa5,0x5aa6,0x5aa7,0x5aa8,0x5aa9,0x5aab,0x5aac,0x5aad,0x5aae,0x5aaf,0x5ab0,0x5ab1,
	0x5ab4,0x5ab6,0x5ab7,0x5ab9,0x5aba,0x5abb,0x5abc,0x5abd,0x5abf,0x5ac0,0x5ac3,0x5ac4,0x5ac5,0x5ac6,0x5ac7,0x5ac8,
	0x5aca,0x5acb,0x5acd,0x5ace,0x5acf,0x5ad0,0x5ad1,0x5ad3,0x5ad5,0x5ad7,0x5ad9,0x5ada,0x5adb,0x5add,0x5ade,0x5adf,
	0x5ae2,0x5ae4,0x5ae5,0x5ae7,0x5ae8,0x5aea,0x5aec,0x5aed,0x5aee,0x5aef,0x5af0,0x5af2,0x5af3,0x5af4,0x5af5,0x5af6,
	0x5af7,0x5af8,0x5af9,0x5afa,0x5afb,0x5afc,0x5afd,0x5afe,0x5aff,0x5b00,0x5b01,0x5b02,0x5b03,0x5b04,0x5b05,0x5b06,
	0x5b07,0x5b08,0x5b0a,0x5b0b,0x5b0c,0x5b0d,0x5b0e,0x5b0f,0x5b10,0x5b11,0x5b12,0x5b13,0x5b14,0x5b15,0x5b18,0x5b19,
	0x5b1a,0x5b1b,0x5b1c,0x5b1d,0x5b1e,0x5b1f,0x5b20,0x5b21,0x5b22,0x5b23,0x5b24,0x5b25,0x5b26,0x5b27,0x5b28,0x5b29,
	0x5b2a,0x5b2b,0x5b2c,0x5b2d,0x5b2e,0x5b2f,0x5b30,0x5b31,0x5b33,0x5b35,0x5b36,0x5b38,0x5b39,0x5b3a,0x5b3b,0x5b3c,
	0x5b3d,0x5b3e,0x5b3f,0x5b41,0x5b42,0x5b43,0x5b44,0x5b45,0x5b46,0x5b47,0x5b48,0x5b49,0x5b4a,0x5b4b,0x5b4c,0x5b4d,
	0x5b4e,0x5b4f,0x5b52,0x5b56,0x5b5e,0x5b60,0x5b61,0x5b67,0x5b68,0x5b6b,0x5b6d,0x5b6e,0x5b6f,0x5b72,0x5b74,0x5b76,
	0x5b77,0x5b78,0x5b79,0x5b7b,0x5b7c,0x5b7e,0x5b7f,0x5b82,0x5b86,0x5b8a,0x5b8d,0x5b8e,0x5b90,0x5b91,0x5b92,0x5b94,
	0x5b96,0x5b9f,0x5ba7,0x5ba8,0x5ba9,0x5bac,0x5bad,0x5bae,0x5baf,0x5bb1,0x5bb2,0x5bb7,0x5bba,0x5bbb,0x5bbc,0x5bc0,
	0x5bc1,0x5bc3,0x5bc8,0x5bc9,0x5bca,0x5bcb,0x5bcd,0x5bce,0x5bcf,0x5bd1,0x5bd4,0x5bd5,0x5bd6,0x5bd7,0x5bd8,0x5bd9,
	0x5bda,0x5bdb,0x5bdc,0x5be0,0x5be2,0x5be3,0x5be6,0x5be7,0x5be9,0x5bea,0x5beb,0x5bec,0x5bed,0x5bef,0x5bf1,0x5bf2,
	0x5bf3,0x5bf4,0x5bf5,0x5bf6,0x5bf7,0x5bfd,0x5bfe,0x5c00,0x5c02,0x5c03,0x5c05,0x5c07,0x5c08,0x5c0b,0x5c0c,0x5c0d,
	0x5c0e,0x5c10,0x5c12,0x5c13,0x5c17,0x5c19,0x5c1b,0x5c1e,0x5c1f,0x5c20,0x5c21,0x5c23,0x5c26,0x5c28,0x5c29,0x5c2a,
	0x5c2b,0x5c2d,0x5c2e,0x5c2f,0x5c30,0x5c32,0x5c33,0x5c35,0x5c36,0x5c37,0x5c43,0x5c44,0x5c46,0x5c47,0x5c4c,0x5c4d,
	0x5c52,0x5c53,0x5c54,0x5c56,0x5c57,0x5c58,0x5c5a,0x5c5b,0x5c5c,0x5c5d,0x5c5f,0x5c62,0x5c64,0x5c67,0x5c68,0x5c69,
	0x5c6a,0x5c6b,0x5c6c,0x5c6d,0x5c70,0x5c72,0x5c73,0x5c74,0x5c75,0x5c76,0x5c77,0x5c78,0x5c7b,0x5c7c,0x5c7d,0x5c7e,
	0x5c80,0x5c83,0x5c84,0x5c85,0x5c86,0x5c87,0x5c89,0x5c8a,0x5c8b,0x5c8e,0x5c8f,0x5c92,0x5c93,0x5c95,0x5c9d,0x5c9e,
	0x5c9f,0x5ca0,0x5ca1,0x5ca4,0x5ca5,0x5ca6,0x5ca7,0x5ca8,0x5caa,0x5cae,0x5caf,0x5cb0,0x5cb2,0x5cb4,0x5cb6,0x5cb9,
	0x5cba,0x5cbb,0x5cbc,0x5cbe,0x5cc0,0x5cc2,0x5cc3,0x5cc5,0x5cc6,0x5cc7,0x5cc8,0x5cc9,0x5cca,0x5ccc,0x5ccd,0x5cce,
	0x5ccf,0x5cd0,0x5cd1,0x5cd3,0x5cd4,0x5cd5,0x5cd6,0x5cd7,0x5cd8,0x5cda,0x5cdb,0x5cdc,0x5cdd,0x5cde,0x5cdf,0x5ce0,
	0x5ce2,0x5ce3,0x5ce7,0x5ce9,0x5ceb,0x5cec,0x5cee,0x5cef,0x5cf1,0x5cf2,0x5cf3,0x5cf4,0x5cf5,0x5cf6,0x5cf7,0x5cf8,
	0x5cf9,0x5cfa,0x5cfc,0x5cfd,0x5cfe,0x5cff,0x5d00,0x5d01,0x5d04,0x5d05,0x5d08,0x5d09,0x5d0a,0x5d0b,0x5d0c,0x5d0d,
	0x5d0f,0x5d10,0x5d11,0x5d12,0x5d13,0x5d15,0x5d17,0x5d18,0x5d19,0x5d1a,0x5d1c,0x5d1d,0x5d1f,0x5d20,0x5d21,0x5d22,
	0x5d23,0x5d25,0x5d28,0x5d2a,0x5d2b,0x5d2c,0x5d2f,0x5d30,0x5d31,0x5d32,0x5d33,0x5d35,0x5d36,0x5d37,0x5d38,0x5d39,
	0x5d3a,0x5d3b,0x5d3c,0x5d3f,0x5d40,0x5d41,0x5d42,0x5d43,0x5d44,0x5d45,0x5d46,0x5d48,0x5d49,0x5d4d,0x5d4e,0x5d4f,
	0x5d50,0x5d51,0x5d52,0x5d53,0x5d54,0x5d55,0x5d56,0x5d57,0x5d59,0x5d5a,0x5d5c,0x5d5e,0x5d5f,0x5d60,0x5d61,0x5d62,
	0x5d63,0x5d64,0x5d65,0x5d66,0x5d67,0x5d68,0x5d6a,0x5d6d,0x5d6e,0x5d70,0x5d71,0x5d72,0x5d73,0x5d75,0x5d76,0x5d77,
	0x5d78,0x5d79,0x5d7a,0x5d7b,0x5d7c,0x5d7d,0x5d7e,0x5d7f,0x5d80,0x5d81,0x5d83,0x5d84,0x5d85,0x5d86,0x5d87,0x5d88,
	0x5d89,0x5d8a,0x5d8b,0x5d8c,0x5d8d,0x5d8e,0x5d8f,0x5d90,0x5d91,0x5d92,0x5d93,0x5d94,0x5d95,0x5d96,0x5d97,0x5d98,
	0x5d9a,0x5d9b,0x5d9c,0x5d9e,0x5d9f,0x5da0,0x5da1,0x5da2,0x5da3,0x5da4,0x5da5,0x5da6,0x5da7,0x5da8,0x5da9,0x5daa,
	0x5dab,0x5dac,0x5dad,0x5dae,0x5daf,0x5db0,0x5db1,0x5db2,0x5db3,0x5db4,0x5db5,0x5db6,0x5db8,0x5db9,0x5dba,0x5dbb,
	0x5dbc,0x5dbd,0x5dbe,0x5dbf,0x5dc0,0x5dc1,0x5dc2,0x5dc3,0x5dc4,0x5dc6,0x5dc7,0x5dc8,0x5dc9,0x5dca,0x5dcb,0x5dcc,
	0x5dce,0x5dcf,0x5dd0,0x5dd1,0x5dd2,0x5dd3,0x5dd4,0x5dd5,0x5dd6,0x5dd7,0x5dd8,0x5dd9,0x5dda,0x5ddc,0x5ddf,0x5de0,
	0x5de3,0x5de4,0x5dea,0x5dec,0x5ded,0x5df0,0x5df5,0x5df6,0x5df8,0x5df9,0x5dfa,0x5dfb,0x5dfc,0x5dff,0x5e00,0x5e04,
	0x5e07,0x5e09,0x5e0a,0x5e0b,0x5e0d,0x5e0e,0x5e12,0x5e13,0x5e17,0x5e1e,0x5e1f,0x5e20,0x5e21,0x5e22,0x5e23,0x5e24,
	0x5e25,0x5e28,0x5e29,0x5e2a,0x5e2b,0x5e2c,0x5e2f,0x5e30,0x5e32,0x5e33,0x5e34,0x5e35,0x5e36,0x5e39,0x5e3a,0x5e3e,
	0x5e3f,0x5e40,0x5e41,0x5e43,0x5e46,0x5e47,0x5e48,0x5e49,0x5e4a,0x5e4b,0x5e4d,0x5e4e,0x5e4f,0x5e50,0x5e51,0x5e52,
	0x5e53,0x5e56,0x5e57,0x5e58,0x5e59,0x5e5a,0x5e5c,0x5e5d,0x5e5f,0x5e60,0x5e63,0x5e64,0x5e65,0x5e66,0x5e67,0x5e68,
	0x5e69,0x5e6a,0x5e6b,0x5e6c,0x5e6d,0x5e6e,0x5e6f,0x5e70,0x5e71,0x5e75,0x5e77,0x5e79,0x5e7e,0x5e81,0x5e82,0x5e83,
	0x5e85,0x5e88,0x5e89,0x5e8c,0x5e8d,0x5e8e,0x5e92,0x5e98,0x5e9b,0x5e9d,0x5ea1,0x5ea2,0x5ea3,0x5ea4,0x5ea8,0x5ea9,
	0x5eaa,0x5eab,0x5eac,0x5eae,0x5eaf,0x5eb0,0x5eb1,0x5eb2,0x5eb4,0x5eba,0x5ebb,0x5ebc,0x5ebd,0x5ebf,0x5ec0,0x5ec1,
	0x5ec2,0x5ec3,0x5ec4,0x5ec5,0x5ec6,0x5ec7,0x5ec8,0x5ecb,0x5ecc,0x5ecd,0x5ece,0x5ecf,0x5ed0,0x5ed4,0x5ed5,0x5ed7,
	0x5ed8,0x5ed9,0x5eda,0x5edc,0x5edd,0x5ede,0x5edf,0x5ee0,0x5ee1,0x5ee2,0x5ee3,0x5ee4,0x5ee5,0x5ee6,0x5ee7,0x5ee9,
	0x5eeb,0x5eec,0x5eed,0x5eee,0x5eef,0x5ef0,0x5ef1,0x5ef2,0x5ef3,0x5ef5,0x5ef8,0x5ef9,0x5efb,0x5efc,0x5efd,0x5f05,
	0x5f06,0x5f07,0x5f09,0x5f0c,0x5f0d,0x5f0e,0x5f10,0x5f12,0x5f14,0x5f16,0x5f19,0x5f1a,0x5f1c,0x5f1d,0x5f1e,0x5f21,
	0x5f22,0x5f23,0x5f24,0x5f28,0x5f2b,0x5f2c,0x5f2e,0x5f30,0x5f32,0x5f33,0x5f34,0x5f35,0x5f36,0x5f37,0x5f38,0x5f3b,
	0x5f3d,0x5f3e,0x5f3f,0x5f41,0x5f42,0x5f43,0x5f44,0x5f45,0x5f46,0x5f47,0x5f48,0x5f49,0x5f4a,0x5f4b,0x5f4c,0x5f4d,
	0x5f4e,0x5f4f,0x5f51,0x5f54,0x5f59,0x5f5a,0x5f5b,0x5f5c,0x5f5e,0x5f5f,0x5f60,0x5f63,0x5f65,0x5f67,0x5f68,0x5f6b,
	0x5f6e,0x5f6f,0x5f72,0x5f74,0x5f75,0x5f76,0x5f78,0x5f7a,0x5f7d,0x5f7e,0x5f7f,0x5f83,0x5f86,0x5f8d,0x5f8e,0x5f8f,
	0x5f91,0x5f93,0x5f94,0x5f96,0x5f9a,0x5f9b,0x5f9d,0x5f9e,0x5f9f,0x5fa0,0x5fa2,0x5fa3,0x5fa4,0x5fa5,0x5fa6,0x5fa7,
	0x5fa9,0x5fab,0x5fac,0x5faf,0x5fb0,0x5fb1,0x5fb2,0x5fb3,0x5fb4,0x5fb6,0x5fb8,0x5fb9,0x5fba,0x5fbb,0x5fbe,0x5fbf,
	0x5fc0,0x5fc1,0x5fc2,0x5fc7,0x5fc8,0x5fca,0x5fcb,0x5fce,0x5fd3,0x5fd4,0x5fd5,0x5fda,0x5fdb,0x5fdc,0x5fde,0x5fdf,
	0x5fe2,0x5fe3,0x5fe5,0x5fe6,0x5fe8,0x5fe9,0x5fec,0x5fef,0x5ff0,0x5ff2,0x5ff3,0x5ff4,0x5ff6,0x5ff7,0x5ff9,0x5ffa,
	0x5ffc,0x6007,0x6008,0x6009,0x600b,0x600c,0x6010,0x6011,0x6013,0x6017,0x6018,0x601a,0x601e,0x601f,0x6022,0x6023,
	0x6024,0x602c,0x602d,0x602e,0x6030,0x6031,0x6032,0x6033,0x6034,0x6036,0x6037,0x6038,0x6039,0x603a,0x603d,0x603e,
	0x6040,0x6044,0x6045,0x6046,0x6047,0x6048,0x6049,0x604a,0x604c,0x604e,0x604f,0x6051,0x6053,0x6054,0x6056,0x6057,
	0x6058,0x605b,0x605c,0x605e,0x605f,0x6060,0x6061,0x6065,0x6066,0x606e,0x6071,0x6072,0x6074,0x6075,0x6077,0x607e,
	0x6080,0x6081,0x6082,0x6085,0x6086,0x6087,0x6088,0x608a,0x608b,0x608e,0x608f,0x6090,0x6091,0x6093,0x6095,0x6097,
	0x6098,0x6099,0x609c,0x609e,0x60a1,0x60a2,0x60a4,0x60a5,0x60a7,0x60a9,0x60aa,0x60ae,0x60b0,0x60b3,0x60b5,0x60b6,
	0x60b7,0x60b9,0x60ba,0x60bd,0x60be,0x60bf,0x60c0,0x60c1,0x60c2,0x60c3,0x60c4,0x60c7,0x60c8,0x60c9,0x60cc,0x60cd,
	0x60ce,0x60cf,0x60d0,0x60d2,0x60d3,0x60d4,0x60d6,0x60d7,0x60d9,0x60db,0x60de,0x60e1,0x60e2,0x60e3,0x60e4,0x60e5,
	0x60ea,0x60f1,0x60f2,0x60f5,0x60f7,0x60f8,0x60fb,0x60fc,0x60fd,0x60fe,0x60ff,0x6102,0x6103,0x6104,0x6105,0x6107,
	0x610a,0x610b,0x610c,0x6110,0x6111,0x6112,0x6113,0x6114,0x6116,0x6117,0x6118,0x6119,0x611b,0x611c,0x611d,0x611e,
	0x6121,0x6122,0x6125,0x6128,0x6129,0x612a,0x612c,0x612d,0x612e,0x612f,0x6130,0x6131,0x6132,0x6133,0x6134,0x6135,
	0x6136,0x6137,0x6138,0x6139,0x613a,0x613b,0x613c,0x613d,0x613e,0x6140,0x6141,0x6142,0x6143,0x6144,0x6145,0x6146,
	0x6147,0x6149,0x614b,0x614d,0x614f,0x6150,0x6152,0x6153,0x6154,0x6156,0x6157,0x6158,0x6159,0x615a,0x615b,0x615c,
	0x615e,0x615f,0x6160,0x6161,0x6163,0x6164,0x6165,0x6166,0x6169,0x616a,0x616b,0x616c,0x616d,0x616e,0x616f,0x6171,
	0x6172,0x6173,0x6174,0x6176,0x6178,0x6179,0x617a,0x617b,0x617c,0x617d,0x617e,0x617f,0x6180,0x6181,0x6182,0x6183,
	0x6184,0x6185,0x6186,0x6187,0x6188,0x6189,0x618a,0x618c,0x618d,0x618f,0x6190,0x6191,0x6192,0x6193,0x6195,0x6196,
	0x6197,0x6198,0x6199,0x619a,0x619b,0x619c,0x619e,0x619f,0x61a0,0x61a1,0x61a2,0x61a3,0x61a4,0x61a5,0x61a6,0x61aa,
	0x61ab,0x61ad,0x61ae,0x61af,0x61b0,0x61b1,0x61b2,0x61b3,0x61b4,0x61b5,0x61b6,0x61b8,0x61b9,0x61ba,0x61bb,0x61bc,
	0x61bd,0x61bf,0x61c0,0x61c1,0x61c3,0x61c4,0x61c5,0x61c6,0x61c7,0x61c9,0x61cc,0x61cd,0x61ce,0x61cf,0x61d0,0x61d3,
	0x61d5,0x61d6,0x61d7,0x61d8,0x61d9,0x61da,0x61db,0x61dc,0x61dd,0x61de,0x61df,0x61e0,0x61e1,0x61e2,0x61e3,0x61e4,
	0x61e5,0x61e7,0x61e8,0x61e9,0x61ea,0x61eb,0x61ec,0x61ed,0x61ee,0x61ef,0x61f0,0x61f1,0x61f2,0x61f3,0x61f4,0x61f6,
	0x61f7,0x61f8,0x61f9,0x61fa,0x61fb,0x61fc,0x61fd,0x61fe,0x6200,0x6201,0x6202,0x6203,0x6204,0x6205,0x6207,0x6209,
	0x6213,0x6214,0x6219,0x621c,0x621d,0x621e,0x6220,0x6223,0x6226,0x6227,0x6228,0x6229,0x622b,0x622d,0x622f,0x6230,
	0x6231,0x6232,0x6235,0x6236,0x6238,0x6239,0x623a,0x623b,0x623c,0x6242,0x6244,0x6245,0x6246,0x624a,0x624f,0x6250,
	0x6255,0x6256,0x6257,0x6259,0x625a,0x625c,0x625d,0x625e,0x625f,0x6260,0x6261,0x6262,0x6264,0x6265,0x6268,0x6271,
	0x6272,0x6274,0x6275,0x6277,0x6278,0x627a,0x627b,0x627d,0x6281,0x6282,0x6283,0x6285,0x6286,0x6287,0x6288,0x628b,
	0x628c,0x628d,0x628e,0x628f,0x6290,0x6294,0x6299,0x629c,0x629d,0x629e,0x62a3,0x62a6,0x62a7,0x62a9,0x62aa,0x62ad,
	0x62ae,0x62af,0x62b0,0x62b2,0x62b3,0x62b4,0x62b6,0x62b7,0x62b8,0x62ba,0x62be,0x62c0,0x62c1,0x62c3,0x62cb,0x62cf,
	0x62d1,0x62d5,0x62dd,0x62de,0x62e0,0x62e1,0x62e4,0x62ea,0x62eb,0x62f0,0x62f2,0x62f5,0x62f8,0x62f9,0x62fa,0x62fb,
	0x6300,0x6303,0x6304,0x6305,0x6306,0x630a,0x630b,0x630c,0x630d,0x630f,0x6310,0x6312,0x6313,0x6314,0x6315,0x6317,
	0x6318,0x6319,0x631c,0x6326,0x6327,0x6329,0x632c,0x632d,0x632e,0x6330,0x6331,0x6333,0x6334,0x6335,0x6336,0x6337,
	0x6338,0x633b,0x633c,0x633e,0x633f,0x6340,0x6341,0x6344,0x6347,0x6348,0x634a,0x6351,0x6352,0x6353,0x6354,0x6356,
	0x6357,0x6358,0x6359,0x635a,0x635b,0x635c,0x635d,0x6360,0x6364,0x6365,0x6366,0x6368,0x636a,0x636b,0x636c,0x636f,
	0x6370,0x6372,0x6373,0x6374,0x6375,0x6378,0x6379,0x637c,0x637d,0x637e,0x637f,0x6381,0x6383,0x6384,0x6385,0x6386,
	0x638b,0x638d,0x6391,0x6393,0x6394,0x6395,0x6397,0x6399,0x639a,0x639b,0x639c,0x639d,0x639e,0x639f,0x63a1,0x63a4,
	0x63a6,0x63ab,0x63af,0x63b1,0x63b2,0x63b5,0x63b6,0x63b9,0x63bb,0x63bd,0x63bf,0x63c0,0x63c1,0x63c2,0x63c3,0x63c5,
	0x63c7,0x63c8,0x63ca,0x63cb,0x63cc,0x63d1,0x63d3,0x63d4,0x63d5,0x63d7,0x63d8,0x63d9,0x63da,0x63db,0x63dc,0x63dd,
	0x63df,0x63e2,0x63e4,0x63e5,0x63e6,0x63e7,0x63e8,0x63eb,0x63ec,0x63ee,0x63ef,0x63f0,0x63f1,0x63f3,0x63f5,0x63f7,
	0x63f9,0x63fa,0x63fb,0x63fc,0x63fe,0x6403,0x6404,0x6406,0x6407,0x6408,0x6409,0x640a,0x640d,0x640e,0x6411,0x6412,
	0x6415,0x6416,0x6417,0x6418,0x6419,0x641a,0x641d,0x641f,0x6422,0x6423,0x6424,0x6425,0x6427,0x6428,0x6429,0x642b,
	0x642e,0x642f,0x6430,0x6431,0x6432,0x6433,0x6435,0x6436,0x6437,0x6438,0x6439,0x643b,0x643c,0x643e,0x6440,0x6442,
	0x6443,0x6449,0x644b,0x644c,0x644d,0x644e,0x644f,0x6450,0x6451,0x6453,0x6455,0x6456,0x6457,0x6459,0x645a,0x645b,
	0x645c,0x645d,0x645f,0x6460,0x6461,0x6462,0x6463,0x6464,0x6465,0x6466,0x6468,0x646a,0x646b,0x646c,0x646e,0x646f,
	0x6470,0x6471,0x6472,0x6473,0x6474,0x6475,0x6476,0x6477,0x647b,0x647c,0x647d,0x647e,0x647f,0x6480,0x6481,0x6483,
	0x6486,0x6488,0x6489,0x648a,0x648b,0x648c,0x648d,0x648e,0x648f,0x6490,0x6493,0x6494,0x6497,0x6498,0x649a,0x649b,
	0x649c,0x649d,0x649f,0x64a0,0x64a1,0x64a2,0x64a3,0x64a5,0x64a6,0x64a7,0x64a8,0x64aa,0x64ab,0x64af,0x64b1,0x64b2,
	0x64b3,0x64b4,0x64b6,0x64b9,0x64bb,0x64bd,0x64be,0x64bf,0x64c1,0x64c3,0x64c4,0x64c6,0x64c7,0x64c8,0x64c9,0x64ca,
	0x64cb,0x64cc,0x64cf,0x64d1,0x64d3,0x64d4,0x64d5,0x64d6,0x64d9,0x64da,0x64db,0x64dc,0x64dd,0x64df,0x64e0,0x64e1,
	0x64e3,0x64e5,0x64e7,0x64e8,0x64e9,0x64ea,0x64eb,0x64ec,0x64ed,0x64ee,0x64ef,0x64f0,0x64f1,0x64f2,0x64f3,0x64f4,
	0x64f5,0x64f6,0x64f7,0x64f8,0x64f9,0x64fa,0x64fb,0x64fc,0x64fd,0x64fe,0x64ff,0x6501,0x6502,0x6503,0x6504,0x6505,
	0x6506,0x6507,0x6508,0x650a,0x650b,0x650c,0x650d,0x650e,0x650f,0x6510,0x6511,0x6513,0x6514,0x6515,0x6516,0x6517,
	0x6519,0x651a,0x651b,0x651c,0x651d,0x651e,0x651f,0x6520,0x6521,0x6522,0x6523,0x6524,0x6526,0x6527,0x6528,0x6529,
	0x652a,0x652c,0x652d,0x6530,0x6531,0x6532,0x6533,0x6537,0x653a,0x653c,0x653d,0x6540,0x6541,0x6542,0x6543,0x6544,
	0x6546,0x6547,0x654a,0x654b,0x654d,0x654e,0x6550,0x6552,0x6553,0x6554,0x6557,0x6558,0x655a,0x655c,0x655f,0x6560,
	0x6561,0x6564,0x6565,0x6567,0x6568,0x6569,0x656a,0x656d,0x656e,0x656f,0x6571,0x6573,0x6575,0x6576,0x6578,0x6579,
	0x657a,0x657b,0x657c,0x657d,0x657e,0x657f,0x6580,0x6581,0x6582,0x6583,0x6584,0x6585,0x6586,0x6588,0x6589,0x658a,
	0x658d,0x658e,0x658f,0x6592,0x6594,0x6595,0x6596,0x6598,0x659a,0x659d,0x659e,0x65a0,0x65a2,0x65a3,0x65a6,0x65a8,
	0x65aa,0x65ac,0x65ae,0x65b1,0x65b2,0x65b3,0x65b4,0x65b5,0x65b6,0x65b7,0x65b8,0x65ba,0x65bb,0x65be,0x65bf,0x65c0,
	0x65c2,0x65c7,0x65c8,0x65c9,0x65ca,0x65cd,0x65d0,0x65d1,0x65d3,0x65d4,0x65d5,0x65d8,0x65d9,0x65da,0x65db,0x65dc,
	0x65dd,0x65de,0x65df,0x65e1,0x65e3,0x65e4,0x65ea,0x65eb,0x65f2,0x65f3,0x65f4,0x65f5,0x65f8,0x65f9,0x65fb,0x65fc,
	0x65fd,0x65fe,0x65ff,0x6601,0x6604,0x6605,0x6607,0x6608,0x6609,0x660b,0x660d,0x6610,0x6611,0x6612,0x6616,0x6617,
	0x6618,0x661a,0x661b,0x661c,0x661e,0x6621,0x6622,0x6623,0x6624,0x6626,0x6629,0x662a,0x662b,0x662c,0x662e,0x6630,
	0x6632,0x6633,0x6637,0x6638,0x6639,0x663a,0x663b,0x663d,0x663f,0x6640,0x6642,0x6644,0x6645,0x6646,0x6647,0x6648,
	0x6649,0x664a,0x664d,0x664e,0x6650,0x6651,0x6658,0x6659,0x665b,0x665c,0x665d,0x665e,0x6660,0x6662,0x6663,0x6665,
	0x6667,0x6669,0x666a,0x666b,0x666c,0x666d,0x6671,0x6672,0x6673,0x6675,0x6678,0x6679,0x667b,0x667c,0x667d,0x667f,
	0x6680,0x6681,0x6683,0x6685,0x6686,0x6688,0x6689,0x668a,0x668b,0x668d,0x668e,0x668f,0x6690,0x6692,0x6693,0x6694,
	0x6695,0x6698,0x6699,0x669a,0x669b,0x669c,0x669e,0x669f,0x66a0,0x66a1,0x66a2,0x66a3,0x66a4,0x66a5,0x66a6,0x66a9,
	0x66aa,0x66ab,0x66ac,0x66ad,0x66af,0x66b0,0x66b1,0x66b2,0x66b3,0x66b5,0x66b6,0x66b7,0x66b8,0x66ba,0x66bb,0x66bc,
	0x66bd,0x66bf,0x66c0,0x66c1,0x66c2,0x66c3,0x66c4,0x66c5,0x66c6,0x66c7,0x66c8,0x66c9,0x66ca,0x66cb,0x66cc,0x66cd,
	0x66ce,0x66cf,0x66d0,0x66d1,0x66d2,0x66d3,0x66d4,0x66d5,0x66d6,0x66d7,0x66d8,0x66da,0x66de,0x66df,0x66e0,0x66e1,
	0x66e2,0x66e3,0x66e4,0x66e5,0x66e7,0x66e8,0x66ea,0x66eb,0x66ec,0x66ed,0x66ee,0x66ef,0x66f1,0x66f5,0x66f6,0x66f8,
	0x66fa,0x66fb,0x66fd,0x6701,0x6702,0x6703,0x6704,0x6705,0x6706,0x6707,0x670c,0x670e,0x670f,0x6711,0x6712,0x6713,
	0x6716,0x6718,0x6719,0x671a,0x671c,0x671e,0x6720,0x6721,0x6722,0x6723,0x6724,0x6725,0x6727,0x6729,0x672e,0x6730,
	0x6732,0x6733,0x6736,0x6737,0x6738,0x6739,0x673b,0x673c,0x673e,0x673f,0x6741,0x6744,0x6745,0x6747,0x674a,0x674b,
	0x674d,0x6752,0x6754,0x6755,0x6757,0x6758,0x6759,0x675a,0x675b,0x675d,0x6762,0x6763,0x6764,0x6766,0x6767,0x676b,
	0x676c,0x676e,0x6771,0x6774,0x6776,0x6778,0x6779,0x677a,0x677b,0x677d,0x6780,0x6782,0x6783,0x6785,0x6786,0x6788,
	0x678a,0x678c,0x678d,0x678e,0x678f,0x6791,0x6792,0x6793,0x6794,0x6796,0x6799,0x679b,0x679f,0x67a0,0x67a1,0x67a4,
	0x67a6,0x67a9,0x67ac,0x67ae,0x67b1,0x67b2,0x67b4,0x67b9,0x67ba,0x67bb,0x67bc,0x67bd,0x67be,0x67bf,0x67c0,0x67c2,
	0x67c5,0x67c6,0x67c7,0x67c8,0x67c9,0x67ca,0x67cb,0x67cc,0x67cd,0x67ce,0x67d5,0x67d6,0x67d7,0x67db,0x67df,0x67e1,
	0x67e3,0x67e4,0x67e6,0x67e7,0x67e8,0x67ea,0x67eb,0x67ed,0x67ee,0x67f2,0x67f5,0x67f6,0x67f7,0x67f8,0x67f9,0x67fa,
	0x67fb,0x67fc,0x67fe,0x6801,0x6802,0x6803,0x6804,0x6806,0x680d,0x6810,0x6812,0x6814,0x6815,0x6818,0x6819,0x681a,
	0x681b,0x681c,0x681e,0x681f,0x6820,0x6822,0x6823,0x6824,0x6825,0x6826,0x6827,0x6828,0x682b,0x682c,0x682d,0x682e,
	0x682f,0x6830,0x6831,0x6834,0x6835,0x6836,0x683a,0x683b,0x683f,0x6847,0x684b,0x684d,0x684f,0x6852,0x6856,0x6857,
	0x6858,0x6859,0x685a,0x685b,0x685c,0x685d,0x685e,0x685f,0x686a,0x686c,0x686d,0x686e,0x686f,0x6870,0x6871,0x6872,
	0x6873,0x6875,0x6878,0x6879,0x687a,0x687b,0x687c,0x687d,0x687e,0x687f,0x6880,0x6882,0x6884,0x6887,0x6888,0x6889,
	0x688a,0x688b,0x688c,0x688d,0x688e,0x6890,0x6891,0x6892,0x6894,0x6895,0x6896,0x6898,0x6899,0x689a,0x689b,0x689c,
	0x689d,0x689e,0x689f,0x68a0,0x68a1,0x68a3,0x68a4,0x68a5,0x68a9,0x68aa,0x68ab,0x68ac,0x68ae,0x68b1,0x68b2,0x68b4,
	0x68b6,0x68b7,0x68b8,0x68b9,0x68ba,0x68bb,0x68bc,0x68bd,0x68be,0x68bf,0x68c1,0x68c3,0x68c4,0x68c5,0x68c6,0x68c7,
	0x68c8,0x68ca,0x68cc,0x68ce,0x68cf,0x68d0,0x68d1,0x68d3,0x68d4,0x68d6,0x68d7,0x68d9,0x68db,0x68dc,0x68dd,0x68de,
	0x68df,0x68e1,0x68e2,0x68e4,0x68e5,0x68e6,0x68e7,0x68e8,0x68e9,0x68ea,0x68eb,0x68ec,0x68ed,0x68ef,0x68f2,0x68f3,
	0x68f4,0x68f6,0x68f7,0x68f8,0x68fb,0x68fd,0x68fe,0x68ff,0x6900,0x6902,0x6903,0x6904,0x6906,0x6907,0x6908,0x6909,
	0x690a,0x690c,0x690f,0x6911,0x6913,0x6914,0x6915,0x6916,0x6917,0x6918,0x6919,0x691a,0x691b,0x691c,0x691d,0x691e,
	0x6921,0x6922,0x6923,0x6925,0x6926,0x6927,0x6928,0x6929,0x692a,0x692b,0x692c,0x692e,0x692f,0x6931,0x6932,0x6933,
	0x6935,0x6936,0x6937,0x6938,0x693a,0x693b,0x693c,0x693e,0x6940,0x6941,0x6943,0x6944,0x6945,0x6946,0x6947,0x6948,
	0x6949,0x694a,0x694b,0x694c,0x694d,0x694e,0x694f,0x6950,0x6951,0x6952,0x6953,0x6955,0x6956,0x6958,0x6959,0x695b,
	0x695c,0x695f,0x6961,0x6962,0x6964,0x6965,0x6967,0x6968,0x6969,0x696a,0x696c,0x696d,0x696f,0x6970,0x6972,0x6973,
	0x6974,0x6975,0x6976,0x697a,0x697b,0x697d,0x697e,0x697f,0x6981,0x6983,0x6985,0x698a,0x698b,0x698c,0x698e,0x698f,
	0x6990,0x6991,0x6992,0x6993,0x6996,0x6997,0x6999,0x699a,0x699d,0x699e,0x699f,0x69a0,0x69a1,0x69a2,0x69a3,0x69a4,
	0x69a5,0x69a6,0x69a9,0x69aa,0x69ac,0x69ae,0x69af,0x69b0,0x69b2,0x69b3,0x69b5,0x69b6,0x69b8,0x69b9,0x69ba,0x69bc,
	0x69bd,0x69be,0x69bf,0x69c0,0x69c2,0x69c3,0x69c4,0x69c5,0x69c6,0x69c7,0x69c8,0x69c9,0x69cb,0x69cd,0x69cf,0x69d1,
	0x69d2,0x69d3,0x69d5,0x69d6,0x69d7,0x69d8,0x69d9,0x69da,0x69dc,0x69dd,0x69de,0x69e1,0x69e2,0x69e3,0x69e4,0x69e5,
	0x69e6,0x69e7,0x69e8,0x69e9,0x69ea,0x69eb,0x69ec,0x69ee,0x69ef,0x69f0,0x69f1,0x69f3,0x69f4,0x69f5,0x69f6,0x69f7,
	0x69f8,0x69f9,0x69fa,0x69fb,0x69fc,0x69fe,0x6a00,0x6a01,0x6a02,0x6a03,0x6a04,0x6a05,0x6a06,0x6a07,0x6a08,0x6a09,
	0x6a0b,0x6a0c,0x6a0d,0x6a0e,0x6a0f,0x6a10,0x6a11,0x6a12,0x6a13,0x6a14,0x6a15,0x6a16,0x6a19,0x6a1a,0x6a1b,0x6a1c,
	0x6a1d,0x6a1e,0x6a20,0x6a22,0x6a23,0x6a24,0x6a25,0x6a26,0x6a27,0x6a29,0x6a2b,0x6a2c,0x6a2d,0x6a2e,0x6a30,0x6a32,
	0x6a33,0x6a34,0x6a36,0x6a37,0x6a38,0x6a39,0x6a3a,0x6a3b,0x6a3c,0x6a3f,0x6a40,0x6a41,0x6a42,0x6a43,0x6a45,0x6a46,
	0x6a48,0x6a49,0x6a4a,0x6a4b,0x6a4c,0x6a4d,0x6a4e,0x6a4f,0x6a51,0x6a52,0x6a53,0x6a54,0x6a55,0x6a56,0x6a57,0x6a5a,
	0x6a5c,0x6a5d,0x6a5e,0x6a5f,0x6a60,0x6a62,0x6a63,0x6a64,0x6a66,0x6a67,0x6a68,0x6a69,0x6a6a,0x6a6b,0x6a6c,0x6a6d,
	0x6a6e,0x6a6f,0x6a70,0x6a72,0x6a73,0x6a74,0x6a75,0x6a76,0x6a77,0x6a78,0x6a7a,0x6a7b,0x6a7d,0x6a7e,0x6a7f,0x6a81,
	0x6a82,0x6a83,0x6a85,0x6a86,0x6a87,0x6a88,0x6a89,0x6a8a,0x6a8b,0x6a8c,0x6a8d,0x6a8f,0x6a92,0x6a93,0x6a94,0x6a95,
	0x6a96,0x6a98,0x6a99,0x6a9a,0x6a9b,0x6a9c,0x6a9d,0x6a9e,0x6a9f,0x6aa1,0x6aa2,0x6aa3,0x6aa4,0x6aa5,0x6aa6,0x6aa7,
	0x6aa8,0x6aaa,0x6aad,0x6aae,0x6aaf,0x6ab0,0x6ab1,0x6ab2,0x6ab3,0x6ab4,0x6ab5,0x6ab6,0x6ab7,0x6ab8,0x6ab9,0x6aba,
	0x6abb,0x6abc,0x6abd,0x6abe,0x6abf,0x6ac0,0x6ac1,0x6ac2,0x6ac3,0x6ac4,0x6ac5,0x6ac6,0x6ac7,0x6ac8,0x6ac9,0x6aca,
	0x6acb,0x6acc,0x6acd,0x6ace,0x6acf,0x6ad0,0x6ad1,0x6ad2,0x6ad3,0x6ad4,0x6ad5,0x6ad6,0x6ad7,0x6ad8,0x6ad9,0x6ada,
	0x6adb,0x6adc,0x6add,0x6ade,0x6adf,0x6ae0,0x6ae1,0x6ae2,0x6ae3,0x6ae4,0x6ae5,0x6ae6,0x6ae7,0x6ae8,0x6ae9,0x6aea,
	0x6aeb,0x6aec,0x6aed,0x6aee,0x6aef,0x6af0,0x6af1,0x6af2,0x6af3,0x6af4,0x6af5,0x6af6,0x6af7,0x6af8,0x6af9,0x6afa,
	0x6afb,0x6afc,0x6afd,0x6afe,0x6aff,0x6b00,0x6b01,0x6b02,0x6b03,0x6b04,0x6b05,0x6b06,0x6b07,0x6b08,0x6b09,0x6b0a,
	0x6b0b,0x6b0c,0x6b0d,0x6b0e,0x6b0f,0x6b10,0x6b11,0x6b12,0x6b13,0x6b14,0x6b15,0x6b16,0x6b17,0x6b18,0x6b19,0x6b1a,
	0x6b1b,0x6b1c,0x6b1d,0x6b1e,0x6b1f,0x6b25,0x6b26,0x6b28,0x6b29,0x6b2a,0x6b2b,0x6b2c,0x6b2d,0x6b2e,0x6b2f,0x6b30,
	0x6b31,0x6b33,0x6b34,0x6b35,0x6b36,0x6b38,0x6b3b,0x6b3c,0x6b3d,0x6b3f,0x6b40,0x6b41,0x6b42,0x6b44,0x6b45,0x6b48,
	0x6b4a,0x6b4b,0x6b4d,0x6b4e,0x6b4f,0x6b50,0x6b51,0x6b52,0x6b53,0x6b54,0x6b55,0x6b56,0x6b57,0x6b58,0x6b5a,0x6b5b,
	0x6b5c,0x6b5d,0x6b5e,0x6b5f,0x6b60,0x6b61,0x6b68,0x6b69,0x6b6b,0x6b6c,0x6b6d,0x6b6e,0x6b6f,0x6b70,0x6b71,0x6b72,
	0x6b73,0x6b74,0x6b75,0x6b76,0x6b77,0x6b78,0x6b7a,0x6b7d,0x6b7e,0x6b7f,0x6b80,0x6b85,0x6b88,0x6b8c,0x6b8e,0x6b8f,
	0x6b90,0x6b91,0x6b94,0x6b95,0x6b97,0x6b98,0x6b99,0x6b9c,0x6b9d,0x6b9e,0x6b9f,0x6ba0,0x6ba2,0x6ba3,0x6ba4,0x6ba5,
	0x6ba6,0x6ba7,0x6ba8,0x6ba9,0x6bab,0x6bac,0x6bad,0x6bae,0x6baf,0x6bb0,0x6bb1,0x6bb2,0x6bb6,0x6bb8,0x6bb9,0x6bba,
	0x6bbb,0x6bbc,0x6bbd,0x6bbe,0x6bc0,0x6bc3,0x6bc4,0x6bc6,0x6bc7,0x6bc8,0x6bc9,0x6bca,0x6bcc,0x6bce,0x6bd0,0x6bd1,
	0x6bd8,0x6bda,0x6bdc,0x6bdd,0x6bde,0x6bdf,0x6be0,0x6be2,0x6be3,0x6be4,0x6be5,0x6be6,0x6be7,0x6be8,0x6be9,0x6bec,
	0x6bed,0x6bee,0x6bf0,0x6bf1,0x6bf2,0x6bf4,0x6bf6,0x6bf7,0x6bf8,0x6bfa,0x6bfb,0x6bfc,0x6bfe,0x6bff,0x6c00,0x6c01,
	0x6c02,0x6c03,0x6c04,0x6c08,0x6c09,0x6c0a,0x6c0b,0x6c0c,0x6c0e,0x6c12,0x6c17,0x6c1c,0x6c1d,0x6c1e,0x6c20,0x6c23,
	0x6c25,0x6c2b,0x6c2c,0x6c2d,0x6c31,0x6c33,0x6c36,0x6c37,0x6c39,0x6c3a,0x6c3b,0x6c3c,0x6c3e,0x6c3f,0x6c43,0x6c44,
	0x6c45,0x6c48,0x6c4b,0x6c4c,0x6c4d,0x6c4e,0x6c4f,0x6c51,0x6c52,0x6c53,0x6c56,0x6c58,0x6c59,0x6c5a,0x6c62,0x6c63,
	0x6c65,0x6c66,0x6c67,0x6c6b,0x6c6c,0x6c6d,0x6c6e,0x6c6f,0x6c71,0x6c73,0x6c75,0x6c77,0x6c78,0x6c7a,0x6c7b,0x6c7c,
	0x6c7f,0x6c80,0x6c84,0x6c87,0x6c8a,0x6c8b,0x6c8d,0x6c8e,0x6c91,0x6c92,0x6c95,0x6c96,0x6c97,0x6c98,0x6c9a,0x6c9c,
	0x6c9d,0x6c9e,0x6ca0,0x6ca2,0x6ca8,0x6cac,0x6caf,0x6cb0,0x6cb4,0x6cb5,0x6cb6,0x6cb7,0x6cba,0x6cc0,0x6cc1,0x6cc2,
	0x6cc3,0x6cc6,0x6cc7,0x6cc8,0x6ccb,0x6ccd,0x6cce,0x6ccf,0x6cd1,0x6cd2,0x6cd8,0x6cd9,0x6cda,0x6cdc,0x6cdd,0x6cdf,
	0x6ce4,0x6ce6,0x6ce7,0x6ce9,0x6cec,0x6ced,0x6cf2,0x6cf4,0x6cf9,0x6cff,0x6d00,0x6d02,0x6d03,0x6d05,0x6d06,0x6d08,
	0x6d09,0x6d0a,0x6d0d,0x6d0f,0x6d10,0x6d11,0x6d13,0x6d14,0x6d15,0x6d16,0x6d18,0x6d1c,0x6d1d,0x6d1f,0x6d20,0x6d21,
	0x6d22,0x6d23,0x6d24,0x6d26,0x6d28,0x6d29,0x6d2c,0x6d2d,0x6d2f,0x6d30,0x6d34,0x6d36,0x6d37,0x6d38,0x6d3a,0x6d3f,
	0x6d40,0x6d42,0x6d44,0x6d49,0x6d4c,0x6d50,0x6d55,0x6d56,0x6d57,0x6d58,0x6d5b,0x6d5d,0x6d5f,0x6d61,0x6d62,0x6d64,
	0x6d65,0x6d67,0x6d68,0x6d6b,0x6d6c,0x6d6d,0x6d70,0x6d71,0x6d72,0x6d73,0x6d75,0x6d76,0x6d79,0x6d7a,0x6d7b,0x6d7d,
	0x6d7e,0x6d7f,0x6d80,0x6d81,0x6d83,0x6d84,0x6d86,0x6d87,0x6d8a,0x6d8b,0x6d8d,0x6d8f,0x6d90,0x6d92,0x6d96,0x6d97,
	0x6d98,0x6d99,0x6d9a,0x6d9c,0x6da2,0x6da5,0x6dac,0x6dad,0x6db0,0x6db1,0x6db3,0x6db4,0x6db6,0x6db7,0x6db9,0x6dba,
	0x6dbb,0x6dbc,0x6dbd,0x6dbe,0x6dc1,0x6dc2,0x6dc3,0x6dc8,0x6dc9,0x6dca,0x6dcd,0x6dce,0x6dcf,0x6dd0,0x6dd2,0x6dd3,
	0x6dd4,0x6dd5,0x6dd7,0x6dda,0x6ddb,0x6ddc,0x6ddf,0x6de2,0x6de3,0x6de5,0x6de7,0x6de8,0x6de9,0x6dea,0x6ded,0x6def,
	0x6df0,0x6df2,0x6df4,0x6df5,0x6df6,0x6df8,0x6dfa,0x6dfd,0x6dfe,0x6dff,0x6e00,0x6e01,0x6e02,0x6e03,0x6e04,0x6e06,
	0x6e07,0x6e08,0x6e09,0x6e0b,0x6e0f,0x6e12,0x6e13,0x6e15,0x6e18,0x6e19,0x6e1b,0x6e1c,0x6e1e,0x6e1f,0x6e22,0x6e26,
	0x6e27,0x6e28,0x6e2a,0x6e2c,0x6e2e,0x6e30,0x6e31,0x6e33,0x6e35,0x6e36,0x6e37,0x6e39,0x6e3b,0x6e3c,0x6e3d,0x6e3e,
	0x6e3f,0x6e40,0x6e41,0x6e42,0x6e45,0x6e46,0x6e47,0x6e48,0x6e49,0x6e4a,0x6e4b,0x6e4c,0x6e4f,0x6e50,0x6e51,0x6e52,
	0x6e55,0x6e57,0x6e59,0x6e5a,0x6e5c,0x6e5d,0x6e5e,0x6e60,0x6e61,0x6e62,0x6e63,0x6e64,0x6e65,0x6e66,0x6e67,0x6e68,
	0x6e69,0x6e6a,0x6e6c,0x6e6d,0x6e6f,0x6e70,0x6e71,0x6e72,0x6e73,0x6e74,0x6e75,0x6e76,0x6e77,0x6e78,0x6e79,0x6e7a,
	0x6e7b,0x6e7c,0x6e7d,0x6e80,0x6e81,0x6e82,0x6e84,0x6e87,0x6e88,0x6e8a,0x6e8b,0x6e8c,0x6e8d,0x6e8e,0x6e91,0x6e92,
	0x6e93,0x6e94,0x6e95,0x6e96,0x6e97,0x6e99,0x6e9a,0x6e9b,0x6e9d,0x6e9e,0x6ea0,0x6ea1,0x6ea3,0x6ea4,0x6ea6,0x6ea8,
	0x6ea9,0x6eab,0x6eac,0x6ead,0x6eae,0x6eb0,0x6eb3,0x6eb5,0x6eb8,0x6eb9,0x6ebc,0x6ebe,0x6ebf,0x6ec0,0x6ec3,0x6ec4,
	0x6ec5,0x6ec6,0x6ec8,0x6ec9,0x6eca,0x6ecc,0x6ecd,0x6ece,0x6ed0,0x6ed2,0x6ed6,0x6ed8,0x6ed9,0x6edb,0x6edc,0x6edd,
	0x6ee3,0x6ee7,0x6eea,0x6eeb,0x6eec,0x6eed,0x6eee,0x6eef,0x6ef0,0x6ef1,0x6ef2,0x6ef3,0x6ef5,0x6ef6,0x6ef7,0x6ef8,
	0x6efa,0x6efb,0x6efc,0x6efd,0x6efe,0x6eff,0x6f00,0x6f01,0x6f03,0x6f04,0x6f05,0x6f07,0x6f08,0x6f0a,0x6f0b,0x6f0c,
	0x6f0d,0x6f0e,0x6f10,0x6f11,0x6f12,0x6f16,0x6f17,0x6f18,0x6f19,0x6f1a,0x6f1b,0x6f1c,0x6f1d,0x6f1e,0x6f1f,0x6f21,
	0x6f22,0x6f23,0x6f25,0x6f26,0x6f27,0x6f28,0x6f2c,0x6f2e,0x6f30,0x6f32,0x6f34,0x6f35,0x6f37,0x6f38,0x6f39,0x6f3a,
	0x6f3b,0x6f3c,0x6f3d,0x6f3f,0x6f40,0x6f41,0x6f42,0x6f43,0x6f44,0x6f45,0x6f48,0x6f49,0x6f4a,0x6f4c,0x6f4e,0x6f4f,
	0x6f50,0x6f51,0x6f52,0x6f53,0x6f54,0x6f55,0x6f56,0x6f57,0x6f59,0x6f5a,0x6f5b,0x6f5d,0x6f5f,0x6f60,0x6f61,0x6f63,
	0x6f64,0x6f65,0x6f67,0x6f68,0x6f69,0x6f6a,0x6f6b,0x6f6c,0x6f6f,0x6f70,0x6f71,0x6f73,0x6f75,0x6f76,0x6f77,0x6f79,
	0x6f7b,0x6f7d,0x6f7e,0x6f7f,0x6f80,0x6f81,0x6f82,0x6f83,0x6f85,0x6f86,0x6f87,0x6f8a,0x6f8b,0x6f8f,0x6f90,0x6f91,
	0x6f92,0x6f93,0x6f94,0x6f95,0x6f96,0x6f97,0x6f98,0x6f99,0x6f9a,0x6f9b,0x6f9d,0x6f9e,0x6f9f,0x6fa0,0x6fa2,0x6fa3,
	0x6fa4,0x6fa5,0x6fa6,0x6fa8,0x6fa9,0x6faa,0x6fab,0x6fac,0x6fad,0x6fae,0x6faf,0x6fb0,0x6fb1,0x6fb2,0x6fb4,0x6fb5,
	0x6fb7,0x6fb8,0x6fba,0x6fbb,0x6fbc,0x6fbd,0x6fbe,0x6fbf,0x6fc1,0x6fc3,0x6fc4,0x6fc5,0x6fc6,0x6fc7,0x6fc8,0x6fca,
	0x6fcb,0x6fcc,0x6fcd,0x6fce,0x6fcf,0x6fd0,0x6fd3,0x6fd4,0x6fd5,0x6fd6,0x6fd7,0x6fd8,0x6fd9,0x6fda,0x6fdb,0x6fdc,
	0x6fdd,0x6fdf,0x6fe2,0x6fe3,0x6fe4,0x6fe5,0x6fe6,0x6fe7,0x6fe8,0x6fe9,0x6fea,0x6feb,0x6fec,0x6fed,0x6ff0,0x6ff1,
	0x6ff2,0x6ff3,0x6ff4,0x6ff5,0x6ff6,0x6ff7,0x6ff8,0x6ff9,0x6ffa,0x6ffb,0x6ffc,0x6ffd,0x6ffe,0x6fff,0x7000,0x7001,
	0x7002,0x7003,0x7004,0x7005,0x7006,0x7007,0x7008,0x7009,0x700a,0x700b,0x700c,0x700d,0x700e,0x700f,0x7010,0x7012,
	0x7013,0x7014,0x7015,0x7016,0x7017,0x7018,0x7019,0x701c,0x701d,0x701e,0x701f,0x7020,0x7021,0x7022,0x7024,0x7025,
	0x7026,0x7027,0x7028,0x7029,0x702a,0x702b,0x702c,0x702d,0x702e,0x702f,0x7030,0x7031,0x7032,0x7033,0x7034,0x7036,
	0x7037,0x7038,0x703a,0x703b,0x703c,0x703d,0x703e,0x703f,0x7040,0x7041,0x7042,0x7043,0x7044,0x7045,0x7046,0x7047,
	0x7048,0x7049,0x704a,0x704b,0x704d,0x704e,0x7050,0x7051,0x7052,0x7053,0x7054,0x7055,0x7056,0x7057,0x7058,0x7059,
	0x705a,0x705b,0x705c,0x705d,0x705f,0x7060,0x7061,0x7062,0x7063,0x7064,0x7065,0x7066,0x7067,0x7068,0x7069,0x706a,
	0x706e,0x7071,0x7072,0x7073,0x7074,0x7077,0x7079,0x707a,0x707b,0x707d,0x7081,0x7082,0x7083,0x7084,0x7086,0x7087,
	0x7088,0x708b,0x708c,0x708d,0x708f,0x7090,0x7091,0x7093,0x7097,0x7098,0x709a,0x709b,0x709e,0x709f,0x70a0,0x70a1,
	0x70a2,0x70a3,0x70a4,0x70a5,0x70a6,0x70a7,0x70a8,0x70a9,0x70aa,0x70b0,0x70b2,0x70b4,0x70b5,0x70b6,0x70ba,0x70be,
	0x70bf,0x70c4,0x70c5,0x70c6,0x70c7,0x70c9,0x70cb,0x70cc,0x70cd,0x70ce,0x70cf,0x70d0,0x70d1,0x70d2,0x70d3,0x70d4,
	0x70d5,0x70d6,0x70d7,0x70da,0x70dc,0x70dd,0x70de,0x70e0,0x70e1,0x70e2,0x70e3,0x70e5,0x70ea,0x70ee,0x70
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值